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

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

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

	リセット : html5reset-1.6.1.css

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

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a:not([class]):active {
  color: #4d9ac8;
}

a:not([class]):visited {
  color: #4d9ac8;
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

[disabled] {
  cursor: not-allowed;
}

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

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

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

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

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

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

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

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

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

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

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

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #444;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f3f7ff;
  background-image: url(../img/common/bg.webp);
  background-repeat: repeat-x;
  background-position: 0 0;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  body {
    background-size: auto 220px;
  }
}
body.is-lock {
  overflow: hidden;
  height: 100%;
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer {
  position: relative;
  padding: 125px 50px 125px;
  background-image: url(../img/common/bg_nami.svg);
  background-repeat: no-repeat;
  background-position: center bottom -85px;
  background-size: 100% auto;
  /*&::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url(../img/common/nami_footer.png);
      background-repeat: no-repeat;
      background-position: center top;
      background-size: cover;
      z-index: -1;
  }*/
}
@media screen and (max-width: 1800px) {
  .footer {
    background-size: auto auto;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 80px 40px 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 80px 15px 80px;
    background-size: 100% auto;
    background-position: center top 55px;
  }
}
@media screen and (max-width: 599px) {
  .footer::before {
    background: #fff;
    content: "";
    height: calc(100% - 140px);
    width: 100%;
    left: 0;
    position: absolute;
    top: 140px;
    z-index: -1;
  }
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0 6%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper {
    flex-direction: column;
  }
}
.footer-wrapper__left {
  width: 33.4%;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper__left {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-wrapper__left {
    margin-bottom: 25px;
  }
}
.footer-wrapper__right {
  flex: 1;
}

.footer-logo {
  max-width: 278px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .footer-logo {
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-logo {
    width: 192px;
    padding-right: 8px;
  }
}
.footer-logo img {
  width: 100%;
}
.footer-logo__en {
  margin-top: 26px;
  margin-left: 5px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  color: #444;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 599px) {
  .footer-logo__en {
    margin-top: 15px;
    font-size: 2.1rem;
    font-weight: 600;
    margin-left: 10px;
  }
}

@media screen and (max-width: 599px) {
  .footer-address {
    font-size: 1.4rem;
  }
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 240px;
  height: 58px;
  margin-right: 20px;
  margin-bottom: 70px;
  margin-left: auto;
  padding: 0 50px 0 40px;
  border: 1px solid #37456a;
  border-radius: 40px;
  color: #37456a;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .footer-btn {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 599px) {
  .footer-btn {
    margin-bottom: 30px;
    padding: 0 40px 0 35px;
    width: 220px;
    height: 46px;
    font-size: 1.3rem;
  }
}
.footer-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 12px;
  height: 6px;
  margin: auto 0;
  background-image: url(../img/common/arrow_blue.png);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .footer-btn::after {
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .footer-btn:hover {
    background-color: #37456a;
    color: #fff;
  }
  .footer-btn:hover::after {
    background-image: url(../img/common/arrow.png);
  }
}

.footer-copyright {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-align: right;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .footer-copyright {
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-copyright {
    font-size: 1.1rem;
    margin-right: 0;
  }
}

.pagetop {
  position: fixed;
  width: 58px;
  height: 58px;
  right: 50px;
  bottom: 50px;
  z-index: 50;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .pagetop {
    right: 10px;
    bottom: 80px;
    width: 42px;
    height: 42px;
  }
}
@media screen and (min-width: 1025px) {
  .pagetop:hover {
    opacity: 0.8;
  }
}

.fixed-btn {
  display: none;
}
@media screen and (max-width: 599px) {
  .fixed-btn {
    position: fixed;
    display: flex;
    bottom: 0;
    z-index: 20;
    width: 100%;
  }
  .fixed-btn__item {
    width: 50%;
    height: 45px;
  }
  .fixed-btn__link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    color: #fff;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
  }
  .fixed-btn__link.special {
    background-image: linear-gradient(90deg, #21ce8f, #99e264);
    letter-spacing: 0;
  }
  .fixed-btn__link.special > span {
    position: relative;
    left: -3px;
  }
  .fixed-btn__link.entry {
    background-image: linear-gradient(90deg, #fa7c8a, #fda25c);
    font-family: "Roboto", sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 1.5rem;
  }
  .fixed-btn__link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 13px;
    bottom: 0;
    width: 12px;
    height: 6px;
    margin: auto 0;
    background-image: url(../img/common/arrow.png);
    background-repeat: no-repeat;
    background-size: 100%;
  }
}

/*ヘッダー*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 51;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 120px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 70px;
  }
}
@media screen and (min-width: 1025px) {
  .header.resize {
    height: 130px;
  }
}

.header-logo {
  max-width: 389px;
  width: 100%;
  margin: 2.8vw 2.8vw 1.6vw;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    margin: 2.2vw 2.5vw 1.6vw;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    width: 75vw;
    margin: 2.5vw 3.2vw 0.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .resize .header-logo {
    margin-top: 2vw;
  }
}
.header-logo__corp {
  display: flex;
  align-items: end;
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .header-logo__corp {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__corp {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .resize .header-logo__corp {
    margin-bottom: 15px;
  }
}
.header-logo__corp img {
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .header-logo__corp img {
    max-width: 220px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__corp img {
    max-width: 150px;
  }
}
@media screen and (min-width: 1025px) {
  .resize .header-logo__corp img {
    max-width: 220px;
  }
}
.header-logo__corp span {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  color: #0482cc;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .header-logo__corp span {
    font-size: 1.5rem;
    margin-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__corp span {
    margin-left: 10px;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
.header-logo__en {
  font-family: "Roboto", sans-serif !important;
  color: #444;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .header-logo__en {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__en {
    font-size: 1.5rem;
    margin-left: 1px;
  }
}
@media screen and (min-width: 1025px) {
  .resize .header-logo__en {
    font-size: 2.5rem;
  }
}

.header-btn {
  display: flex;
  height: 58px;
  gap: 13px;
  margin-top: -20px;
  margin-right: 125px;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .header-btn {
    display: none;
  }
}
#nav-content .header-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  #nav-content .header-btn {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: -90px;
    margin-bottom: 32px;
    margin-right: 70px;
  }
}
@media screen and (max-width: 599px) {
  #nav-content .header-btn {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    width: 100%;
    margin: 0px auto 12px;
  }
}
.header-btn__item {
  height: 100%;
}
@media screen and (max-width: 599px) {
  .header-btn__item {
    width: calc(50% - 5px);
    height: 56px;
  }
}
.header-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 0 50px 0 40px;
  border-radius: 8px;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .header-btn__link {
    padding: 0;
    text-align: center;
    line-height: 1.2;
    border-radius: 5px;
    font-size: 1.5rem;
  }
}
.header-btn__link.special {
  width: 260px;
  background-image: linear-gradient(90deg, #21ce8f, #99e264);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .header-btn__link.special {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .header-btn__link.special > span {
    position: relative;
    left: -3px;
  }
}
.header-btn__link.entry {
  width: 210px;
  background-image: linear-gradient(90deg, #fa7c8a, #fda25c);
  font-family: "Roboto", sans-serif !important;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 599px) {
  .header-btn__link.entry {
    width: 100%;
    font-size: 1.7rem;
  }
}
.header-btn__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 12px;
  height: 6px;
  margin: auto 0;
  background-image: url(../img/common/arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .header-btn__link::after {
    right: 13px;
  }
}
@media screen and (min-width: 1025px) {
  .header-btn__link:hover {
    opacity: 0.8;
  }
}

#nav-open {
  position: fixed;
  display: flex;
  justify-content: center;
  align-self: center;
  top: 40px;
  right: 50px;
  width: 58px;
  height: 58px;
  background-color: #37456a;
  border-radius: 8px;
  transition: 0.5s;
  cursor: pointer;
  appearance: none;
  pointer-events: auto;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  #nav-open {
    top: 32px;
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .resize #nav-open {
    top: 25px;
  }
}
#nav-open > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 599px) {
  #nav-open > span {
    width: 20px;
  }
}
#nav-open > span::before, #nav-open > span::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
}
.on #nav-open > span::before, .on #nav-open > span::after {
  background-color: #faf8f4;
}
#nav-open > span::before {
  top: -9px;
}
@media screen and (max-width: 1024px) {
  #nav-open > span::before {
    top: -8px;
  }
}
#nav-open > span::after {
  bottom: -9px;
}
@media screen and (max-width: 1024px) {
  #nav-open > span::after {
    bottom: -8px;
  }
}
#nav-open.active > span {
  width: 26px;
  background-color: transparent;
}
@media screen and (max-width: 599px) {
  #nav-open.active > span {
    width: 24px;
  }
}
#nav-open.active > span::before {
  top: 0;
  transform: rotate(-45deg);
}
#nav-open.active > span::after {
  bottom: 0;
  width: 100%;
  transform: rotate(45deg);
}

.cl-home {
  color: #c5c5c5;
}
.cl-blue {
  color: #d0dcfe !important;
}
.cl-l-blue {
  color: #b0e0fc !important;
}
.cl-green {
  color: #a9f0d6 !important;
}
.cl-l-green {
  color: #b5e6ea !important;
}
.cl-orange {
  color: #f7daaa !important;
}
.cl-pink {
  color: #facddb !important;
}
.cl-purple {
  color: #e6cef6 !important;
}

#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  padding: 140px 4% 60px;
  background-color: #dff2fd;
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
  z-index: 98;
}
@media screen and (max-width: 1024px) {
  #nav-content {
    padding: 122px 20px 50px;
  }
}
@media screen and (max-width: 599px) {
  #nav-content {
    padding: 70px 10px 40px;
  }
}

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

.header-nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  margin: 0 auto;
  padding: 90px;
  max-width: 1400px;
  background-color: #fff;
}
@media screen and (max-width: 1500px) {
  .header-nav-wrap {
    gap: 70px;
    padding: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-wrap {
    gap: 60px;
    padding: 60px;
  }
}
@media screen and (max-width: 834px) {
  .header-nav-wrap {
    gap: 50px;
    padding: 50px;
  }
}
@media screen and (max-width: 599px) {
  .header-nav-wrap {
    flex-direction: column;
    gap: 25px;
    padding: 25px 22px 35px;
  }
}

.header-nav {
  font-feature-settings: "palt";
}
.header-nav.left {
  width: calc(44% - 45px);
}
@media screen and (max-width: 1500px) {
  .header-nav.left {
    width: calc(44% - 35px);
  }
}
@media screen and (max-width: 1024px) {
  .header-nav.left {
    width: calc(44% - 30px);
  }
}
@media screen and (max-width: 834px) {
  .header-nav.left {
    width: calc(44% - 25px);
  }
}
@media screen and (max-width: 599px) {
  .header-nav.left {
    width: 100%;
  }
}
.header-nav.right {
  width: calc(56% - 45px);
}
@media screen and (max-width: 1500px) {
  .header-nav.right {
    width: calc(56% - 35px);
  }
}
@media screen and (max-width: 1024px) {
  .header-nav.right {
    width: calc(56% - 30px);
  }
}
@media screen and (max-width: 834px) {
  .header-nav.right {
    width: calc(56% - 25px);
  }
}
@media screen and (max-width: 599px) {
  .header-nav.right {
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid #ddd;
  }
}
.header-nav__item {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .header-nav__item {
    flex-direction: column;
  }
}
.header-nav__item:not(:first-child) {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}
.header-nav__item.column {
  flex-direction: column;
  border: none;
}
@media screen and (max-width: 599px) {
  .header-nav__item.column {
    padding-top: 25px;
    border-top: 1px solid #ddd;
  }
}
.header-nav__inr {
  margin-right: 20px;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .header-nav__inr {
    margin-right: 0;
  }
}
.header-nav__en-title {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04em;
  cursor: default;
}
@media screen and (max-width: 1500px) {
  .header-nav__en-title {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__en-title {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .header-nav__en-title {
    font-size: 3.1rem;
  }
}
.header-nav__link {
  position: relative;
  display: block;
  padding-left: 20px;
  width: fit-content;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.06em;
  background-image: url(../img/common/arrow_nav.svg);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: 0 50%;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .header-nav__link {
    padding-left: 18px;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__link:hover {
    opacity: 0.8;
  }
}
.header-nav__link.external::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  top: 7px;
  right: -25px;
  background-image: url(../img/common/icon_external.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
}
.column .header-nav__link:not(:first-child) {
  margin-top: 5px;
}
@media screen and (max-width: 599px) {
  .column .header-nav__link:not(:first-child) {
    margin-top: 10px;
  }
}
.header-nav__link-list {
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .header-nav__link-list {
    margin-top: 15px;
    padding-left: 20px;
  }
}
.left .header-nav__link-list {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .left .header-nav__link-list {
    width: 100%;
  }
}
.right .header-nav__link-list {
  width: 57%;
}
@media screen and (max-width: 1024px) {
  .right .header-nav__link-list {
    width: 100%;
  }
}
.header-nav__link-list__item:not(:first-child) {
  margin-top: 8px;
}
@media screen and (max-width: 599px) {
  .header-nav__link-list__item:not(:first-child) {
    margin-top: 10px;
  }
}
.header-nav__link-list__link {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #444;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.header-nav__link-list__link::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 0;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-image: url(../img/common/arrow_nav.svg);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: 4px 50%;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .header-nav__link-list__link::before {
    top: 2px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav__link-list__link:hover::before {
    left: 3px;
  }
}

.header-sns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .header-sns {
    margin-top: 30px;
  }
}
.header-sns__link {
  width: 50px;
}
@media screen and (max-width: 1024px) {
  .header-sns__link {
    width: 46px;
  }
}
@media screen and (max-width: 599px) {
  .header-sns__link {
    width: 44px;
  }
}

.entry-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  z-index: 999;
}
@media screen and (max-width: 834px) {
  .entry-modal {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal {
    padding: 20px 15px;
  }
}
.entry-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(55, 69, 106, 0.75);
}
.entry-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
}
@media screen and (max-width: 1024px) {
  .entry-modal__content {
    width: 95%;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__content {
    width: 100%;
    padding: 30px 0px 20px;
  }
}
.entry-modal__content__inner {
  overflow: auto;
  max-height: 95vh;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .entry-modal__content__inner {
    max-height: 90vh;
  }
}
.entry-modal__close {
  position: absolute;
  top: -60px;
  right: -75px;
  width: 61px;
  height: 61px;
  z-index: 100;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .entry-modal__close {
    right: -55px;
  }
}
@media screen and (max-width: 834px) {
  .entry-modal__close {
    top: -70px;
    right: -35px;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__close {
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .entry-modal__close:hover {
    opacity: 0.8;
  }
}
.entry-modal__newgraduate {
  background-color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .entry-modal__newgraduate {
    margin-bottom: 3px;
  }
}
.entry-modal__newgraduate__ttl {
  background-color: #cde9f9;
  color: #046198;
  font-size: 2.9rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  text-align: center;
  padding: 22px 20px 18px;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .entry-modal__newgraduate__ttl {
    font-size: 2.4rem;
    padding: 19px 20px 14px;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__newgraduate__ttl {
    font-size: 1.8rem;
    font-weight: 500;
    padding: 12px 10px 8px;
  }
}
.entry-modal__newgraduate .newgraduate-body {
  position: relative;
  display: flex;
  padding: 34px 0px 45px;
}
@media screen and (max-width: 599px) {
  .entry-modal__newgraduate .newgraduate-body {
    flex-direction: column;
    padding: 15px 25px 25px;
    gap: 35px;
  }
}
.entry-modal__newgraduate .newgraduate-body::before {
  background: #eeeeee;
  content: "";
  height: calc(100% - 60px);
  width: 10px;
  left: calc(50% - 5px);
  border-radius: 50px;
  position: absolute;
  top: 30px;
  bottom: 30px;
  margin: auto;
}
@media screen and (max-width: 834px) {
  .entry-modal__newgraduate .newgraduate-body::before {
    width: 6px;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__newgraduate .newgraduate-body::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: 10px;
    height: 4px;
    width: 95%;
  }
}
.entry-modal__newgraduate .newgraduate-body__box {
  padding: 0px 30px;
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .entry-modal__newgraduate .newgraduate-body__box {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__newgraduate .newgraduate-body__box {
    padding: 0;
  }
}
.entry-modal__newgraduate .newgraduate-body__box__item {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .entry-modal__newgraduate .newgraduate-body__box__item {
    margin-bottom: 12px;
  }
}
.entry-modal__newgraduate .newgraduate-body__box__item:last-child {
  margin-bottom: 0;
}
.entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr {
  max-width: 502px;
  margin: 0 auto;
  display: block;
  border: 3px solid #ddd;
  border-radius: 50px;
  padding: 27px;
  background-repeat: no-repeat;
  background-size: 38px 38px;
  background-position: right 25px center;
}
@media screen and (max-width: 834px) {
  .entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr {
    padding: 25px 40px 25px 24px;
    border-width: 2px;
    background-size: 30px 30px;
    background-position: right 15px center;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr {
    padding: 13px;
    background-size: 26px 26px;
    line-height: 1;
  }
}
.entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr img {
  max-width: 254px;
}
@media screen and (max-width: 1024px) {
  .entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr img {
    max-width: 190px;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr img {
    max-width: 150px;
  }
}
.entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr.line-blue {
  border-color: #2d93cf;
  background-image: url(../img/common/circle-arw_blue.svg);
}
.entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr.line-orange {
  border-color: #dd8931;
  background-image: url(../img/common/circle-arw_orange.svg);
}
@media screen and (min-width: 1025px) {
  .entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr:hover.line-blue {
    background-color: #e3f3fb;
  }
}
@media screen and (min-width: 1025px) {
  .entry-modal__newgraduate .newgraduate-body__box__item .mynavi-bnr:hover.line-orange {
    background-color: #fdf0e6;
  }
}
.entry-modal__newgraduate .newgraduate-body__box__item .text {
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  margin-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .entry-modal__newgraduate .newgraduate-body__box__item .text {
    line-height: 1.3;
  }
}
@media screen and (max-width: 834px) {
  .entry-modal__newgraduate .newgraduate-body__box__item .text {
    font-size: 1.7rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__newgraduate .newgraduate-body__box__item .text {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.entry-modal__career {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .entry-modal__career {
    gap: 3px;
  }
}
.entry-modal__career__box {
  flex: 1;
  padding: 45px;
}
@media screen and (max-width: 1024px) {
  .entry-modal__career__box {
    padding: 35px;
  }
}
@media screen and (max-width: 834px) {
  .entry-modal__career__box {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__career__box {
    width: 100%;
    padding: 10px 8px;
  }
}
.entry-modal__career__box.bg-green {
  background-color: #cbf4e4;
}
.entry-modal__career__box.bg-pink {
  background-color: #f6d4e1;
}
.entry-modal__career__btn {
  position: relative;
  display: block;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 50px 50px;
  background-position: right 25px bottom 25px;
  color: #444;
  font-size: 2.7rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 49px;
  border-bottom-right-radius: 35px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .entry-modal__career__btn {
    padding: 30px 25px;
    height: 100%;
    background-size: 40px 40px;
    background-position: right 14px bottom 14px;
  }
}
@media screen and (max-width: 834px) {
  .entry-modal__career__btn {
    background-size: 36px 36px;
    padding: 30px 20px 35px;
    font-size: 2.2rem;
    border-bottom-right-radius: 25px;
    background-position: right 8px bottom 8px;
  }
}
@media screen and (max-width: 599px) {
  .entry-modal__career__btn {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 500;
    padding: 15px 12px;
    background-size: 28px 28px;
    border-bottom-right-radius: 20px;
    letter-spacing: 0;
  }
}
.bg-green .entry-modal__career__btn {
  color: #35795e;
  background-image: url(../img/common/circle-arw_green.svg);
}
.bg-pink .entry-modal__career__btn {
  color: #944d68;
  background-image: url(../img/common/circle-arw_pink.svg);
}
@media screen and (min-width: 1025px) {
  .entry-modal__career__btn:hover {
    transform: translateY(6px);
  }
}

.cl-blue {
  color: #d0dcfe;
}
.cl-l-blue {
  color: #b0e0fc;
}
.cl-green {
  color: #acf3d9;
}
.cl-yellow {
  color: #e6e396;
}
.cl-orange {
  color: #fdedd4;
}
.cl-pink {
  color: #fcd8e3;
}
.cl-purple {
  color: #ebd6f8;
}

.pagetitle {
  display: flex;
  position: relative;
  height: 500px;
  margin-top: 170px;
}
@media screen and (max-width: 1600px) {
  .pagetitle {
    height: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    height: 300px;
    margin-top: 120px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle {
    height: 250px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    justify-content: center;
    align-items: flex-end;
    height: 140px;
    margin-top: 70px;
  }
}

.pagetitle-content {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  width: 38%;
  padding-top: 120px;
  padding-left: 6vw;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .pagetitle-content {
    padding-top: 80px;
    max-width: 380px;
    padding-left: 3.5vw;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle-content {
    align-self: center;
    max-width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-content {
    position: absolute;
    justify-content: center;
    min-width: 140px;
    max-width: 90%;
    width: auto;
    min-height: 72px;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.75);
    left: 0;
    backdrop-filter: blur(15px);
  }
}
.pagetitle-content__jp {
  position: relative;
  margin-bottom: 30px;
  padding-top: 30px;
  color: #000;
  font-size: 5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .pagetitle-content__jp {
    margin-bottom: 35px;
    padding-top: 25px;
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle-content__jp {
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-content__jp {
    margin-bottom: 3px;
    padding-top: 0;
    font-size: 2.3rem;
  }
}
.pagetitle-content__jp::before {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 1024px) {
  .pagetitle-content__jp::before {
    width: 50px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-content__jp::before {
    display: none;
  }
}
.pagetitle-content__en {
  font-size: 13rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-feature-settings: "palt";
  word-break: break-all;
}
@media screen and (max-width: 1600px) {
  .pagetitle-content__en {
    font-size: 11rem;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle-content__en {
    font-size: 7.8rem;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle-content__en {
    font-size: 6.2rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-content__en {
    font-size: 1.5rem;
  }
}
.pagetitle-content__en.cl-green {
  line-height: 0.7;
}

.pagetitle-image {
  flex: 1;
  height: 100%;
}
.pagetitle-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 599px) {
  .pagetitle-image {
    padding-left: 90px;
  }
}

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

 _title

===================================================== */
.bg-blue::before {
  background-color: #c1cff7;
}
.bg-l-blue::before {
  background-color: #b0e0fc;
}
.bg-pink::before {
  background-color: #f3bacb;
}
.bg-green::before {
  background-color: #61d8ac;
}
.bg-yellow::before {
  background-color: #dada7e;
}
.bg-purple::before {
  background-color: #dac2ea;
}

.title-sec01 {
  position: relative;
  padding: 35px 0 25px;
  font-size: 3rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #444;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  border-top: 4px solid #eeeeee;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .title-sec01 {
    font-size: 2.6rem;
    border-width: 3px;
  }
}
@media screen and (max-width: 834px) {
  .title-sec01 {
    padding: 30px 0 20px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01 {
    padding: 22px 0 10px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.title-sec01::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 290px;
  height: 4px;
}
@media screen and (max-width: 1024px) {
  .title-sec01::before {
    top: -3px;
    width: 240px;
    height: 3px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec01::before {
    width: 60px;
  }
}

.title-sec02 {
  position: relative;
  margin-bottom: 45px;
  padding: 25px 0 25px 28px;
  font-size: 2.5rem;
  color: #000;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  border-top: 1px solid #999;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 1024px) {
  .title-sec02 {
    margin-bottom: 40px;
    padding: 20px 0 20px 23px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec02 {
    margin-bottom: 25px;
    padding: 15px 0 15px 18px;
    font-size: 1.8rem;
  }
}
.title-sec02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 60px;
  background-color: #4d9ac8;
}
@media screen and (max-width: 1024px) {
  .title-sec02::before {
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec02::before {
    height: 35px;
    width: 3px;
  }
}
.title-sec02.grade {
  border-color: #0482cc;
}
.title-sec02.grade::before {
  background: linear-gradient(180deg, rgb(1, 120, 189) 0%, rgb(64, 183, 253) 100%);
}

.title-sec03 {
  position: relative;
  display: flex;
  margin-bottom: 35px;
  padding: 35px 10px 30px !important;
  font-size: 2rem !important;
  color: #000;
  font-weight: 500;
  line-height: 1.3 !important;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  border-top: 1px solid #999;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 1024px) {
  .title-sec03 {
    margin-bottom: 30px;
    padding: 30px 8px 25px !important;
    font-size: 1.9rem !important;
  }
}
@media screen and (max-width: 599px) {
  .title-sec03 {
    margin-bottom: 15px;
    padding: 20px 5px 15px !important;
    font-size: 1.7rem !important;
  }
}
.title-sec03::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 262px;
  height: 4px;
  background-color: #4ba7dc;
}
@media screen and (max-width: 1024px) {
  .title-sec03::before {
    width: 200px;
    height: 3px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec03::before {
    width: 120px;
  }
}
.title-sec03 .num {
  display: inline-block;
  margin-right: 8px;
}

.title-sec04 {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 25px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.3rem;
  color: #444;
  font-weight: 400;
  line-height: 1.3;
  border-bottom: 2px solid #d6d6d6;
}
@media screen and (max-width: 1024px) {
  .title-sec04 {
    margin-bottom: 35px;
    padding-bottom: 15px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04 {
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 1.7rem;
  }
}
.title-sec04::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 92px;
  height: 2px;
  background-color: #4ba7dc;
}
@media screen and (max-width: 1024px) {
  .title-sec04::before {
    width: 84px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec04::before {
    width: 52px;
  }
}

.title-sec05 {
  position: relative;
  margin-bottom: 35px;
  padding: 0 0 18px 22px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2rem;
  color: #444;
  font-weight: 400;
  line-height: 1.3;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  .title-sec05 {
    margin-bottom: 30px;
    padding: 0 0 14px 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05 {
    margin-bottom: 25px;
    padding: 0 0 10px 16px;
    font-size: 1.6rem;
  }
}
.title-sec05::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 45px;
  background-color: #4ba7dc;
}
@media screen and (max-width: 1024px) {
  .title-sec05::before {
    height: 38px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec05::before {
    height: 32px;
  }
}

.title-sec06 {
  position: relative;
  margin-bottom: 35px;
  padding: 18px 20px 20px 35px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.3rem;
  color: #444;
  font-weight: 400;
  line-height: 1.2;
  border-bottom: 1px solid #ccc;
  background-color: #ebf7fe;
}
@media screen and (max-width: 1024px) {
  .title-sec06 {
    margin-bottom: 30px;
    padding: 16px 18px 18px 30px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .title-sec06 {
    margin-bottom: 20px;
    padding: 12px 10px 13px 26px;
    font-size: 1.7rem;
  }
}
.title-sec06::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 22px;
  height: 3px;
  background-color: #4d9ac8;
}
@media screen and (max-width: 1024px) {
  .title-sec06::before {
    width: 18px;
  }
}
@media screen and (max-width: 599px) {
  .title-sec06::before {
    width: 16px;
    height: 2px;
  }
}

.text-base, .text-base--note {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
.text-base--note {
  padding-left: 1em;
  text-indent: -1em;
}

.text-catch {
  color: #0482cc;
  font-size: 2.5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.65;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .text-catch {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .text-catch {
    font-size: 1.8rem;
  }
}
.text-catch.small {
  font-size: 2.2rem;
}
@media screen and (max-width: 599px) {
  .text-catch.small {
    font-size: 1.6rem;
  }
}
.text-catch.black {
  color: #444;
}

.text-lead {
  font-size: 1.8rem;
  line-height: 1.85;
}
@media screen and (max-width: 1024px) {
  .text-lead {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .text-lead {
    line-height: 1.7;
    font-size: 1.6rem;
  }
}

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

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

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

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

a.no-link {
  pointer-events: none;
}

/*--------------------------------------------------------
_pagination
----------------------------------------------------------*/
.pagination {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .pagination {
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 7px;
}
@media screen and (max-width: 599px) {
  .pagination__list {
    gap: 0 5px;
  }
}
.pagination__list__number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50px;
  height: 50px;
  padding-top: 4px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #37456a;
}
@media screen and (max-width: 599px) {
  .pagination__list__number {
    width: 40px;
    height: 40px;
  }
}
.pagination__list__number:hover, .pagination__list__number.active {
  background-color: #37456a;
  color: #fff !important;
  transition: 0.3s;
  border: none;
}
.pagination__list__number::before, .pagination__list__number::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  margin: auto;
}
.pagination__list__prev, .pagination__list__next {
  display: block;
  position: relative;
  color: #37456a;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .pagination__list__prev > span, .pagination__list__next > span {
    display: none;
  }
}
.pagination__list__prev > img, .pagination__list__next > img {
  max-width: 16px;
  margin-top: 5px;
}
.pagination__list__prev:hover, .pagination__list__next:hover {
  opacity: 0.8;
}
.pagination__list__prev {
  margin-right: 10px;
}
.pagination__list__prev > img {
  margin-right: 3px;
}
.pagination__list__next {
  margin-left: 10px;
}
.pagination__list__next > img {
  margin-left: 3px;
  transform: scale(-1);
}
.pagination__list__dot {
  display: inline-block;
  width: 32px;
  color: #0482cc;
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .pagination__list__dot {
    width: 20px;
    font-size: 1.5rem;
  }
}
.pagination__list__btn a {
  display: inline-block;
  position: relative;
  padding: 18px 45px;
  background-color: #37456a;
  border-radius: 50px;
  color: #fff !important;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 834px) {
  .pagination__list__btn a {
    padding: 12px 25px;
  }
}
@media screen and (max-width: 599px) {
  .pagination__list__btn a {
    font-size: 1.4rem;
    padding: 12px 25px;
  }
}
@media screen and (min-width: 1025px) {
  .pagination__list__btn a:hover {
    opacity: 0.85;
  }
}

/*--------------------------------------------------------
_wysiwyg
----------------------------------------------------------*/
.wysiwyg {
  /*デフォルトの処理*/
  margin-bottom: 60px;
  line-height: 1.9;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*youtube*/
  /*以下テンプレート外*/
}
@media screen and (max-width: 599px) {
  .wysiwyg {
    margin-bottom: 40px;
    line-height: 1.7;
  }
}
.wysiwyg a {
  color: #4d9ac8;
  text-decoration: underline;
}
.wysiwyg a:hover {
  color: #4d9ac8;
  text-decoration: none;
}
.wysiwyg img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.wysiwyg .box {
  margin-bottom: 30px;
  overflow: hidden;
}
.wysiwyg .box:before, .wysiwyg .box:after {
  content: "";
  display: table;
}
.wysiwyg .box:after {
  clear: both;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box {
    margin-bottom: 20px;
  }
}
.wysiwyg .box:has(> .ttl03) {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .box:has(> .ttl03) {
    margin-bottom: 20px;
  }
}
.wysiwyg .box:has(> .ttl04) {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box:has(> .ttl04) {
    margin-bottom: 12px;
  }
}
.wysiwyg .box:has(> .copy01), .wysiwyg .box:has(> .copy02) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box:has(> .copy01), .wysiwyg .box:has(> .copy02) {
    margin-bottom: 10px;
  }
}
.wysiwyg .box.mb-line {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box.mb-line {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
.wysiwyg .ttl01 {
  position: relative;
  padding: 0 0 25px 0;
  border-bottom: 2px solid #ddd;
  color: #444;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl01 {
    padding: 0 0 20px 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01 {
    padding: 0 0 15px 0;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}
.wysiwyg .ttl01::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 92px;
  height: 2px;
  background-color: #4d9ac8;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl01::before {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01::before {
    width: 60px;
  }
}
.wysiwyg .ttl02 {
  position: relative;
  padding: 2px 0 15px 18px;
  border-bottom: 1px dotted #ccc;
  border-left: 4px solid #4d9ac8;
  color: #444;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl02 {
    padding: 2px 0 10px 15px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl02 {
    margin-bottom: 0;
    padding: 2px 0 8px 13px;
    font-size: 1.6rem;
  }
}
.wysiwyg .ttl03 {
  position: relative;
  padding: 12px 12px 12px 35px;
  background-color: #ebf7fe;
  border-bottom: 1px solid #ccc;
  color: #444;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl03 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl03 {
    margin-bottom: 0;
    padding: 15px 25px;
    font-size: 1.7rem;
  }
}
.wysiwyg .ttl03::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 3px;
  margin: auto 0;
  background-color: #4d9ac8;
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl03::before {
    width: 15px;
  }
}
.wysiwyg .ttl04 {
  position: relative;
  padding: 0 0 0 30px;
  color: #444;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl04 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl04 {
    margin: 0;
    padding: 0 0 0 20px;
    font-size: 1.5rem;
  }
}
.wysiwyg .ttl04::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  height: 18px;
  width: 18px;
  border: 5px solid #4d9ac8;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl04::before {
    top: 6px;
    width: 17px;
    height: 17px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl04::before {
    width: 15px;
    height: 15px;
    border-width: 4px;
  }
}
.wysiwyg .copy01 {
  color: #0482cc;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: justify;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .copy01 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy01 {
    font-size: 1.8rem;
  }
}
.wysiwyg .copy02 {
  line-height: 1.8;
  color: #0482cc;
  font-size: 2.3rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  text-align: justify;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .copy02 {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy02 {
    font-size: 1.8rem;
  }
}
.wysiwyg .text {
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg .text {
    line-height: 1.8;
  }
}
.wysiwyg .text--mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
}
.wysiwyg .text--bg {
  padding: 30px 40px;
  background-color: #f6f6f6;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .text--bg {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .text--bg {
    padding: 15px 20px;
  }
}
.wysiwyg .img-right {
  margin: 7px 0 30px 4%;
  width: auto;
  max-width: 40%;
  float: right;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .img-left {
  margin: 7px 4% 30px 0;
  width: auto;
  max-width: 40%;
  float: left;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .btn-wrapper {
  text-align: center;
}
.wysiwyg .btn-wrapper a {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  padding: 15px 80px;
  background-color: #37456a;
  border-radius: 50px;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .wysiwyg .btn-wrapper a {
    background-position: center right 10px;
    background-size: 19px auto;
    font-size: 1.4rem;
  }
}
.wysiwyg .btn-wrapper a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 34px;
  bottom: 0;
  width: 12px;
  height: 6px;
  margin: auto 0;
  background-image: url(../img/common/arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 1025px) {
  .wysiwyg .btn-wrapper a:hover {
    opacity: 0.85;
  }
}
.wysiwyg .photo-3 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-3 {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-3 {
    gap: 8px;
  }
}
.wysiwyg .photo-3::after {
  content: none;
}
.wysiwyg .photo-3 li {
  flex: 1;
  text-align: center;
}
.wysiwyg .photo-3 li img {
  width: 100%;
}
.wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-2 {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-2 {
    gap: 8px;
  }
}
.wysiwyg .photo-2::after {
  content: none;
}
.wysiwyg .photo-2 li {
  flex: 1;
  text-align: center;
}
.wysiwyg .photo-2 li img {
  width: 100%;
}
.wysiwyg .photo-1 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .photo-1.wide {
  max-width: 100%;
}
.wysiwyg .caption {
  display: block;
  margin-top: 15px;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.3em;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .caption {
    margin-top: 5px;
    font-size: 1.2rem;
  }
}
.wysiwyg .list-wrapper {
  list-style: none;
  padding: 0;
}
.wysiwyg .list-wrapper li {
  position: relative;
  margin-top: 12px;
  padding-left: 25px;
  color: #444;
  font-size: 1.5rem;
  line-height: 1.5em;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper li {
    margin-top: 7px;
    padding-left: 15px;
    font-size: 1.4rem;
  }
}
.wysiwyg .list-wrapper li:first-child {
  margin-top: 0;
}
.wysiwyg .list-wrapper li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0px;
  width: 11px;
  height: 4px;
  background-color: #4d9ac8;
}
.wysiwyg .list-wrapper--bg {
  padding: 25px 30px;
  background-color: #ebf7fe;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper--bg {
    padding: 16px;
  }
}
.wysiwyg .table {
  width: 100%;
  border: 1px solid #EBDFD8;
  border-collapse: collapse;
}
.wysiwyg .table thead th {
  padding: 15px;
  font-size: 1.5rem;
  line-height: 1.3em;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  background-color: #d4eefd;
  border: 1px solid #ccc;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table thead th {
    padding: 7px 5px 5px;
    font-size: 1.2rem;
  }
}
.wysiwyg .table th {
  padding: 20px;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.3em;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  background-color: #ebf7fe;
  border: 1px solid #ccc;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table th {
    padding: 7px 5px 5px;
    font-size: 1.2rem;
  }
}
.wysiwyg .table td {
  padding: 17px 20px;
  font-size: 1.5rem;
  line-height: 1.3em;
  vertical-align: middle;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table td {
    padding: 7px 5px 5px;
    font-size: 1.2rem;
  }
}
.wysiwyg .youtube-wrapper {
  aspect-ratio: 16/9;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.wysiwyg .youtube-wrapper iframe {
  width: 100%;
  height: 100%;
}
.wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
.wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg ul {
  padding-left: 40px;
  list-style-type: disc;
}
.wysiwyg ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.wysiwyg blockquote {
  padding-left: 1em;
}
.wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
.wysiwyg hr {
  display: block;
}
.wysiwyg em {
  font-style: italic !important;
}
.wysiwyg strong {
  font-weight: bold !important;
}
.wysiwyg em strong, .wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

.breadcrumbs-list {
  display: flex;
  justify-content: flex-end;
  padding: 45px 95px;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs-list {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs-list {
    display: none;
  }
}
.breadcrumbs-list__item {
  position: relative;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 834px) {
  .breadcrumbs-list__item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs-list__item {
    font-size: 1.3rem;
  }
}
.breadcrumbs-list__item:not(:last-child) {
  margin-right: 2.5em;
}
@media screen and (max-width: 599px) {
  .breadcrumbs-list__item:not(:last-child) {
    margin-right: 1.5em;
  }
}
.breadcrumbs-list__item:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: -1px;
  right: -26px;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 599px) {
  .breadcrumbs-list__item:not(:last-child)::after {
    top: 0;
    right: -14px;
  }
}
.breadcrumbs-list__link {
  color: #15b273;
}
@media screen and (min-width: 1025px) {
  .breadcrumbs-list__link:hover {
    text-decoration: underline;
  }
}

.content {
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .content {
    padding: 20px 35px 40px;
  }
}
@media screen and (max-width: 834px) {
  .content {
    padding: 10px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .content {
    padding: 22px 0 10px;
  }
}

.wrap {
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .wrap {
    flex-direction: column-reverse;
  }
}
.wrap:not(:has(.side)) {
  max-width: 1300px;
}

.side {
  max-width: 300px;
  width: 27%;
  padding-right: 65px;
}
@media screen and (max-width: 1600px) {
  .side {
    max-width: 260px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .side {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .side {
    margin-left: 1.5em;
  }
}

.main {
  flex: 1;
  padding: 4.2vw 4.15vw 4.7vw;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .main {
    padding: 40px 35px 60px;
  }
}
@media screen and (max-width: 834px) {
  .main {
    padding: 30px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .main {
    padding: 30px 20px 40px;
  }
}

.sec-wrap {
  margin-bottom: 55px;
}
@media screen and (max-width: 599px) {
  .sec-wrap {
    margin-bottom: 40px;
  }
}
.sec-wrap:last-child {
  margin-bottom: 0;
}

/*.scroll-hint*/
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(25px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-25px);
    opacity: 0;
  }
}
.js-scrollable {
  padding-bottom: 10px;
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 36px);
  box-sizing: border-box;
  width: 78px;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(55, 69, 106, 0.7);
  text-align: center;
  padding: 18px 8px 4px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 2px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 12px;
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  margin-left: -19px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}

/*サイド*/
.side-inner {
  position: sticky;
  top: 180px;
}
@media screen and (max-width: 1024px) {
  .side-inner {
    padding-top: 45px;
  }
}

.side-title {
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 1px solid #000;
  color: #000;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .side-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .side-title {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}

.side-category {
  margin-bottom: 20px;
  margin-left: 20px;
  color: #0482cc;
  font-size: 2.5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 599px) {
  .side-category {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}

.side-nav {
  margin-left: 20px;
}
.side-nav__item:not(:last-child) {
  margin-bottom: 18px;
}
@media screen and (max-width: 599px) {
  .side-nav__item:not(:last-child) {
    margin-bottom: 13px;
  }
}
.side-nav__link {
  color: #000;
  font-size: 1.8rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .side-nav__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .side-nav__link {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .side-nav__link:hover, .side-nav__link.active {
    color: #0482cc;
  }
}

.btn-wrapper {
  display: flex;
}
.btn-wrapper.center {
  justify-content: center;
}

.btn-base {
  display: inline-block;
  position: relative;
  padding: 18px 50px;
  background-color: #37456a;
  border-radius: 50px;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .btn-base {
    background-position: center right 10px;
    background-size: 19px auto;
    font-size: 1.4rem;
    padding: 12px 50px;
  }
}
.btn-base::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 12px;
  height: 6px;
  margin: auto 0;
  background-image: url(../img/common/arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 1025px) {
  .btn-base:hover {
    opacity: 0.85;
  }
}
.btn-base--back::after {
  right: auto;
  left: 35px;
  transform: scale(-1);
}
@media screen and (max-width: 599px) {
  .btn-base--back::after {
    left: 28px;
  }
}

.pageindex-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .pageindex-list {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pageindex-list {
    gap: 14px;
  }
}
.pageindex-list__item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1024px) {
  .pageindex-list__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 599px) {
  .pageindex-list__item {
    width: 100%;
  }
}
.pageindex-list__link {
  display: block;
  position: relative;
  height: 100%;
  padding: 10px;
  border-radius: 0 0 50px 0;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .pageindex-list__link {
    padding: 8px;
  }
}
@media screen and (max-width: 599px) {
  .pageindex-list__link {
    display: flex;
    border-radius: 0 0 25px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
}
.pageindex-list__link::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  margin: auto 0;
  background-image: url(../img/common/arrow_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border: 1px solid #ccc;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .pageindex-list__link::after {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .pageindex-list__link::after {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .pageindex-list__link::after {
    right: 10px;
    bottom: 10px;
    width: 25px;
    height: 25px;
    background-size: 9px auto;
  }
}
@media screen and (min-width: 1025px) {
  .pageindex-list__link:hover {
    transform: translateY(-20px);
  }
}
.pageindex-list__link.no-link::after {
  opacity: 0.4;
}
@media screen and (max-width: 599px) {
  .pageindex-list__image {
    width: 90px;
    height: 90px;
  }
}
.pageindex-list__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .pageindex-list__image.work01 img {
    object-position: -84px 0;
  }
}
.pageindex-list__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 20px 40px;
  color: #444;
}
@media screen and (max-width: 1024px) {
  .pageindex-list__body {
    padding: 25px 10px 30px;
  }
}
@media screen and (max-width: 834px) {
  .pageindex-list__body {
    padding: 20px 10px 60px;
  }
}
@media screen and (max-width: 599px) {
  .pageindex-list__body {
    flex: 1;
    padding: 10px 7px 20px 18px;
  }
}
.no-link .pageindex-list__body {
  opacity: 0.7;
}
.pageindex-list__title {
  position: relative;
  margin-bottom: 14px;
  padding-top: 19px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
}
@media screen and (max-width: 1024px) {
  .pageindex-list__title {
    margin-bottom: 8px;
    padding-top: 15px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .pageindex-list__title {
    margin-bottom: 15px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .pageindex-list__title {
    margin-bottom: 10px;
    padding-top: 0px;
    padding-left: 10px;
    font-size: 1.8rem;
  }
}
.pageindex-list__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
}
@media screen and (max-width: 1024px) {
  .pageindex-list__title::before {
    width: 35px;
  }
}
@media screen and (max-width: 599px) {
  .pageindex-list__title::before {
    top: 0px;
    width: 1px;
    height: 100%;
  }
}
.work .pageindex-list__title::before {
  background-color: #9361b5;
}
.environment .pageindex-list__title::before {
  background-color: #2f9b73;
}
.pageindex-list__text {
  padding-right: 95px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .pageindex-list__text {
    padding-right: 70px;
  }
}
@media screen and (max-width: 834px) {
  .pageindex-list__text {
    line-height: 1.6;
    padding-right: 0;
    text-align: justify;
  }
}
@media screen and (max-width: 599px) {
  .pageindex-list__text {
    font-size: 1.3rem;
    letter-spacing: 0;
    font-weight: 400;
    color: #686868;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main {
  position: relative;
  margin-top: 170px;
  /*&::before {
      content: "";
      position: absolute;
      top: 130px;
      width: 100%;
      height: 100vh;
      background-image: url(../img/top/nami_main.png);
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: cover;
      @include mq(sp) {
          top: 180px;
          height: 100%;
      }
  }*/
}
@media screen and (max-width: 1024px) {
  .top-main {
    margin-top: 120px;
    height: 500px;
  }
}
@media screen and (max-width: 834px) {
  .top-main {
    height: 450px;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    height: 280px;
    margin-top: 70px;
  }
}
.top-main__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 360px;
  margin: auto 0;
  padding: 0 100px;
  background-color: #fff;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-main__content {
    height: 280px;
    padding: 0px 35px 0px 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-main__content {
    height: 230px;
    padding: 20px 30px 20px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__content {
    right: 0;
    left: 0;
    max-width: 260px;
    width: 68%;
    height: 145px;
    padding: 0 10px 0 18px;
  }
}
.top-main__content__catch {
  margin-bottom: 20px;
  color: #000;
  font-size: 6.7rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .top-main__content__catch {
    margin-bottom: 15px;
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-main__content__catch {
    margin-bottom: 10px;
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__content__catch {
    font-size: 2.6rem;
  }
}
.top-main__content__text {
  color: #000;
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .top-main__content__text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__content__text {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__content__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
.top-main__slide-box {
  position: relative;
  height: 100%;
  margin-bottom: -10px;
}
.top-main__slide-box .slick-slider {
  height: 100%;
}
.top-main__slide-box .slick-slider .slick-list {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .top-main__slide-box .slick-slider .slick-list .slick-track {
    height: 100%;
  }
  .top-main__slide-box .slick-slider .slick-list .slick-track .slick-slide div {
    height: 100%;
  }
  .top-main__slide-box .slick-slider .slick-list .slick-track .slick-slide li {
    height: 100%;
  }
  .top-main__slide-box .slick-slider .slick-list .slick-track .slick-slide li img {
    height: 100%;
  }
}

.top-catch {
  position: relative;
  padding: 40px 20px 80px;
  background-image: url(../img/common/bg_nami.svg);
  background-repeat: no-repeat;
  background-position: center bottom -20px;
  background-size: 100% auto;
  text-align: center;
}
.top-catch__main {
  margin-bottom: 10px;
  color: #000;
  font-size: 3.2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.top-catch__sub {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.top-lead {
  position: relative;
  padding: 130px 50px;
  background-image: url(../img/common/bg_nami.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .top-lead {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead {
    padding: 45px 20px 40px;
  }
}
.top-lead__inner {
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-lead__inner {
    max-width: 630px;
  }
}
.top-lead__catch {
  margin-bottom: 30px;
  color: #444;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .top-lead__catch {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__catch {
    margin-bottom: 18px;
    font-size: 5vw;
    line-height: 1.6;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
  }
}
.top-lead__text {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 599px) {
  .top-lead__text {
    font-size: 1.4rem;
    padding: 0px 20px;
    letter-spacing: 0;
    line-height: 1.7;
  }
}

.top-project {
  position: relative;
  padding: 110px 50px 160px;
  background-color: #ebf7fe;
}
@media screen and (max-width: 1024px) {
  .top-project {
    padding: 110px 30px 130px;
  }
}
@media screen and (max-width: 834px) {
  .top-project {
    padding: 80px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-project {
    padding: 40px 20px 50px;
  }
}
.top-project::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #cde9f9;
}
.top-project__inner {
  position: relative;
  max-width: 1445px;
  margin: 0 auto;
  z-index: 1;
}
.top-project__en-title {
  position: absolute;
  top: 90px;
  left: 0;
  color: #b0e0fc;
  font-size: 20rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1200px) {
  .top-project__en-title {
    font-size: 15vw;
  }
}
@media screen and (max-width: 834px) {
  .top-project__en-title {
    top: 0;
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-project__en-title {
    font-size: 18vw;
    position: relative;
    top: auto;
    bottom: -6px;
    left: 0;
    right: 0;
    text-align: center;
  }
}
.top-project__content {
  position: relative;
  max-width: 570px;
  margin-bottom: 25px;
  margin-left: auto;
  padding: 46px 70px 55px 62px;
}
@media screen and (max-width: 834px) {
  .top-project__content {
    max-width: 510px;
    margin-right: auto;
    margin-left: 0;
    padding: 45px 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-project__content {
    padding: 30px 30px 20px;
    margin: 0px 15px;
  }
}
.top-project__content::before, .top-project__content::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url(../img/top/quotation.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .top-project__content::before, .top-project__content::after {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-project__content::before, .top-project__content::after {
    width: 45px;
    height: 45px;
  }
}
.top-project__content::before {
  top: 0;
  left: 0;
}
.top-project__content::after {
  right: 0;
  bottom: 0;
  transform: scale(-1);
}
.top-project__content__catch {
  margin-bottom: 15px;
  color: #000;
  font-size: 3.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1024px) {
  .top-project__content__catch {
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top-project__content__catch {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-project__content__catch {
    margin-bottom: 10px;
    font-size: 1.9rem;
    text-align: center;
  }
}
.top-project__content__catch > span {
  display: block;
  font-size: 5.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.015em;
}
@media screen and (max-width: 1024px) {
  .top-project__content__catch > span {
    font-size: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-project__content__catch > span {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-project__content__catch > span {
    font-size: 3.1rem;
  }
}
.top-project__content__text {
  color: #444;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .top-project__content__text {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0px;
  }
}
.top-project__list {
  display: flex;
  gap: 0 2.8%;
}
@media screen and (max-width: 834px) {
  .top-project__list {
    flex-wrap: wrap;
    gap: 30px;
    margin: 0px 20px 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-project__list {
    gap: 15px 10px;
    margin: 0px 0px 30px;
  }
}
.top-project__list__item {
  flex: 1;
}
@media screen and (max-width: 834px) {
  .top-project__list__item {
    flex: auto;
    width: calc((99.9% - 30px) / 2);
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 599px) {
  .top-project__list__item {
    flex: auto;
    width: calc((99.9% - 10px) / 2);
  }
}
.top-project__list__item:nth-child(1) {
  margin-top: -120px;
}
@media screen and (max-width: 1024px) {
  .top-project__list__item:nth-child(1) {
    margin-top: -100px;
  }
}
@media screen and (max-width: 834px) {
  .top-project__list__item:nth-child(1) {
    margin-top: 0;
  }
}
.top-project__list__item:nth-child(2) {
  margin-top: -60px;
}
@media screen and (max-width: 1024px) {
  .top-project__list__item:nth-child(2) {
    margin-top: -40px;
  }
}
@media screen and (max-width: 834px) {
  .top-project__list__item:nth-child(2) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-project__list__item:nth-child(3) {
    margin-top: -30px;
  }
}
@media screen and (max-width: 834px) {
  .top-project__list__item:nth-child(3) {
    margin-top: -20px;
  }
}
.top-project__list__item:nth-child(4) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .top-project__list__item:nth-child(4) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-project__list__item:nth-child(4) {
    margin-top: 20px;
  }
}
.top-project__list__link {
  display: block;
  position: relative;
  padding: 10px 10px 90px 10px;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .top-project__list__link {
    padding: 8px 8px 75px 8px;
    border-bottom-right-radius: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-project__list__link {
    height: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-project__list__link {
    padding-bottom: 45px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
}
.top-project__list__link::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  margin: auto 0;
  background-image: url(../img/common/arrow_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border: 1px solid #ccc;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .top-project__list__link::after {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-project__list__link::after {
    right: 15px;
    bottom: 15px;
    width: 30px;
    height: 30px;
    background-size: 8px auto;
  }
}
@media screen and (min-width: 1025px) {
  .top-project__list__link:hover {
    transform: translateY(-20px);
  }
}
@media screen and (max-width: 599px) {
  .top-project__list__image {
    aspect-ratio: 5/5;
    overflow: hidden;
  }
}
.top-project__list__image img {
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: 100%;
}
.top-project__list__body {
  padding: 25px 6% 0;
  color: #444;
}
@media screen and (max-width: 1024px) {
  .top-project__list__body {
    padding: 20px 5px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-project__list__body {
    padding-top: 12px;
  }
}
.top-project__list__text01 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
@media screen and (max-width: 599px) {
  .top-project__list__text01 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
}
.top-project__list__text02 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-project__list__text02 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-project__list__text02 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}
.top-project__list__text03 {
  font-size: 2.6rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1024px) {
  .top-project__list__text03 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-project__list__text03 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.top-project__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 240px;
  height: 58px;
  margin-top: -90px;
  padding: 0 50px 0 40px;
  border: 1px solid #37456a;
  border-radius: 40px;
  color: #37456a;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .top-project__btn {
    margin-top: -60px;
  }
}
@media screen and (max-width: 834px) {
  .top-project__btn {
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .top-project__btn {
    width: 100%;
    height: auto;
    padding: 12px 45px;
    font-size: 1.4rem;
  }
}
.top-project__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 12px;
  height: 6px;
  margin: auto 0;
  background-image: url(../img/common/arrow_blue.png);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .top-project__btn:hover {
    background-color: #37456a;
    color: #fff;
  }
  .top-project__btn:hover::after {
    background-image: url(../img/common/arrow.png);
  }
}

.top-news {
  background-color: #fff;
  padding: 130px 50px 140px;
}
@media screen and (max-width: 1024px) {
  .top-news {
    padding: 110px 30px 120px;
  }
}
@media screen and (max-width: 834px) {
  .top-news {
    padding: 80px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 50px 20px;
  }
}
.top-news__inner {
  display: flex;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-news__inner {
    flex-direction: column;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__inner {
    padding-bottom: 50px;
  }
}
.top-news__en-title {
  position: absolute;
  top: 270px;
  left: 0;
  color: #fdedd4;
  font-size: 20rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1200px) {
  .top-news__en-title {
    font-size: 15vw;
  }
}
@media screen and (max-width: 834px) {
  .top-news__en-title {
    top: 0;
    right: -30px;
    left: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-news__en-title {
    font-size: 18vw;
    position: relative;
    text-align: center;
    top: -10px;
    left: 0px;
    right: 0px;
  }
}
.top-news__left {
  width: 38%;
}
@media screen and (max-width: 1024px) {
  .top-news__left {
    width: 30%;
  }
}
@media screen and (max-width: 834px) {
  .top-news__left {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__left {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
  }
}
.top-news__right {
  flex: 1;
}
.top-news__title {
  position: relative;
  margin-bottom: 40px;
  padding-top: 35px;
  color: #000;
  font-size: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-news__title {
    padding-top: 30px;
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-news__title {
    margin-bottom: 0;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__title {
    padding-top: 20px;
    font-size: 3rem;
    text-align: center;
    z-index: 1;
  }
}
.top-news__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 599px) {
  .top-news__title::before {
    width: 30px;
    right: 0;
    margin: auto;
  }
}
.top-news__btn {
  max-width: 220px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .top-news__btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .top-news__btn {
    max-width: 100%;
  }
}
.top-news__list {
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 834px) {
  .top-news__list {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__list {
    margin-bottom: 30px;
  }
}
.top-news__list__item {
  border-bottom: 1px solid #ddd;
}
.top-news__list__link {
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px 50px 40px 5px;
  color: #444;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .top-news__list__link {
    padding: 25px 50px 25px 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__list__link {
    flex-wrap: wrap;
    padding: 18px 50px 18px 0;
  }
}
.top-news__list__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  width: 50px;
  height: 50px;
  margin: auto 0;
  background-image: url(../img/common/arrow_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border: 1px solid #ccc;
  border-radius: 50%;
}
@media screen and (max-width: 834px) {
  .top-news__list__link::after {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__list__link::after {
    width: 28px;
    height: 28px;
    background-size: 8px auto;
  }
}
@media screen and (min-width: 1025px) {
  .top-news__list__link:hover {
    background-color: #f9f9f9;
  }
}
.top-news__list__category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  padding: 10px;
  background-color: #f3f3f3;
  border-radius: 40px;
}
@media screen and (max-width: 834px) {
  .top-news__list__category {
    width: 120px;
    padding: 6px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__list__category {
    padding: 4px;
    width: 90px;
    font-size: 1.2rem;
  }
}
.top-news__list__date {
  width: 22%;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .top-news__list__date {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__list__date {
    width: auto;
    text-align: left;
    padding-left: 10px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news__list__title {
    width: 100%;
    margin-top: 15px;
  }
}

.top-about {
  overflow: hidden;
  position: relative;
  padding: 130px 0;
  background-color: #fef5f8;
  background-image: url(../img/common/bg_nami.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding: 110px 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-about {
    padding: 60px 30px 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    padding: 50px 20px;
    background-image: url(../img/common/bg_nami_long.svg);
  }
}
.top-about__inner {
  display: flex;
  justify-content: space-between;
  gap: 0 7.5%;
  position: relative;
  max-width: 1460px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-about__inner {
    flex-direction: column;
  }
}
.top-about__en-title {
  position: absolute;
  right: 8%;
  bottom: -10px;
  color: #fcd8e3;
  font-size: 20rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1200px) {
  .top-about__en-title {
    font-size: 15vw;
  }
}
@media screen and (max-width: 834px) {
  .top-about__en-title {
    top: 0;
    right: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__en-title {
    font-size: 18vw;
    position: relative;
    right: 0px;
    left: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}
.top-about__image {
  max-width: 700px;
  width: 48%;
}
@media screen and (max-width: 834px) {
  .top-about__image {
    width: 100%;
    margin: 0 auto 35px;
  }
}
.top-about__content {
  position: relative;
  flex: 1;
  padding-right: 8%;
}
@media screen and (max-width: 1024px) {
  .top-about__content {
    padding-right: 0;
  }
}
.top-about__title {
  position: relative;
  margin-bottom: 25px;
  padding-top: 35px;
  color: #000;
  font-size: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-about__title {
    padding-top: 30px;
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-about__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__title {
    padding-top: 20px;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
  }
}
.top-about__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 599px) {
  .top-about__title::before {
    width: 30px;
    right: 0;
    margin: auto;
  }
}
.top-about__text {
  margin-bottom: 40px;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .top-about__text {
    padding: 0px 20px;
    letter-spacing: 0;
    margin-bottom: 20px;
    line-height: 1.5;
  }
}
.top-about__btn {
  display: block;
  max-width: 230px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 834px) {
  .top-about__btn {
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .top-about__btn {
    max-width: 100%;
  }
}

.top-work {
  position: relative;
  padding: 90px 50px;
  background-color: #cde9f9;
}
@media screen and (max-width: 1024px) {
  .top-work {
    padding: 70px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-work {
    padding: 80px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-work {
    padding: 50px 20px;
  }
}
.top-work__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 0 7.5%;
  position: relative;
  max-width: 1460px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-work__inner {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 599px) {
  .top-work__inner {
    padding-bottom: 55px;
  }
}
.top-work__en-title {
  position: absolute;
  bottom: 30px;
  left: -10px;
  color: #fff;
  font-size: 20rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1200px) {
  .top-work__en-title {
    font-size: 15vw;
  }
}
@media screen and (max-width: 834px) {
  .top-work__en-title {
    top: 0;
    right: -30px;
    bottom: auto;
    left: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-work__en-title {
    font-size: 18vw;
    position: relative;
    top: 0px;
    right: 0px;
    left: 0;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 20px;
  }
}
.top-work__image {
  max-width: 619px;
  width: 48%;
}
@media screen and (max-width: 834px) {
  .top-work__image {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.top-work__content {
  flex: 1;
  margin-top: 40px;
  padding-right: 15%;
}
@media screen and (max-width: 1024px) {
  .top-work__content {
    margin-top: 0;
    padding-right: 0;
  }
}
.top-work__title {
  margin-bottom: 25px;
  padding-top: 35px;
  color: #000;
  font-size: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-work__title {
    padding-top: 30px;
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-work__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-work__title {
    padding-top: 20px;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
  }
}
.top-work__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 599px) {
  .top-work__title::before {
    width: 30px;
    right: 0;
    margin: auto;
  }
}
.top-work__text {
  margin-bottom: 40px;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .top-work__text {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-work__text {
    letter-spacing: 0;
    padding: 0px 20px;
    line-height: 1.6;
  }
}
.top-work__btn {
  display: block;
  max-width: 220px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .top-work__btn {
    position: absolute;
    margin: 0 auto;
    bottom: 0;
    max-width: 100%;
  }
}

.top-environment {
  position: relative;
  padding: 130px 50px;
  background: #EEFDF7;
  background: linear-gradient(180deg, rgb(238, 253, 247) 0%, rgb(238, 253, 247) 87%, rgb(255, 255, 255) 90%);
}
@media screen and (max-width: 1024px) {
  .top-environment {
    padding: 110px 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-environment {
    padding: 80px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment {
    padding: 45px 20px 0px;
    background: #EEFDF7 !important;
  }
}
.top-environment::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 370px;
  background-image: url(../img/common/bg_nami.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  transform: rotate(180deg);
}
@media screen and (max-width: 599px) {
  .top-environment::before {
    background-image: url(../img/common/bg_nami_long.svg);
    background-position: center top;
    height: 150px;
  }
}
.top-environment__en-title {
  position: absolute;
  top: 170px;
  right: 0;
  color: #acf3d9;
  font-size: 17rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1200px) {
  .top-environment__en-title {
    font-size: 14vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-environment__en-title {
    top: 130px;
    font-size: 12vw;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__en-title {
    top: 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__en-title {
    font-size: 14.5vw;
    position: relative;
    top: 0px;
  }
}
.top-environment__inner {
  max-width: 1600px;
  margin: 0 auto;
}
.top-environment__head {
  width: 37%;
  margin: 0 90px 70px;
}
@media screen and (max-width: 1700px) {
  .top-environment__head {
    margin: 0 0 70px;
  }
}
@media screen and (max-width: 1024px) {
  .top-environment__head {
    width: 45%;
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__head {
    width: 100%;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__head {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
  }
}
.top-environment__head__title {
  position: relative;
  margin-bottom: 25px;
  padding-top: 35px;
  color: #000;
  font-size: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-environment__head__title {
    padding-top: 30px;
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__head__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__head__title {
    padding-top: 20px;
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
}
.top-environment__head__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 599px) {
  .top-environment__head__title::before {
    width: 30px;
    right: 0;
    margin: auto;
  }
}
.top-environment__head__text {
  margin-bottom: 40px;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .top-environment__head__text {
    padding: 0 20px;
    margin-bottom: 20px;
    line-height: 1.6;
    letter-spacing: 0;
  }
}
.top-environment__list {
  display: flex;
  gap: 0 3.2%;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .top-environment__list {
    gap: 0 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__list {
    gap: 0 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__list {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 55px;
  }
}
.top-environment__list__item {
  width: 33.3%;
}
@media screen and (max-width: 599px) {
  .top-environment__list__item {
    flex: auto;
  }
}
.top-environment__list__link {
  display: block;
  position: relative;
  height: 100%;
  padding: 10px;
  border-radius: 0 0 50px 0;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .top-environment__list__link {
    padding: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__list__link {
    display: flex;
    border-radius: 0 0 25px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
}
.top-environment__list__link::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  margin: auto 0;
  background-image: url(../img/common/arrow_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border: 1px solid #ccc;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .top-environment__list__link::after {
    right: 25px;
    bottom: 25px;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__list__link::after {
    right: 15px;
    bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__list__link::after {
    width: 30px;
    height: 30px;
    background-size: 9px auto;
  }
}
@media screen and (min-width: 1025px) {
  .top-environment__list__link:hover {
    transform: translateY(-20px);
  }
}
.top-environment__list__link.no-link::after {
  opacity: 0.4;
}
@media screen and (max-width: 599px) {
  .top-environment__list__image {
    width: 80px;
    height: 80px;
  }
}
.top-environment__list__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-environment__list__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 30px;
  color: #000;
  font-size: 3.6rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-environment__list__body {
    padding: 35px 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__list__body {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__list__body {
    padding: 12px 20px;
  }
}
.no-link .top-environment__list__body {
  opacity: 0.5;
}
.top-environment__list__sub {
  font-size: 2.8rem;
  margin-bottom: 2px;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1024px) {
  .top-environment__list__sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__list__sub {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__list__sub {
    font-size: 1.3rem;
  }
}
.top-environment__list__title {
  font-size: 3.6rem;
}
@media screen and (max-width: 1024px) {
  .top-environment__list__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__list__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__list__title {
    font-size: 2rem;
  }
}
.top-environment__box {
  position: relative;
  margin-bottom: 120px;
  padding: 80px;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1400px) {
  .top-environment__box {
    padding: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-environment__box {
    margin-bottom: 90px;
    padding: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__box {
    margin-bottom: 60px;
    padding: 60px 40px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box {
    padding: 0px 0px 75px 0px;
    background-color: transparent;
    box-shadow: none;
    margin-bottom: 50px;
  }
}
.top-environment__box__head {
  display: flex;
  align-items: center;
  gap: 0 5.5%;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__head {
    flex-wrap: wrap;
    gap: 0 5%;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__head {
    text-align: center;
    justify-content: center;
    margin-bottom: 25px;
  }
}
.top-environment__box__head__catch {
  color: #000;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__head__catch {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__head__catch {
    line-height: 1.7;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
.top-environment__box__head__catch > span {
  font-size: 4.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__head__catch > span {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__head__catch > span {
    font-size: 2.4rem;
  }
}
.top-environment__box__head__text {
  width: 38%;
  color: #444;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__head__text {
    width: 40%;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__box__head__text {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__head__text {
    padding: 0px 20px;
    text-align: left;
    letter-spacing: 0;
    line-height: 1.6;
  }
}
.top-environment__box__head__btn {
  max-width: 240px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__head__btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__head__btn {
    max-width: 100%;
    position: absolute;
    bottom: 0;
  }
}
.top-environment__box__list {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1400px) {
  .top-environment__box__list {
    gap: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__list {
    gap: 10px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
}
.top-environment__box__list > li:nth-of-type(1), .top-environment__box__list > li:nth-of-type(2) {
  width: 24.3%;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list > li:nth-of-type(1), .top-environment__box__list > li:nth-of-type(2) {
    width: calc((99.9% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__list > li:nth-of-type(1), .top-environment__box__list > li:nth-of-type(2) {
    width: calc((99.9% - 10px) / 2);
  }
}
.top-environment__box__list > li:nth-of-type(3) {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list > li:nth-of-type(3) {
    display: flex;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__list > li:nth-of-type(3) {
    gap: 10px;
  }
}
.top-environment__box__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 4.5% 3% 3.5%;
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 1400px) {
  .top-environment__box__list__item {
    padding: 6.5% 3% 3.5%;
  }
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list__item {
    padding: 6% 7% 3.5%;
    border-bottom-right-radius: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__list__item {
    padding-top: 12.5%;
    border-bottom-right-radius: 25px;
  }
}
.top-environment__box__list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border: 60px solid transparent;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list__item::before {
    width: 90px;
    height: 90px;
    border-width: 45px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__list__item::before {
    width: 40px;
    height: 40px;
    border-width: 30px;
  }
}
.top-environment__box__list__item::after {
  content: "Q";
  position: absolute;
  top: 20px;
  left: 22px;
  color: #fff;
  font-family: "Roboto", sans-serif !important;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list__item::after {
    top: 14px;
    left: 18px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__list__item::after {
    top: 10px;
    left: 10px;
    font-size: 2rem;
  }
}
.top-environment__box__list__item.item01 {
  background-color: #def0fa;
}
.top-environment__box__list__item.item01::before {
  border-top-color: #67b3e0;
  border-left-color: #67b3e0;
}
.top-environment__box__list__item.item02 {
  background-color: #faefde;
}
.top-environment__box__list__item.item02::before {
  border-top-color: #f9972f;
  border-left-color: #f9972f;
}
.top-environment__box__list__item.item03 {
  margin-bottom: 50px;
  background-color: #fee5ed;
}
@media screen and (max-width: 1400px) {
  .top-environment__box__list__item.item03 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list__item.item03 {
    flex: 1;
    margin-bottom: 0;
  }
}
.top-environment__box__list__item.item03::before {
  border-top-color: #ef90af;
  border-left-color: #ef90af;
}
.top-environment__box__list__item.item04 {
  background-color: #cbf8e4;
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list__item.item04 {
    flex: 1;
  }
}
.top-environment__box__list__item.item04::before {
  border-top-color: #5dd9ab;
  border-left-color: #5dd9ab;
}
.top-environment__box__list__item.row {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: calc((99.9% - 50px) / 2);
}
@media screen and (max-width: 1400px) {
  .top-environment__box__list__item.row {
    height: calc((99.9% - 30px) / 2);
  }
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list__item.row {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
  }
}
.top-environment__box__list__text {
  position: relative;
  width: 7em;
  margin: 0 0 25px;
  color: #000;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: justify;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 1300px) {
  .top-environment__box__list__text {
    font-size: 2.3rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 1024px) {
  .top-environment__box__list__text {
    width: 100%;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__box__list__text {
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    margin-bottom: 15px !important;
  }
}
.row .top-environment__box__list__text {
  margin: 0 50px;
}
@media screen and (max-width: 1024px) {
  .row .top-environment__box__list__text {
    margin: 0 0 25px;
  }
}
.top-environment__box__list__text span {
  letter-spacing: -0.08em;
}
@media screen and (max-width: 599px) {
  .top-environment__box__list__image {
    width: 75% !important;
  }
}
@media screen and (max-width: 1024px) {
  .row .top-environment__box__list__image {
    max-width: 266px;
    width: 100%;
  }
}
.top-environment__box__list__image > img {
  width: 100%;
}
.top-environment__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .top-environment__buttons {
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__buttons {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__buttons {
    flex-direction: column;
    margin: 0 -20px;
    padding: 35px 20px;
    background-color: #fff;
  }
}
.top-environment__buttons__item {
  max-width: 520px;
  width: 100%;
}
.top-environment__buttons__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-radius: 8px;
  color: #fff;
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .top-environment__buttons__btn {
    font-size: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__buttons__btn {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__buttons__btn {
    font-size: 1.5rem;
    padding: 10px 50px;
    border-radius: 5px;
  }
}
.top-environment__buttons__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 50px;
  height: 50px;
  margin: auto 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .top-environment__buttons__btn::after {
    right: 25px;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__buttons__btn::after {
    right: 15px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__buttons__btn::after {
    width: 28px;
    height: 28px;
  }
}
.item01 .top-environment__buttons__btn {
  background: linear-gradient(90deg, #5688e1, #4db5ec);
  text-shadow: 2px 3px 3px rgba(36, 84, 222, 0.4);
}
.item01 .top-environment__buttons__btn::after {
  background-image: url(../img/common/arrow_l_blue.png);
}
.item02 .top-environment__buttons__btn {
  background: linear-gradient(90deg, #fb7b88, #fda657);
  text-shadow: 2px 3px 3px rgba(245, 92, 0, 0.4);
}
.item02 .top-environment__buttons__btn::after {
  background-image: url(../img/common/arrow_orange.png);
}
.top-environment__buttons__btn > span {
  display: inline-block;
  margin-right: 20px;
  font-size: 3rem;
  letter-spacing: -0.04em;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .top-environment__buttons__btn > span {
    margin-right: 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-environment__buttons__btn > span {
    margin-right: 10px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-environment__buttons__btn > span {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .top-environment__buttons__btn:hover {
    transform: translateY(-10px);
  }
}

.top-sns {
  padding: 110px 50px 120px;
  background-color: #fff;
  background-image: url(../img/top/top_sns_ph.webp);
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (max-width: 1400px) {
  .top-sns {
    padding: 70px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-sns {
    background-position: -100px 0px;
  }
}
@media screen and (max-width: 834px) {
  .top-sns {
    padding: 50px 30px 60px 30px;
    background-position: -200px 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-sns {
    background-image: url(../img/top/top_sns_ph_sp.webp);
    background-size: 100% auto;
    background-position: 0 0;
    padding: 170px 20px 0px;
    background-color: transparent;
  }
}
.top-sns__inner {
  max-width: 1220px;
  margin: 0 auto;
}
.top-sns__content {
  position: relative;
  max-width: 560px;
  margin-left: auto;
  padding-top: 35px;
}
@media screen and (max-width: 1300px) {
  .top-sns__content {
    max-width: 500px;
  }
}
@media screen and (max-width: 834px) {
  .top-sns__content {
    max-width: none;
    margin-left: 340px;
  }
}
@media screen and (max-width: 599px) {
  .top-sns__content {
    margin-left: 0;
    padding-top: 20px;
  }
}
.top-sns__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 599px) {
  .top-sns__content::before {
    right: 0;
    margin: auto;
    width: 40px;
  }
}
.top-sns__copy {
  margin-bottom: 10px;
  color: #000;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .top-sns__copy {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .top-sns__copy {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-sns__copy {
    font-size: 1.4rem;
    text-align: center;
  }
}
.top-sns__title {
  margin-bottom: 15px;
  font-size: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-sns__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .top-sns__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-sns__title {
    text-align: center;
    font-size: 2.8rem;
  }
}
.top-sns__title > span {
  font-size: 5.6rem;
}
@media screen and (max-width: 1024px) {
  .top-sns__title > span {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-sns__title > span {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-sns__title > span {
    font-size: 3rem;
  }
}
.top-sns__text {
  margin-bottom: 40px;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .top-sns__text {
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-sns__text {
    padding: 0px 20px;
    letter-spacing: 0;
    margin-bottom: 40px;
  }
}
.top-sns__btns {
  display: flex;
  width: 100%;
  height: 58px;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .top-sns__btns {
    height: 46px;
    gap: 12px;
  }
}
@media screen and (max-width: 834px) {
  .top-sns__btns {
    flex-direction: column;
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
  }
}
.top-sns__btns__item {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .top-sns__btns__item {
    height: 60px;
  }
}
@media screen and (max-width: 834px) {
  .top-sns__btns__item {
    height: 50px;
  }
}
.top-sns__btns__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 270px;
  height: 100%;
  padding: 0 50px 0 60px;
  background-color: #37456a;
  border-radius: 40px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .top-sns__btns__btn {
    width: 240px;
    padding: 20px 25px 20px 55px;
  }
}
@media screen and (max-width: 834px) {
  .top-sns__btns__btn {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-sns__btns__btn {
    background-position: center left 10px;
  }
}
.top-sns__btns__btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-repeat: no-repeat;
  background-size: 100%;
}
.top-sns__btns__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 12px;
  height: 6px;
  margin: auto 0;
  background-image: url(../img/common/arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s;
}
.top-sns__btns__btn.line::before {
  left: 33px;
  width: 29px;
  height: 29px;
  background-image: url(../img/common/icon_line.svg);
  border-radius: 4px;
}
.top-sns__btns__btn.ig::before {
  left: 29px;
  width: 29px;
  height: 29px;
  background-image: url(../img/common/icon_ig.svg);
}
@media screen and (min-width: 1025px) {
  .top-sns__btns__btn:hover {
    opacity: 0.8;
  }
}

/*--------------------------------------------------------
news
----------------------------------------------------------*/
.news-list__item {
  border-bottom: 1px solid #ddd;
}
.news-list__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 40px 55px 40px 20px;
  color: #444;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .news-list__link {
    padding: 20px 45px 20px 0;
  }
}
.news-list__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  width: 50px;
  height: 50px;
  margin: auto 0;
  background-image: url(../img/common/arrow_blue.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border: 1px solid #ccc;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .news-list__link::after {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .news-list__link:hover {
    background-color: #e7f4fc;
  }
  .news-list__link:hover::after {
    background-color: #fff;
  }
  .news-list__link:hover .news-list__category {
    background-color: #fff;
  }
}
.news-list__category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  padding: 10px;
  background-color: #f3f3f3;
  border-radius: 40px;
  transition: 0.3s;
  color: #444;
}
@media screen and (max-width: 834px) {
  .news-list__category {
    width: 130px;
    margin-right: 1.5em;
    padding: 6px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .news-list__category {
    width: 110px;
    margin-right: 1em;
    padding: 3px;
  }
}
.news-list__date {
  width: 22%;
  text-align: center;
  color: #444;
}
@media screen and (max-width: 834px) {
  .news-list__date {
    width: auto;
  }
}
.news-list__title {
  flex: 1;
  letter-spacing: 0.04em;
  color: #444;
}
@media screen and (max-width: 1200px) {
  .news-list__title {
    flex: auto;
    width: 100%;
    margin-top: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .news-list__title {
    flex: 1;
    width: auto;
    margin-top: 0;
  }
}
@media screen and (max-width: 834px) {
  .news-list__title {
    flex: auto;
    width: 100%;
    margin-top: 12px;
  }
}

.news-ttl-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 40px 50px;
  background-color: #ebf7fe;
}
@media screen and (max-width: 1024px) {
  .news-ttl-wrapper {
    margin-bottom: 50px;
    padding: 30px 40px;
  }
}
@media screen and (max-width: 834px) {
  .news-ttl-wrapper {
    margin-bottom: 40px;
    padding: 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .news-ttl-wrapper {
    margin-bottom: 30px;
    padding: 15px 20px;
  }
}
.news-ttl-wrapper__category {
  width: 180px;
  height: 48px;
  margin-right: 25px;
  background-color: #fff;
  border-radius: 40px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 50px;
}
@media screen and (max-width: 599px) {
  .news-ttl-wrapper__category {
    font-size: 1.4rem;
    width: 110px;
    height: 28px;
    line-height: 28px;
  }
}
.news-ttl-wrapper__date {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .news-ttl-wrapper__date {
    font-size: 1.5rem;
  }
}
.news-ttl-wrapper__title {
  width: 100%;
  margin-top: 25px;
  font-size: 2.6rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .news-ttl-wrapper__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .news-ttl-wrapper__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .news-ttl-wrapper__title {
    margin-top: 8px;
    font-size: 2rem;
  }
}
.news-ttl-wrapper .icon-new {
  margin-left: 1.2em;
}
@media screen and (max-width: 599px) {
  .news-ttl-wrapper .icon-new {
    margin-left: 1.5em;
  }
}

.icon-new {
  margin-left: 1.3em;
  color: #d00347;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/*--------------------------------------------------------
about
----------------------------------------------------------*/
.about-greeting {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .about-greeting {
    margin-bottom: 40px;
  }
}
.about-greeting__inr {
  display: flex;
  flex-direction: row-reverse;
  gap: 0px 45px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .about-greeting__inr {
    gap: 0px 35px;
  }
}
@media screen and (max-width: 834px) {
  .about-greeting__inr {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.about-greeting__image01 {
  width: 42%;
  max-width: 460px;
  padding-top: 10px;
}
@media screen and (max-width: 1024px) {
  .about-greeting__image01 {
    max-width: 360px;
  }
}
@media screen and (max-width: 834px) {
  .about-greeting__image01 {
    padding-top: 0;
    width: 75%;
    max-width: inherit;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__image01 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about-greeting__image01 .sign {
  font-size: 1.4rem;
  margin-top: 15px;
  margin-right: 10px;
  text-align: right;
}
@media screen and (max-width: 599px) {
  .about-greeting__image01 .sign {
    font-size: 1.3rem;
  }
}
.about-greeting__image01 .sign span {
  font-size: 2.9rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  margin-left: 18px;
}
@media screen and (max-width: 1024px) {
  .about-greeting__image01 .sign span {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__image01 .sign span {
    font-size: 2rem;
  }
}
.about-greeting__image02 {
  width: 32%;
  max-width: 340px;
}
@media screen and (max-width: 834px) {
  .about-greeting__image02 {
    width: 70%;
    margin: 15px auto 0 auto;
    max-width: inherit;
  }
}
@media screen and (max-width: 599px) {
  .about-greeting__image02 {
    width: 100%;
  }
}
.about-greeting__box {
  flex: 1;
}
.about-greeting__box .text-catch {
  line-height: 1.5;
  margin-bottom: 10px;
}
.about-greeting__catch {
  font-size: 2.5rem;
}
.about-greeting__text {
  line-height: 1.85;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .about-greeting__text {
    margin-bottom: 15px;
  }
}

.about-spirit {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .about-spirit {
    margin-bottom: 40px;
  }
}
.about-spirit__image {
  margin: 50px 0px;
}
@media screen and (max-width: 599px) {
  .about-spirit__image {
    margin: 30px 0px 35px;
  }
}
.about-spirit__list {
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 834px) {
  .about-spirit__list {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-spirit__list {
    flex-direction: column;
    gap: 25px;
  }
}
.about-spirit__list__box {
  width: -webkit-calc( ( 100% - 40px ) / 2 );
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 834px) {
  .about-spirit__list__box {
    width: -webkit-calc( ( 100% - 20px ) / 2 );
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .about-spirit__list__box {
    width: 100%;
  }
}
.about-spirit__list__box:nth-child(1) .about-spirit__list__ttl {
  border-left-color: #97dcb3;
  color: #1b8f4a;
}
.about-spirit__list__box:nth-child(2) .about-spirit__list__ttl {
  border-left-color: #f1c291;
  color: #b75e00;
}
.about-spirit__list__box:nth-child(3) .about-spirit__list__ttl {
  border-left-color: #9ccfee;
  color: #1c78b0;
}
.about-spirit__list__box:nth-child(4) .about-spirit__list__ttl {
  border-left-color: #eeb8ca;
  color: #c5567b;
}
.about-spirit__list__box:nth-child(5) .about-spirit__list__ttl {
  border-left-color: #c8b8dd;
  color: #8c6db4;
}
.about-spirit__list__ttl {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  padding: 25px 25px 0px;
  border-top: 1px solid #bcbcbc;
  margin-bottom: 12px;
  border-left: 4px solid #333;
}
@media screen and (max-width: 834px) {
  .about-spirit__list__ttl {
    font-size: 2.1rem;
    padding: 20px 18px 0px;
  }
}
@media screen and (max-width: 599px) {
  .about-spirit__list__ttl {
    font-size: 1.7rem;
    padding: 16px 12px 0px;
    margin-bottom: 10px;
    border-left-width: 3px;
  }
}
.about-spirit__list__text {
  padding-left: 29px;
  font-size: 1.5rem;
}
@media screen and (max-width: 834px) {
  .about-spirit__list__text {
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-spirit__list__text {
    padding-left: 16px;
    font-size: 1.4rem;
  }
}

.about-data {
  background-color: #9ccfee;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 15px 30px 30px;
  margin-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .about-data {
    padding: 10px 20px 20px;
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  .about-data {
    flex-direction: column;
    gap: 8px 15px;
    padding: 12px;
    margin-bottom: 45px;
  }
}
.about-data__box {
  width: -webkit-calc( ( 100% - 20px ) / 2 );
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 599px) {
  .about-data__box {
    width: 100%;
  }
}

.about-important {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .about-important {
    margin-bottom: 35px;
  }
}
.about-important__catch {
  font-size: 2.8rem;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  color: #0482cc;
  margin-bottom: 30px;
}
@media screen and (max-width: 834px) {
  .about-important__catch {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .about-important__catch {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.about-important__block {
  margin-top: 15px;
}
@media screen and (max-width: 599px) {
  .about-important__block {
    margin-top: 10px;
  }
}
.about-important__block:has(> .active) {
  padding-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .about-important__block:has(> .active) {
    padding-bottom: 10px;
  }
}
.about-important__ttl {
  position: relative;
  background-color: #3d9dd7;
  color: #fff;
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.4;
  padding: 25px 45px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .about-important__ttl {
    font-size: 2rem;
    padding: 20px 40px;
  }
}
@media screen and (max-width: 599px) {
  .about-important__ttl {
    font-size: 1.8rem;
    padding: 15px 22px;
  }
}
.about-important__ttl.active {
  background-color: #6bb5e0;
}
@media screen and (min-width: 1025px) {
  .about-important__ttl:hover {
    opacity: 0.85;
  }
}
.about-important__ttl::before, .about-important__ttl::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 35px;
  bottom: 0;
  width: 36px;
  height: 2px;
  margin: auto;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .about-important__ttl::before, .about-important__ttl::after {
    width: 28px;
    right: 27px;
  }
}
@media screen and (max-width: 599px) {
  .about-important__ttl::before, .about-important__ttl::after {
    right: 15px;
    width: 20px;
  }
}
.about-important__ttl::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.about-important__ttl.active::after {
  transform: rotate(0deg);
}
.about-important__ttl span::before {
  background: #fff;
  content: "";
  height: 70%;
  width: 4px;
  left: 20px;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 599px) {
  .about-important__ttl span::before {
    left: 10px;
    width: 2px;
  }
}
.about-important__body {
  display: none;
  padding: 30px;
  background-color: #ebf7fe;
}
@media screen and (max-width: 834px) {
  .about-important__body {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-important__body {
    padding: 15px;
  }
}
.about-important__body__inr {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  .about-important__body__inr {
    padding: 40px;
  }
}
@media screen and (max-width: 834px) {
  .about-important__body__inr {
    padding: 35px;
  }
}
@media screen and (max-width: 599px) {
  .about-important__body__inr {
    padding: 20px;
    border-radius: 8px;
  }
}
.about-important__body__inr.two-column {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 834px) {
  .about-important__body__inr.two-column {
    flex-direction: column;
    gap: 20px;
  }
}
.about-important__body__content {
  flex: 1;
}
.about-important__body__content .catch {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .about-important__body__content .catch {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }
}
.about-important__body__content .text {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .about-important__body__content .text {
    font-size: 1.4rem;
  }
}
.about-important__body__content .motto-text {
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 1024px) {
  .about-important__body__content .motto-text {
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 834px) {
  .about-important__body__content .motto-text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  .about-important__body__content .motto-text {
    letter-spacing: 0;
    font-size: 1.5rem;
  }
}
.about-important__body__image {
  width: 40%;
  max-width: 340px;
}
@media screen and (max-width: 834px) {
  .about-important__body__image {
    width: 80%;
    max-width: inherit;
    margin: 20px auto 0px;
  }
}
@media screen and (max-width: 599px) {
  .about-important__body__image {
    width: 100%;
    margin-top: 0;
  }
}
.about-important__list__item {
  position: relative;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  padding-left: 24px;
}
@media screen and (max-width: 1024px) {
  .about-important__list__item {
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-important__list__item {
    font-size: 1.4rem;
    padding-left: 14px;
    margin-bottom: 10px;
  }
}
.about-important__list__item:last-child {
  margin-bottom: 0;
}
.about-important__list__item::before {
  background: #0482cc;
  content: "";
  height: 12px;
  width: 12px;
  left: 0;
  position: absolute;
  top: 4px;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .about-important__list__item::before {
    top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .about-important__list__item::before {
    height: 9px;
    width: 9px;
    top: 5px;
    left: -4px;
  }
}

.about-btn {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.about-btn__item {
  width: 330px;
}
.about-btn__item .btn-base {
  width: 100%;
}

/*--------------------------------------------------------
project
----------------------------------------------------------*/
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .project-list {
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .project-list {
    gap: 14px;
  }
}
.project-list__item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 1024px) {
  .project-list__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 834px) {
  .project-list__item {
    width: calc(50% - 7px);
  }
}
@media screen and (max-width: 599px) {
  .project-list__item {
    width: 100%;
  }
}
.project-list__link {
  display: block;
  position: relative;
  height: 100%;
  padding: 10px;
  border-radius: 0 0 50px 0;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .project-list__link {
    padding: 8px;
  }
}
@media screen and (max-width: 599px) {
  .project-list__link {
    display: flex;
    border-radius: 0 0 25px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
}
.project-list__link::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  margin: auto 0;
  background-image: url(../img/common/arrow_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border: 1px solid #ccc;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .project-list__link::after {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .project-list__link::after {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .project-list__link::after {
    right: 10px;
    bottom: 10px;
    width: 25px;
    height: 25px;
    background-size: 9px auto;
  }
}
@media screen and (min-width: 1025px) {
  .project-list__link:hover {
    transform: translateY(-20px);
  }
}
.project-list__image {
  width: 100%;
  overflow: hidden;
}
.project-list__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 34/23;
  -o-object-fit: cover;
  object-fit: cover;
  backface-visibility: hidden;
}
.project-list__body {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 25px 20px 50px;
  color: #444;
  letter-spacing: normal;
}
@media screen and (max-width: 1500px) {
  .project-list__body {
    min-height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .project-list__body {
    padding: 20px 10px 50px;
  }
}
@media screen and (max-width: 834px) {
  .project-list__body {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .project-list__body {
    flex: 1;
    padding: 3px 8px 25px 15px;
  }
}
.project-list__profile {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .project-list__profile {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .project-list__profile {
    margin-bottom: 5px;
  }
}
.project-list__profile__work {
  margin-bottom: 3px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .project-list__profile__work {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .project-list__profile__work {
    margin-bottom: 0;
  }
}
.project-list__profile__name {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .project-list__profile__name {
    font-size: 1.3rem;
  }
}
.project-list__title {
  padding-right: 20px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1500px) {
  .project-list__title {
    font-size: 1.73vw;
  }
}
@media screen and (max-width: 1024px) {
  .project-list__title {
    padding-right: 0;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .project-list__title {
    font-size: 1.8rem;
  }
}

/* 詳細 */
.project-ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .project-ttl {
    margin-bottom: 20px;
  }
}
.project-ttl .title-sec01 {
  padding-bottom: 10px;
  margin-bottom: 14px;
}
@media screen and (max-width: 599px) {
  .project-ttl .title-sec01 {
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
.project-ttl__work {
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .project-ttl__work {
    font-size: 1.4rem;
    font-weight: 500;
  }
}

.project-anchor {
  margin: 55px 0px 75px;
  padding: 35px;
  background-color: #ebf7fe;
}
@media screen and (max-width: 1024px) {
  .project-anchor {
    margin: 40px 0px 60px;
    padding: 28px 15px;
  }
}
@media screen and (max-width: 834px) {
  .project-anchor {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .project-anchor {
    margin: 30px 0px 40px;
    flex-direction: column;
  }
}
.project-anchor__list {
  margin: 0px !important;
  padding: 0px !important;
  display: flex;
  gap: 14px;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .project-anchor__list {
    gap: 8px;
  }
}
@media screen and (max-width: 834px) {
  .project-anchor__list {
    gap: 10px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .project-anchor__list {
    gap: 8px;
  }
}
.project-anchor__list__item {
  list-style: none;
  flex: 1;
}
@media screen and (max-width: 834px) {
  .project-anchor__list__item {
    flex: auto;
    width: -webkit-calc( ( 100% - 10px ) / 2 );
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .project-anchor__list__item {
    width: 100%;
  }
}
.project-anchor__list__item a {
  position: relative;
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 50px;
  padding: 15px 42px 15px 35px;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(49, 98, 127, 0.1);
}
@media screen and (max-width: 1024px) {
  .project-anchor__list__item a {
    padding: 15px 32px 15px 20px;
  }
}
@media screen and (max-width: 834px) {
  .project-anchor__list__item a {
    padding: 12px 42px 12px 35px;
  }
}
.project-anchor__list__item a::before {
  border: 1px solid #ccc;
  border-radius: 50px;
  background-image: url(../img/common/arrow_nav_blue.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center center;
  content: "";
  height: 20px;
  width: 20px;
  right: 20px;
  position: absolute;
  top: 20px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1024px) {
  .project-anchor__list__item a::before {
    right: 12px;
  }
}
@media screen and (max-width: 834px) {
  .project-anchor__list__item a::before {
    top: 18px;
    right: 22px;
  }
}

.project-original {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .project-original {
    gap: 25px;
  }
}
@media screen and (max-width: 834px) {
  .project-original {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .project-original {
    flex-direction: column;
  }
}
.project-original__box {
  position: relative;
  flex: 1;
  border-top: 1px solid #999999;
}
.project-original__box.bg01 {
  background-color: #ebf7fe;
}
.project-original__box.bg02 {
  background-color: #ecf4e5;
}
.project-original__box::before {
  background: #3f3f3f;
  content: "";
  height: 4px;
  width: 40%;
  left: 0;
  position: absolute;
  top: -1px;
}
@media screen and (max-width: 599px) {
  .project-original__box::before {
    height: 3px;
  }
}
.project-original__ttl {
  padding: 40px 40px 35px !important;
  font-size: 2rem !important;
  font-weight: 500;
  line-height: 1.6 !important;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .project-original__ttl {
    padding: 35px 35px 30px !important;
  }
}
@media screen and (max-width: 834px) {
  .project-original__ttl {
    font-size: 1.8rem !important;
    padding: 26px 25px 22px !important;
  }
}
@media screen and (max-width: 599px) {
  .project-original__ttl {
    font-size: 1.6rem !important;
    padding: 20px 25px 16px !important;
  }
}
.bg01 .project-original__ttl {
  background-color: #cfe9f8;
}
.bg02 .project-original__ttl {
  background-color: #d6edc1;
}
.project-original__body {
  padding: 42px 50px 50px;
}
@media screen and (max-width: 1024px) {
  .project-original__body {
    padding: 32px 35px 40px;
  }
}
@media screen and (max-width: 834px) {
  .project-original__body {
    padding: 25px 25px 30px;
  }
}
@media screen and (max-width: 599px) {
  .project-original__body {
    padding: 20px 20px 25px;
  }
}

/*--------------------------------------------------------
work
----------------------------------------------------------*/
.work-lead {
  display: flex;
  margin-bottom: 55px;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .work-lead {
    gap: 45px;
  }
}
@media screen and (max-width: 834px) {
  .work-lead {
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .work-lead {
    gap: 25px;
  }
}
.work-lead__image {
  max-width: 460px;
}
@media screen and (max-width: 1500px) {
  .work-lead__image {
    max-width: 38%;
  }
}
@media screen and (max-width: 834px) {
  .work-lead__image {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .work-lead__image {
    max-width: 100%;
  }
}
.sub .work-lead__image {
  max-width: 340px;
}
@media screen and (max-width: 1500px) {
  .sub .work-lead__image {
    max-width: 34%;
  }
}
@media screen and (max-width: 834px) {
  .sub .work-lead__image {
    max-width: 64%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .sub .work-lead__image {
    max-width: 100%;
  }
}
.work-lead__body {
  flex: 1;
}
.work-lead__body .text-lead, .work-lead__body .text-base {
  text-align: justify;
}

.work-style {
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .work-style {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .work-style {
    margin-bottom: 35px;
    flex-direction: column;
    gap: 25px;
  }
}
.work-style__item {
  width: -webkit-calc( ( 100% - 30px ) / 2 );
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 599px) {
  .work-style__item {
    width: 100%;
  }
}
.work-style__image {
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .work-style__image {
    margin-bottom: 20px;
  }
}
.work-style__body {
  padding-right: 10px;
}
@media screen and (max-width: 1024px) {
  .work-style__body {
    padding-right: 0;
  }
}
.work-style__body .text-base {
  letter-spacing: 0;
}
.work-style__title {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  padding-left: 28px;
}
@media screen and (max-width: 599px) {
  .work-style__title {
    font-size: 1.6rem;
    padding-left: 24px;
    margin-bottom: 12px;
  }
}
.work-style__title::before {
  border-radius: 50px;
  border: 5px solid #4d9ac8;
  content: "";
  height: 18px;
  width: 18px;
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .work-style__title::before {
    height: 16px;
    width: 16px;
    border-width: 4px;
    top: 3px;
  }
}
.work-style__active {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 834px) {
  .work-style__active {
    gap: 30px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .work-style__active {
    gap: 25px;
    flex-direction: column;
  }
}
.work-style__active.column2 {
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .work-style__active.column2 {
    gap: 25px;
  }
}
.work-style__active.column3 {
  gap: 22px;
}
@media screen and (max-width: 834px) {
  .work-style__active.column3 {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .work-style__active.column3 {
    gap: 25px;
  }
}
.work-style__active__item {
  flex: 1;
}
@media screen and (max-width: 834px) {
  .work-style__active__item {
    flex: none;
    width: calc((100% - 30px) / 2);
  }
  .work-style__active__item:nth-child(even) .work-style__active__text::before {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .work-style__active__item {
    width: 100%;
  }
}
.work-style__active__item:last-child .work-style__active__text::before {
  display: none;
}
.work-style__active__image {
  margin-bottom: 22px;
  border-bottom: 5px solid #ccc;
  overflow: hidden;
}
.work-style__active__image.bd-blue {
  border-color: #67b3e0;
}
.work-style__active__image.bd-orange {
  border-color: #f9972f;
}
.work-style__active__image.bd-pink {
  border-color: #ef90af;
}
.work-style__active__image.bd-green {
  border-color: #5dd9ab;
}
@media screen and (max-width: 599px) {
  .work-style__active__image {
    width: 84%;
    margin: 0 auto 18px;
    border-width: 4px;
  }
}
.work-style__active__image img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.column3 .work-style__active__image img {
  aspect-ratio: 4/2.7;
}
.column2 .work-style__active__image img {
  aspect-ratio: 4/2.1;
}
.work-style__active__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 18px;
}
@media screen and (max-width: 599px) {
  .work-style__active__title {
    margin-bottom: 12px;
  }
}
.work-style__active__title.long {
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  .work-style__active__title.long {
    font-size: 1.6rem;
  }
}
.work-style__active__text {
  position: relative;
  font-size: 1.4rem;
  padding: 0px 5px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .work-style__active__text {
    padding: 0px 10px;
  }
}
.column2 .work-style__active__text {
  padding: 0px 12px;
}
@media screen and (max-width: 599px) {
  .column2 .work-style__active__text {
    padding: 0px 10px;
  }
}
.column3 .work-style__active__text {
  padding: 0px 16px;
}
@media screen and (max-width: 599px) {
  .column3 .work-style__active__text {
    padding: 0px 10px;
  }
}
.work-style__active__text::before {
  background: #cccccc;
  content: "";
  height: 100%;
  width: 1px;
  right: -10px;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 834px) {
  .work-style__active__text::before {
    right: -15px;
  }
}
@media screen and (max-width: 599px) {
  .work-style__active__text::before {
    display: none;
  }
}
.column2 .work-style__active__text::before {
  right: -15px;
}
.column3 .work-style__active__text::before {
  right: -12px;
}
@media screen and (max-width: 834px) {
  .column3 .work-style__active__text::before {
    right: -15px;
  }
}

.work-charm {
  position: relative;
  border-top: 1px solid #d6d6d6;
  padding: 42px 0px 60px;
}
@media screen and (max-width: 599px) {
  .work-charm {
    padding: 28px 0px 40px;
  }
}
.work-charm.mb00 {
  padding-bottom: 0 !important;
}
.work-charm::before {
  background: #4d9ac8;
  content: "";
  height: 1px;
  width: 90px;
  left: 0;
  position: absolute;
  top: -1px;
}
.work-charm.noline {
  border-top: none;
  padding-top: 0;
}
.work-charm.noline::before {
  display: none;
}
.work-charm__lead {
  display: flex;
  margin-bottom: 70px;
  gap: 60px;
}
@media screen and (max-width: 1400px) {
  .work-charm__lead {
    gap: 45px;
  }
}
@media screen and (max-width: 834px) {
  .work-charm__lead {
    gap: 25px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .work-charm__lead {
    flex-direction: column;
  }
}
.work-charm__lead__box {
  flex: 1;
}
.work-charm__lead__image {
  width: 340px;
}
@media screen and (max-width: 1024px) {
  .work-charm__lead__image {
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  .work-charm__lead__image {
    width: 88%;
    margin: 0 auto;
  }
}
.work-charm__title {
  display: flex;
  align-items: self-start;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #0482cc;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .work-charm__title {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
}
.work-charm__title span {
  display: inline-block;
  position: relative;
  background: #4d9ac8;
  color: #fff;
  font-size: 2rem;
  padding: 3px 6px;
  margin-top: -2px;
  margin-right: 15px;
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .work-charm__title span {
    margin-top: -3px;
    font-size: 1.8rem;
  }
}
.work-charm__point {
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 1400px) {
  .work-charm__point {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .work-charm__point {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .work-charm__point {
    flex-direction: column;
    gap: 28px;
    padding: 0px 10px;
  }
}
.work-charm__point__item {
  padding: 0px 40px 30px;
  flex: 1;
  border-radius: 10px;
  background-color: #ebf7fe;
}
@media screen and (max-width: 1400px) {
  .work-charm__point__item {
    padding: 0px 30px 25px;
  }
}
@media screen and (max-width: 834px) {
  .work-charm__point__item {
    padding: 0px 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .work-charm__point__item {
    padding: 5px 25px 20px;
    border-radius: 8px;
  }
}
.work-charm__point__pt {
  padding: 8px;
  background-color: #4d9ac8;
  text-align: center;
  line-height: 1.2;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  max-width: 190px;
  margin: -20px auto 16px;
}
@media screen and (max-width: 834px) {
  .work-charm__point__pt {
    max-width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .work-charm__point__pt {
    max-width: 60%;
  }
}
.work-charm__point__pt span {
  font-size: 2.2rem;
  margin-left: 5px;
}
@media screen and (max-width: 599px) {
  .work-charm__point__pt span {
    font-size: 1.8rem;
  }
}
.work-charm__point__pt span.jp {
  font-size: 1.9rem;
  margin-left: 0px;
}
@media screen and (max-width: 599px) {
  .work-charm__point__pt span.jp {
    font-size: 1.7rem;
  }
}
.work-charm__point__text {
  font-size: 1.4rem;
}
.work-charm__img-list {
  display: flex;
  gap: 1px;
  padding-top: 8px;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .work-charm__img-list {
    margin-bottom: 25px;
  }
}
.work-charm__img-list__item {
  flex: 1;
}

.work-shedule__image {
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  .work-shedule__image {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .work-shedule__image figure {
    width: 600px;
  }
}

.work-worthwhile__item {
  display: flex;
  margin-bottom: 25px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  gap: 35px;
}
@media screen and (max-width: 834px) {
  .work-worthwhile__item {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .work-worthwhile__item {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 15px;
  }
}
.work-worthwhile__item.bg-blue {
  background-color: #e1f0f9;
}
.work-worthwhile__item.bg-orange {
  background-color: #fbedde;
}
.work-worthwhile__item.bg-pink {
  background-color: #faeaef;
}
.work-worthwhile__head {
  width: 270px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .work-worthwhile__head {
    width: 250px;
  }
}
@media screen and (max-width: 834px) {
  .work-worthwhile__head {
    width: 230px;
  }
}
@media screen and (max-width: 599px) {
  .work-worthwhile__head {
    width: 100%;
  }
}
.work-worthwhile__head .ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2rem;
  font-weight: 600;
  padding-left: 20px;
  letter-spacing: 0;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .work-worthwhile__head .ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .work-worthwhile__head .ttl {
    padding-left: 15px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .work-worthwhile__head .ttl {
    flex-direction: row;
    align-items: center;
    padding-left: 20px;
    font-size: 1.6rem;
  }
}
.work-worthwhile__head .ttl .ttl-s {
  display: block;
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .work-worthwhile__head .ttl .ttl-s {
    display: inline-block;
    margin-left: 2px;
    font-size: 1.2rem;
  }
}
.work-worthwhile__head .ttl .break {
  display: block;
}
@media screen and (max-width: 599px) {
  .work-worthwhile__head .ttl .break {
    position: relative;
    display: inline-block;
  }
  .work-worthwhile__head .ttl .break::before {
    content: "・";
  }
}
.work-worthwhile__head .image {
  display: grid;
  place-content: end;
}
@media screen and (max-width: 834px) {
  .work-worthwhile__head .image {
    padding-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .work-worthwhile__head .image {
    padding-top: 0;
    padding-right: 15px;
  }
}
.work-worthwhile__head .image img {
  height: 105px;
}
@media screen and (max-width: 1400px) {
  .work-worthwhile__head .image img {
    height: 98px;
  }
}
@media screen and (max-width: 834px) {
  .work-worthwhile__head .image img {
    height: 92px;
  }
}
@media screen and (max-width: 599px) {
  .work-worthwhile__head .image img {
    height: 70px;
  }
}
.work-worthwhile__comment {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  font-weight: 600;
  background-color: #fff;
  border-radius: 10px;
  flex: 1;
  text-align: center;
  padding: 20px 30px;
}
@media screen and (max-width: 1024px) {
  .work-worthwhile__comment {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .work-worthwhile__comment {
    padding: 18px;
  }
}
@media screen and (max-width: 599px) {
  .work-worthwhile__comment {
    border-radius: 8px;
  }
}
.bg-blue .work-worthwhile__comment {
  background-color: #67b3e0;
}
.bg-orange .work-worthwhile__comment {
  background-color: #e9a359;
}
.bg-pink .work-worthwhile__comment {
  background-color: #e894b0;
}
.work-worthwhile__comment::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 0px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14.5px 30px 14.5px 0;
}
.bg-blue .work-worthwhile__comment::before {
  border-color: transparent #67b3e0 transparent transparent;
}
.bg-orange .work-worthwhile__comment::before {
  border-color: transparent #e9a359 transparent transparent;
}
.bg-pink .work-worthwhile__comment::before {
  border-color: transparent #e894b0 transparent transparent;
}
@media screen and (max-width: 834px) {
  .work-worthwhile__comment::before {
    left: -24px;
    border-width: 12px 24px 12px 0;
  }
}
@media screen and (max-width: 599px) {
  .work-worthwhile__comment::before {
    transform: rotate(90deg);
    bottom: auto;
    right: auto;
    left: 35px;
    top: -14px;
  }
}
.work-worthwhile__comment .text {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .work-worthwhile__comment .text {
    font-size: 1.5rem;
    text-align: left;
  }
}

.work-nav {
  padding-top: 15px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .work-nav {
    margin-bottom: 30px;
  }
}
.work-nav__title {
  position: relative;
  font-size: 2.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #444;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .work-nav__title {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }
}
.work-nav__title::before, .work-nav__title::after {
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.work-nav__title::before {
  background: #d4ebf8;
  content: "";
  height: 4px;
}
.work-nav__title::after {
  border-top: 1px solid #d4ebf8;
  border-bottom: 1px solid #d4ebf8;
  content: "";
  height: 8px;
}
.work-nav__title span {
  padding: 0 35px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .work-nav__title span {
    padding: 0 15px;
  }
}
.work-nav__list {
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 834px) {
  .work-nav__list {
    gap: 0 15px;
  }
}
@media screen and (max-width: 599px) {
  .work-nav__list {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.work-nav__list__item {
  flex: 1;
}
@media screen and (max-width: 599px) {
  .work-nav__list__item {
    flex: auto;
  }
}
.work-nav__list__link {
  display: block;
  position: relative;
  height: 100%;
  padding: 10px;
  border-radius: 0 0 50px 0;
  background-color: #fff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .work-nav__list__link {
    padding: 8px;
  }
}
@media screen and (max-width: 599px) {
  .work-nav__list__link {
    display: flex;
    border-radius: 0 0 25px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
.work-nav__list__link::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  margin: auto 0;
  background-image: url(../img/common/arrow_black.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border: 1px solid #ccc;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .work-nav__list__link::after {
    right: 25px;
    bottom: 25px;
  }
}
@media screen and (max-width: 834px) {
  .work-nav__list__link::after {
    right: 15px;
    bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .work-nav__list__link::after {
    width: 32px;
    height: 32px;
    background-size: 10px auto;
  }
}
@media screen and (min-width: 1025px) {
  .work-nav__list__link:hover {
    transform: translateY(5px);
  }
}
@media screen and (max-width: 599px) {
  .work-nav__list__image {
    width: 80px;
    height: 80px;
  }
}
.work-nav__list__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.work-nav__list__body {
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
  color: #444;
  font-size: 3.6rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.4;
  height: 140px;
}
@media screen and (max-width: 1024px) {
  .work-nav__list__body {
    padding: 35px 20px;
  }
}
@media screen and (max-width: 834px) {
  .work-nav__list__body {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 599px) {
  .work-nav__list__body {
    padding: 12px 20px;
    height: auto;
    justify-content: center;
  }
}
.work-nav__list__title {
  font-size: 2.6rem;
}
@media screen and (max-width: 834px) {
  .work-nav__list__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .work-nav__list__title {
    font-size: 1.8rem;
  }
}

.work-recruit {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .work-recruit {
    width: 82%;
  }
}
@media screen and (max-width: 599px) {
  .work-recruit {
    width: 95%;
  }
}
.work-recruit__link {
  background-image: url(../img/work/pharmacist/recruit_image.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 140px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #fff;
  border-radius: 5px;
  overflow: hidden;
  line-height: 1.3;
  padding-bottom: 15px;
}
@media screen and (max-width: 834px) {
  .work-recruit__link {
    height: 120px;
  }
}
@media screen and (max-width: 599px) {
  .work-recruit__link {
    height: 80px;
    padding-bottom: 5px;
  }
}
.work-recruit__link span {
  font-family: "Noto Serif JP", serif;
  font-size: 5rem;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .work-recruit__link span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .work-recruit__link span {
    font-size: 3rem;
  }
}
.work-recruit__link:hover {
  opacity: 0.85;
}

.work-point {
  display: flex;
  gap: 54px;
  margin-top: 35px;
  padding: 42px 54px;
  background-color: #ebf7fe;
}
@media screen and (max-width: 1400px) {
  .work-point {
    gap: 30px;
    padding: 40px 40px 30px;
  }
}
@media screen and (max-width: 834px) {
  .work-point {
    gap: 25px;
    padding: 35px 35px 25px;
  }
}
@media screen and (max-width: 599px) {
  .work-point {
    flex-direction: column;
    gap: 31px;
    margin-top: 20px;
    padding: 30px 25px 20px;
  }
}
.work-point__item {
  padding: 0px 40px 30px;
  border-radius: 10px;
  background-color: #fff;
  flex: 1;
}
@media screen and (max-width: 1400px) {
  .work-point__item {
    padding: 0px 30px 25px;
  }
}
@media screen and (max-width: 834px) {
  .work-point__item {
    padding: 0px 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .work-point__item {
    padding: 5px 25px 20px;
    border-radius: 8px;
  }
}
.work-point__pt {
  margin: -20px auto 16px;
  padding: 8px;
  max-width: 190px;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  border-radius: 5px;
  background-color: #4d9ac8;
}
@media screen and (max-width: 834px) {
  .work-point__pt {
    max-width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .work-point__pt {
    max-width: 60%;
  }
}
.work-point__pt span {
  margin-left: 5px;
  font-size: 2.2rem;
}
@media screen and (max-width: 599px) {
  .work-point__pt span {
    font-size: 1.8rem;
  }
}
.work-point__pt span.jp {
  font-size: 1.9rem;
  margin-left: 0px;
}
@media screen and (max-width: 599px) {
  .work-point__pt span.jp {
    font-size: 1.7rem;
  }
}
.work-point__text {
  font-size: 1.4rem;
}

.work-explanation {
  padding: 40px;
}
@media screen and (max-width: 834px) {
  .work-explanation {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .work-explanation {
    padding: 20px;
  }
}
.work-explanation.bg-orange {
  background-color: #fbedde;
}
.work-explanation.bg-green {
  background-color: #e3fbf2;
}
.work-explanation__item {
  display: flex;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .work-explanation__item {
    flex-direction: column;
  }
}
.work-explanation__item:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 834px) {
  .work-explanation__item:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .work-explanation__item:not(:first-child) {
    margin-top: 16px;
  }
}
.work-explanation__title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 10px;
  width: 220px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 1024px) {
  .work-explanation__title {
    padding: 25px 10px;
    width: 200px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .work-explanation__title {
    width: 100%;
    font-size: 1.6rem;
    padding: 10px;
    border-radius: 8px 8px 0 0;
  }
}
.bg-orange .work-explanation__title {
  background-color: #dd8931;
}
.bg-green .work-explanation__title {
  background-color: #38b184;
}
.work-explanation__text {
  display: flex;
  align-items: center;
  padding: 25px 50px 25px 35px;
  flex: 1;
  background-color: #fff;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 1024px) {
  .work-explanation__text {
    padding: 20px 40px 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .work-explanation__text {
    padding: 16px 20px;
    border-radius: 0 0 8px 8px;
  }
}

.work-explanation02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding: 40px 50px;
}
@media screen and (max-width: 1024px) {
  .work-explanation02 {
    padding: 40px;
  }
}
@media screen and (max-width: 834px) {
  .work-explanation02 {
    gap: 16px;
    margin-top: 30px;
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .work-explanation02 {
    gap: 10px;
    margin-top: 20px;
    padding: 20px;
  }
}
.work-explanation02.bg-green {
  background-color: #e3fbf2;
}
.work-explanation02.bg-pink {
  background-color: #feecf2;
}
.work-explanation02__item {
  display: grid;
  place-content: center;
  flex: 1;
  padding: 30px 10px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .work-explanation02__item {
    padding: 25px 10px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .work-explanation02__item {
    padding: 20px 10px;
    width: calc(50% - 8px);
    flex: auto;
  }
}
@media screen and (max-width: 599px) {
  .work-explanation02__item {
    width: 100%;
    font-size: 1.6rem;
    padding: 10px;
    border-radius: 8px;
  }
}
.bg-green .work-explanation02__item {
  background-color: #38b184;
}
.bg-pink .work-explanation02__item {
  background-color: #e894b0;
}

.work-anchor {
  display: flex;
  gap: 30px;
  margin-top: -5px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .work-anchor {
    gap: 20px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .work-anchor {
    gap: 8px;
    margin-top: -15px;
    margin-bottom: 45px;
  }
}
.work-anchor__item {
  flex: 1;
}
.work-anchor__link {
  position: relative;
  display: block;
  padding: 24px 0;
  width: 100%;
  color: #37456a;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  border-radius: 100vmax;
  border: 2px solid #37456a;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .work-anchor__link {
    padding: 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .work-anchor__link {
    padding: 16px 0;
    border-width: 1px;
  }
}
.work-anchor__link::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  right: 38px;
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #37456a;
}
@media screen and (max-width: 1024px) {
  .work-anchor__link::before {
    right: 28px;
  }
}
@media screen and (max-width: 599px) {
  .work-anchor__link::before {
    right: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .work-anchor__link:hover {
    transform: translateY(5px);
  }
}

/*--------------------------------------------------------
environment
----------------------------------------------------------*/
.environment-benefits__block {
  padding: 107px 60px 0px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .environment-benefits__block {
    padding: 85px 35px 0px;
  }
}
@media screen and (max-width: 834px) {
  .environment-benefits__block {
    padding: 60px 25px 0px;
  }
}
@media screen and (max-width: 599px) {
  .environment-benefits__block {
    padding: 35px 10px 0px;
    background-size: 126% auto;
    background-position: top center;
  }
}
.environment-benefits__block.bg01 {
  background-image: url(../img/environment/benefits/benefits_bg01.webp);
}
.environment-benefits__block.bg02 {
  background-image: url(../img/environment/benefits/benefits_bg02.webp);
}
.environment-benefits__block__title {
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 105px;
  text-shadow: 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff;
}
@media screen and (max-width: 1024px) {
  .environment-benefits__block__title {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 834px) {
  .environment-benefits__block__title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__title {
    font-size: 2.5rem;
    margin-bottom: 35px;
  }
}
.environment-benefits__block__title.ttl02 {
  color: #fff;
  text-shadow: 0 0 10px #243608, 0 0 10px #243608, 0 0 10px #243608, 0 0 10px #243608, 0 0 10px #243608;
}
.environment-benefits__block__inner {
  background-color: #fff;
  padding: 48px 58px 28px;
}
@media screen and (max-width: 1024px) {
  .environment-benefits__block__inner {
    padding: 48px 38px 28px;
  }
}
@media screen and (max-width: 834px) {
  .environment-benefits__block__inner {
    padding: 38px 25px 28px;
  }
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__inner {
    padding: 32px 0px 18px;
  }
}
.environment-benefits__block__ttl {
  position: relative;
  text-align: center;
  padding-top: 26px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__ttl {
    padding-top: 18px;
    margin-bottom: 22px;
    line-height: 1.2;
  }
}
.environment-benefits__block__ttl::before {
  background: #4d9ac8;
  content: "";
  height: 4px;
  width: 60px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__ttl::before {
    height: 3px;
    width: 40px;
  }
}
.environment-benefits__block__ttl .lead {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  margin-bottom: 5px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__ttl .lead {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
.environment-benefits__block__ttl .ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.8rem;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__ttl .ttl {
    font-size: 2.2rem;
  }
}
.environment-benefits__block__list {
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .environment-benefits__block__list {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .environment-benefits__block__list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__list {
    gap: 5px;
    margin: 0px 0px 35px;
  }
}
.environment-benefits__block__list__item {
  width: calc((100% - 60px) / 3);
  border: 16px solid #e2f3fd;
  background-color: #fff;
  padding: 33px 25px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .environment-benefits__block__list__item {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (max-width: 834px) {
  .environment-benefits__block__list__item {
    border-width: 12px;
    width: calc((100% - 20px) / 3);
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__list__item {
    width: calc((100% - 10px) / 3);
    border-width: 6px;
    padding: 14px 5px 14px;
  }
}
.environment-benefits__block__list__item figure {
  width: 70px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__list__item figure {
    width: 50px;
    margin-bottom: 6px;
  }
}
.environment-benefits__block__list__item .text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__list__item .text {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
.environment-benefits__block__catch {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .environment-benefits__block__catch {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .environment-benefits__block__catch {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.environment-benefits__certification {
  position: relative;
  margin-top: 40px;
  display: flex;
}
@media screen and (max-width: 834px) {
  .environment-benefits__certification {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification {
    margin-top: 20px;
    flex-direction: column;
  }
}
.environment-benefits__certification::before {
  content: "";
  height: 100%;
  width: 2px;
  right: 0;
  position: absolute;
  top: 0px;
  background: #0178BD;
  background: linear-gradient(180deg, rgb(1, 120, 189) 0%, rgb(64, 183, 253) 100%);
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification::before {
    display: none;
  }
}
.environment-benefits__certification__box {
  position: relative;
  padding: 50px 40px 50px;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .environment-benefits__certification__box {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 834px) {
  .environment-benefits__certification__box {
    padding: 45px 25px 30px;
  }
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification__box {
    padding: 30px 5px 5px 20px;
    border-right: none;
    margin-right: 0px;
    margin-bottom: 25px;
  }
}
.environment-benefits__certification__box::before, .environment-benefits__certification__box::after {
  content: "";
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0px;
  background: #0178BD;
  background: linear-gradient(180deg, rgb(1, 120, 189) 0%, rgb(64, 183, 253) 100%);
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification__box::before, .environment-benefits__certification__box::after {
    width: 1px;
  }
}
.environment-benefits__certification__box::before {
  left: 0;
}
.environment-benefits__certification__box:after {
  display: none;
  right: 0;
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification__box:after {
    display: block;
  }
}
.environment-benefits__certification__label {
  position: absolute;
  width: 135px;
  height: 135px;
  top: 0;
  left: 0px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification__label {
    width: 125px;
    height: 125px;
  }
}
.environment-benefits__certification__label p {
  line-height: 1.3;
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  color: #fff;
  position: relative;
  padding: 12px 5px 5px 10px;
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification__label p {
    font-size: 2rem;
  }
}
.environment-benefits__certification__label p .stxt {
  display: block;
  font-size: 1rem;
}
.environment-benefits__certification__label p .en {
  display: block;
  font-size: 0.8rem;
  line-height: 0.3;
  letter-spacing: -0.01em;
}
.environment-benefits__certification__label::before {
  background: #0178BD;
  background: linear-gradient(135deg, rgb(1, 120, 189) 51%, rgb(64, 183, 253) 100%);
  content: "";
  height: calc(100% + 45px);
  width: calc(100% + 45px);
  top: -90px;
  left: -90px;
  position: absolute;
  transform: rotate(45deg);
}
.environment-benefits__certification__image {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification__image {
    width: 82%;
    margin: 0 auto 25px;
  }
}
.environment-benefits__certification__body .ttl {
  position: relative;
  margin-bottom: 20px;
  padding-left: 24px;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification__body .ttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
    padding-left: 22px;
  }
}
.environment-benefits__certification__body .ttl::before {
  background: #0178BD;
  background: linear-gradient(135deg, rgb(1, 120, 189) 20%, rgb(64, 183, 253) 100%);
  content: "";
  height: 14px;
  width: 14px;
  border-radius: 50px;
  left: 0;
  position: absolute;
  top: 6px;
}
@media screen and (max-width: 599px) {
  .environment-benefits__certification__body .ttl::before {
    height: 16px;
    width: 16px;
    top: 5px;
  }
}

.environment-career {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .environment-career {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .environment-career {
    margin-bottom: 45px;
  }
}
.environment-career__img {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .environment-career__img {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .environment-career__img {
    margin-top: 20px;
  }
}

.environment-training__table {
  margin-top: 30px;
  width: 100%;
  font-size: 1.5rem;
  letter-spacing: normal;
  border: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  .environment-training__table {
    margin-top: 25px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__table {
    margin-top: 15px;
  }
}
.environment-training__table tr {
  border-bottom: 1px solid #ccc;
}
.environment-training__table th {
  padding: 12px 25px;
  color: #333;
  font-weight: bold;
  vertical-align: middle;
  background-color: #d4eefd;
}
@media screen and (max-width: 1280px) {
  .environment-training__table th {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__table th {
    padding: 8px 10px;
  }
}
.environment-training__table th.w01 {
  width: 244px;
}
@media screen and (max-width: 1280px) {
  .environment-training__table th.w01 {
    width: 26%;
  }
}
.environment-training__table th.w02 {
  width: 350px;
}
@media screen and (max-width: 1024px) {
  .environment-training__table th.w02 {
    width: 40%;
  }
}
.environment-training__table td {
  padding: 12px 25px;
  color: #000;
  text-align: justify;
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 1280px) {
  .environment-training__table td {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__table td {
    padding: 8px 10px;
  }
}
.environment-training__table td.bg-blue {
  width: 244px;
  text-align: center;
  vertical-align: middle;
  background-color: #ebf7fe;
}
@media screen and (max-width: 1280px) {
  .environment-training__table td.bg-blue {
    width: 28%;
  }
}
@media screen and (max-width: 599px) {
  .environment-training .table-swipe {
    overflow-x: scroll;
  }
  .environment-training .table-swipe > table {
    width: 600px;
  }
}
.environment-training__img {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .environment-training__img {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__img {
    margin-top: 20px;
    overflow-x: scroll;
  }
  .environment-training__img > img {
    min-width: 600px;
  }
}
.environment-training__img-list {
  display: flex;
  gap: 1px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .environment-training__img-list {
    margin-top: 25px;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__img-list {
    margin-top: 15px;
  }
}
.environment-training__img-list__item {
  flex: 1;
}
.environment-training__img-list02 {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .environment-training__img-list02 {
    gap: 24px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__img-list02 {
    gap: 14px;
    margin-top: 20px;
  }
}
.environment-training__img-list02__item {
  flex: 1;
  text-align: center;
}
.environment-training__img-list02__item figcaption {
  margin-top: 8px;
  font-size: 1.5rem;
  color: #333;
  letter-spacing: normal;
}
@media screen and (max-width: 1024px) {
  .environment-training__img-list02__item figcaption {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__img-list02__item figcaption {
    margin-top: 5px;
  }
}
.environment-training__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 30px;
  padding: 30px;
  background-color: #ebf7fe;
}
@media screen and (max-width: 1024px) {
  .environment-training__list {
    margin-top: 25px;
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__list {
    gap: 8px 0;
    margin-top: 15px;
    padding: 17px 20px 15px;
  }
}
.environment-training__list li {
  position: relative;
  padding-left: 25px;
  width: 25%;
  font-size: 1.5rem;
  color: #333;
  letter-spacing: normal;
}
@media screen and (max-width: 1024px) {
  .environment-training__list li {
    padding-left: 20px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 834px) {
  .environment-training__list li {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__list li {
    padding-left: 15px;
    width: 100%;
  }
}
.environment-training__list li::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 4px;
  top: 10px;
  left: 0;
  background-color: #4d9ac8;
}
@media screen and (max-width: 1024px) {
  .environment-training__list li::before {
    width: 9px;
    height: 3px;
    top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__list li::before {
    width: 8px;
    height: 2px;
    top: 9px;
  }
}
.environment-training__flex {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .environment-training__flex {
    gap: 45px;
  }
}
@media screen and (max-width: 834px) {
  .environment-training__flex {
    flex-direction: column;
    gap: 35px;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__flex {
    gap: 25px;
  }
}
.environment-training__flex__text {
  margin-top: -5px;
  flex: 1;
}
.environment-training__flex__text__box {
  padding: 20px 25px;
  background-color: #ebf7fe;
}
@media screen and (max-width: 599px) {
  .environment-training__flex__text__box {
    padding: 17px 20px 15px;
  }
}
.environment-training__flex__img {
  max-width: 520px;
}
@media screen and (max-width: 1500px) {
  .environment-training__flex__img {
    max-width: 40%;
  }
}
@media screen and (max-width: 834px) {
  .environment-training__flex__img {
    max-width: 76%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .environment-training__flex__img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------
recruit
----------------------------------------------------------*/
/*--------------------------------------------------------
privacy
----------------------------------------------------------*/
.privacy-sec:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .privacy-sec:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .privacy-sec:not(:last-child) {
    margin-bottom: 30px;
  }
}
.privacy-sec .text-base {
  color: #333 !important;
}

.privacy-lead {
  margin-bottom: 50px;
  font-size: 1.7rem;
  color: #444;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .privacy-lead {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .privacy-lead {
    margin-bottom: 30px;
  }
}

.privacy-list__item {
  position: relative;
  padding-left: 18px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .privacy-list__item {
    font-size: 1.4rem;
  }
}
.privacy-list__item:not(:last-child) {
  margin-bottom: 3px;
}
.privacy-list__item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: #4ba7dc;
}
@media screen and (max-width: 1024px) {
  .privacy-list__item::before {
    top: 7px;
  }
}
.privacy-list__item__link {
  color: #15b273;
}
@media screen and (min-width: 1025px) {
  .privacy-list__item__link:hover {
    text-decoration: underline;
  }
}

.privacy-num-list {
  counter-reset: none;
}
.privacy-num-list__item {
  position: relative;
  padding-left: 40px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  counter-increment: num;
}
@media screen and (max-width: 1024px) {
  .privacy-num-list__item {
    padding-left: 35px;
    font-size: 1.4rem;
  }
}
.privacy-num-list__item:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .privacy-num-list__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.privacy-num-list__item::before {
  content: counter(num);
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  background-color: #4ba7dc;
}
@media screen and (max-width: 1024px) {
  .privacy-num-list__item::before {
    width: 22px;
    height: 22px;
    font-size: 1.3rem;
  }
}
.privacy-num-list__item__ttl {
  display: block;
  margin-bottom: 5px;
  font-size: 1.6rem;
  color: #333;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .privacy-num-list__item__ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .privacy-num-list__item__ttl {
    margin-bottom: 3px;
  }
}
.privacy-num-list__item__link {
  display: block;
  color: #15b273;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .privacy-num-list__item__link:hover {
    text-decoration: underline;
  }
}

.privacy-dl {
  display: flex;
  margin-bottom: 3px;
  font-size: 1.5rem;
  color: #333;
}
.privacy-dl dt {
  font-weight: bold;
}
.privacy-dl dd {
  flex: 1;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}

.privacy-box {
  padding: 25px 30px;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  background-color: #f3f7ff;
}
@media screen and (max-width: 1024px) {
  .privacy-box {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 834px) {
  .privacy-box {
    background-color: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (max-width: 599px) {
  .privacy-box {
    padding: 15px 20px;
    background-color: #f3f7ff;
  }
}
.privacy-box__ttl {
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .privacy-box__ttl {
    margin-bottom: 5px;
  }
}
.privacy-box__tel {
  color: #444;
}
@media screen and (max-width: 599px) {
  .privacy-box__tel {
    color: #15b273;
  }
}
.privacy-box__mail {
  color: #15b273;
}
@media screen and (min-width: 1025px) {
  .privacy-box__mail:hover {
    text-decoration: underline;
  }
}

/*--------------------------------------------------------
sitemap
----------------------------------------------------------*/
.cl-home {
  color: #c5c5c5;
}
.cl-blue {
  color: #d0dcfe !important;
}
.cl-l-blue {
  color: #b0e0fc !important;
}
.cl-green {
  color: #a9f0d6 !important;
}
.cl-l-green {
  color: #b5e6ea !important;
}
.cl-orange {
  color: #f7daaa !important;
}
.cl-pink {
  color: #facddb !important;
}
.cl-purple {
  color: #e6cef6 !important;
}

.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .sitemap-list {
    gap: 30px;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list {
    gap: 16px;
  }
}
.sitemap-list__item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1024px) {
  .sitemap-list__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item {
    width: 100%;
  }
}
.sitemap-list__link {
  position: relative;
  display: block;
  padding: 22px 40px 28px;
  background-color: #fef8f1;
}
@media screen and (max-width: 1500px) {
  .sitemap-list__link {
    padding: 22px 34px 28px;
  }
}
@media screen and (max-width: 1024px) {
  .sitemap-list__link {
    padding: 18px 28px 24px;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list__link {
    padding: 14px 22px 20px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__link {
    padding: 10px 20px 12px;
  }
}
.sitemap-list__link::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(172, 122, 2, 0.05);
  background-image: url(../img/common/arrow_black.png);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center;
  transition: 0.3s;
}
@media screen and (max-width: 1500px) {
  .sitemap-list__link::before {
    right: 34px;
  }
}
@media screen and (max-width: 1024px) {
  .sitemap-list__link::before {
    width: 40px;
    height: 40px;
    right: 20px;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list__link::before {
    width: 34px;
    height: 34px;
    right: 14px;
    background-size: 10px auto;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__link::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-list__link:hover::before {
    right: 32px;
  }
}
.sitemap-list__link.en-none {
  padding: 28px 40px;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__link.en-none {
    padding: 24px 28px;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list__link.en-none {
    padding: 20px 22px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__link.en-none {
    padding: 14px 20px;
  }
}
.sitemap-list__link.en-none:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__link.en-none:not(:first-child) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list__link.en-none:not(:first-child) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__link.en-none:not(:first-child) {
    margin-top: 16px;
  }
}
.sitemap-list__en-title {
  font-family: "Noto Serif JP", serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1500px) {
  .sitemap-list__en-title {
    font-size: 4.9rem;
  }
}
@media screen and (max-width: 1024px) {
  .sitemap-list__en-title {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list__en-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__en-title {
    font-size: 3.1rem;
  }
}
.sitemap-list__title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__title {
    font-size: 1.6rem;
  }
}
.sitemap-list__link-list {
  margin-top: 27px;
  padding-left: 40px;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__link-list {
    margin-top: 20px;
    padding-left: 26px;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list__link-list {
    margin-top: 18px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__link-list {
    margin-top: 14px;
    padding-left: 18px;
  }
}
.sitemap-list__link-list__item:not(:first-child) {
  margin-top: 8px;
}
.sitemap-list__link-list__link {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #444;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.sitemap-list__link-list__link::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 0;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-image: url(../img/common/arrow_nav.svg);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: 4px 50%;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__link-list__link::before {
    top: 2px;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-list__link-list__link:hover::before {
    left: 3px;
  }
}/*# sourceMappingURL=style.css.map */