@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300..700&display=swap");
/*少し濃い テキスト用など*/
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット02・PC */
@media screen and (max-width: 834px) {
  .tb02pc {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 835px) {
  .tb02sp {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection,
::selection {
  background-color: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}

/*視差効果
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #222;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 400;
  }
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/*Visually Hidden*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

.al-center {
  text-align: center;
}

.tel {
  color: inherit;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 10px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 15px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 15px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 25px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 25px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 35px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 45px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 50px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 50px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 15px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 15px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 25px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 30px !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}
@media screen and (max-width: 599px) {
  .mt70 {
    margin-top: 45px !important;
  }
}

.header {
  width: 100%;
  position: fixed;
  padding: 20px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 0;
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  background-color: #fff;
  border-radius: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 16px 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .header-inner {
    border-radius: 0;
    padding: 0;
    height: 100%;
  }
}
@media screen and (max-width: 599px) {
  .header-inner {
    align-items: normal;
  }
}

.header-logo {
  max-width: 352px;
}
@media screen and (max-width: 1400px) {
  .header-logo {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .header-logo {
    width: calc(100% - 410px);
    margin-top: 2px;
    margin-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    width: calc(100% - 200px);
    display: flex;
    align-items: center;
    max-width: 190px;
    margin-left: 9px;
  }
}
@media screen and (min-width: 1025px) {
  .header-logo > a:hover {
    opacity: 0.8;
  }
}

.header-block {
  display: flex;
  width: calc(100% - 400px);
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .header-block {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .header-block {
    width: auto;
  }
}

.header-tel {
  position: absolute;
  top: 3px;
  right: 315px;
}
@media screen and (max-width: 1024px) {
  .header-tel {
    right: 190px;
    top: 9px;
  }
}
@media screen and (max-width: 599px) {
  .header-tel {
    right: 120px;
    width: 60px;
    height: 100%;
    top: 0;
    padding: 10px;
  }
}
.header-tel > a {
  font-family: "Hind", sans-serif !important;
  font-size: 2.6rem;
  color: #333;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  background-image: url(../img/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: 19px auto;
  padding: 0 0 0 24px;
  background-position: left 0 top 7px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .header-tel > a {
    display: block;
    padding: 8px 0 6px 24px;
  }
}
@media screen and (max-width: 599px) {
  .header-tel > a {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 10px;
    background-position: center;
    border-radius: 200px;
    background-color: #619a73;
    background-image: url(../img/common/icon_tel_white.png);
    background-size: 16px auto;
  }
  .header-tel > a span {
    display: none;
  }
}

.header-contact {
  position: absolute;
  top: 0;
  right: 121px;
}
@media screen and (max-width: 1024px) {
  .header-contact {
    display: none;
  }
}
.header-contact > a {
  display: block;
  background-color: #d97b7b;
  border-radius: 3px;
  font-size: 1.4rem;
  color: #fff;
  padding: 7px 13px 7px 40px;
  line-height: 1;
  background-image: url(../img/common/icon_mail.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: left 14px top 8px;
}
@media screen and (min-width: 1025px) {
  .header-contact > a:hover {
    transform: translateY(2px);
  }
}

.header-nav {
  display: flex;
  gap: 0 35px;
  padding: 40px 25px 0 0;
}
@media screen and (max-width: 1400px) {
  .header-nav {
    gap: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}
.header-nav > li > a {
  display: block;
  color: #222;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .header-nav > li > a:hover {
    color: #619a73;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1400px) {
  .header-nav > li > a {
    font-size: 1.6rem;
    text-align: center;
  }
}
.header-nav > li.dropdown {
  transition: 0.5s;
  position: relative;
}
.header-nav > li .dropdown-content {
  position: absolute;
  top: 45px;
  right: -120px;
  background-color: #fff;
  width: 1000px;
  margin-left: -30px;
  border-radius: 5px;
  box-shadow: 0px 0 8px 0px rgba(0, 0, 0, 0.4);
  z-index: 1;
  visibility: hidden; /*デフォルトでは非表示の状態にしておく*/
  opacity: 0; /*不透明度0*/
  transition: all 0.3s; /*表示の変化を0.3秒に指定*/
  padding: 25px 35px;
}
@media screen and (max-width: 1200px) {
  .header-nav > li .dropdown-content {
    width: 950px;
  }
}
.header-nav > li .dropdown-content::before {
  content: "";
  border-width: 10px 8px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #fff;
  position: absolute;
  top: -18px;
  right: 145px;
}
.header-nav > li.dropdown:hover .dropdown-content {
  visibility: visible; /*Gナビメニューにホバーしたら表示*/
  opacity: 1; /*不透明度1*/
}
.header-nav > li .header-nav-heisetsu {
  display: flex;
  gap: 18px;
}
.header-nav > li .header-nav-heisetsu > li {
  width: calc((100% - 72px) / 5);
}
.header-nav > li .header-nav-heisetsu-item {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  color: #333;
  line-height: 1.2;
  font-size: 1.7rem;
}
@media screen and (min-width: 1025px) {
  .header-nav > li .header-nav-heisetsu-item:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1200px) {
  .header-nav > li .header-nav-heisetsu-item {
    font-size: 1.5rem;
  }
}
.header-nav > li .header-nav-heisetsu-item__photo {
  width: 100%;
  height: 96px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 4px;
}
.header-nav > li .header-nav-heisetsu-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.header-nav > li .header-nav-heisetsu-item__text {
  font-weight: 500;
  padding: 9px 0 0 22px;
  display: block;
  letter-spacing: -0.05em;
  position: relative;
}
.header-nav > li .header-nav-heisetsu-item__text::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #83b292;
  border-radius: 200px;
}
@media screen and (max-width: 1200px) {
  .header-nav > li .header-nav-heisetsu-item__text::before {
    top: 9px;
  }
}
.header-nav > li .header-nav-heisetsu-item__text::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 5px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
}
@media screen and (max-width: 1200px) {
  .header-nav > li .header-nav-heisetsu-item__text::after {
    top: 15px;
  }
}
.header-nav > li .header-nav-heisetsu-item__text--day::before {
  background-color: #e3a175;
}
.header-nav > li .header-nav-heisetsu-item__text--group::before {
  background-color: #6da8c4;
}
.header-nav > li .header-nav-heisetsu-item__text--short::before {
  background-color: #a88ebc;
}

.header-access {
  border-left: 1px solid #cdcdcd;
}
@media screen and (max-width: 1024px) {
  .header-access {
    margin-right: 88px;
  }
}
@media screen and (max-width: 599px) {
  .header-access {
    margin-right: 60px;
  }
}
.header-access > a {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  display: block;
  padding: 40px 20px 0;
  background-image: url(../img/common/icon_access.png);
  background-repeat: no-repeat;
  background-size: 19px auto;
  background-position: left 50% top 4px;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .header-access > a:hover {
    color: #619a73;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1400px) {
  .header-access > a {
    padding: 40px 10px 0 20px;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .header-access > a {
    background-position: left 55% top 4px;
    padding: 40px 10px 0 15px;
  }
}
@media screen and (max-width: 599px) {
  .header-access > a {
    height: 100%;
    font-size: 1.3rem;
    padding: 39px 7px 3px 7px;
    background-size: 16px auto;
    background-position: left 50% top 10px;
    letter-spacing: -0.03em;
  }
}

/* ===================================
ハンバーガー
=====================================*/
/*ハンバーガーボタン*/
#nav-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 80px;
  width: 80px;
  cursor: pointer;
  background-color: #619a73;
  z-index: 100;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  #nav-toggle {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #nav-toggle {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 599px) {
  #nav-toggle::before {
    content: "MENU";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
  }
}
#nav-toggle > div {
  position: absolute;
  top: 28px;
  left: 27px;
  width: 26px;
}
@media screen and (max-width: 599px) {
  #nav-toggle > div {
    top: 14px;
    left: 19px;
    width: 22px;
  }
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
@media screen and (max-width: 599px) {
  #nav-toggle span:nth-child(2) {
    top: 8px;
  }
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
@media screen and (max-width: 599px) {
  #nav-toggle span:nth-child(3) {
    top: 16px;
  }
}

.open #nav-toggle span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  display: none;
}
.open #nav-toggle span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
  width: 100%;
}

/*黒背景*/
#gloval-nav-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 98;
  cursor: pointer;
  display: none;
}
.open #gloval-nav-overlay {
  display: block;
}
@media screen and (max-width: 1024px) {
  #gloval-nav-overlay {
    background-color: rgba(0, 0, 0, 0.4);
  }
}

/*ハンバーガー内*/
#gloval-nav {
  display: block;
  overflow: auto;
  background-color: #ecf3f0;
  position: fixed;
  top: 0;
  right: 0;
  max-width: 500px;
  height: 100vh;
  transform: translateX(500px);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 99;
}
@media screen and (min-width: 1025px) {
  #gloval-nav::-webkit-scrollbar {
    width: 7px;
  }
  #gloval-nav::-webkit-scrollbar-track {
    background: #e6e6e6;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  #gloval-nav::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 3px;
    box-shadow: none;
  }
}
@media screen and (max-width: 1024px) {
  #gloval-nav {
    width: 90%;
    transform: translateX(100%);
  }
}

.open #gloval-nav {
  transform: translateX(0);
}

.gloval-nav-contents {
  z-index: 999;
  padding: 130px 30px;
  max-width: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .gloval-nav-contents {
    padding: 90px 20px 100px;
  }
}
.gloval-nav-contents__inner {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px 60px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 599px) {
  .gloval-nav-contents__inner {
    padding: 30px 15px 50px;
  }
}

.header-sp-nav {
  margin-bottom: 30px;
}
.header-sp-nav > li {
  border-bottom: 1px solid #dae4dc;
}
.header-sp-nav > li > a {
  padding: 15px 0 15px 30px;
  display: block;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  font-size: 1.7rem;
  position: relative;
}
.header-sp-nav > li > a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #83b292;
  border-radius: 200px;
}
@media screen and (max-width: 599px) {
  .header-sp-nav > li > a::before {
    width: 22px;
    height: 22px;
    top: 16px;
  }
}
.header-sp-nav > li > a::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 7px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
}
@media screen and (max-width: 599px) {
  .header-sp-nav > li > a::after {
    top: 24px;
    left: 6px;
  }
}
.header-sp-nav > li > a.outside {
  background-image: url(../img/common/icon_target_color.svg);
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: left 5px top 21px;
}
.header-sp-nav > li > a.outside::before {
  content: none;
}
.header-sp-nav > li > a.outside::after {
  content: none;
}

.header-sp-nav2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.header-sp-nav2 > li {
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 599px) {
  .header-sp-nav2 > li {
    width: 100%;
  }
}
.header-sp-nav2 > li > a {
  width: 100%;
  height: 100%;
  background-color: #ecf3f0;
  display: block;
  padding: 8px 5px 8px 24px;
  border-radius: 3px;
  color: #222;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
}
.header-sp-nav2 > li > a::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 11px;
  width: 8px;
  height: 7px;
  margin: auto 0;
  border: 4px solid transparent;
  border-left: 6px solid #83b292;
  border-right: none;
}

.header-sp-nav-accordion-click {
  padding: 15px 0 15px 30px;
  display: block;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  font-size: 1.7rem;
  position: relative;
  background-image: url(../img/common/icon_plus.png);
  background-repeat: no-repeat;
  background-position: left 4px top 50%;
  background-size: 16px auto;
}
.header-sp-nav-accordion-click.active {
  background-image: url(../img/common/icon_minus.png);
}

.header-sp-nav-accordion {
  display: none;
  padding-left: 20px;
}
.header-sp-nav-accordion > li {
  border-top: 1px dotted #dae4dc;
}
.header-sp-nav-accordion > li > a {
  display: block;
  color: #222 !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  font-size: 1.6rem;
  padding: 14px 0 14px 17px;
  position: relative;
}
.header-sp-nav-accordion > li > a::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 3px;
  width: 8px;
  height: 7px;
  margin: auto 0;
  border: 4px solid transparent;
  border-left: 6px solid #83b292;
  border-right: none;
}

.footer-links {
  background-color: #83b292;
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .footer-links {
    padding: 35px 20px;
  }
}

.footer-links-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .footer-links-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer-links-list > li {
  width: 100%;
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .footer-links-list > li {
    max-width: 100%;
  }
}
.footer-links-list > li > a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: block;
  border-radius: 10px;
  color: #222;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  padding: 21px 20px 17px 48px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .footer-links-list > li > a:hover {
    transform: translateY(2px);
    color: #619a73;
  }
}
@media screen and (max-width: 599px) {
  .footer-links-list > li > a {
    border-radius: 5px;
    padding: 18px 15px 15px 48px;
  }
}
.footer-links-list > li > a::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 15px;
  width: 24px;
  height: 24px;
  background-color: #83b292;
  border-radius: 200px;
}
@media screen and (max-width: 599px) {
  .footer-links-list > li > a::before {
    top: 21px;
  }
}
.footer-links-list > li > a::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 22px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
}
@media screen and (max-width: 599px) {
  .footer-links-list > li > a::after {
    top: 29px;
  }
}
.footer-links-list > li > a span {
  font-size: 1.1rem;
  font-family: "Hind", sans-serif !important;
  color: #619a73;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.footer-bottom {
  padding: 45px 30px 35px;
}
@media screen and (max-width: 1024px) {
  .footer-bottom {
    padding: 60px 30px 140px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bottom {
    padding: 50px 20px 110px;
  }
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-bottom-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-bottom-inner {
    margin: 0 auto 40px;
  }
}

.footer-bottom-logo {
  width: 100%;
  max-width: 352px;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .footer-bottom-logo {
    max-width: 300px;
  }
}
@media screen and (min-width: 1025px) {
  .footer-bottom-logo > a:hover {
    opacity: 0.8;
  }
}

.footer-bottom-address {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}

.footer-bottom-links {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .footer-bottom-links {
    margin-top: 50px;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-bottom-links {
    margin-top: 30px;
    gap: 10px 20px;
    flex-wrap: wrap;
  }
}
.footer-bottom-links > li > a {
  color: #222;
  font-weight: 500;
  font-size: 1.5rem;
  display: block;
}
@media screen and (min-width: 1025px) {
  .footer-bottom-links > li > a:hover {
    color: #619a73;
    transform: translateY(2px);
  }
}

.footer-bottom-copy {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}

.side-fix {
  position: fixed;
  bottom: 100px;
  right: 0;
  z-index: 99;
}

@media screen and (max-width: 1024px) {
  .side-fix-links {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
  }
}
.side-fix-links > li {
  margin-bottom: 12px;
}
.side-fix-links > li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .side-fix-links > li {
    margin-bottom: 0;
    width: 50%;
  }
}
.side-fix-links > li > a {
  width: 150px;
  height: 100%;
  display: block;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #d97b7b;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .side-fix-links > li > a {
    width: 100%;
    border-radius: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .side-fix-links > li > a {
    height: 50px;
    font-size: min(3.9vw, 1.5rem);
  }
}
.side-fix-links > li > a span {
  display: block;
  padding: 45px 10px 18px;
  background-image: url(../img/common/icon_mail2.png);
  background-size: 22px auto;
  background-repeat: no-repeat;
  background-position: left 50% top 20px;
}
@media screen and (max-width: 1024px) {
  .side-fix-links > li > a span {
    width: auto;
    height: auto;
    display: inline-block;
    padding: 2px 15px 2px 35px;
    background-size: 20px auto;
    background-position: left 5px top 50%;
  }
}
@media screen and (max-width: 599px) {
  .side-fix-links > li > a span {
    background-size: 18px auto;
    padding: 2px 15px 2px 31px;
  }
}
@media screen and (min-width: 1025px) {
  .side-fix-links > li > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.side-fix-links > li > a::after {
  content: "";
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.side-fix-links > li > a.recruit {
  background-color: #4cb1a2;
}
.side-fix-links > li > a.recruit span {
  background-image: url(../img/common/icon_recruit.png);
  background-size: 25px auto;
  background-position: left 50% top 15px;
}
@media screen and (max-width: 1024px) {
  .side-fix-links > li > a.recruit span {
    width: auto;
    height: auto;
    display: inline-block;
    padding: 3px 15px 3px 35px;
    background-position: left 6px top 50%;
    background-size: 22px auto;
  }
}
@media screen and (max-width: 599px) {
  .side-fix-links > li > a.recruit span {
    background-size: 19px auto;
  }
}
.side-fix-links > li > a.recruit::after {
  content: none;
}
.side-fix-links > li > a.recruit::before {
  content: "";
  margin-top: -6px;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 15px;
  background-image: url(../img/common/icon_target.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.pagetop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 100;
}
@media screen and (min-width: 1025px) {
  .pagetop:hover {
    opacity: 0.8;
  }
}

.contents-side-list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}
.contents-side-list > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}
.contents-side-list > li > a {
  line-height: 1.3;
  display: block;
  padding: 18px 15px 18px 48px;
  color: #222;
  font-weight: 500;
  position: relative;
}
.contents-side-list > li > a::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: #83b292;
  border-radius: 200px;
}
.contents-side-list > li > a::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
}
.contents-side-list > li > a.active {
  background-color: #ebf1ed;
  color: #619a73;
}
@media screen and (min-width: 1025px) {
  .contents-side-list > li > a:hover {
    background-color: #ebf1ed;
    color: #619a73;
  }
}
#day .contents-side-list > li > a::before {
  background-color: #f4b083;
}
#day .contents-side-list > li > a.active {
  background-color: #fbefe6;
  color: #eb965f;
}
@media screen and (min-width: 1025px) {
  #day .contents-side-list > li > a:hover {
    background-color: #fbefe6;
    color: #eb965f;
  }
}
#group .contents-side-list > li > a::before {
  background-color: #6da8c4;
}
#group .contents-side-list > li > a.active {
  background-color: #e9f3f8;
  color: #5c99b6;
}
@media screen and (min-width: 1025px) {
  #group .contents-side-list > li > a:hover {
    background-color: #e9f3f8;
    color: #5c99b6;
  }
}
#short .contents-side-list > li > a::before {
  background-color: #b098c2;
}
#short .contents-side-list > li > a.active {
  background-color: #efebf3;
  color: #9e81b4;
}
@media screen and (min-width: 1025px) {
  #short .contents-side-list > li > a:hover {
    background-color: #efebf3;
    color: #9e81b4;
  }
}

.contents {
  display: flex;
  padding: 50px 0 130px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .contents {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 1024px) {
  .contents {
    flex-wrap: wrap;
    padding: 50px 0 80px;
  }
}
@media screen and (max-width: 599px) {
  .contents {
    padding: 30px 0 55px;
  }
}

.contents-side {
  width: 300px;
  order: 1;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .contents-side {
    width: 100%;
    order: 2;
  }
}

.contents-main {
  width: 100%;
  padding: 0 50px;
  order: 2;
}
.contents-main:has(+ .contents-side) {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1024px) {
  .contents-main {
    width: 100%;
    order: 1;
    padding: 0 40px 40px;
  }
  .contents-main:has(+ .contents-side) {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .contents-main {
    padding: 0 20px 40px;
  }
}
.contents-main--pb-none {
  padding-bottom: 0;
}

.contents-inner {
  max-width: 980px;
  margin: 0 auto;
}

/*--------------------------------------------------------
pagetitle
----------------------------------------------------------*/
.pagetitle {
  display: flex;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .pagetitle {
    flex-wrap: wrap;
  }
}

.pagetitle-photo {
  margin-left: 300px;
  width: calc(100% - 300px);
  height: 400px;
  border-bottom-left-radius: 25px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .pagetitle-photo {
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 400px;
    border-bottom-left-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-photo {
    margin-left: 0;
    width: 100%;
    border-bottom-left-radius: 0;
    height: 160px;
    order: 1;
    margin-top: 60px;
  }
}
.pagetitle-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.pagetitle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pagetitle-box {
  position: absolute;
  bottom: 40px;
  left: 0;
  background-color: #83b292;
  max-width: 750px;
  min-width: 500px;
  z-index: 1;
  min-height: 190px;
  display: flex;
  align-items: center;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 75px 50px 30px 70px;
}
#day .pagetitle-box {
  background-color: #f4b083;
}
#group .pagetitle-box {
  background-color: #6da8c4;
}
#short .pagetitle-box {
  background-color: #b098c2;
}
@media screen and (max-width: 1024px) {
  .pagetitle-box {
    min-height: 180px;
    min-width: 410px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-box {
    position: relative;
    min-height: auto;
    min-width: auto;
    order: 2;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-right: 20px;
    max-width: 300px;
    margin-top: -25px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 45px 20px 25px;
  }
}
.pagetitle-box::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 30px;
  width: 110px;
  height: 150px;
  background-image: url(../img/common/title_illust01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .pagetitle-box::before {
    content: none;
  }
}
.pagetitle-box::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 50px;
  width: 60px;
  height: 82px;
  background-image: url(../img/common/title_illust02.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .pagetitle-box::after {
    width: 50px;
    height: 60px;
    right: -10px;
    bottom: -20px;
  }
}
.pagetitle-box__title {
  color: #fff;
  font-size: 3.9rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .pagetitle-box__title {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-box__title {
    font-size: 2.9rem;
    letter-spacing: 0;
  }
}
.pagetitle-box__title > span {
  position: absolute;
  top: -60px;
  left: 0;
  font-family: "Cormorant Garamond", serif;
  color: rgba(255, 255, 255, 0.2);
  font-size: 8rem;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .pagetitle-box__title > span {
    font-size: 7rem;
    top: -50px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-box__title > span {
    font-size: 5rem;
    top: -35px;
  }
}

/*--------------------------------------------------------
breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  padding: 0 70px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .breadcrumb {
    padding: 0 60px;
  }
}
.breadcrumb > li {
  position: relative;
  font-size: 1.4rem;
  color: #838383;
  letter-spacing: 0;
  line-height: 1.3;
}
.breadcrumb > li:not(:last-child) {
  padding-right: 45px;
}
.breadcrumb > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #838383;
  border-right: 1px solid #838383;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumb > li > a {
  color: #619a73;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .breadcrumb > li > a:hover {
    text-decoration: none;
  }
}
#day .breadcrumb > li > a {
  color: #eb965f;
}
#group .breadcrumb > li > a {
  color: #5c99b6;
}
#short .breadcrumb > li > a {
  color: #9e81b4;
}

/*--------------------------------------------------------
_pagination
----------------------------------------------------------*/
.pagination {
  margin: 60px auto 0;
}
@media screen and (max-width: 599px) {
  .pagination {
    margin: 30px auto 0;
  }
}
.pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pagination__prev {
  margin-right: 10px;
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 500;
  color: #619a73;
  position: relative;
  padding-left: 25px;
}
@media screen and (min-width: 1025px) {
  .pagination__prev:hover {
    opacity: 0.8;
  }
}
.pagination__prev::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0;
  border: 1px solid #619a73;
  border-radius: 50%;
}
.pagination__prev::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  border-width: 3px 5px;
  border-style: solid;
  border-color: transparent;
  border-right-color: #619a73;
  display: block;
}
@media screen and (max-width: 599px) {
  .pagination__prev {
    display: none;
  }
}
.pagination__next {
  margin-left: 10px;
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 500;
  color: #619a73;
  position: relative;
  padding-right: 25px;
}
@media screen and (min-width: 1025px) {
  .pagination__next:hover {
    opacity: 0.8;
  }
}
.pagination__next::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  right: 0;
  border: 1px solid #619a73;
  border-radius: 50%;
}
.pagination__next::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  border-width: 3px 5px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #619a73;
  display: block;
}
@media screen and (max-width: 599px) {
  .pagination__next {
    display: none;
  }
}
.pagination__num {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  border: 1px solid #83b292;
  color: #619a73;
  font-size: 1.6rem;
  border-radius: 50%;
  padding-top: 10px;
}
@media screen and (max-width: 599px) {
  .pagination__num {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    padding-top: 5px;
  }
}
.pagination__num:hover, .pagination__num.current {
  background-color: #83b292;
  color: #fff;
}
.pagination .current {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: #83b292;
  border: 1px solid #83b292;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  padding-top: 10px;
}
@media screen and (max-width: 599px) {
  .pagination .current {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    padding-top: 5px;
  }
}

/*--------------------------------------------------------
pagenav
----------------------------------------------------------*/
.pagenav {
  position: relative;
}
@media screen and (max-width: 599px) {
  .pagenav {
    margin-top: 70px;
  }
}
.pagenav .prev {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .pagenav .prev {
    top: -38px;
  }
}
.pagenav .prev > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  background-color: #83b292;
  border-radius: 6px;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  padding-left: 4px;
}
@media screen and (min-width: 1025px) {
  .pagenav .prev > a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .pagenav .prev > a {
    height: 36px;
  }
}
.pagenav .prev > a::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(-135deg);
}
@media screen and (max-width: 599px) {
  .pagenav .prev > a::after {
    top: 15px;
  }
}
.pagenav .prev.non {
  display: none;
}
.pagenav .next {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 599px) {
  .pagenav .next {
    top: -38px;
  }
}
.pagenav .next > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  background-color: #83b292;
  border-radius: 6px;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  padding-right: 4px;
}
@media screen and (min-width: 1025px) {
  .pagenav .next > a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .pagenav .next > a {
    height: 36px;
  }
}
.pagenav .next > a::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .pagenav .next > a::after {
    top: 15px;
  }
}
.pagenav .next.non {
  display: none;
}
.pagenav .num {
  padding: 5px 110px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .pagenav .num {
    padding: 15px 0 0;
  }
}
.pagenav .num > ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.pagenav .num > ul > li {
  margin: 0 5px;
}
@media screen and (max-width: 599px) {
  .pagenav .num > ul > li {
    margin: 0 3px;
  }
}
.pagenav .num > ul > li > a {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Hind", sans-serif !important;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
  padding-top: 3px;
  color: #222;
}
@media screen and (min-width: 1025px) {
  .pagenav .num > ul > li > a:hover {
    background-color: #83b292;
    color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .pagenav .num > ul > li > a {
    width: 36px;
    height: 36px;
  }
}
.pagenav .num > ul > li.current > a {
  background-color: #83b292;
  color: #fff;
}
.pagenav .num > ul > li.borderNon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------
title
----------------------------------------------------------*/
.base-title01 {
  margin-bottom: 35px;
  font-size: 2.9rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 23px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .base-title01 {
    font-size: 2.8rem;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .base-title01 {
    font-size: 2.4rem;
    padding-bottom: 16px;
    margin-bottom: 25px;
  }
}
.base-title01::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #83b292;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .base-title01::before {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .base-title01::before {
    width: 60px;
  }
}
#day .base-title01::before {
  background-color: #f4b083;
}
#group .base-title01::before {
  background-color: #6da8c4;
}
#short .base-title01::before {
  background-color: #b098c2;
}
.base-title01--underline::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  /*border-bottom: 1px solid #e5e5e5;*/
}

.base-title02 {
  margin-bottom: 30px;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding: 2px 0 6px 20px;
}
@media screen and (max-width: 599px) {
  .base-title02 {
    margin-bottom: 23px;
    font-size: 2.2rem;
    padding: 2px 0 6px 15px;
  }
}
.base-title02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #83b292;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .base-title02::before {
    width: 4px;
  }
}
#day .base-title02::before {
  background-color: #f4b083;
}
#group .base-title02::before {
  background-color: #6da8c4;
}
#short .base-title02::before {
  background-color: #b098c2;
}
.base-title02--underline {
  padding: 2px 0 20px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.base-title02--underline::before {
  height: calc(100% - 15px);
}
@media screen and (max-width: 599px) {
  .base-title02--underline {
    padding: 2px 0 15px 15px;
  }
}

.base-title03 {
  background-color: #ebf1ed;
  border-radius: 5px;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 10px 14px 30px;
  position: relative;
  margin-bottom: 25px;
}
#day .base-title03 {
  background-color: #f8eee7;
}
#group .base-title03 {
  background-color: #e9f3f8;
}
#short .base-title03 {
  background-color: #efebf3;
}
@media screen and (max-width: 1024px) {
  .base-title03 {
    font-size: 2rem;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 599px) {
  .base-title03 {
    font-size: 1.8rem;
    margin-bottom: 23px;
    padding: 14px 10px 14px 30px;
  }
}
.base-title03::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 4px;
  height: calc(100% - 22px);
  background-color: #83b292;
  display: block;
  border-radius: 10px;
}
#day .base-title03::before {
  background-color: #f4b083;
}
#group .base-title03::before {
  background-color: #6da8c4;
}
#short .base-title03::before {
  background-color: #b098c2;
}
.base-title03--change {
  background-color: #83b292;
  color: #fff;
  font-weight: 500;
}
.base-title03--change::before {
  background-color: #fff;
}
#day .base-title03--change {
  background-color: #f4b083;
}
#day .base-title03--change::before {
  background-color: #fff;
}
#group .base-title03--change {
  background-color: #6da8c4;
}
#group .base-title03--change::before {
  background-color: #fff;
}
#short .base-title03--change {
  background-color: #b098c2;
}
#short .base-title03--change::before {
  background-color: #fff;
}

.base-title04 {
  margin-bottom: 25px;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 17px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .base-title04 {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .base-title04 {
    font-size: 1.8rem;
    padding-bottom: 13px;
  }
}
.base-title04::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 38px;
  height: 3px;
  background-color: #83b292;
  border-radius: 10px;
}
#day .base-title04::before {
  background-color: #f4b083;
}
#group .base-title04::before {
  background-color: #6da8c4;
}
#short .base-title04::before {
  background-color: #b098c2;
}

.base-title05 {
  color: #619a73;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  border-bottom: 2px solid #83b292;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
#day .base-title05 {
  color: #eb965f;
  border-bottom: 2px solid #f4b083;
}
#group .base-title05 {
  color: #5c99b6;
  border-bottom: 2px solid #6da8c4;
}
#short .base-title05 {
  color: #9e81b4;
  border-bottom: 2px solid #b098c2;
}
@media screen and (max-width: 599px) {
  .base-title05 {
    font-size: 1.7rem;
  }
}

.base-title06 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  padding: 0 0 0 25px;
}
@media screen and (max-width: 599px) {
  .base-title06 {
    font-size: 1.7rem;
  }
}
.base-title06::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid #83b292;
  border-radius: 100px;
}
#day .base-title06::before {
  border: 4px solid #f4b083;
}
#group .base-title06::before {
  border: 4px solid #6da8c4;
}
#short .base-title06::before {
  border: 4px solid #b098c2;
}
.base-title06--underline {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 13px;
}

/*--------------------------------------------------------
text
----------------------------------------------------------*/
.text-base-link {
  color: #619a73;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .text-base-link:hover {
    text-decoration: none;
  }
}
#day .text-base-link {
  color: #eb965f;
}
#group .text-base-link {
  color: #5c99b6;
}
#short .text-base-link {
  color: #9e81b4;
}

.text-copy01 {
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #619a73;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .text-copy01 {
    font-size: 2rem;
  }
}
#day .text-copy01 {
  color: #eb965f;
}
#group .text-copy01 {
  color: #5c99b6;
}
#short .text-copy01 {
  color: #9e81b4;
}

.text-copy02 {
  margin-bottom: 25px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #619a73;
  line-height: 1.5;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
}
@media screen and (max-width: 599px) {
  .text-copy02 {
    font-size: 2rem;
  }
}
#day .text-copy02 {
  color: #eb965f;
}
#group .text-copy02 {
  color: #5c99b6;
}
#short .text-copy02 {
  color: #9e81b4;
}

.text-base-box {
  margin-bottom: 40px;
}
.text-base-box--color01 {
  border-radius: 5px;
  background-color: #ebf1ed;
  padding: 30px 35px;
}
@media screen and (max-width: 599px) {
  .text-base-box--color01 {
    padding: 20px 25px;
  }
}
#day .text-base-box--color01 {
  background-color: #f8eee7;
}
#group .text-base-box--color01 {
  background-color: #e9f3f8;
}
#short .text-base-box--color01 {
  background-color: #efebf3;
}
.text-base-box--color02 {
  border-radius: 5px;
  background-color: #faeded;
  padding: 30px 35px;
}
@media screen and (max-width: 599px) {
  .text-base-box--color02 {
    padding: 20px 25px;
  }
}

/*--------------------------------------------------------
button
----------------------------------------------------------*/
.base-btn {
  margin-right: 5px;
  margin-bottom: 10px;
  display: inline-block;
  background-color: #333;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 14px 40px 15px;
  border-radius: 100px;
  min-width: 220px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .base-btn:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .base-btn {
    min-width: auto;
    padding: 14px 50px 15px;
  }
}
.base-btn::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 21px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.base-btn--arrow-none::after {
  content: none;
}
.base-btn--color-base {
  background-color: #83b292;
}
#day .base-btn--color-base {
  background-color: #f4b083;
}
#group .base-btn--color-base {
  background-color: #6da8c4;
}
#short .base-btn--color-base {
  background-color: #b098c2;
}
.base-btn--outside {
  background-image: url(../img/common/icon_target.svg);
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: right 25px top 50%;
}
.base-btn--outside::after {
  content: none;
}
.base-btn--back::after {
  right: auto;
  left: 20px;
  transform: rotate(-135deg);
}

.base-btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.base-btn-list > li {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 599px) {
  .base-btn-list > li {
    width: 100%;
  }
}
.base-btn-list > li > a {
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  display: block;
  color: #000;
  line-height: 1.3;
  padding: 20px 20px 20px 50px;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .base-btn-list > li > a {
    padding: 16px 18px 16px 45px;
  }
}
.base-btn-list > li > a::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 15px;
  width: 24px;
  height: 24px;
  background-color: #83b292;
  border-radius: 200px;
}
#day .base-btn-list > li > a::before {
  background-color: #f4b083;
}
#group .base-btn-list > li > a::before {
  background-color: #6da8c4;
}
#short .base-btn-list > li > a::before {
  background-color: #b098c2;
}
@media screen and (max-width: 599px) {
  .base-btn-list > li > a::before {
    top: 15px;
    left: 13px;
  }
}
.base-btn-list > li > a::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 22px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
}
@media screen and (max-width: 599px) {
  .base-btn-list > li > a::after {
    top: 23px;
    left: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .base-btn-list > li > a:hover {
    transform: translateY(2px);
  }
}

.base-anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .base-anchor-list {
    margin-bottom: 50px;
  }
}
.base-anchor-list > li {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 599px) {
  .base-anchor-list > li {
    width: 100%;
  }
}
.base-anchor-list > li > a {
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  display: block;
  color: #000;
  line-height: 1.3;
  padding: 20px 20px 20px 50px;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .base-anchor-list > li > a {
    padding: 16px 18px 16px 45px;
  }
}
.base-anchor-list > li > a::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 15px;
  width: 24px;
  height: 24px;
  background-color: #83b292;
  border-radius: 200px;
}
#day .base-anchor-list > li > a::before {
  background-color: #f4b083;
}
#group .base-anchor-list > li > a::before {
  background-color: #6da8c4;
}
#short .base-anchor-list > li > a::before {
  background-color: #b098c2;
}
@media screen and (max-width: 599px) {
  .base-anchor-list > li > a::before {
    top: 15px;
    left: 13px;
  }
}
.base-anchor-list > li > a::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 24px;
  width: 7px;
  height: 7px;
  transform: rotate(135deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
}
@media screen and (max-width: 599px) {
  .base-anchor-list > li > a::after {
    top: 22px;
    left: 22px;
  }
}
@media screen and (min-width: 1025px) {
  .base-anchor-list > li > a:hover {
    transform: translateY(2px);
  }
}
.base-anchor-list--column02 > li {
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 599px) {
  .base-anchor-list--column02 > li {
    width: 100%;
  }
}
.base-anchor-list--column04 > li {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1024px) {
  .base-anchor-list--column04 > li {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .base-anchor-list--column04 > li {
    width: 100%;
  }
}

/* =====================================================

_form

===================================================== */
/*　全体共通　*/
input,
button,
textarea,
input[type=text],
input[type=search],
input[type=tel],
input[type=email],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}
input:focus,
button:focus,
textarea:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=email]:focus,
select:focus {
  outline: none !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
input::-webkit-input-placeholder,
button::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #a1a1a1;
}
input::-moz-placeholder,
button::-moz-placeholder,
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
select::-moz-placeholder {
  color: #a1a1a1;
  opacity: 1;
}
input:-ms-input-placeholder,
button:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #a1a1a1 !important;
}

textarea {
  resize: vertical;
}

input[type=radio],
input[type=checkbox] {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

input[type=submit],
input[type=button],
label,
button {
  cursor: pointer;
}

/*--リセット ここまで--*/
/* ************************************************************
・お問い合わせ
**************************************************************/
/*共通処理*/
#contact input,
#contact textarea,
#contact select {
  width: 100%;
  background-color: #f0f0f0;
  padding: 12px;
  resize: vertical;
  box-sizing: border-box;
  border-radius: 3px;
  /* Edge */
}
#contact input::placeholder,
#contact textarea::placeholder,
#contact select::placeholder {
  color: #a1a1a1;
  font-weight: 400;
}
#contact input::-ms-input-placeholder,
#contact textarea::-ms-input-placeholder,
#contact select::-ms-input-placeholder {
  color: #a1a1a1;
}
#contact input:focus,
#contact textarea:focus,
#contact select:focus {
  outline: none !important;
  box-shadow: none;
}
#contact select {
  background-image: url(../img/common/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 14px auto;
  padding-right: 28px;
}
#contact select::-ms-expand {
  display: none;
}

.form-tbl-wd140 {
  display: flex;
  align-items: center;
}
.form-tbl-wd140 input {
  max-width: 140px;
}
@media screen and (max-width: 599px) {
  .form-tbl-wd140 input {
    width: 100%;
  }
}
.form-tbl-wd140 span {
  margin-left: 10px;
  display: inline-block;
}

.form-tbl-wd220 {
  display: flex;
  align-items: center;
}
.form-tbl-wd220 input {
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-tbl-wd220 input {
    width: 100%;
  }
}
.form-tbl-wd220 span {
  margin-left: 10px;
  display: inline-block;
}

.form-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .form-tbl {
    margin-bottom: 20px;
  }
}
.form-tbl tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.form-tbl tr:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .form-tbl tr {
    border-bottom: none;
  }
}
.form-tbl th {
  width: 300px;
  text-align: left;
  box-sizing: border-box;
  position: relative;
  font-weight: 500;
  font-size: 1.7rem;
  padding: 30px 30px 30px 0;
  vertical-align: top;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .form-tbl th {
    width: 100%;
    display: block;
    line-height: 1.3;
    padding: 4px 0 13px 16px;
    border-radius: 3px;
    position: relative;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .form-tbl th::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: calc(100% - 8px);
    background-color: #83b292;
    border-radius: 10px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl th {
    font-size: 1.7rem;
  }
}
.form-tbl th .form-th-small {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.3;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .form-tbl th .form-th-small {
    margin-top: 4px;
  }
}
.form-tbl td {
  padding: 30px 0 30px 30px;
  font-weight: 500;
}
.form-tbl td:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .form-tbl td {
    display: block;
    border-bottom: none;
    padding: 20px 0 50px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl td {
    padding: 20px 0 35px;
  }
}
.form-tbl--conf th {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .form-tbl--conf th {
    background-color: #ebf1ed;
    border-bottom: none;
    padding: 8px 4px 9px 20px;
  }
  .form-tbl--conf th::before {
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
  }
}
.form-tbl--conf td {
  word-break: break-all;
  line-height: 1.4;
  font-weight: 400;
}

/*共通必須項目*/
.form-must {
  margin-left: 12px;
  padding: 2px 12px 3px;
  font-size: 1.3rem;
  line-height: 1.4;
  border-radius: 3px;
  background-color: #e75555;
  color: #fff;
  display: inline-block;
  vertical-align: text-bottom;
}
.form-must--mgnone {
  margin: 0;
}

/*共通ラジオボタン リスト*/
.form-radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-radio-list > li {
  width: 100%;
  line-height: 1.3;
  margin-bottom: 7px;
}
.form-radio-list > li:last-child {
  margin-bottom: 0;
}
.form-radio-list > li input[type=radio] {
  display: none;
}
.form-radio-list > li label {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  padding-right: 40px;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label {
    line-height: 1.5;
  }
}
.form-radio-list > li label:before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 26px;
  height: 26px;
  background: #e4e4e4;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label:before {
    top: 0;
  }
}
.form-radio-list > li input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: 12px;
  left: 6px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 50%;
  background: #83b292;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li input[type=radio]:checked + label:after {
    top: 14px;
  }
}
.form-radio-list--column > li {
  width: auto;
}

/*共通チェックボックス リスト*/
.form-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.form-check-list > li {
  width: 100%;
}
.form-check-list > li input[type=checkbox] {
  display: none;
}
.form-check-list > li label {
  line-height: 1.3;
  padding: 2px 0 0 37px;
  position: relative;
  letter-spacing: 0;
  display: block;
}
.form-check-list > li label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #e4e4e4;
  border-radius: 2px;
}
.form-check-list > li input[type=checkbox]:checked + label::before {
  background-color: #83b292;
}
.form-check-list > li input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 10px;
  height: 16px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-135deg);
}

/*住所*/
.form-address-list > li {
  margin-bottom: 14px;
}
.form-address-list > li:last-child {
  margin-bottom: 0;
}
.form-address-list__post {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__post {
    flex-wrap: wrap;
  }
}
.form-address-list__post > span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__post > span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__post input {
  max-width: 220px;
  margin-right: 10px;
}
.form-address-list__select {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__select {
    flex-wrap: wrap;
  }
}
.form-address-list__select span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__select span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__select select {
  width: calc(100% - 170px) !important;
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-address-list__select select {
    width: 100% !important;
    max-width: 100%;
  }
}
.form-address-list__text {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__text {
    flex-wrap: wrap;
  }
}
.form-address-list__text span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__text span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__text input {
  width: calc(100% - 170px) !important;
}
@media screen and (max-width: 599px) {
  .form-address-list__text input {
    width: 100% !important;
    max-width: 100%;
  }
}

.form-buy-year {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-buy-year {
    flex-wrap: wrap;
  }
}
.form-buy-year__text {
  margin-right: 25px;
}
@media screen and (max-width: 599px) {
  .form-buy-year__text {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.form-buy-year > select {
  max-width: 220px !important;
}

/*お名前/フリガナ*/
.form-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
.form-name-list > li {
  display: flex;
  align-items: center;
}
.form-name-list > li input {
  max-width: 220px !important;
}
.form-name-list > li span {
  margin-right: 5px;
  display: block;
  width: 50px;
  text-align: center;
}

.form-notice-text {
  font-size: 1.4rem;
  color: #e82a2a;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

.form-privacy-text {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .form-privacy-text {
    margin-bottom: 25px;
  }
}
.form-privacy-text a {
  color: #83b292;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .form-privacy-text a:hover {
    text-decoration: none;
  }
}

/*希望日時*/
.form-time-kibou {
  margin-bottom: 30px;
}
.form-time-kibou:last-of-type {
  margin-bottom: 0;
}
.form-time-kibou > dt {
  margin-bottom: 14px;
  line-height: 1.3;
  padding: 3px 0 3px 17px;
  position: relative;
  font-size: 1.7rem;
}
.form-time-kibou > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #83b292;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .form-time-kibou > dt {
    margin-bottom: 10px;
    border-radius: 5px;
    padding-left: 25px;
  }
  .form-time-kibou > dt::before {
    width: 15px;
    height: 4px;
    top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .form-time-kibou > dt {
    font-size: 1.6rem;
  }
}

.form-flatpickr {
  display: flex;
}
.form-flatpickr input {
  max-width: 220px !important;
}
.form-flatpickr .input-button {
  margin-left: 9px;
  width: 50px;
  background-color: #83b292;
  color: #fff;
  border: none;
  display: block;
  background-image: url(../img/common/calendar_icon.png);
  background-size: 27px auto;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 3px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .form-flatpickr .input-button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .form-flatpickr .input-button {
    width: 50px;
    background-size: 24px auto;
  }
}

.form-bottom-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  .form-bottom-wrapper {
    padding-top: 30px;
  }
}

.form-btn {
  margin: 0 auto;
  display: block;
  position: relative;
}
.form-btn__send {
  max-width: 270px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #83b292 !important;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 10px !important;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: 0.2s;
  background-image: url(../img/common/icon_form_arrow.png);
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
}
@media screen and (min-width: 1025px) {
  .form-btn__send:hover {
    transform: translateY(2px);
  }
}
.form-btn__corrected {
  width: 210px !important;
  margin: 20px auto 0;
  padding: 14px 17px !important;
  background-color: #818181 !important;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 3px;
  transition: 0.2s;
  line-height: 1.3;
  background-image: url(../img/common/icon_form_arrow2.png);
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: left 15px top 50%;
}
@media screen and (min-width: 1025px) {
  .form-btn__corrected:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .form-btn__corrected {
    position: relative;
    margin: 15px auto 0;
    padding: 15px;
  }
}
.form-error {
  margin-bottom: 50px;
  padding: 26px;
  color: #e82a2a;
  font-weight: 500;
  border-radius: 3px;
  background-color: #fadcdc;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .form-error {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .form-error {
    margin-bottom: 20px;
    padding: 15px;
  }
}

.form-error-text {
  margin-bottom: 10px;
  color: #e82a2a;
  line-height: 1.3;
}

.form-send {
  margin-bottom: 35px;
  background-color: #ebf1ed;
  border-radius: 6px;
  text-align: center;
  padding: 70px 20px;
}
@media screen and (max-width: 1024px) {
  .form-send {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 599px) {
  .form-send {
    padding: 40px 20px;
    margin-bottom: 25px;
  }
}
.form-send > dt {
  font-size: 2.7rem;
  color: #83b292;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .form-send > dt {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}

.form-send-btn {
  max-width: 210px;
  margin: 0 auto;
}
.form-send-btn > a {
  width: 100%;
  margin: 0;
}

/* ************************************************************
//・お問い合わせ
**************************************************************/
.base-table-wrap {
  margin-bottom: 40px;
}

.entry-container {
  margin: 0;
}

.base-table01,
.js-table-unit-scroll-hint {
  width: 100%;
  border: 1px solid #d4d4d4;
  border-collapse: collapse;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .base-table01,
  .js-table-unit-scroll-hint {
    font-size: 1.5rem;
  }
}
.base-table01 th, .base-table01 td,
.js-table-unit-scroll-hint th,
.js-table-unit-scroll-hint td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d4d4d4;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .base-table01 th, .base-table01 td,
  .js-table-unit-scroll-hint th,
  .js-table-unit-scroll-hint td {
    padding: 10px;
  }
}
.base-table01 th.acms-cell-text-left, .base-table01 td.acms-cell-text-left,
.js-table-unit-scroll-hint th.acms-cell-text-left,
.js-table-unit-scroll-hint td.acms-cell-text-left {
  text-align: left !important;
}
.base-table01 th.acms-cell-text-center, .base-table01 td.acms-cell-text-center,
.js-table-unit-scroll-hint th.acms-cell-text-center,
.js-table-unit-scroll-hint td.acms-cell-text-center {
  text-align: center !important;
}
.base-table01 th.acms-cell-text-right, .base-table01 td.acms-cell-text-right,
.js-table-unit-scroll-hint th.acms-cell-text-right,
.js-table-unit-scroll-hint td.acms-cell-text-right {
  text-align: right !important;
}
.base-table01 th.bg-color01, .base-table01 td.bg-color01,
.js-table-unit-scroll-hint th.bg-color01,
.js-table-unit-scroll-hint td.bg-color01 {
  background-color: #83b292;
  color: #fff;
}
.base-table01 th.bg-color01--nowrap, .base-table01 td.bg-color01--nowrap,
.js-table-unit-scroll-hint th.bg-color01--nowrap,
.js-table-unit-scroll-hint td.bg-color01--nowrap {
  white-space: nowrap;
}
#day .base-table01 th.bg-color01, #day .base-table01 td.bg-color01,
#day .js-table-unit-scroll-hint th.bg-color01,
#day .js-table-unit-scroll-hint td.bg-color01 {
  background-color: #f4b083;
}
#group .base-table01 th.bg-color01, #group .base-table01 td.bg-color01,
#group .js-table-unit-scroll-hint th.bg-color01,
#group .js-table-unit-scroll-hint td.bg-color01 {
  background-color: #6da8c4;
}
#short .base-table01 th.bg-color01, #short .base-table01 td.bg-color01,
#short .js-table-unit-scroll-hint th.bg-color01,
#short .js-table-unit-scroll-hint td.bg-color01 {
  background-color: #b098c2;
}
.base-table01 th.bg-color02, .base-table01 td.bg-color02,
.js-table-unit-scroll-hint th.bg-color02,
.js-table-unit-scroll-hint td.bg-color02 {
  background-color: #ebf1ed;
}
.base-table01 th.bg-color02--nowrap, .base-table01 td.bg-color02--nowrap,
.js-table-unit-scroll-hint th.bg-color02--nowrap,
.js-table-unit-scroll-hint td.bg-color02--nowrap {
  white-space: nowrap;
}
#day .base-table01 th.bg-color02, #day .base-table01 td.bg-color02,
#day .js-table-unit-scroll-hint th.bg-color02,
#day .js-table-unit-scroll-hint td.bg-color02 {
  background-color: #f8eee7;
}
#group .base-table01 th.bg-color02, #group .base-table01 td.bg-color02,
#group .js-table-unit-scroll-hint th.bg-color02,
#group .js-table-unit-scroll-hint td.bg-color02 {
  background-color: #e9f3f8;
}
#short .base-table01 th.bg-color02, #short .base-table01 td.bg-color02,
#short .js-table-unit-scroll-hint th.bg-color02,
#short .js-table-unit-scroll-hint td.bg-color02 {
  background-color: #efebf3;
}
.base-table01 th.nowrap, .base-table01 td.nowrap,
.js-table-unit-scroll-hint th.nowrap,
.js-table-unit-scroll-hint td.nowrap {
  white-space: nowrap;
}
.base-table01--th-wd30 th,
.js-table-unit-scroll-hint--th-wd30 th {
  width: 30%;
}
.base-table01--th-wd20 th,
.js-table-unit-scroll-hint--th-wd20 th {
  width: 20%;
}
@media screen and (max-width: 599px) {
  .base-table01--sp-small th, .base-table01--sp-small td,
  .js-table-unit-scroll-hint--sp-small th,
  .js-table-unit-scroll-hint--sp-small td {
    font-size: 1.3rem;
    padding: 10px 5px;
  }
}

@media screen and (max-width: 599px) {
  .tbl-sp-scroll table {
    width: 700px;
  }
}

.base-list01 {
  margin-bottom: 40px;
}
.base-list01 > li {
  margin-bottom: 12px;
  position: relative;
  padding: 0 0 0 20px;
  line-height: 1.3;
}
.base-list01 > li:last-child {
  margin-bottom: 0;
}
.base-list01 > li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #83b292;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .base-list01 > li::before {
    top: 5px;
    width: 10px;
    height: 10px;
  }
}
#day .base-list01 > li::before {
  background-color: #f4b083;
}
#group .base-list01 > li::before {
  background-color: #6da8c4;
}
#short .base-list01 > li::before {
  background-color: #b098c2;
}
.base-list01--color02 > li::before {
  background-color: #e18b8b !important;
}
.base-list01--color-bg01 {
  background-color: #ebf1ed;
  border-radius: 5px;
  padding: 30px 35px;
}
#day .base-list01--color-bg01 {
  background-color: #f8eee7;
}
#group .base-list01--color-bg01 {
  background-color: #e9f3f8;
}
#short .base-list01--color-bg01 {
  background-color: #efebf3;
}
@media screen and (max-width: 599px) {
  .base-list01--color-bg01 {
    padding: 20px 25px;
  }
}
.base-list01--color-bg02 {
  background-color: #faeded;
  border-radius: 5px;
  padding: 30px 35px;
}
@media screen and (max-width: 599px) {
  .base-list01--color-bg02 {
    padding: 20px 25px;
  }
}
.base-list01--color-bg02 > li::before {
  background-color: #e18b8b !important;
}

.base-number-list01 {
  list-style: none;
  border-radius: 6px;
  counter-reset: num;
  margin-bottom: 40px;
}
.base-number-list01 > li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 13px;
  line-height: 1.4;
}
.base-number-list01 > li:last-child {
  margin-bottom: 0;
}
.base-number-list01 > li::before {
  content: counter(num);
  counter-increment: num;
  top: -1px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #83b292;
  font-family: "Hind", sans-serif !important;
  font-weight: 400;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding-top: 4px;
}
#day .base-number-list01 > li::before {
  background-color: #f4b083;
}
#group .base-number-list01 > li::before {
  background-color: #6da8c4;
}
#short .base-number-list01 > li::before {
  background-color: #b098c2;
}
.base-number-list01--color02 > li::before {
  background-color: #e18b8b !important;
}
.base-number-list01--color-bg01 {
  background-color: #ebf1ed;
  border-radius: 5px;
  padding: 30px 35px;
}
#day .base-number-list01--color-bg01 {
  background-color: #f8eee7;
}
#group .base-number-list01--color-bg01 {
  background-color: #e9f3f8;
}
#short .base-number-list01--color-bg01 {
  background-color: #efebf3;
}
@media screen and (max-width: 599px) {
  .base-number-list01--color-bg01 {
    padding: 20px 25px;
  }
}
.base-number-list01--color-bg02 {
  background-color: #faeded;
  border-radius: 5px;
  padding: 30px 35px;
}
@media screen and (max-width: 599px) {
  .base-number-list01--color-bg02 {
    padding: 20px 25px;
  }
}
.base-number-list01--color-bg02 > li::before {
  background-color: #e18b8b !important;
}

.base-link-list {
  margin-bottom: 40px;
}
.base-link-list > li {
  margin-bottom: 10px;
}
.base-link-list > li:last-child {
  margin-bottom: 0;
}
.base-link-list > li > a {
  color: #222;
  display: inline-block;
  text-decoration: underline;
  position: relative;
  padding: 0 0 0 26px;
}
.base-link-list > li > a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 200px;
  background-color: #83b292;
}
#day .base-link-list > li > a::before {
  background-color: #f4b083;
}
#group .base-link-list > li > a::before {
  background-color: #6da8c4;
}
#short .base-link-list > li > a::before {
  background-color: #b098c2;
}
.base-link-list > li > a::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  display: block;
}
@media screen and (min-width: 1025px) {
  .base-link-list > li > a:hover {
    text-decoration: none;
    color: #619a73;
    transform: translateX(2px);
  }
}

.base-file-list {
  margin-bottom: 40px;
}
.base-file-list > li {
  margin-bottom: 10px;
}
.base-file-list > li > a {
  line-height: 1.3;
  display: inline-block;
  padding: 3px 0 3px 30px;
}
.base-file-list > li > a.pdf {
  color: #d13737;
  text-decoration: underline;
  background-image: url(../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
}
.base-file-list > li > a.word {
  color: #3671b6;
  text-decoration: underline;
  background-image: url(../img/common/icon_word.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
}
.base-file-list > li > a.excel {
  color: #26a367;
  text-decoration: underline;
  background-image: url(../img/common/icon_excel.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
}
@media screen and (min-width: 1025px) {
  .base-file-list > li > a:hover {
    text-decoration: none;
    transform: translateX(2px);
  }
}

.base-file-list2 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .base-file-list2 {
    gap: 10px;
  }
}
.base-file-list2 > li {
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 1024px) {
  .base-file-list2 > li {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .base-file-list2 > li {
    width: 100%;
  }
}
.base-file-list2 > li > a {
  display: block;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  color: #222;
  line-height: 1.3;
  padding: 22px 20px 22px 55px;
  position: relative;
  background-position: left 20px top 50%;
  background-repeat: no-repeat;
  background-size: 23px auto;
}
@media screen and (max-width: 599px) {
  .base-file-list2 > li > a {
    padding: 20px 20px 20px 55px;
  }
}
.base-file-list2 > li > a::before {
  content: "";
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .base-file-list2 > li > a:hover {
    transform: translateY(2px);
  }
}
.base-file-list2 > li > a.pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.base-file-list2 > li > a.word {
  background-image: url(../img/common/icon_word.svg);
}
.base-file-list2 > li > a.excel {
  background-image: url(../img/common/icon_excel.svg);
}

/*--------------------------------------------------------
modal
----------------------------------------------------------*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 103;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .modal-container {
    padding: 40px 10px;
  }
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 700px;
  width: 96%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  padding: 1px 0 0 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  background-color: #000;
  border-radius: 200px;
  z-index: 1;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
  border-radius: 5px;
  cursor: auto;
  max-height: 80vh;
  overflow: auto;
}
@media screen and (min-width: 1025px) {
  .modal-content::-webkit-scrollbar {
    width: 6px;
  }
  .modal-content::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }
  .modal-content::-webkit-scrollbar-thumb {
    background: #7e7e7e;
    border-radius: 10px;
    box-shadow: none;
  }
}
@media screen and (max-width: 599px) {
  .modal-content {
    padding: 25px;
  }
}

/*--------------------------------------------------------
common
----------------------------------------------------------*/
.common-contact {
  background-color: #c6e3de;
  border-radius: 15px;
  padding: 35px 35px 45px;
}
@media screen and (max-width: 1024px) {
  .common-contact {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact {
    border-radius: 10px;
    padding: 15px 20px 20px;
  }
}
.common-contact__title {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .common-contact__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}
.common-contact__title span {
  color: #08a189;
}
.common-contact__box {
  max-width: 800px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 6px rgba(140, 199, 189, 0.25);
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .common-contact__box {
    border-radius: 10px;
  }
}
.common-contact__box__upper-parts01 {
  background-color: #fff;
  padding: 35px 30px 30px;
}
@media screen and (max-width: 834px) {
  .common-contact__box__upper-parts01 {
    padding: 30px 30px 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01 {
    padding: 20px 20px 20px;
  }
}
.common-contact__box__upper-parts01__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 655px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__upper-parts01__inner {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01__inner {
    gap: 15px;
  }
}
.common-contact__box__upper-parts01__inner__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 290px;
}
@media screen and (max-width: 834px) {
  .common-contact__box__upper-parts01__inner__logo {
    width: 230px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01__inner__logo {
    width: 250px;
  }
}
.common-contact__box__upper-parts01__inner__address {
  width: calc(100% - 330px);
  font-size: 1.6rem;
  letter-spacing: -0.05rem;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .common-contact__box__upper-parts01__inner__address {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01__inner__address {
    width: 100%;
    font-size: 1.5rem;
  }
}
.common-contact__box__under-parts01 {
  background-color: #f2f2f2;
  padding: 30px 30px 25px;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts01 {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01 {
    padding: 20px;
  }
}
.common-contact__box__under-parts01__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner {
    gap: 15px;
  }
}
.common-contact__box__under-parts01__inner__tel {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts01__inner__tel a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel {
    width: 100%;
  }
}
.common-contact__box__under-parts01__inner__tel__number {
  display: block;
  font-family: "Hind", sans-serif !important;
  font-size: 4.1rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts01__inner__tel__number {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel__number {
    font-size: 2.9rem;
  }
}
.common-contact__box__under-parts01__inner__tel__number a {
  color: #08a189;
}
.common-contact__box__under-parts01__inner__tel__number__en {
  margin-right: 10px;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.9rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts01__inner__tel__number__en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel__number__en {
    margin-right: 5px;
    font-size: 1.7rem;
  }
}
.common-contact__box__under-parts01__inner__tel__reception-hours {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel__reception-hours {
    font-size: 1.5rem;
  }
}
.common-contact__box__under-parts01__inner__mail {
  width: 240px;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__mail {
    width: 100%;
  }
}
.common-contact__box__under-parts01__inner__mail__link {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 3px 3px rgba(198, 198, 198, 0.5);
  padding: 13px 15px 15px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts01__inner__mail__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.common-contact__box__under-parts01__inner__mail__link__inner {
  position: relative;
  padding-left: 33px;
  color: #222;
  line-height: 1.4;
}
.common-contact__box__under-parts01__inner__mail__link__inner::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 26px;
  height: 21px;
  background-image: url(../img/common/icon_mail.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__mail__link__inner::before {
    top: 2px;
  }
}
.common-contact__box__under-parts02 {
  background-color: #f2f2f2;
  padding: 30px 30px 25px;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02 {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02 {
    padding: 20px;
  }
}
.common-contact__box__under-parts02__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner {
    max-width: 550px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner {
    gap: 15px;
  }
}
.common-contact__box__under-parts02__inner__left {
  width: calc(53% - 25px);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts02__inner__left a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left {
    width: 100%;
  }
}
.common-contact__box__under-parts02__inner__left__number {
  display: block;
  font-family: "Hind", sans-serif !important;
  font-size: 4.1rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__left__number {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__number {
    font-size: 2.9rem;
  }
}
.common-contact__box__under-parts02__inner__left__number a {
  color: #08a189;
}
.common-contact__box__under-parts02__inner__left__number__en {
  margin-right: 10px;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.9rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__left__number__en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__number__en {
    margin-right: 5px;
    font-size: 1.7rem;
  }
}
.common-contact__box__under-parts02__inner__left__reception-hours {
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__reception-hours {
    font-size: 1.5rem;
  }
}
.common-contact__box__under-parts02__inner__left__mail__link {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 3px 3px rgba(198, 198, 198, 0.5);
  padding: 10px 15px 12px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts02__inner__left__mail__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.common-contact__box__under-parts02__inner__left__mail__link__inner {
  position: relative;
  padding-left: 33px;
  color: #222;
  line-height: 1.4;
}
.common-contact__box__under-parts02__inner__left__mail__link__inner::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 26px;
  height: 21px;
  background-image: url(../img/common/icon_mail.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__mail__link__inner::before {
    top: 2px;
  }
}
.common-contact__box__under-parts02__inner__right {
  width: calc(47% - 25px);
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts02__inner__right a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right .text-base {
    text-align: center;
  }
}
.common-contact__box__under-parts02__inner__right__number {
  display: block;
  font-family: "Hind", sans-serif !important;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__right__number {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right__number {
    font-size: 2rem;
    text-align: center;
  }
}
.common-contact__box__under-parts02__inner__right__number a {
  color: #08a189;
}
.common-contact__box__under-parts02__inner__right__number__name {
  color: #222;
  font-size: 1.9rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__right__number__name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right__number__name {
    font-size: 1.7rem;
  }
}

/*--------------------------------------------------------
block
----------------------------------------------------------*/
/*写真右ブロック*/
.photo-text-block {
  margin-bottom: 40px;
  text-align: justify;
}
.photo-text-block.no-float {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .photo-text-block.no-float {
    flex-wrap: wrap;
    align-items: normal;
  }
}
.photo-text-block__photo {
  margin: 0 0 20px 30px;
  max-width: 44%;
  float: right;
}
@media screen and (max-width: 599px) {
  .photo-text-block__photo {
    margin: 0 auto 15px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
.no-float .photo-text-block__photo {
  float: none;
  order: 2;
}
@media screen and (max-width: 599px) {
  .no-float .photo-text-block__photo {
    order: 1;
  }
}
.photo-text-block__photo img {
  max-width: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .photo-text-block__photo img {
    display: block;
    margin: 0 auto;
  }
}
.photo-text-block__caption {
  text-align: center;
  line-height: 1.4;
  margin-top: 8px;
}
.photo-text-block__text {
  float: left;
}
.no-float .photo-text-block__text {
  order: 1;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .no-float .photo-text-block__text {
    order: 2;
  }
}

/*写真左ブロック*/
.photo-text-block-left {
  margin-bottom: 40px;
  text-align: justify;
}
.photo-text-block-left.no-float {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .photo-text-block-left.no-float {
    flex-wrap: wrap;
    align-items: normal;
  }
}
.photo-text-block-left__photo {
  margin: 0 30px 20px 0;
  max-width: 44%;
  float: left;
}
@media screen and (max-width: 599px) {
  .photo-text-block-left__photo {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
.no-float .photo-text-block-left__photo {
  float: none;
  order: 1;
}
.photo-text-block-left__photo img {
  max-width: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .photo-text-block-left__photo img {
    display: block;
    margin: 0 auto;
  }
}
.photo-text-block-left__caption {
  text-align: center;
  line-height: 1.4;
  margin-top: 8px;
}
.photo-text-block-left__text {
  float: right;
}
.no-float .photo-text-block-left__text {
  order: 2;
  width: 100%;
}

.youtube-block {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 40px;
  border-radius: 6px;
  overflow: hidden;
}
.youtube-block iframe {
  width: 100%;
  height: 100%;
}

.map-block {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 30px;
  border-radius: 6px;
  overflow: hidden;
}
.map-block iframe {
  width: 100%;
  height: 100%;
}

/*ソース貼り付け用*/
.wysiwyg-block-source {
  margin-bottom: 40px;
}

/*ウィジウィグデフォルト設定*/
.wysiwyg-block {
  margin-bottom: 40px;
}
.wysiwyg-block--mb-none {
  margin-bottom: 0;
}
.wysiwyg-block h1 {
  margin-bottom: 35px;
  font-size: 2.9rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 23px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h1 {
    font-size: 2.8rem;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h1 {
    font-size: 2.4rem;
    padding-bottom: 16px;
    margin-bottom: 25px;
  }
}
.wysiwyg-block h1::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #83b292;
  border-radius: 10px;
}
#day .wysiwyg-block h1::before {
  background-color: #f4b083;
}
#group .wysiwyg-block h1::before {
  background-color: #6da8c4;
}
#short .wysiwyg-block h1::before {
  background-color: #b098c2;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h1::before {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h1::before {
    width: 60px;
  }
}
.wysiwyg-block h1::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  /*border-bottom: 1px solid #e5e5e5;*/
}
.wysiwyg-block h2 {
  margin-bottom: 30px;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding: 2px 0 20px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h2 {
    margin-bottom: 23px;
    font-size: 2.2rem;
    padding: 2px 0 15px 15px;
  }
}
.wysiwyg-block h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: calc(100% - 15px);
  background-color: #83b292;
  border-radius: 10px;
}
#day .wysiwyg-block h2::before {
  background-color: #f4b083;
}
#group .wysiwyg-block h2::before {
  background-color: #6da8c4;
}
#short .wysiwyg-block h2::before {
  background-color: #b098c2;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h2::before {
    width: 4px;
  }
}
.wysiwyg-block h3 {
  background-color: #ebf1ed;
  border-radius: 5px;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 10px 14px 30px;
  position: relative;
  margin-bottom: 25px;
}
#day .wysiwyg-block h3 {
  background-color: #f8eee7;
}
#group .wysiwyg-block h3 {
  background-color: #e9f3f8;
}
#short .wysiwyg-block h3 {
  background-color: #efebf3;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h3 {
    font-size: 2rem;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h3 {
    font-size: 1.8rem;
    margin-bottom: 23px;
    padding: 14px 10px 14px 30px;
  }
}
.wysiwyg-block h3::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 4px;
  height: calc(100% - 22px);
  background-color: #83b292;
  display: block;
  border-radius: 10px;
}
#day .wysiwyg-block h3::before {
  background-color: #f4b083;
}
#group .wysiwyg-block h3::before {
  background-color: #6da8c4;
}
#short .wysiwyg-block h3::before {
  background-color: #b098c2;
}
.wysiwyg-block h4 {
  margin-bottom: 25px;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 17px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h4 {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h4 {
    font-size: 1.8rem;
    padding-bottom: 13px;
  }
}
.wysiwyg-block h4::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 38px;
  height: 3px;
  background-color: #83b292;
  border-radius: 10px;
}
#day .wysiwyg-block h4::before {
  background-color: #f4b083;
}
#group .wysiwyg-block h4::before {
  background-color: #6da8c4;
}
#short .wysiwyg-block h4::before {
  background-color: #b098c2;
}
.wysiwyg-block ul {
  margin-bottom: 40px;
  list-style: none;
}
.wysiwyg-block ul > li {
  margin-bottom: 12px;
  position: relative;
  padding: 0 0 0 20px;
  line-height: 1.3;
}
.wysiwyg-block ul > li:last-child {
  margin-bottom: 0;
}
.wysiwyg-block ul > li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #83b292;
  border-radius: 50%;
}
#day .wysiwyg-block ul > li::before {
  background-color: #f4b083;
}
#group .wysiwyg-block ul > li::before {
  background-color: #6da8c4;
}
#short .wysiwyg-block ul > li::before {
  background-color: #b098c2;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block ul > li::before {
    top: 5px;
    width: 10px;
    height: 10px;
  }
}
.wysiwyg-block ol {
  list-style: none;
  border-radius: 6px;
  counter-reset: num;
  margin-bottom: 40px;
}
.wysiwyg-block ol > li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 13px;
  line-height: 1.4;
}
.wysiwyg-block ol > li:last-child {
  margin-bottom: 0;
}
.wysiwyg-block ol > li::before {
  content: counter(num);
  counter-increment: num;
  top: -1px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #83b292;
  font-family: "Hind", sans-serif !important;
  font-weight: 400;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding-top: 4px;
}
#day .wysiwyg-block ol > li::before {
  background-color: #f4b083;
}
#group .wysiwyg-block ol > li::before {
  background-color: #6da8c4;
}
#short .wysiwyg-block ol > li::before {
  background-color: #b098c2;
}
.wysiwyg-block a {
  color: #619a73;
  text-decoration: underline;
}
#day .wysiwyg-block a {
  color: #eb965f;
}
#group .wysiwyg-block a {
  color: #5c99b6;
}
#short .wysiwyg-block a {
  color: #9e81b4;
}
@media screen and (min-width: 1025px) {
  .wysiwyg-block a:hover {
    text-decoration: none;
  }
}
.wysiwyg-block blockquote {
  padding-left: 1em;
}
.wysiwyg-block table {
  font-size: 100%;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #d4d4d4;
  border-collapse: collapse;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block table {
    font-size: 1.5rem;
  }
}
.wysiwyg-block table th, .wysiwyg-block table td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d4d4d4;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block table th, .wysiwyg-block table td {
    padding: 10px;
  }
}
.wysiwyg-block table thead th {
  background-color: #83b292;
  color: #fff;
}
#day .wysiwyg-block table thead th {
  background-color: #f4b083;
}
#group .wysiwyg-block table thead th {
  background-color: #6da8c4;
}
#short .wysiwyg-block table thead th {
  background-color: #b098c2;
}
.wysiwyg-block blockquote {
  margin-bottom: 40px;
  color: #b9b9b9;
  border-left: 3px solid #e4e4e4;
}
.wysiwyg-block hr {
  display: block;
}
.wysiwyg-block em {
  font-style: italic !important;
}
.wysiwyg-block strong {
  font-weight: bold !important;
}
.wysiwyg-block em strong, .wysiwyg-block strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

.faq-block {
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .faq-block {
    margin-bottom: 60px;
  }
}
.faq-block > div {
  border-bottom: 1px solid #eaeaea;
}
.faq-block > div:last-of-type {
  border-bottom: none;
}
.faq-block > div > dt {
  position: relative;
  padding: 30px 0 15px 65px;
  background-repeat: no-repeat;
  font-size: 1.7rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .faq-block > div > dt {
    padding: 25px 0 15px 65px;
  }
}
@media screen and (max-width: 599px) {
  .faq-block > div > dt {
    padding: 18px 0 10px 45px;
    font-size: 1.6rem;
  }
}
.faq-block > div > dt::before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 0;
  width: 46px;
  height: 46px;
  background-color: #83b292;
  border-radius: 300px;
  color: #fff;
  font-size: 2.4rem;
  font-family: "Hind", sans-serif !important;
  text-align: center;
  padding-top: 4px;
}
#day .faq-block > div > dt::before {
  background-color: #f4b083;
}
#group .faq-block > div > dt::before {
  background-color: #6da8c4;
}
#short .faq-block > div > dt::before {
  background-color: #b098c2;
}
@media screen and (max-width: 1024px) {
  .faq-block > div > dt::before {
    top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .faq-block > div > dt::before {
    top: 14px;
    width: 32px;
    height: 32px;
    font-size: 1.8rem;
  }
}
.faq-block > div > dd {
  position: relative;
  margin-bottom: 30px;
  margin-left: 65px;
  padding: 30px 30px 30px 90px;
  background-color: #ebf1ed;
  border-radius: 5px;
  line-height: 1.4;
}
#day .faq-block > div > dd {
  background-color: #f8eee7;
}
#group .faq-block > div > dd {
  background-color: #e9f3f8;
}
#short .faq-block > div > dd {
  background-color: #efebf3;
}
@media screen and (max-width: 599px) {
  .faq-block > div > dd {
    padding: 20px 20px 20px 55px;
    margin-left: 45px;
  }
}
.faq-block > div > dd::before {
  content: "A";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 30px;
  width: 46px;
  height: 46px;
  margin-top: -10px;
  background-color: #fff;
  border-radius: 200px;
  color: #83b292;
  font-size: 2.4rem;
  font-family: "Hind", sans-serif !important;
  text-align: center;
  text-indent: 0;
  vertical-align: top;
  transition: 0.4s;
  padding-top: 2px;
}
#day .faq-block > div > dd::before {
  color: #eb965f;
}
#group .faq-block > div > dd::before {
  color: #5c99b6;
}
#short .faq-block > div > dd::before {
  color: #9e81b4;
}
@media screen and (max-width: 599px) {
  .faq-block > div > dd::before {
    left: 14px;
    width: 32px;
    height: 32px;
    margin-top: -4px;
    font-size: 1.8rem;
  }
}
.faq-block > div:first-of-type > dt {
  padding-top: 5px;
}
.faq-block > div:first-of-type > dt::before {
  top: -4px;
}
@media screen and (max-width: 599px) {
  .faq-block > div:first-of-type > dt::before {
    top: 0;
  }
}

/*--------------------------------------------------------
photo
----------------------------------------------------------*/
.base-photo-3 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .base-photo-3 {
    gap: 15px;
  }
}
.base-photo-3::after {
  content: none;
}
.base-photo-3 li {
  width: calc((100% - 40px) / 3);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .base-photo-3 li {
    width: calc((100% - 30px) / 3);
  }
}
.base-photo-3 li img {
  max-width: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .base-photo-3 li {
    width: 100%;
  }
}

.base-photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .base-photo-2 {
    gap: 15px;
  }
}
.base-photo-2::after {
  content: none;
}
.base-photo-2 li {
  width: calc((100% - 20px) / 2);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .base-photo-2 li {
    width: calc((100% - 15px) / 2);
  }
}
.base-photo-2 li img {
  max-width: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .base-photo-2 li {
    width: 100%;
  }
}

.base-photo-1 {
  max-width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}
.base-photo-1 img {
  border-radius: 6px;
}

.base-photo-caption {
  display: block;
  margin-top: 5px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .base-photo-caption {
    margin-top: 5px;
  }
}

/*--------------------------------------------------------
animation
----------------------------------------------------------*/
/*アニメーション*/
@keyframes feedIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn_copy {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn_copy2 {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (min-width: 1025px) {
  .fadein-no-js {
    opacity: 0;
    animation-name: feedIn;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-direction: alternate;
    animation-fill-mode: forwards;
  }
}

@media screen and (min-width: 1025px) {
  .fadein {
    opacity: 0;
  }
}

@media screen and (min-width: 1025px) {
  .fadein--on {
    animation-name: feedIn;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-direction: alternate;
    animation-fill-mode: forwards;
  }
}

@media screen and (min-width: 1025px) {
  .deley01 {
    animation-delay: 0.1s;
  }
  .deley02 {
    animation-delay: 0.2s;
  }
  .deley03 {
    animation-delay: 0.3s;
  }
  .deley04 {
    animation-delay: 0.4s;
  }
  .deley05 {
    animation-delay: 0.5s;
  }
  .deley06 {
    animation-delay: 0.6s;
  }
  .deley07 {
    animation-delay: 0.7s;
  }
  .deley08 {
    animation-delay: 0.8s;
  }
  .deley09 {
    animation-delay: 0.9s;
  }
  .deley10 {
    animation-delay: 1s;
  }
  .deley11 {
    animation-delay: 1.1s;
  }
  .deley12 {
    animation-delay: 1.2s;
  }
  .deley13 {
    animation-delay: 1.3s;
  }
  .deley14 {
    animation-delay: 1.4s;
  }
  .deley15 {
    animation-delay: 1.5s;
  }
  .deley16 {
    animation-delay: 1.6s;
  }
  .deley17 {
    animation-delay: 1.7s;
  }
  .deley18 {
    animation-delay: 1.8s;
  }
  .deley19 {
    animation-delay: 1.9s;
  }
  .deley20 {
    animation-delay: 2s;
  }
  .deley21 {
    animation-delay: 2.1s;
  }
  .deley22 {
    animation-delay: 2.2s;
  }
  .deley23 {
    animation-delay: 2.3s;
  }
  .deley24 {
    animation-delay: 2.4s;
  }
  .deley25 {
    animation-delay: 2.5s;
  }
  .deley26 {
    animation-delay: 2.6s;
  }
  .deley27 {
    animation-delay: 2.7s;
  }
  .deley28 {
    animation-delay: 2.8s;
  }
}
/*--------------------------------------------------------
top
----------------------------------------------------------*/
/* **************** topメイン ******************/
.top-main {
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top-main {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.top-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 44%;
  background-color: #ebf1ed;
  background-image: url(../img/common/noise.png);
  background-repeat: repeat;
  z-index: -1;
  border-bottom-right-radius: 25px;
}
@media screen and (min-width: 1025px) {
  .top-main::before {
    opacity: 0;
    animation-name: feedIn;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-delay: 1.4s;
  }
}
@media screen and (max-width: 1400px) {
  .top-main::before {
    height: 52%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main::before {
    content: none;
  }
}

.top-main-box01 {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .top-main-box01 {
    width: 100%;
    order: 2;
    position: relative;
  }
  .top-main-box01::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 34%;
    background-color: #ebf1ed;
    background-image: url(../img/common/noise.png);
    background-repeat: repeat;
    z-index: -1;
    border-bottom-left-radius: 20px;
  }
}
.top-main-box01__illust01 {
  position: absolute;
  top: 10%;
  left: 0;
  width: 14.5%;
}
@media screen and (max-width: 1400px) {
  .top-main-box01__illust01 {
    width: 25%;
    max-width: 250px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-box01__illust01 {
    display: none;
  }
}
.top-main-box01__illust02 {
  position: absolute;
  top: 21%;
  left: 17%;
  width: 5%;
}
@media screen and (max-width: 1024px) {
  .top-main-box01__illust02 {
    display: none;
  }
}
.top-main-box01__img01 {
  margin-top: 54%;
  width: 70%;
}
@media screen and (max-width: 1400px) {
  .top-main-box01__img01 {
    margin-top: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-box01__img01 {
    width: 65%;
    margin-top: 10%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
    position: relative;
  }
  .top-main-box01__img01::before {
    content: "";
    display: block;
    padding-top: 70%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box01__img01 {
    width: 75%;
    margin-top: 50px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .top-main-box01__img01::before {
    padding-top: 80%;
  }
}
.top-main-box01__img01 img {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media screen and (max-width: 1024px) {
  .top-main-box01__img01 img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    border-radius: 0;
  }
}
.top-main-box01__img02 {
  width: 48%;
  margin-left: 46%;
  margin-top: -10%;
  position: relative;
}
.top-main-box01__img02 > img {
  border-radius: 25px;
}
@media screen and (max-width: 1024px) {
  .top-main-box01__img02 > img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box01__img02 > img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .top-main-box01__img02 {
    margin-left: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-box01__img02 {
    width: 38%;
    margin-left: 56%;
    margin-top: -20%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box01__img02 {
    width: 40%;
    margin: -20% 20px 0 auto;
  }
}
.top-main-box01__img02__illust01 {
  position: absolute;
  bottom: -110px;
  left: -45px;
  width: 238px;
}
@media screen and (max-width: 1024px) {
  .top-main-box01__img02__illust01 {
    top: -100%;
    left: 25px;
    bottom: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box01__img02__illust01 {
    width: 100%;
    left: 0;
    top: -150%;
  }
}

.top-main-box02 {
  width: calc(71% - 70px);
  height: 64%;
  min-height: 600px;
  position: absolute;
  top: 0;
  right: 0;
  border-bottom-left-radius: 25px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-main-box02 {
    width: 100%;
    order: 1;
    position: relative;
    height: 700px;
    border-bottom-left-radius: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box02 {
    height: 500px;
    min-height: auto;
  }
}

.top-main-slider {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.top-main-slider .slick-list {
  height: 100%;
}
.top-main-slider .slick-list .slick-track {
  height: 100%;
}
.top-main-slider__item {
  height: 100%;
  position: relative;
}
.top-main-slider__item > img {
  object-fit: cover;
  object-position: center bottom !important;
  width: 100%;
  height: 100%;
}
.top-main-slider__item__text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  height: 100%;
  max-height: 460px;
  background-color: #83b292;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  letter-spacing: 0.15em;
  line-height: 1.7;
  padding: 60px 10px 10px;
}
@media screen and (max-width: 1400px) {
  .top-main-slider__item__text {
    max-width: 280px;
    max-height: 400px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item__text {
    max-width: 240px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider__item__text {
    font-size: 2rem;
    max-width: 250px;
    line-height: 1.4;
    max-height: 130px;
    padding: 22px 20px 10px;
    border-top-right-radius: 10px;
    letter-spacing: 0.1em;
    justify-content: left;
  }
}
.top-main-slider__item__text p {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 599px) {
  .top-main-slider__item__text p {
    writing-mode: horizontal-tb;
  }
}
.top-main-slider__item__text em {
  text-combine-upright: all;
  font-style: normal;
  vertical-align: text-top;
}
.top-main-slider__item__text::before {
  content: "";
  position: absolute;
  top: -35px;
  right: 15px;
  width: 68px;
  height: 79px;
  background-image: url(../img/top/main_illust3.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .top-main-slider__item__text::before {
    width: 50px;
    height: 60px;
    right: -5px;
  }
}

.top-about {
  margin-top: -16%;
  background-color: #ebf1ed;
  background-image: url(../img/common/noise.png);
  background-repeat: repeat;
  position: relative;
  z-index: 1;
  padding: 0 200px 150px;
}
@media screen and (max-width: 1400px) {
  .top-about {
    padding-top: 5%;
    padding: 0 200px 120px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about {
    margin-top: 0;
    padding: 0 140px 100px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    padding: 0 20px 60px;
  }
}
.top-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .top-about::before {
    height: 21%;
  }
}
@media screen and (max-width: 599px) {
  .top-about::before {
    height: 23.5%;
  }
}
.top-about__inner {
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .top-about__inner {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__inner {
    justify-content: left;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner {
    padding-top: 30px;
  }
}
.top-about::after {
  content: "";
  position: absolute;
  right: 0;
  top: -11%;
  width: 20%;
  height: 440px;
  background-image: url(../img/top/about_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}
@media screen and (min-width: 1025px) {
  .top-about::after {
    opacity: 0;
    animation-name: feedIn;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-delay: 3s;
  }
}
@media screen and (max-width: 1400px) {
  .top-about::after {
    top: -2%;
    height: 350px;
    width: 18%;
  }
}
@media screen and (max-width: 1024px) {
  .top-about::after {
    width: 28%;
    top: 9%;
  }
}
@media screen and (max-width: 599px) {
  .top-about::after {
    content: none;
  }
}

.top-about-box > p {
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 2.8;
}
@media screen and (max-width: 1300px) {
  .top-about-box > p {
    font-size: min(1.3vw, 1.7rem);
  }
}
@media screen and (max-width: 1024px) {
  .top-about-box > p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about-box > p {
    text-align: justify;
    line-height: 2.2;
  }
}

.top-reason {
  position: relative;
  padding: 200px 50px 130px;
}
@media screen and (max-width: 1400px) {
  .top-reason {
    padding: 160px 40px 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason {
    padding: 80px 20px 70px;
  }
}
.top-reason::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 39%;
  background-color: #83b292;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-reason::before {
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  .top-reason::before {
    width: 77%;
    height: 17%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
.top-reason__inner {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-reason__inner {
    flex-wrap: wrap;
  }
}

.top-reason-title {
  width: 130px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-reason-title {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-title {
    width: 100%;
    margin-bottom: 50px;
  }
}
.top-reason-title::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -15px;
  width: 111px;
  height: 147px;
  background-image: url(../img/top/reason_illust01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .top-reason-title::before {
    top: -90px;
    left: auto;
    right: 18px;
    width: 110px;
    z-index: 1;
  }
}
.top-reason-title > span {
  writing-mode: vertical-rl;
  font-size: 3.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
}
@media screen and (max-width: 1400px) {
  .top-reason-title > span {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-title > span {
    writing-mode: horizontal-tb;
    font-size: 3rem;
    letter-spacing: 0.05em;
  }
}
.top-reason-title > span > span {
  text-indent: 0.15em;
  margin-right: 7px;
  display: block;
  letter-spacing: 0;
  font-size: 1.4rem;
  color: #619a73;
  letter-spacing: 0.05em;
}

.top-reason-list {
  width: calc(100% - 130px);
  gap: 38px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-reason-list {
    gap: 20px;
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 1024px) {
  .top-reason-list {
    flex-wrap: wrap;
    gap: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-list {
    width: 100%;
    gap: 40px;
  }
}
.top-reason-list::before {
  content: "Reason";
  position: absolute;
  top: -65px;
  right: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 13.5rem;
  color: rgba(133, 180, 148, 0.2);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-reason-list::before {
    top: -95px;
    font-size: 11.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-list::before {
    right: auto;
    left: 0;
    font-size: 8rem;
    top: -145px;
  }
}
.top-reason-list::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 57px;
  height: 95px;
  background-image: url(../img/top/reason_illust02.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .top-reason-list::after {
    content: none;
  }
}

.top-reason-item {
  width: calc((100% - 114px) / 4);
  height: 500px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-reason-item {
    width: calc((100% - 60px) / 4);
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item {
    width: 100%;
    height: 300px;
  }
}
.top-reason-item > a {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  transition: 0.5s;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top-reason-item > a:hover {
    transform: translateY(4px);
  }
}
@media screen and (max-width: 1400px) {
  .top-reason-item > a {
    border-radius: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item > a {
    border-radius: 10px;
  }
}
.top-reason-item > a::before {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: #83b292;
  border-radius: 100px;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .top-reason-item > a::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item > a::before {
    width: 25px;
    height: 25px;
    bottom: 10px;
    right: 10px;
  }
}
.top-reason-item > a::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 31px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .top-reason-item > a::after {
    bottom: 26px;
    right: 27px;
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item > a::after {
    right: 20px;
    bottom: 18px;
  }
}
.top-reason-item--01 > a {
  background-image: url(../img/top/reason01.webp);
}
.top-reason-item--02 {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-reason-item--02 {
    margin-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item--02 {
    margin-top: 0;
  }
}
.top-reason-item--02 > a {
  background-image: url(../img/top/reason02.webp);
}
.top-reason-item--03 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .top-reason-item--03 {
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item--03 {
    margin-top: 0;
  }
}
.top-reason-item--03 > a {
  background-image: url(../img/top/reason03.webp);
}
.top-reason-item--04 {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .top-reason-item--04 {
    margin-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item--04 {
    margin-top: 0;
  }
}
.top-reason-item--04 > a {
  background-image: url(../img/top/reason04.webp);
}
.top-reason-item__number {
  font-size: 6.8rem;
  color: #83b292;
  font-family: "Hind", sans-serif !important;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: -35px;
  left: 20px;
}
@media screen and (max-width: 1400px) {
  .top-reason-item__number {
    font-size: 6.3rem;
    top: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item__number {
    font-size: 5.7rem;
    top: -20px;
  }
}
.top-reason-item__text-box {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  color: #fff;
  padding: 40px 25px 55px;
}
@media screen and (max-width: 1400px) {
  .top-reason-item__text-box {
    padding: 25px 20px 35px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item__text-box {
    padding: 25px 15px 35px;
  }
}
.top-reason-item__text-box > dt {
  margin-bottom: 12px;
  font-size: 2.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 1400px) {
  .top-reason-item__text-box > dt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item__text-box > dt {
    font-size: 2.1rem;
    margin-bottom: 8px;
  }
}
.top-reason-item__text-box > dd {
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .top-reason-item__text-box > dd {
    font-weight: 400;
    line-height: 1.4;
  }
}
@media screen and (max-width: 599px) {
  .top-reason-item__text-box > dd {
    font-size: 1.5rem;
  }
}

.top-facility {
  padding: 120px 50px 40px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-facility {
    padding: 90px 40px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-facility {
    padding: 150px 40px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility {
    padding: 100px 20px 40px;
  }
}
.top-facility::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 39%;
  height: 65%;
  background-image: url(../img/top/facility_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-facility::before {
    top: 3%;
    width: 50%;
  }
}
.top-facility__detail {
  max-width: 1660px;
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-facility__detail {
    flex-wrap: wrap;
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility__detail {
    margin: 0 auto 50px;
  }
}

.top-facility-image {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-facility-image {
    width: 100%;
    order: 2;
  }
}
.top-facility-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 33%;
  height: 33%;
  background-image: url(../img/top/facility_img04.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: right 0 bottom 0;
  z-index: -1;
}
.top-facility-image__img01 {
  width: 70%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-facility-image__img01 {
    width: 55%;
    margin-top: -5%;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-image__img01 {
    width: 70%;
  }
}
.top-facility-image__img02 {
  width: 23%;
  position: absolute;
  top: 7%;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-facility-image__img02 {
    width: 26%;
    top: 4%;
  }
}
.top-facility-image__img03 {
  width: 43%;
  float: left;
  margin-top: -31%;
  margin-left: 6%;
}
@media screen and (max-width: 1024px) {
  .top-facility-image__img03 {
    width: 30%;
    margin-top: -23%;
    margin-left: 22%;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-image__img03 {
    width: 43%;
    margin-top: -24%;
    margin-left: 7%;
  }
}

.top-facility-box {
  width: 50%;
  padding-left: 7%;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-facility-box {
    padding-left: 6%;
  }
}
@media screen and (max-width: 1024px) {
  .top-facility-box {
    width: 100%;
    order: 1;
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-box {
    margin-bottom: 40px;
  }
}
.top-facility-box::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 35%;
  height: 352px;
  background-image: url(../img/top/facility_illust01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right 0 bottom 0;
}
@media screen and (max-width: 1600px) {
  .top-facility-box::before {
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-facility-box::before {
    right: auto;
    left: 270px;
    bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-box::before {
    display: none;
  }
}
.top-facility-box::after {
  content: "";
  position: absolute;
  bottom: -48%;
  right: -6%;
  width: 28%;
  height: 60%;
  background-image: url(../img/top/facility_img05.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
}
@media screen and (max-width: 1600px) {
  .top-facility-box::after {
    content: none;
  }
}
.top-facility-box__title {
  font-size: 3.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-facility-box__title {
    font-size: 3.5rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-box__title {
    font-size: 3rem;
    letter-spacing: 0.05em;
  }
}
.top-facility-box__title::before {
  content: "Facility";
  position: absolute;
  top: -90px;
  left: -10px;
  font-family: "Cormorant Garamond", serif;
  color: rgba(133, 180, 148, 0.2);
  font-size: 13.5rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .top-facility-box__title::before {
    font-size: 10rem;
    font-weight: 500;
    top: -60px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-box__title::before {
    font-size: 8rem;
    letter-spacing: -0.03em;
    top: -50px;
  }
}
.top-facility-box__text {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 35px;
}
@media screen and (max-width: 1400px) {
  .top-facility-box__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-box__text {
    margin-bottom: 25px;
  }
}
.top-facility-box__btn {
  max-width: 220px;
}
.top-facility-box__btn > a {
  margin: 0;
}

.top-facility-bnrs {
  margin-bottom: 120px;
}
@media screen and (max-width: 1400px) {
  .top-facility-bnrs {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .top-facility-bnrs {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-bnrs {
    margin-bottom: 30px;
  }
}
.top-facility-bnrs__inner {
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  display: flex;
}
@media screen and (max-width: 1400px) {
  .top-facility-bnrs__inner {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-facility-bnrs__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-bnrs__inner {
    flex-wrap: wrap;
  }
}

.top-facility-bnrs-item {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1400px) {
  .top-facility-bnrs-item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 1024px) {
  .top-facility-bnrs-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-facility-bnrs-item {
    width: 100%;
  }
}
.top-facility-bnrs-item > a {
  width: 100%;
  height: 100%;
  background-color: #83b292;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  background-image: url(../img/top/facility_bnr_bg.png);
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
  background-size: 90px auto;
}
@media screen and (min-width: 1025px) {
  .top-facility-bnrs-item > a:hover {
    opacity: 0.8;
    transform: translateY(4px);
  }
}
@media screen and (max-width: 1024px) {
  .top-facility-bnrs-item > a {
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-bnrs-item > a {
    border-radius: 10px;
  }
}
.top-facility-bnrs-item__photo {
  width: 45%;
}
.top-facility-bnrs-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-facility-bnrs-item__text-box {
  width: 55%;
  padding: 35px 20px 20px 35px;
}
@media screen and (max-width: 1024px) {
  .top-facility-bnrs-item__text-box {
    padding: 25px 15px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-bnrs-item__text-box {
    padding: 20px 15px 20px 15px;
  }
}
.top-facility-bnrs-item__text {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .top-facility-bnrs-item__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-facility-bnrs-item__text {
    margin-bottom: 15px;
    line-height: 1.3;
  }
}
.top-facility-bnrs-item__btn {
  margin: 0 0 0 auto;
  display: block;
  background-color: #fff;
  width: 100%;
  max-width: 170px;
  border-radius: 100px;
  text-align: center;
  font-size: 1.5rem;
  color: #619a73;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 7px 5px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-facility-bnrs-item__btn {
    font-size: 1.4rem;
  }
}
.top-facility-bnrs-item__btn::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #619a73;
  border-right: 1px solid #619a73;
  transform: rotate(45deg);
}

.top-news {
  margin-bottom: 100px;
}
@media screen and (max-width: 1400px) {
  .top-news {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
.top-news__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-news__inner {
    flex-wrap: wrap;
  }
}

.top-news-head {
  width: 210px;
}
@media screen and (max-width: 1024px) {
  .top-news-head {
    width: 100%;
  }
}

.top-news-title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  margin-bottom: 45px;
  position: relative;
  line-height: 1;
  padding-top: 10px;
}
@media screen and (max-width: 1024px) {
  .top-news-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-title {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
}
.top-news-title::before {
  content: "News";
  position: absolute;
  top: -55px;
  left: -10px;
  font-family: "Cormorant Garamond", serif;
  color: rgba(133, 180, 148, 0.2);
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 599px) {
  .top-news-title::before {
    font-size: 8rem;
    font-weight: 500;
    top: -40px;
  }
}

.top-news-data {
  width: calc(100% - 210px);
  padding-left: 60px;
}
@media screen and (max-width: 1024px) {
  .top-news-data {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .top-news-tab-area {
    display: flex;
    margin-bottom: 30px;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-tab-area {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
  }
}
.top-news-tab-area__tab {
  padding: 14px 15px;
  line-height: 1.3;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .top-news-tab-area__tab:hover {
    opacity: 0.8;
    color: #619a73;
    transform: translateX(2px);
  }
}
@media screen and (max-width: 1024px) {
  .top-news-tab-area__tab {
    padding: 10px;
    text-align: center;
    background-color: #ebf1ed;
    color: #619a73;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news-tab-area__tab {
    padding: 8px;
    font-size: 1.4rem;
  }
}
.top-news-tab-area__tab.active {
  background-color: #83b292;
  color: #fff;
  position: relative;
}
.top-news-tab-area__tab.active::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: -16px;
  border-width: 5px 8px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #83b292;
}
@media screen and (max-width: 1024px) {
  .top-news-tab-area__tab.active::before {
    margin-top: 0;
    margin-left: -4px;
    top: auto;
    bottom: -16px;
    left: 50%;
    right: auto;
    border-width: 8px 5px;
    border-left-color: transparent;
    border-top-color: #83b292;
  }
}
@media screen and (max-width: 599px) {
  .top-news-tab-area__tab.active::before {
    border-width: 7px 4px;
    bottom: -14px;
  }
}

.top-news-content-area {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .top-news-content-area {
    margin-bottom: 20px;
  }
}
.top-news-content-area__content {
  display: none;
}
.top-news-content-area__content.show {
  display: block;
}
.top-news-content-area__no-news {
  margin-bottom: 60px;
  background-color: #f7f7f7;
  padding: 30px;
  text-align: center;
}

.top-news-list__item {
  border-bottom: 1px solid #e4e4e4;
}
.top-news-list__item:first-child {
  border-top: 1px solid #e4e4e4;
}
.top-news-list__link {
  display: flex;
  align-items: flex-start;
  padding: 22px 40px 22px 0;
  color: #222;
  position: relative;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .top-news-list__link:hover {
    transform: translateX(2px);
    color: #619a73;
  }
}
@media screen and (max-width: 599px) {
  .top-news-list__link {
    flex-wrap: wrap;
    padding: 18px 40px 18px 0;
  }
}
.top-news-list__link::before {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 1;
}
.top-news-list__link::after {
  content: "";
  margin-top: -16px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: #83b292;
  border-radius: 200px;
}
.top-news-list__date {
  width: 110px;
  padding-top: 2px;
  font-size: 1.6rem;
  color: #619a73;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .top-news-list__date {
    width: 100px;
  }
}
.top-news-list__category {
  width: 160px;
  color: #71a850;
  border: 1px solid #71a850;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 3px;
  font-weight: 500;
  padding: 3px 2px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 599px) {
  .top-news-list__category {
    width: 150px;
  }
}
.top-news-list__category--news_carehome {
  color: #71a850;
  border: 1px solid #71a850;
}
.top-news-list__category--news_day {
  color: #d99062;
  border: 1px solid #d99062;
}
.top-news-list__category--news_group {
  color: #5f8a9e;
  border: 1px solid #5f8a9e;
}
.top-news-list__category--news_short {
  color: #8a739b;
  border: 1px solid #8a739b;
}
.top-news-list__text {
  width: calc(100% - 270px);
  padding-top: 1px;
  padding-left: 30px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .top-news-list__text {
    width: 100%;
    padding-left: 0;
    padding-top: 8px;
  }
}
.top-news-list__text span.new {
  display: inline-block;
  margin-left: 10px;
  color: #e75555;
  font-weight: 500;
  font-size: 1.3rem;
}
.top-news-list__empty {
  padding: 30px 0;
  color: #000;
  text-align: center;
}

.top-news-btn {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .top-news-btn {
    text-align: center;
  }
}
.top-news-btn > a {
  margin-right: 0;
  margin-bottom: 0;
}

.top-blog {
  position: relative;
  padding: 120px 50px 100px;
}
@media screen and (max-width: 1400px) {
  .top-blog {
    padding: 110px 40px 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-blog {
    padding: 80px 20px 60px;
  }
}
.top-blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #83b292;
  width: 100%;
  height: 310px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-blog::before {
    height: 420px;
  }
}
@media screen and (max-width: 599px) {
  .top-blog::before {
    height: 310px;
  }
}
.top-blog__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.top-blog-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .top-blog-head {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .top-blog-head {
    margin-bottom: 35px;
  }
}

.top-blog-title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  position: relative;
  line-height: 1;
  padding-top: 10px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-blog-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-blog-title {
    font-size: 3rem;
  }
}
.top-blog-title::before {
  content: "Blog";
  position: absolute;
  top: -55px;
  left: -10px;
  font-family: "Cormorant Garamond", serif;
  color: rgba(255, 255, 255, 0.2);
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 599px) {
  .top-blog-title::before {
    font-size: 8rem;
    top: -45px;
  }
}
.top-blog-title::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -260px;
  width: 237px;
  height: 202px;
  background-image: url(../img/top/blog_illust.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}
@media screen and (max-width: 599px) {
  .top-blog-title::after {
    width: 160px;
    height: 150px;
    right: auto;
    top: -90px;
    left: 90px;
  }
}

.top-blog-tab-area {
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
@media screen and (max-width: 1024px) {
  .top-blog-tab-area {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-blog-tab-area {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
  }
}
.top-blog-tab-area__tab {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 6px 15px;
  line-height: 1.2;
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .top-blog-tab-area__tab:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .top-blog-tab-area__tab {
    padding: 8px 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-blog-tab-area__tab {
    background-color: #90bd9e;
    border-radius: 3px;
    padding: 8px;
    font-size: 1.4rem;
  }
}
.top-blog-tab-area__tab.active {
  background-color: #fff;
  border-radius: 3px;
  color: #619a73;
  position: relative;
}
.top-blog-tab-area__tab.active::before {
  content: "";
  margin-left: -4px;
  position: absolute;
  bottom: -14px;
  left: 50%;
  border-width: 7px 4px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #fff;
}

.top-blog-content-area {
  margin-bottom: 30px;
}
.top-blog-content-area__content {
  display: none;
}
.top-blog-content-area__content.show {
  display: block;
}
.top-blog-content-area__no-news {
  margin-bottom: 60px;
  background-color: #f7f7f7;
  padding: 30px;
  text-align: center;
}

.top-blog-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .top-blog-list {
    gap: 25px 15px;
  }
}

.top-blog-item {
  width: calc((100% - 120px) / 4);
}
@media screen and (max-width: 1024px) {
  .top-blog-item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-blog-item {
    width: calc((100% - 15px) / 2);
  }
}
.top-blog-item__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .top-blog-item__link:hover {
    opacity: 0.8;
  }
}
.top-blog-item__photo {
  position: relative;
  margin-bottom: 18px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .top-blog-item__photo {
    margin-bottom: 14px;
  }
}
.top-blog-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.top-blog-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.top-blog-item__category {
  width: 100%;
  max-width: 170px;
  text-align: center;
  font-size: 1.3rem;
  padding: 3px 10px;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: 500;
  border-bottom-right-radius: 3px;
}
@media screen and (max-width: 599px) {
  .top-blog-item__category {
    max-width: auto;
    width: auto;
    font-size: 1.2rem;
    padding: 2px 10px;
  }
}
.top-blog-item__category--blog_carehome {
  background-color: #87b869;
}
.top-blog-item__category--blog_day {
  background-color: #e3a175;
}
.top-blog-item__category--blog_group {
  background-color: #6da8c4;
}
.top-blog-item__category--blog_short {
  background-color: #a88ebc;
}
.top-blog-item__date {
  font-size: 1.6rem;
  color: #619a73;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 6px;
}
@media screen and (max-width: 599px) {
  .top-blog-item__date {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
}
.top-blog-item__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
}
.top-blog-item__new {
  color: #e75555;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-left: 10px;
}

.top-blog-no-entry {
  color: #fff;
  padding: 20px;
  text-align: center;
}

.top-blog-btn {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .top-blog-btn {
    text-align: center;
  }
}
.top-blog-btn > a {
  margin-right: 0;
  margin-bottom: 0;
}

.top-facilities {
  position: relative;
  padding: 130px 50px 120px;
}
@media screen and (max-width: 1400px) {
  .top-facilities {
    padding: 130px 40px 120px;
  }
}
@media screen and (max-width: 1024px) {
  .top-facilities {
    padding: 130px 40px 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-facilities {
    padding: 80px 20px 60px;
  }
}
.top-facilities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 390px;
  background-color: #ebf1ed;
  background-image: url(../img/common/noise.png);
  background-repeat: repeat;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .top-facilities::before {
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .top-facilities::after {
    content: "";
    position: absolute;
    bottom: 15%;
    right: 12%;
    width: 159px;
    height: 200px;
    background-image: url(../img/top/facilities_illust03.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 599px) {
  .top-facilities::after {
    content: none;
  }
}
.top-facilities__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.top-facilities-title {
  text-align: center;
  font-size: 3.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-facilities-title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-facilities-title {
    margin-bottom: 10px;
    font-size: 3rem;
  }
}
.top-facilities-title::before {
  content: "Facilities";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  color: rgba(133, 180, 148, 0.2);
  font-size: 13.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1024px) {
  .top-facilities-title::before {
    font-size: 10rem;
    font-weight: 500;
    top: -60px;
  }
}
@media screen and (max-width: 599px) {
  .top-facilities-title::before {
    font-size: 8rem;
    top: -40px;
  }
}
.top-facilities-title > span {
  position: relative;
}
.top-facilities-title > span::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -300px;
  width: 124px;
  height: 186px;
  background-image: url(../img/top/facilities_illust01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .top-facilities-title > span::before {
    left: -240px;
  }
}
@media screen and (max-width: 599px) {
  .top-facilities-title > span::before {
    left: -100px;
    width: 80px;
    height: 120px;
    top: -70px;
  }
}
.top-facilities-title > span::after {
  content: "";
  position: absolute;
  right: -230px;
  width: 69px;
  height: 80px;
  background-image: url(../img/top/facilities_illust02.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .top-facilities-title > span::after {
    bottom: 20px;
    right: -180px;
  }
}
@media screen and (max-width: 599px) {
  .top-facilities-title > span::after {
    right: -80px;
    width: 58px;
    height: 70px;
    bottom: 0;
  }
}

.top-facilities-about-link {
  text-align: right;
  margin-top: -30px;
  margin-bottom: 55px;
}
@media screen and (max-width: 1024px) {
  .top-facilities-about-link {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-facilities-about-link {
    text-align: center;
    padding-left: 20px;
  }
}
.top-facilities-about-link > a {
  color: #838383;
  font-weight: 500;
  text-decoration: underline;
  padding-right: 40px;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .top-facilities-about-link > a:hover {
    text-decoration: none;
    transform: translateX(2px);
  }
}
.top-facilities-about-link > a::before {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 1;
}
.top-facilities-about-link > a::after {
  content: "";
  margin-top: -16px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: #83b292;
  border-radius: 200px;
}

.top-facilities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px 60px;
}
@media screen and (max-width: 1024px) {
  .top-facilities-list {
    gap: 60px 40px;
    justify-content: left;
  }
}
@media screen and (max-width: 599px) {
  .top-facilities-list {
    gap: 50px 40px;
  }
}

.top-facilities-item {
  width: calc((100% - 120px) / 3);
}
@media screen and (max-width: 1024px) {
  .top-facilities-item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-facilities-item {
    width: 100%;
  }
}
.top-facilities-item__photo {
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.top-facilities-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
@media screen and (max-width: 599px) {
  .top-facilities-item__photo {
    border-radius: 10px;
    margin-bottom: 25px;
  }
}
.top-facilities-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.top-facilities-item__text-box > dl {
  display: flex;
}
.top-facilities-item__text-box > dl > dt {
  width: 45px;
  padding-top: 20px;
  writing-mode: vertical-rl;
  line-height: 1.3;
  font-weight: 600;
  font-size: 2.8rem;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-facilities-item__text-box > dl > dt {
    font-size: 2.4rem;
  }
}
.top-facilities-item__text-box > dl > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #83b292;
  border-radius: 10px;
}
.top-facilities-item__text-box > dl > dt::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #83b292;
  border-radius: 10px;
}
.top-facilities-item__text-box > dl > dt span {
  display: block;
  font-family: "Hind", sans-serif !important;
  font-size: 1.1rem;
  color: #619a73;
  font-weight: 600;
  text-indent: 0.5em;
}
.top-facilities-item__text-box > dl > dd {
  width: calc(100% - 45px);
  padding-left: 40px;
  padding-top: 20px;
}
@media screen and (max-width: 599px) {
  .top-facilities-item__text-box > dl > dd {
    padding-left: 25px;
    padding-top: 17px;
  }
}
.top-facilities-item__text-box02 > dl > dt {
  line-height: 1.3;
  font-weight: 600;
  font-size: 2.8rem;
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .top-facilities-item__text-box02 > dl > dt {
    font-size: 2.4rem;
  }
}
.top-facilities-item__text-box02 > dl > dt span {
  font-size: 1.4rem;
  color: #619a73;
  line-height: 1.2;
  display: block;
}
.top-facilities-item__text-box02 > dl > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #83b292;
  border-radius: 10px;
}
.top-facilities-item__text-box02 > dl > dt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 3px;
  height: 100%;
  background-color: #83b292;
  border-radius: 10px;
}
.top-facilities-item__text {
  text-align: justify;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .top-facilities-item__text {
    margin-bottom: 20px;
  }
}
.top-facilities-item__btn {
  text-align: right;
}
.top-facilities-item__btn > a {
  width: 100%;
  max-width: 170px;
  display: inline-block;
  background-color: #333;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 11px 30px 13px;
  border-radius: 100px;
  position: relative;
  font-size: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .top-facilities-item__btn > a:hover {
    transform: translateY(2px);
  }
}
.top-facilities-item__btn > a::after {
  content: "";
  margin-top: -5px;
  position: absolute;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.top-facilities-item__btn--outside > a {
  background-image: url(../img/common/icon_target.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 13px top 50%;
}
.top-facilities-item__btn--outside > a::after {
  content: none;
}

.top-recruit {
  background-color: #ebf1ed;
  background-image: url(../img/common/noise.png);
  padding: 80px 60px 80px 30px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-recruit {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit {
    padding: 140px 40px 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit {
    padding: 90px 20px 60px;
  }
}
.top-recruit::after {
  content: "";
  position: absolute;
  top: -170px;
  left: 16%;
  width: 159px;
  height: 200px;
  background-image: url(../img/top/facilities_illust03.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .top-recruit::after {
    content: none;
  }
}
.top-recruit__inner {
  max-width: 1530px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-recruit__inner {
    flex-wrap: wrap;
  }
}

.top-recruit-photo {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .top-recruit-photo {
    width: 100%;
    order: 2;
  }
}
.top-recruit-photo > ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .top-recruit-photo > ul {
    gap: 10px;
  }
}
.top-recruit-photo > ul > li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 599px) {
  .top-recruit-photo > ul > li {
    width: calc((100% - 20px) / 3);
  }
}
.top-recruit-photo > ul > li img {
  border-radius: 25px;
}
@media screen and (max-width: 1024px) {
  .top-recruit-photo > ul > li img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-photo > ul > li img {
    border-radius: 10px;
  }
}
.top-recruit-photo > ul > li:nth-child(2) {
  margin-top: 45px;
}

.top-recruit-box {
  width: 40%;
  padding-left: 7%;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-recruit-box {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit-box {
    width: 100%;
    padding-left: 0;
    order: 1;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-box {
    margin-bottom: 30px;
  }
}
.top-recruit-box::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -50px;
  width: 275px;
  height: 307px;
  background-image: url(../img/top/recruit_illust.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media screen and (max-width: 1400px) {
  .top-recruit-box::before {
    width: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit-box::before {
    bottom: auto;
    right: auto;
    left: 40%;
    top: -55%;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-box::before {
    width: 50%;
    left: 55%;
    top: -65%;
  }
}
.top-recruit-box__title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 23px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-recruit-box__title {
    font-size: 3rem;
  }
}
.top-recruit-box__title::before {
  content: "Recruit";
  position: absolute;
  top: -90px;
  left: -10px;
  font-family: "Cormorant Garamond", serif;
  color: rgba(133, 180, 148, 0.2);
  font-size: 13.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  .top-recruit-box__title::before {
    font-size: 10rem;
    font-weight: 500;
    top: -60px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-box__title::before {
    font-size: 8rem;
    top: -50px;
  }
}
.top-recruit-box__text {
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #619a73;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .top-recruit-box__text {
    line-height: 1.5;
  }
}

/*--------------------------------------------------------
about
----------------------------------------------------------*/
/* ******** グループブロック（wysiwyg-block内なので注意） ******** */
.about-group-block {
  margin-bottom: 50px;
  background-color: #faede5;
  border-radius: 5px;
  padding: 40px 50px 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
@media screen and (max-width: 1400px) {
  .about-group-block {
    padding: 40px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .about-group-block {
    padding: 25px 20px 25px;
    gap: 20px;
  }
}
.about-group-block__title {
  width: 100%;
  background-image: url(../img/about/takahashi_logo.png) !important;
  background-repeat: no-repeat;
  background-size: 66px auto;
  background-position: left 50% top 0;
  padding-top: 90px;
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .about-group-block__title {
    background-size: 46px auto;
    padding-top: 65px;
    margin-bottom: 0;
  }
}
.about-group-block__title > span {
  font-size: 1.9rem;
  background-color: #e6671e;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  padding: 13px 40px;
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .about-group-block__title > span {
    font-size: 1.7rem;
    padding: 11px 20px;
    max-width: 100%;
  }
}
.about-group-block__box {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 599px) {
  .about-group-block__box {
    width: 100%;
  }
}
.about-group-block__box__title {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .about-group-block__box__title {
    margin-bottom: 15px;
  }
}
.about-group-block__box__title > span {
  font-size: 1.7rem;
  background-color: #7f9cc8;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  padding: 13px 40px;
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .about-group-block__box__title > span {
    font-size: 1.6rem;
    max-width: 200px;
    padding: 10px 20px;
  }
}
.about-group-block__box__title--green > span {
  background-color: #83b292;
}
.about-group-block__box__list {
  padding: 0 !important;
  list-style: none !important;
}
.about-group-block__box__list > li {
  margin-bottom: 15px !important;
  padding-left: 0 !important;
}
.about-group-block__box__list > li::before {
  content: none !important;
}
@media screen and (max-width: 599px) {
  .about-group-block__box__list > li {
    margin-bottom: 10px;
  }
}

.about-group-block-item__link {
  display: block;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 40px 20px 25px;
  color: #222;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .about-group-block-item__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .about-group-block-item__link {
    padding: 20px 35px 20px 16px;
  }
}
.about-group-block-item__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background-color: #83b292;
  border-radius: 200px;
}
@media screen and (max-width: 599px) {
  .about-group-block-item__link::before {
    right: 10px;
  }
}
.takahashi-medical .about-group-block-item__link::before {
  background-color: #7f9cc8;
}
.about-group-block-item__link::after {
  content: "";
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 28px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
}
@media screen and (max-width: 599px) {
  .about-group-block-item__link::after {
    right: 18px;
  }
}
.about-group-block-item__title {
  margin-bottom: 3px;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding: 0 0 0 25px;
}
@media screen and (max-width: 599px) {
  .about-group-block-item__title {
    font-size: 1.6rem;
    padding: 0 0 0 20px;
  }
}
.about-group-block-item__title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid #83b292;
  border-radius: 100px;
}
@media screen and (max-width: 599px) {
  .about-group-block-item__title::before {
    width: 14px;
    height: 14px;
  }
}
.takahashi-medical .about-group-block-item__title::before {
  border: 4px solid #7f9cc8;
}
.about-group-block-item__text {
  padding-left: 25px;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .about-group-block-item__text {
    padding-left: 20px;
    font-size: 1.5rem;
  }
}

.about-history-block {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .about-history-block {
    margin-bottom: 50px;
  }
}
.about-history-block > div {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
}
.about-history-block > div dt {
  width: 100px;
  position: relative;
  color: #619a73;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .about-history-block > div dt {
    width: 80px;
    font-size: 1.5rem;
  }
}
.about-history-block > div dt::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #83b292;
  position: absolute;
  top: 4px;
  right: 0;
}
.about-history-block > div dt::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #cccccc;
  display: block;
  position: absolute;
  top: 12px;
  right: 7px;
  z-index: -1;
}
.about-history-block > div dd {
  width: calc(100% - 100px);
  padding-left: 40px;
  padding-bottom: 25px;
  display: flex;
}
@media screen and (max-width: 599px) {
  .about-history-block > div dd {
    width: calc(100% - 80px);
    padding-left: 12px;
    padding-top: 0;
    font-size: 1.5rem;
  }
}
.about-history-block > div:last-child dt::after {
  content: none;
}
.about-history-block > div:last-child dd {
  padding-bottom: 0;
}
.about-history-block__month {
  width: 55px;
}
@media screen and (max-width: 599px) {
  .about-history-block__month {
    width: 40px;
  }
}
.about-history-block__text {
  width: calc(100% - 55px);
}
@media screen and (max-width: 599px) {
  .about-history-block__text {
    width: calc(100% - 40px);
  }
}

/*--------------------------------------------------------
news
----------------------------------------------------------*/
.news-list__item {
  border-bottom: 1px solid #e4e4e4;
}
.news-list__item:first-child {
  border-top: 1px solid #e4e4e4;
}
.news-list__link {
  display: flex;
  align-items: flex-start;
  padding: 22px 40px 22px 0;
  color: #222;
  position: relative;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .news-list__link:hover {
    transform: translateX(2px);
    color: #619a73;
  }
}
@media screen and (max-width: 599px) {
  .news-list__link {
    flex-wrap: wrap;
    padding: 18px 40px 18px 0;
  }
}
.news-list__link::before {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 1;
}
.news-list__link::after {
  content: "";
  margin-top: -16px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: #83b292;
  border-radius: 200px;
}
.news-list__date {
  width: 110px;
  padding-top: 2px;
  font-size: 1.6rem;
  color: #619a73;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .news-list__date {
    width: 100px;
  }
}
.news-list__category {
  width: 160px;
  color: #71a850;
  border: 1px solid #71a850;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 3px;
  font-weight: 500;
  padding: 3px 2px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 599px) {
  .news-list__category {
    width: 150px;
  }
}
.news-list__category--news_carehome {
  color: #71a850;
  border: 1px solid #71a850;
}
.news-list__category--news_day {
  color: #d99062;
  border: 1px solid #d99062;
}
.news-list__category--news_group {
  color: #5f8a9e;
  border: 1px solid #5f8a9e;
}
.news-list__category--news_short {
  color: #8a739b;
  border: 1px solid #8a739b;
}
.news-list__text {
  width: calc(100% - 270px);
  padding-top: 1px;
  padding-left: 30px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .news-list__text {
    width: 100%;
    padding-left: 0;
    padding-top: 8px;
  }
}
.news-list__text span.new {
  display: inline-block;
  margin-left: 10px;
  color: #e75555;
  font-weight: 500;
  font-size: 1.3rem;
}
.news-list__empty {
  padding: 30px 0;
  color: #000;
  text-align: center;
}

/* ******* detail ******** */
.news-detail-title {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .news-detail-title {
    padding-bottom: 22px;
    margin-bottom: 35px;
  }
}
.news-detail-title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 4px;
  border-radius: 10px;
  background-color: #83b292;
}
.news-detail-title__date {
  font-size: 1.5rem;
  color: #619a73;
  font-weight: 600;
  line-height: 1.5;
  display: inline-block;
  margin-right: 8px;
}
@media screen and (max-width: 599px) {
  .news-detail-title__date {
    letter-spacing: 0;
  }
}
.news-detail-title__category {
  margin-right: 10px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  border-radius: 3px;
  text-align: center;
  color: #949494;
  font-weight: 500;
  padding: 6px;
  line-height: 1;
  display: inline-block;
}
.news-detail-title__category--news_carehome {
  color: #71a850;
  border: 1px solid #71a850;
}
.news-detail-title__category--news_day {
  color: #c27b4c;
  border: 1px solid #c27b4c;
}
.news-detail-title__category--news_group {
  color: #5f8a9e;
  border: 1px solid #5f8a9e;
}
.news-detail-title__category--news_short {
  color: #8a739b;
  border: 1px solid #8a739b;
}
.news-detail-title__new {
  font-size: 1.3rem;
  color: #fd3f0c;
  font-weight: 600;
  display: inline-block;
}
.news-detail-title__text {
  margin-top: 10px;
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .news-detail-title__text {
    font-size: 2.3rem;
  }
}

.news-detail-btn {
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}
.news-detail-btn > a {
  max-width: 250px;
  margin: 0 auto;
}

/*--------------------------------------------------------
blog
----------------------------------------------------------*/
.blog-list {
  display: flex;
  gap: 45px 45px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .blog-list {
    gap: 45px 30px;
  }
}
@media screen and (max-width: 599px) {
  .blog-list {
    gap: 25px 15px;
  }
}

.blog-item {
  width: calc((100% - 90px) / 3);
}
@media screen and (max-width: 1024px) {
  .blog-item {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .blog-item {
    width: calc((100% - 15px) / 2);
  }
}
.blog-item__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .blog-item__link:hover {
    opacity: 0.8;
    transform: translateY(3px);
  }
}
.blog-item__photo {
  position: relative;
  margin-bottom: 18px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .blog-item__photo {
    margin-bottom: 14px;
  }
}
.blog-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.blog-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.blog-item__category {
  width: 100%;
  max-width: 170px;
  text-align: center;
  font-size: 1.3rem;
  padding: 3px 10px;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: 500;
  border-bottom-right-radius: 3px;
}
@media screen and (max-width: 599px) {
  .blog-item__category {
    max-width: auto;
    width: auto;
    font-size: 1.2rem;
    padding: 2px 10px;
  }
}
.blog-item__category--blog_carehome {
  background-color: #87b869;
}
.blog-item__category--blog_day {
  background-color: #e3a175;
}
.blog-item__category--blog_group {
  background-color: #6da8c4;
}
.blog-item__category--blog_short {
  background-color: #a88ebc;
}
.blog-item__date {
  font-size: 1.6rem;
  color: #619a73;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 6px;
}
@media screen and (max-width: 599px) {
  .blog-item__date {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
}
.blog-item__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
}
.blog-item__new {
  color: #e75555;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-left: 10px;
}

/* ******* detail ******** */
.blog-detail-title {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .blog-detail-title {
    padding-bottom: 22px;
    margin-bottom: 35px;
  }
}
.blog-detail-title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 4px;
  border-radius: 10px;
  background-color: #83b292;
}
.blog-detail-title__date {
  font-size: 1.5rem;
  color: #619a73;
  font-weight: 600;
  line-height: 1.5;
  display: inline-block;
  margin-right: 8px;
}
@media screen and (max-width: 599px) {
  .blog-detail-title__date {
    letter-spacing: 0;
  }
}
.blog-detail-title__category {
  margin-right: 10px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  border-radius: 3px;
  text-align: center;
  color: #949494;
  font-weight: 500;
  padding: 6px;
  line-height: 1;
  display: inline-block;
}
.blog-detail-title__category--blog_carehome {
  color: #71a850;
  border: 1px solid #71a850;
}
.blog-detail-title__category--blog_day {
  color: #c27b4c;
  border: 1px solid #c27b4c;
}
.blog-detail-title__category--blog_group {
  color: #5f8a9e;
  border: 1px solid #5f8a9e;
}
.blog-detail-title__category--blog_short {
  color: #8a739b;
  border: 1px solid #8a739b;
}
.blog-detail-title__new {
  font-size: 1.3rem;
  color: #fd3f0c;
  font-weight: 600;
  display: inline-block;
}
.blog-detail-title__text {
  margin-top: 10px;
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .blog-detail-title__text {
    font-size: 2.3rem;
  }
}

.blog-detail-btn {
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}
.blog-detail-btn > a {
  max-width: 250px;
  margin: 0 auto;
}

/*--------------------------------------------------------
index_top　（各施設top共通 & 選ばれる理由）
----------------------------------------------------------*/
/* **************** index_topメイン ******************/
.index-top-main {
  position: relative;
  padding: 140px 30px 0 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .index-top-main {
    margin-bottom: 0;
    padding: 100px 20px 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-main {
    margin-bottom: 30px;
    padding: 60px 0 0;
  }
}
.index-top-main__title {
  position: absolute;
  top: 220px;
  left: 0;
  background-color: #83b292;
  max-width: 750px;
  min-width: 570px;
  z-index: 1;
  min-height: 240px;
  display: flex;
  align-items: center;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 50px 50px 30px 70px;
}
#carehome .index-top-main__title {
  padding-top: 80px;
  background-color: #83b292;
}
#day .index-top-main__title {
  background-color: #f4b083;
}
#group .index-top-main__title {
  background-color: #6da8c4;
}
#short .index-top-main__title {
  background-color: #b098c2;
}
@media screen and (max-width: 1400px) {
  .index-top-main__title {
    top: 190px;
    min-width: 510px;
    min-height: 210px;
    padding: 30px 40px 20px 50px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  #carehome .index-top-main__title {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-main__title {
    position: relative;
    top: auto;
    border-radius: 15px;
    min-width: auto;
    margin: -60px 80px 0;
    text-align: center;
    padding: 40px 30px 20px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-main__title {
    margin: -40px 20px;
    border-radius: 10px;
    padding: 20px 10px 10px;
    min-height: 130px;
  }
  #carehome .index-top-main__title {
    padding-top: 30px;
  }
}
.index-top-main__title::before {
  content: "";
  position: absolute;
  top: -95px;
  left: 30px;
  width: 141px;
  height: 166px;
  background-image: url(../img/common/title_illust01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1400px) {
  .index-top-main__title::before {
    width: 100px;
    height: 130px;
    top: -70px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-main__title::before {
    content: none;
  }
}
.index-top-main__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 88px;
  height: 77px;
  background-image: url(../img/common/title_illust02.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .index-top-main__title::after {
    width: 50px;
    height: 60px;
    right: -10px;
  }
}
.index-top-main__title h1 {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 1024px) {
  .index-top-main__title h1 {
    margin: 0 auto;
  }
}
.index-top-main__title__en {
  position: absolute;
  top: -10px;
  left: 70px;
  font-family: "Cormorant Garamond", serif;
  color: rgba(255, 255, 255, 0.2);
  font-size: 10rem;
  font-weight: 400;
  letter-spacing: 0;
}
#carehome .index-top-main__title__en {
  top: 15px;
}
@media screen and (max-width: 1400px) {
  .index-top-main__title__en {
    left: 50px;
  }
  #carehome .index-top-main__title__en {
    top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-main__title__en {
    width: 100%;
    text-align: center;
    left: 0;
    top: -20px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-main__title__en {
    font-size: 6rem;
    line-height: 1;
    top: 5px;
  }
  #carehome .index-top-main__title__en {
    top: 15px;
  }
}
.index-top-main__title__text01 {
  font-size: 2.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  color: #fff;
  display: block;
}
@media screen and (max-width: 1400px) {
  .index-top-main__title__text01 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .index-top-main__title__text01 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 5px;
  }
}
.index-top-main__title__text02 {
  color: #fff;
  font-size: 4.1rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .index-top-main__title__text02 {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 599px) {
  .index-top-main__title__text02 {
    font-size: 3rem;
    letter-spacing: 0;
  }
}

.index-top-slider .slick-slide {
  display: flex !important;
}
@media screen and (max-width: 1024px) {
  .index-top-slider .slick-slide {
    display: block !important;
  }
}
.index-top-slider .slick-dots {
  position: absolute;
  left: 70px;
  bottom: 0;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1400px) {
  .index-top-slider .slick-dots {
    left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-slider .slick-dots {
    left: auto;
    right: 10px;
    bottom: -30px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-slider .slick-dots {
    display: none !important;
  }
}
.index-top-slider .slick-dots button {
  color: transparent;
  width: 10px;
  height: 10px;
}
.index-top-slider .slick-dots > li {
  width: 10px;
  height: 10px;
  background-color: #8b8b8b;
  border-radius: 100px;
}
.index-top-slider .slick-dots > li.slick-active {
  background-color: #f4b083;
}
#group .index-top-slider .slick-dots > li.slick-active {
  background-color: #6da8c4;
}
#short .index-top-slider .slick-dots > li.slick-active {
  background-color: #b098c2;
}
#carehome .index-top-slider .slick-dots > li.slick-active {
  background-color: #83b292;
}
.index-top-slider__text {
  width: 500px;
  display: flex;
  align-items: end;
  padding: 0 0 50px 70px;
  font-size: 3.1rem;
  color: #eb965f;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
#group .index-top-slider__text {
  color: #5c99b6;
}
#short .index-top-slider__text {
  color: #9e81b4;
}
#carehome .index-top-slider__text {
  color: #619a73;
}
@media screen and (max-width: 1400px) {
  .index-top-slider__text {
    width: 420px;
    font-size: 2.7rem;
    padding: 0 0 40px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-slider__text {
    width: 130px;
    position: absolute;
    right: 30px;
    top: 30px;
    padding: 20px;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    text-align: left;
  }
  #group .index-top-slider__text {
    color: #fff;
  }
  #short .index-top-slider__text {
    color: #fff;
  }
  #carehome .index-top-slider__text {
    color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .index-top-slider__text {
    width: 100px;
    top: 20px;
    right: 0;
    border-radius: 0;
    font-size: 1.6rem;
    padding: 15px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}
.index-top-slider__photo {
  width: calc(100% - 500px);
  height: 550px;
  border-radius: 25px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .index-top-slider__photo {
    height: 450px;
    border-radius: 20px;
    width: calc(100% - 420px);
  }
}
@media screen and (max-width: 1024px) {
  .index-top-slider__photo {
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-slider__photo {
    height: 280px;
    border-radius: 0;
  }
}
.index-top-slider__photo > img {
  object-fit: cover;
  object-position: center top !important;
  width: 100%;
  height: 100%;
}

.index-top-contents {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .index-top-contents {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-contents {
    margin-bottom: 20px;
  }
}

/*お知らせ*/
.index-top-news {
  max-width: 980px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 599px) {
  .index-top-news {
    margin: 0 auto 50px;
  }
}

.index-top-news-title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  margin-bottom: 30px;
  position: relative;
  line-height: 1;
  padding-top: 70px;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .index-top-news-title {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-news-title {
    margin-bottom: 30px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .index-top-news-title {
    margin-bottom: 25px;
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    padding-top: 50px;
  }
}
.index-top-news-title::before {
  content: "News";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -110px;
  font-family: "Cormorant Garamond", serif;
  color: rgba(244, 176, 131, 0.2);
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1400px) {
  .index-top-news-title::before {
    font-size: 8rem;
    margin-left: -85px;
  }
}
#group .index-top-news-title::before {
  color: rgba(109, 168, 196, 0.2);
}
#short .index-top-news-title::before {
  color: rgba(176, 152, 194, 0.2);
}
#carehome .index-top-news-title::before {
  color: rgba(131, 178, 146, 0.2);
}

.index-top-news-list {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .index-top-news-list {
    margin-bottom: 25px;
  }
}
.index-top-news-list__item {
  border-bottom: 1px solid #e4e4e4;
}
.index-top-news-list__item:first-child {
  border-top: 1px solid #e4e4e4;
}
.index-top-news-list__link {
  display: flex;
  align-items: flex-start;
  padding: 22px 40px 22px 0;
  color: #222;
  position: relative;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .index-top-news-list__link:hover {
    transform: translateX(2px);
    color: #619a73;
  }
  #day .index-top-news-list__link:hover {
    color: #eb965f;
  }
  #group .index-top-news-list__link:hover {
    color: #5c99b6;
  }
  #short .index-top-news-list__link:hover {
    color: #9e81b4;
  }
}
@media screen and (max-width: 599px) {
  .index-top-news-list__link {
    flex-wrap: wrap;
    padding: 18px 40px 18px 0;
  }
}
.index-top-news-list__link::before {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 1;
}
.index-top-news-list__link::after {
  content: "";
  margin-top: -16px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: #83b292;
  border-radius: 200px;
}
#day .index-top-news-list__link::after {
  background-color: #f4b083;
}
#group .index-top-news-list__link::after {
  background-color: #6da8c4;
}
#short .index-top-news-list__link::after {
  background-color: #b098c2;
}
.index-top-news-list__date {
  width: 110px;
  padding-top: 2px;
  font-size: 1.6rem;
  color: #619a73;
  font-weight: 500;
}
#day .index-top-news-list__date {
  color: #eb965f;
}
#group .index-top-news-list__date {
  color: #5c99b6;
}
#short .index-top-news-list__date {
  color: #9e81b4;
}
@media screen and (max-width: 599px) {
  .index-top-news-list__date {
    width: 100px;
  }
}
.index-top-news-list__category {
  width: 160px;
  color: #71a850;
  border: 1px solid #71a850;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 3px;
  font-weight: 500;
  padding: 3px 2px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 599px) {
  .index-top-news-list__category {
    width: 150px;
  }
}
.index-top-news-list__category--news_carehome {
  color: #71a850;
  border: 1px solid #71a850;
}
.index-top-news-list__category--news_day {
  color: #d99062;
  border: 1px solid #d99062;
}
.index-top-news-list__category--news_group {
  color: #5f8a9e;
  border: 1px solid #5f8a9e;
}
.index-top-news-list__category--news_short {
  color: #8a739b;
  border: 1px solid #8a739b;
}
.index-top-news-list__text {
  width: calc(100% - 270px);
  padding-top: 1px;
  padding-left: 30px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .index-top-news-list__text {
    width: 100%;
    padding-left: 0;
    padding-top: 8px;
  }
}
.index-top-news-list__text span.new {
  display: inline-block;
  margin-left: 10px;
  color: #e75555;
  font-weight: 500;
  font-size: 1.3rem;
}
.index-top-news-list__empty {
  padding: 30px 0;
  color: #000;
  text-align: center;
}

.index-top-news-btn {
  text-align: center;
}
.index-top-news-btn > a {
  margin-right: 0;
  margin-bottom: 0;
}

.index-top-about {
  background-color: #f6c1a0;
  padding: 100px 50px 50px;
  border-radius: 20px;
}
#group .index-top-about {
  background-color: #88bed6;
}
#short .index-top-about {
  background-color: #c6afd8;
}
#carehome .index-top-about {
  background-color: #a6c9b1;
}
@media screen and (max-width: 1024px) {
  .index-top-about {
    padding: 95px 40px 30px;
  }
}
@media screen and (max-width: 834px) {
  .index-top-about {
    padding: 85px 35px 20px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-about {
    border-radius: 10px;
    padding: 55px 20px 15px;
  }
}
.index-top-about__inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.index-top-about__title {
  font-size: 2.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 30px;
  position: relative;
  line-height: 1.4;
  color: #fff;
  padding-top: 10px;
}
@media screen and (max-width: 1300px) {
  .index-top-about__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-about__title {
    margin-bottom: 30px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .index-top-about__title {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-about__title {
    font-size: 2.1rem;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 320px) {
  .index-top-about__title {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }
}
.index-top-about__title::before {
  content: "About";
  position: absolute;
  width: 100%;
  top: -65px;
  left: 0;
  font-family: "Cormorant Garamond", serif;
  color: rgba(255, 255, 255, 0.2);
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .index-top-about__title::before {
    font-size: 8rem;
    font-weight: 500;
    top: -40px;
  }
}
.index-top-about__title span {
  position: relative;
  display: block;
}
.index-top-about__title span::before {
  position: absolute;
  content: "";
  width: 68px;
  height: 76px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/index_top/about_ill01.png);
  background-size: cover;
  top: -85px;
  left: 0;
}
@media screen and (max-width: 834px) {
  .index-top-about__title span::before {
    top: -10px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-about__title span::before {
    background-size: 75%;
    background-position: left;
    top: -86px;
  }
}
@media screen and (max-width: 320px) {
  .index-top-about__title span::before {
    display: none;
  }
}
.index-top-about__title span::after {
  position: absolute;
  content: "";
  width: 78px;
  height: 121px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/index_top/about_ill02.png);
  background-size: cover;
  top: -85px;
  right: 0;
}
@media screen and (max-width: 834px) {
  .index-top-about__title span::after {
    top: -60px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-about__title span::after {
    background-size: 60%;
    background-position: right;
    top: -105px;
    right: 0;
  }
}
@media screen and (max-width: 320px) {
  .index-top-about__title span::after {
    display: none;
  }
}
.index-top-about__text {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .index-top-about__text {
    margin-bottom: 25px;
  }
}
.index-top-about__list {
  display: flex;
  flex-wrap: wrap;
}
.index-top-about__item {
  width: calc((100% - 60px) / 4);
  margin-bottom: 30px;
  margin-right: 20px;
}
.index-top-about__item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 834px) {
  .index-top-about__item {
    width: calc((100% - 30px) / 3);
    margin-bottom: 20px;
    margin-right: 15px;
  }
  .index-top-about__item:nth-child(4n) {
    margin-right: 15px;
  }
  .index-top-about__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .index-top-about__item {
    width: calc((100% - 12px) / 2);
    margin-bottom: 15px;
    margin-right: 12px;
  }
  .index-top-about__item:nth-child(4n) {
    margin-right: 0;
  }
  .index-top-about__item:nth-child(3n) {
    margin-right: 12px;
  }
  .index-top-about__item:nth-child(2n) {
    margin-right: 0;
  }
}
.index-top-about__icon-block {
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 110px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block {
    height: 100px;
    border-radius: 5px;
  }
}
.index-top-about__icon-block span {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block span {
    width: 74px;
    height: 74px;
  }
}
.index-top-about__icon-block span.icon01 {
  background-image: url(../img/day/about_icon01.png);
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block span.icon01 {
    background-size: 55%;
  }
}
#group .index-top-about__icon-block span.icon01 {
  background-image: url(../img/group/about_icon01.png);
  background-size: 36px auto;
}
@media screen and (max-width: 599px) {
  #group .index-top-about__icon-block span.icon01 {
    background-size: 28.8px auto;
  }
}
#short .index-top-about__icon-block span.icon01 {
  background-image: url(../img/short/about_icon01.png);
  background-size: 52px auto;
}
@media screen and (max-width: 599px) {
  #short .index-top-about__icon-block span.icon01 {
    background-size: 41.6px auto;
  }
}
#carehome .index-top-about__icon-block span.icon01 {
  background-image: url(../img/reason/about_icon01.png);
  background-size: 55px auto;
}
@media screen and (max-width: 599px) {
  #carehome .index-top-about__icon-block span.icon01 {
    background-size: 44px auto;
  }
}
.index-top-about__icon-block span.icon02 {
  background-image: url(../img/day/about_icon02.png);
  background-position: center bottom 23px;
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block span.icon02 {
    background-size: 67%;
  }
}
#group .index-top-about__icon-block span.icon02 {
  background-image: url(../img/group/about_icon02.png);
  background-size: 55px auto;
  background-position: center;
}
@media screen and (max-width: 599px) {
  #group .index-top-about__icon-block span.icon02 {
    background-size: 44px auto;
  }
}
#short .index-top-about__icon-block span.icon02 {
  background-image: url(../img/short/about_icon02.png);
  background-size: 55px auto;
  background-position: center;
}
@media screen and (max-width: 599px) {
  #short .index-top-about__icon-block span.icon02 {
    background-size: 44px auto;
  }
}
#carehome .index-top-about__icon-block span.icon02 {
  background-image: url(../img/reason/about_icon02.png);
  background-size: 48px auto;
  background-position: left 60% top 50%;
}
@media screen and (max-width: 599px) {
  #carehome .index-top-about__icon-block span.icon02 {
    background-size: 38.4px auto;
  }
}
.index-top-about__icon-block span.icon03 {
  background-image: url(../img/day/about_icon03.png);
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block span.icon03 {
    background-size: 28%;
  }
}
#group .index-top-about__icon-block span.icon03 {
  background-image: url(../img/group/about_icon03.png);
  background-size: 41px auto;
}
@media screen and (max-width: 599px) {
  #group .index-top-about__icon-block span.icon03 {
    background-size: 32.8px auto;
  }
}
#short .index-top-about__icon-block span.icon03 {
  background-image: url(../img/short/about_icon03.png);
  background-size: 48px auto;
}
@media screen and (max-width: 599px) {
  #short .index-top-about__icon-block span.icon03 {
    background-size: 38.4px auto;
  }
}
#carehome .index-top-about__icon-block span.icon03 {
  background-image: url(../img/reason/about_icon03.png);
  background-size: 24px auto;
}
@media screen and (max-width: 599px) {
  #carehome .index-top-about__icon-block span.icon03 {
    background-size: 19.2px auto;
  }
}
.index-top-about__icon-block span.icon04 {
  background-image: url(../img/day/about_icon04.png);
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block span.icon04 {
    background-size: 45%;
  }
}
#group .index-top-about__icon-block span.icon04 {
  background-image: url(../img/group/about_icon04.png);
  background-size: 66px auto;
}
@media screen and (max-width: 599px) {
  #group .index-top-about__icon-block span.icon04 {
    background-size: 52.8px auto;
  }
}
#short .index-top-about__icon-block span.icon04 {
  background-image: url(../img/short/about_icon04.png);
  background-size: 42px auto;
}
@media screen and (max-width: 599px) {
  #short .index-top-about__icon-block span.icon04 {
    background-size: 33.6px auto;
  }
}
#carehome .index-top-about__icon-block span.icon04 {
  background-image: url(../img/reason/about_icon04.png);
  background-size: 54px auto;
  background-position: left 50% top 45%;
}
@media screen and (max-width: 599px) {
  #carehome .index-top-about__icon-block span.icon04 {
    background-size: 43.2px auto;
  }
}
.index-top-about__icon-block span.icon05 {
  background-image: url(../img/day/about_icon05.png);
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block span.icon05 {
    background-size: 50%;
  }
}
#group .index-top-about__icon-block span.icon05 {
  background-image: url(../img/group/about_icon05.png);
  background-size: 54px auto;
}
@media screen and (max-width: 599px) {
  #group .index-top-about__icon-block span.icon05 {
    background-size: 43.2px auto;
  }
}
#short .index-top-about__icon-block span.icon05 {
  background-image: url(../img/short/about_icon05.png);
  background-size: 54px auto;
}
@media screen and (max-width: 599px) {
  #short .index-top-about__icon-block span.icon05 {
    background-size: 43.2px auto;
  }
}
#carehome .index-top-about__icon-block span.icon05 {
  background-image: url(../img/reason/about_icon05.png);
  background-size: 66px auto;
}
@media screen and (max-width: 599px) {
  #carehome .index-top-about__icon-block span.icon05 {
    background-size: 52.8px auto;
  }
}
.index-top-about__icon-block span.icon06 {
  background-image: url(../img/day/about_icon06.png);
  background-position: center bottom 18px;
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block span.icon06 {
    background-size: 60%;
    background-position: center bottom 20px;
  }
}
#group .index-top-about__icon-block span.icon06 {
  background-image: url(../img/group/about_icon06.png);
  background-size: 55px auto;
}
@media screen and (max-width: 599px) {
  #group .index-top-about__icon-block span.icon06 {
    background-size: 44px auto;
  }
}
#short .index-top-about__icon-block span.icon06 {
  background-image: url(../img/short/about_icon06.png);
  background-size: 42px auto;
}
@media screen and (max-width: 599px) {
  #short .index-top-about__icon-block span.icon06 {
    background-size: 33.6px auto;
  }
}
#carehome .index-top-about__icon-block span.icon06 {
  background-image: url(../img/reason/about_icon06.png);
  background-size: 55px auto;
}
@media screen and (max-width: 599px) {
  #carehome .index-top-about__icon-block span.icon06 {
    background-size: 44px auto;
  }
}
.index-top-about__icon-block span.icon07 {
  background-image: url(../img/day/about_icon07.png);
  background-position: center bottom 23px;
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block span.icon07 {
    background-size: 56%;
    background-position: center bottom 23px;
  }
}
#group .index-top-about__icon-block span.icon07 {
  background-image: url(../img/group/about_icon07.png);
  background-size: 66px auto;
  background-position: center;
}
@media screen and (max-width: 599px) {
  #group .index-top-about__icon-block span.icon07 {
    background-size: 52.8px auto;
  }
}
#short .index-top-about__icon-block span.icon07 {
  background-image: url(../img/short/about_icon07.png);
  background-size: 60px auto;
  background-position: left 50% top 40%;
}
@media screen and (max-width: 599px) {
  #short .index-top-about__icon-block span.icon07 {
    background-size: 48px auto;
  }
}
#carehome .index-top-about__icon-block span.icon07 {
  background-image: url(../img/reason/about_icon07.png);
  background-size: 48px auto;
  background-position: center;
}
@media screen and (max-width: 599px) {
  #carehome .index-top-about__icon-block span.icon07 {
    background-size: 38.4px auto;
  }
}
.index-top-about__icon-block span.icon08 {
  background-image: url(../img/day/about_icon08.png);
}
@media screen and (max-width: 599px) {
  .index-top-about__icon-block span.icon08 {
    background-size: 60%;
  }
}
#group .index-top-about__icon-block span.icon08 {
  background-image: url(../img/group/about_icon08.png);
  background-size: 60px auto;
  background-position: left 50% top 40%;
}
@media screen and (max-width: 599px) {
  #group .index-top-about__icon-block span.icon08 {
    background-size: 48px auto;
  }
}
#short .index-top-about__icon-block span.icon08 {
  background-image: url(../img/short/about_icon08.png);
  background-size: 58px auto;
  background-position: left 50% top 50%;
}
@media screen and (max-width: 599px) {
  #short .index-top-about__icon-block span.icon08 {
    background-size: 46.4px auto;
  }
}
#carehome .index-top-about__icon-block span.icon08 {
  background-image: url(../img/reason/about_icon08.png);
  background-size: 60px auto;
  background-position: left 50% top 44%;
}
@media screen and (max-width: 599px) {
  #carehome .index-top-about__icon-block span.icon08 {
    background-size: 48px auto;
  }
}
.index-top-about__icon-text {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 834px) {
  .index-top-about__icon-text {
    font-size: 1.6rem;
  }
}

.index-top-charm {
  margin-top: 130px;
  margin-bottom: 140px;
  /* ▼▼ reason イレギュラー ▼▼ */
  /* // ▲▲　reason イレギュラー　▲▲*/
}
@media screen and (max-width: 1400px) {
  .index-top-charm {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-charm {
    margin-top: 110px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 834px) {
  .index-top-charm {
    margin-top: 100px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm {
    margin-top: 75px;
    margin-bottom: 60px;
  }
}
.index-top-charm__title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .index-top-charm__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__title {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 9px;
  }
}
.index-top-charm__title::before {
  content: "Charm";
  position: absolute;
  width: 100%;
  top: -70px;
  left: 0;
  font-family: "Cormorant Garamond", serif;
  color: rgba(238, 172, 128, 0.2);
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
#group .index-top-charm__title::before {
  color: rgba(109, 168, 196, 0.2);
}
#short .index-top-charm__title::before {
  color: rgba(176, 152, 194, 0.2);
}
#carehome .index-top-charm__title::before {
  color: rgba(131, 178, 146, 0.2);
}
@media screen and (max-width: 1400px) {
  .index-top-charm__title::before {
    font-size: 9rem;
    font-weight: 500;
    top: -60px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__title::before {
    font-size: 8rem;
    letter-spacing: -0.03em;
    top: -55px;
  }
}
.index-top-charm__title span {
  position: relative;
}
.index-top-charm__title span::after {
  position: absolute;
  content: "";
  width: 107px;
  height: 116px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/index_top/charm_ill01.png);
  background-size: cover;
  top: -15px;
  right: -108px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__title span::after {
    top: -25px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__title span::after {
    display: none;
  }
}
.index-top-charm__sub-text {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.4rem;
  font-weight: 500;
  color: #eb965f;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}
#group .index-top-charm__sub-text {
  color: #5c99b6;
}
#short .index-top-charm__sub-text {
  color: #9e81b4;
}
#carehome .index-top-charm__sub-text {
  color: #619a73;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__sub-text {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 834px) {
  .index-top-charm__sub-text {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__sub-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
.index-top-charm__reason {
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__reason {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason {
    margin-bottom: 30px;
  }
}
.index-top-charm__reason .index-top-charm-box2 {
  background-color: #edf6f0;
  border-radius: 20px;
  padding: 60px;
}
@media screen and (max-width: 1400px) {
  .index-top-charm__reason .index-top-charm-box2 {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-charm__reason .index-top-charm-box2 {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2 {
    border-radius: 10px;
    padding: 20px 20px;
  }
}
.index-top-charm__reason .index-top-charm-box2__number {
  font-family: "Hind", sans-serif !important;
  font-size: 1.4rem;
  font-weight: 500;
  color: #83b292;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__reason .index-top-charm-box2__number {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__number {
    margin-bottom: 2px;
  }
}
.index-top-charm__reason .index-top-charm-box2__number span {
  font-size: 6.2rem;
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__reason .index-top-charm-box2__number span {
    font-size: 5.8rem;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__number span {
    font-size: 4.8rem;
  }
}
.index-top-charm__reason .index-top-charm-box2__title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.8rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__reason .index-top-charm-box2__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__title {
    font-size: 2.1rem;
  }
}
.index-top-charm__reason .index-top-charm-box2__text {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__text {
    margin-bottom: 20px;
  }
}
.index-top-charm__reason .index-top-charm-box2__more-btn {
  background-color: #fff;
  border-radius: 5px;
  max-width: 500px;
  margin: 0 auto 30px;
  background-color: #83b292;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 500;
  font-size: 1.7rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__more-btn {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
}
.index-top-charm__reason .index-top-charm-box2__more-btn::after {
  content: "";
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
.index-top-charm__reason .index-top-charm-box2__more-btn.active::after {
  margin-top: -4px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1025px) {
  .index-top-charm__reason .index-top-charm-box2__more-btn:hover {
    opacity: 0.8;
  }
}
.index-top-charm__reason .index-top-charm-box2__hidden {
  display: none;
}
.index-top-charm__reason .index-top-charm-box2__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__reason .index-top-charm-box2__table {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__table {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-bottom: 30px;
  }
}
.index-top-charm__reason .index-top-charm-box2__table th, .index-top-charm__reason .index-top-charm-box2__table td {
  background-color: #fff;
  border: 5px solid #edf6f0;
  padding: 15px;
  vertical-align: middle;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__reason .index-top-charm-box2__table th, .index-top-charm__reason .index-top-charm-box2__table td {
    font-size: 1.5rem;
    padding: 10px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__table th, .index-top-charm__reason .index-top-charm-box2__table td {
    padding: 5px;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
.index-top-charm__reason .index-top-charm-box2__table thead th {
  background-color: #5d5d5d;
  font-weight: 400;
  color: #fff;
}
.index-top-charm__reason .index-top-charm-box2__table thead th.cell-orange {
  background-color: #eea342;
}
.index-top-charm__reason .index-top-charm-box2__table tbody th {
  background-color: #cce3d4;
  font-weight: 500;
}
.index-top-charm__reason .index-top-charm-box2__table tbody td.cell-orange {
  background-color: #ffebd2;
}
.index-top-charm__reason .index-top-charm-box2__example {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__example {
    margin-top: 35px;
  }
}
.index-top-charm__reason .index-top-charm-box2__example > dt {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__example > dt {
    font-size: 1.7rem;
  }
}
.index-top-charm__reason .index-top-charm-box2__example > dd {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__reason .index-top-charm-box2__example > dd {
    margin-bottom: 30px;
  }
}
.index-top-charm__reason .index-top-charm-box2__example-photo {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__example-photo {
    margin-bottom: 5px;
  }
}
.index-top-charm__reason .index-top-charm-box2__example-photo img {
  width: 100%;
  max-width: 520px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__reason .index-top-charm-box2__example-photo img {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}
.index-top-charm__detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__detail {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 834px) {
  .index-top-charm__detail {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail {
    margin-bottom: 30px;
  }
}
.index-top-charm__detail:last-child {
  margin-bottom: 0;
}
.index-top-charm__detail .index-top-charm-box {
  max-width: 600px;
  width: 100%;
  margin-right: 50px;
  padding: 62px 0 65px 65px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .index-top-charm__detail .index-top-charm-box {
    padding: 50px 0 50px 45px;
  }
}
@media screen and (max-width: 834px) {
  .index-top-charm__detail .index-top-charm-box {
    order: 1;
  }
}
.index-top-charm__detail .index-top-charm-box::before {
  position: absolute;
  content: "";
  width: 350px;
  height: 100%;
  background-color: #fdf3ef;
  left: 0;
  top: 0;
  border-radius: 20px;
  z-index: 0;
}
#group .index-top-charm__detail .index-top-charm-box::before {
  background-color: #e9f3f8;
}
#short .index-top-charm__detail .index-top-charm-box::before {
  background-color: #efebf3;
}
#carehome .index-top-charm__detail .index-top-charm-box::before {
  background-color: #ebf1ed;
}
@media screen and (max-width: 834px) {
  .index-top-charm__detail .index-top-charm-box::before {
    width: 100%;
    height: calc(100% + 130px);
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-box::before {
    height: calc(100% + 60px);
    border-radius: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-charm__detail .index-top-charm-box {
    max-width: 460px;
    padding: 45px 0 50px 50px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 834px) {
  .index-top-charm__detail .index-top-charm-box {
    max-width: none;
    padding: 30px 35px 35px;
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-box {
    padding: 30px 20px;
  }
}
.index-top-charm__detail .index-top-charm-box p {
  position: relative;
  z-index: 1;
}
.index-top-charm__detail .index-top-charm-box__number {
  font-family: "Hind", sans-serif !important;
  font-size: 1.4rem;
  font-weight: 500;
  color: #f4b083;
  line-height: 1;
  margin-bottom: 10px;
}
#group .index-top-charm__detail .index-top-charm-box__number {
  color: #6da8c4;
}
#short .index-top-charm__detail .index-top-charm-box__number {
  color: #b098c2;
}
#carehome .index-top-charm__detail .index-top-charm-box__number {
  color: #83b292;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__detail .index-top-charm-box__number {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-box__number {
    margin-bottom: 2px;
  }
}
.index-top-charm__detail .index-top-charm-box__number span {
  font-size: 6.2rem;
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__detail .index-top-charm-box__number span {
    font-size: 5.8rem;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-box__number span {
    font-size: 4.8rem;
  }
}
.index-top-charm__detail .index-top-charm-box__title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.8rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__detail .index-top-charm-box__title {
    font-size: 2.6rem;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-box__title {
    font-size: 2.1rem;
    margin-bottom: 14px;
  }
}
.index-top-charm__detail .index-top-charm-box__text {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  text-align: justify;
}
.index-top-charm__detail .index-top-charm-box--01::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 20px;
  width: 72px;
  height: 84px;
  background-image: url(../img/index_top/charm_ill02.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-box--01::after {
    width: 50px;
    height: 70px;
  }
}
.index-top-charm__detail .index-top-charm-box--02 {
  padding: 62px 65px 65px 0;
  margin-right: 0;
  margin-left: 50px;
  position: relative;
}
.index-top-charm__detail .index-top-charm-box--02::before {
  right: 0;
  left: auto;
}
@media screen and (max-width: 1400px) {
  .index-top-charm__detail .index-top-charm-box--02 {
    padding: 50px 45px 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-charm__detail .index-top-charm-box--02 {
    padding: 45px 50px 50px 0;
    margin-left: 40px;
  }
}
@media screen and (max-width: 834px) {
  .index-top-charm__detail .index-top-charm-box--02 {
    padding: 30px 35px 35px;
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-box--02 {
    padding: 30px 20px;
  }
}
.index-top-charm__detail .index-top-charm-box--03::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 10px;
  width: 91px;
  height: 109px;
  background-image: url(../img/index_top/charm_ill03.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-box--03::after {
    top: -10px;
    width: 60px;
    height: 80px;
  }
}
.index-top-charm__detail .index-top-charm-box--04 {
  padding: 42px 65px 65px 0;
  margin-right: 0;
  margin-left: 50px;
  position: relative;
}
.index-top-charm__detail .index-top-charm-box--04::before {
  right: 0;
  left: auto;
}
@media screen and (max-width: 1400px) {
  .index-top-charm__detail .index-top-charm-box--04 {
    padding: 40px 45px 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-charm__detail .index-top-charm-box--04 {
    padding: 40px 50px 50px 0;
    margin-left: 40px;
  }
}
@media screen and (max-width: 834px) {
  .index-top-charm__detail .index-top-charm-box--04 {
    padding: 30px 35px 35px;
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-box--04 {
    padding: 30px 20px;
  }
}
.index-top-charm__detail .index-top-charm-image {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .index-top-charm__detail .index-top-charm-image {
    padding: 0 35px;
    order: 2;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__detail .index-top-charm-image {
    padding: 0 20px;
  }
}
.index-top-charm__iryo {
  margin-top: -50px;
  border: 4px solid #83b292;
  border-radius: 20px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__iryo {
    margin-top: -20px;
    border-radius: 10px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__iryo {
    margin-top: 0;
    border: 3px solid #83b292;
    margin-bottom: 40px;
  }
}
.index-top-charm__iryo > dt {
  background-color: #83b292;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 5px 10px 12px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__iryo > dt {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__iryo > dt {
    font-size: 1.9rem;
    padding: 5px 10px 10px;
  }
}
.index-top-charm__iryo > dd {
  padding: 30px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__iryo > dd {
    padding: 15px;
  }
}
.index-top-charm__iryo__head-text {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__iryo__head-text {
    font-size: 1.5rem;
  }
}
.index-top-charm__iryo__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__iryo__list {
    gap: 5px;
  }
}
.index-top-charm__iryo__list > li {
  width: calc((100% - 70px) / 8);
  text-align: center;
  line-height: 1.2;
  background-color: #edf6f0;
  border-radius: 5px;
  padding: 65px 10px 10px;
}
@media screen and (max-width: 1024px) {
  .index-top-charm__iryo__list > li {
    width: calc((100% - 40px) / 5);
  }
}
@media screen and (max-width: 599px) {
  .index-top-charm__iryo__list > li {
    width: calc((100% - 15px) / 4);
    font-size: 1.4rem;
    padding: 50px 5px 10px;
  }
}
.index-top-charm__iryo__list > li.maru {
  background-color: #f9eded;
  background-image: url(../img/reason/maru.png);
  background-size: 34px 34px;
  background-repeat: no-repeat;
  background-position: left 50% top 20px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__iryo__list > li.maru {
    background-size: 30px 30px;
    background-position: left 50% top 12px;
  }
}
.index-top-charm__iryo__list > li.sankaku {
  background-color: #f9eed5;
  background-image: url(../img/reason/sankaku.png);
  background-size: 35px 35px;
  background-repeat: no-repeat;
  background-position: left 50% top 18px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__iryo__list > li.sankaku {
    background-size: 30px 30px;
    background-position: left 50% top 10px;
  }
}
.index-top-charm__iryo__list > li.batsu {
  background-color: #deebf8;
  background-image: url(../img/reason/batsu.png);
  background-size: 30px 29px;
  background-repeat: no-repeat;
  background-position: left 50% top 23px;
}
@media screen and (max-width: 599px) {
  .index-top-charm__iryo__list > li.batsu {
    background-size: 26px auto;
    background-position: left 50% top 14px;
  }
}

/*ブログ*/
.index-top-blog {
  position: relative;
  padding: 40px 50px 100px;
}
@media screen and (max-width: 1400px) {
  .index-top-blog {
    padding: 40px 30px 90px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-blog {
    padding: 40px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-blog {
    padding: 20px 15px 40px;
  }
}
.index-top-blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #83b292;
  width: 100%;
  height: 280px;
  z-index: -1;
  border-radius: 20px;
}
@media screen and (max-width: 1400px) {
  .index-top-blog::before {
    height: 220px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-blog::before {
    height: 250px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-blog::before {
    height: 180px;
    border-radius: 10px;
  }
}
#day .index-top-blog::before {
  background-color: #f4b083;
}
#group .index-top-blog::before {
  background-color: #6da8c4;
}
#short .index-top-blog::before {
  background-color: #b098c2;
}

.index-top-blog-title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  margin-bottom: 40px;
  position: relative;
  line-height: 1;
  padding-top: 70px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .index-top-blog-title {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-blog-title {
    margin-bottom: 40px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .index-top-blog-title {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    padding-top: 40px;
    margin-bottom: 25px;
  }
}
.index-top-blog-title::before {
  content: "Blog";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -95px;
  font-family: "Cormorant Garamond", serif;
  color: rgba(255, 255, 255, 0.2);
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .index-top-blog-title::before {
    font-size: 8rem;
    margin-left: -70px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-blog-title::before {
    font-size: 7rem;
    margin-left: -60px;
  }
}
.index-top-blog-title span {
  position: relative;
}
.index-top-blog-title span::before {
  content: "";
  position: absolute;
  top: -130px;
  left: -160px;
  width: 104px;
  height: 120px;
  background-image: url(../img/index_top/blog_illust01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1400px) {
  .index-top-blog-title span::before {
    left: -140px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-blog-title span::before {
    width: 70px;
    height: 90px;
    top: -60px;
    left: -90px;
  }
}
.index-top-blog-title span::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -110px;
  width: 64px;
  height: 86px;
  background-image: url(../img/index_top/blog_illust02.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .index-top-blog-title span::after {
    width: 40px;
    height: 60px;
    right: -70px;
    top: -10px;
  }
}

.index-top-blog-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .index-top-blog-list {
    gap: 25px 15px;
  }
}

.index-top-blog-item {
  width: calc((100% - 90px) / 4);
}
@media screen and (max-width: 1024px) {
  .index-top-blog-item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .index-top-blog-item {
    width: calc((100% - 15px) / 2);
  }
}
.index-top-blog-item__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .index-top-blog-item__link:hover {
    opacity: 0.8;
    transform: translateY(3px);
  }
}
.index-top-blog-item__photo {
  position: relative;
  margin-bottom: 18px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .index-top-blog-item__photo {
    margin-bottom: 14px;
  }
}
.index-top-blog-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.index-top-blog-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.index-top-blog-item__category {
  width: 100%;
  max-width: 170px;
  text-align: center;
  font-size: 1.3rem;
  padding: 3px 10px;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: 500;
  border-bottom-right-radius: 3px;
}
@media screen and (max-width: 599px) {
  .index-top-blog-item__category {
    max-width: auto;
    width: auto;
    font-size: 1.2rem;
    padding: 2px 10px;
  }
}
.index-top-blog-item__category--blog_carehome {
  background-color: #87b869;
}
.index-top-blog-item__category--blog_day {
  background-color: #e3a175;
}
.index-top-blog-item__category--blog_group {
  background-color: #6da8c4;
}
.index-top-blog-item__category--blog_short {
  background-color: #a88ebc;
}
.index-top-blog-item__date {
  font-size: 1.6rem;
  color: #619a73;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 6px;
}
#day .index-top-blog-item__date {
  color: #eb965f;
}
#group .index-top-blog-item__date {
  color: #5c99b6;
}
#short .index-top-blog-item__date {
  color: #9e81b4;
}
@media screen and (max-width: 599px) {
  .index-top-blog-item__date {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
}
.index-top-blog-item__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
}
.index-top-blog-item__new {
  color: #e75555;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-left: 10px;
}

.index-top-blog-btn {
  text-align: center;
}
.index-top-blog-btn > a {
  margin: 0;
}

/*流れ*/
.index-top-flow {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .index-top-flow {
    margin-top: 60px;
  }
}
.index-top-flow__title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .index-top-flow__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-flow__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-flow__title {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
  }
}
.index-top-flow__title::before {
  content: "Flow";
  position: absolute;
  width: 100%;
  top: -70px;
  left: 0;
  font-family: "Cormorant Garamond", serif;
  color: rgba(238, 172, 128, 0.2);
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
#group .index-top-flow__title::before {
  color: rgba(109, 168, 196, 0.2);
}
#short .index-top-flow__title::before {
  color: rgba(176, 152, 194, 0.2);
}
@media screen and (max-width: 1400px) {
  .index-top-flow__title::before {
    font-size: 9rem;
    font-weight: 500;
    top: -60px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-flow__title::before {
    font-size: 8rem;
    letter-spacing: -0.03em;
    top: -55px;
  }
}
.index-top-flow__list {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.index-top-flow__item {
  margin-bottom: 15px;
  display: flex;
}
.index-top-flow__data {
  width: 140px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  line-height: 1;
  margin-top: 7px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .index-top-flow__data {
    width: 100px;
    font-size: 1.7rem;
  }
}
.index-top-flow__data::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% + 25px);
  background-color: #cccccc;
  top: 3px;
  right: 52px;
}
@media screen and (max-width: 599px) {
  .index-top-flow__data::before {
    top: 2px;
    right: 28px;
  }
}
.index-top-flow__data::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background-color: #f4b083;
  border-radius: 50%;
  top: 3px;
  right: 45px;
}
#group .index-top-flow__data::after {
  background-color: #6da8c4;
}
#short .index-top-flow__data::after {
  background-color: #b098c2;
}
@media screen and (max-width: 599px) {
  .index-top-flow__data::after {
    top: 2px;
    right: 21px;
  }
}
.index-top-flow__data.last::before {
  display: none;
}
.index-top-flow__list-text {
  width: calc(100% - 140px);
  padding: 16px 30px 18px;
  background-color: #fdf3ef;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}
#group .index-top-flow__list-text {
  background-color: #e9f3f8;
}
#short .index-top-flow__list-text {
  background-color: #efebf3;
}
@media screen and (max-width: 599px) {
  .index-top-flow__list-text {
    width: calc(100% - 100px);
    padding: 13px 20px 15px;
  }
}

.index-top-overview {
  margin-top: 130px;
}
@media screen and (max-width: 1024px) {
  .index-top-overview {
    margin-top: 110px;
  }
}
@media screen and (max-width: 834px) {
  .index-top-overview {
    margin-top: 100px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-overview {
    margin-top: 75px;
  }
}
.index-top-overview--mt-small {
  margin-top: 40px;
}
.index-top-overview__title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .index-top-overview__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .index-top-overview__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-overview__title {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
  }
}
.index-top-overview__title::before {
  content: "Overview";
  position: absolute;
  width: 100%;
  top: -70px;
  left: 0;
  font-family: "Cormorant Garamond", serif;
  color: rgba(238, 172, 128, 0.2);
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  z-index: 0;
}
#group .index-top-overview__title::before {
  color: rgba(109, 168, 196, 0.2);
}
#short .index-top-overview__title::before {
  color: rgba(176, 152, 194, 0.2);
}
#carehome .index-top-overview__title::before {
  color: rgba(131, 178, 146, 0.2);
}
@media screen and (max-width: 1400px) {
  .index-top-overview__title::before {
    font-size: 9rem;
    font-weight: 500;
    top: -60px;
  }
}
@media screen and (max-width: 599px) {
  .index-top-overview__title::before {
    font-size: 8rem;
    letter-spacing: -0.03em;
    top: -55px;
  }
}
.index-top-overview__table {
  max-width: 980px;
  border-collapse: collapse;
  width: 100%;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #000;
  line-height: 1.6;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .index-top-overview__table {
    font-size: 1.5rem;
  }
}
.index-top-overview__table tr {
  border-top: 1px solid #e4e4e4;
}
.index-top-overview__table tr:last-child {
  border-bottom: 1px solid #e4e4e4;
}
.index-top-overview__table th, .index-top-overview__table td {
  vertical-align: middle;
  font-weight: 400;
}
.index-top-overview__table th {
  background-color: #f4b083;
  width: 30%;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.4;
  padding: 21px 30px;
}
#group .index-top-overview__table th {
  background-color: #6da8c4;
}
#short .index-top-overview__table th {
  background-color: #b098c2;
}
#carehome .index-top-overview__table th {
  background-color: #83b292;
}
@media screen and (max-width: 599px) {
  .index-top-overview__table th {
    width: 90px;
    font-size: 1.6rem;
    padding: 11px 11px;
  }
}
.index-top-overview__table td {
  padding: 21px 0 21px 30px;
}
@media screen and (max-width: 599px) {
  .index-top-overview__table td {
    padding: 11px 0 11px 15px;
  }
}
.index-top-overview__table td .caution {
  text-indent: -1em;
  padding-left: 1em;
}

/*--------------------------------------------------------
contact
----------------------------------------------------------*/
.contact-tel {
  background-color: #ebf1ed;
  border-radius: 5px;
  padding: 30px 40px 25px;
  vertical-align: text-bottom;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .contact-tel {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .contact-tel {
    padding: 25px 20px 20px;
    margin-bottom: 50px;
  }
}
.contact-tel__tel {
  font-size: 3.4rem;
  font-family: "Hind", sans-serif !important;
  color: #333;
  font-weight: 600;
  line-height: 1;
  vertical-align: middle;
  margin-right: 20px;
  padding-left: 26px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .contact-tel__tel {
    font-size: 3rem;
    padding-left: 22px;
    color: #619a73;
    text-decoration: underline;
  }
}
.contact-tel__tel::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 22px;
  height: 26px;
  background-image: url(../img/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .contact-tel__tel::before {
    top: 11px;
    width: 18px;
  }
}
.contact-tel__time {
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .contact-tel__time {
    display: block;
    font-size: 1.5rem;
  }
}

.contact-title {
  background-color: #83b292;
  color: #fff;
  font-weight: 500;
  border-radius: 3px;
  font-size: 1.8rem;
  line-height: 1.3;
  padding: 12px 10px 12px 27px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .contact-title {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .contact-title {
    font-size: 1.8rem;
    padding: 12px 10px 12px 25px;
  }
}
.contact-title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 3px;
  height: calc(100% - 22px);
  background-color: #fff;
  display: block;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .contact-title::before {
    width: 18px;
    height: 3px;
    left: 0;
    top: 22px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

/*--------------------------------------------------------
sitemap
----------------------------------------------------------*/
.sitemap-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .sitemap-title {
    margin-bottom: 15px;
  }
}
.sitemap-title > a {
  background-color: #ebf1ed;
  border-radius: 5px;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 14px 10px 14px 45px;
  position: relative;
  display: block;
  color: #222;
}
@media screen and (min-width: 1025px) {
  .sitemap-title > a:hover {
    transform: translateX(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-title > a {
    font-size: 1.7rem;
    padding: 14px 10px 14px 40px;
  }
}
.sitemap-title > a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 10px;
  width: 24px;
  height: 24px;
  background-color: #83b292;
  border-radius: 200px;
}
@media screen and (max-width: 599px) {
  .sitemap-title > a::before {
    width: 22px;
    height: 22px;
  }
}
.sitemap-title > a::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 17px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
}
@media screen and (max-width: 599px) {
  .sitemap-title > a::after {
    width: 6px;
    height: 6px;
  }
}

.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}
.sitemap-list:not(:has(li)) {
  display: none;
}
@media screen and (max-width: 599px) {
  .sitemap-list {
    margin-bottom: 30px;
    gap: 10px;
  }
}
.sitemap-list > li {
  width: calc((100% - 15px) / 2);
  border-bottom: 1px solid #ddd;
}
.sitemap-list > li > a {
  display: block;
  padding: 2px 0 13px 30px;
  color: #222;
  font-weight: 500;
  position: relative;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .sitemap-list > li > a {
    font-size: 1.5rem;
    padding: 2px 0 13px 18px;
  }
}
.sitemap-list > li > a::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 7px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  border-top: 2px solid #83b292;
  border-right: 2px solid #83b292;
  display: block;
}
@media screen and (max-width: 599px) {
  .sitemap-list > li > a::after {
    left: 2px;
    width: 8px;
    height: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-list > li > a:hover {
    color: #83b292;
    transform: translateX(3px);
  }
}

/*--------------------------------------------------------
facility
----------------------------------------------------------*/
.facility-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-title01 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 70px;
  position: relative;
  line-height: 1;
  padding-top: 70px;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .facility-title01 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .facility-title01 {
    font-size: 2.9rem;
    padding-top: 45px;
    margin-bottom: 40px;
  }
}
.facility-title01::before {
  content: "Common space";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -2.8em;
  font-family: "Cormorant Garamond", serif;
  color: rgba(131, 178, 146, 0.2);
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1400px) {
  .facility-title01::before {
    font-size: 8rem;
    top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .facility-title01::before {
    font-size: 4.4rem;
  }
}
.facility-title01--map::before {
  content: "Floor map";
  margin-left: -2em;
}
.facility-title01 span {
  position: relative;
}
.facility-title01 span::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -80px;
  width: 43px;
  height: 53px;
  background-image: url(../img/facility/title_illust01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .facility-title01 span::after {
    width: 30px;
    top: -30px;
    left: -45px;
  }
}
.facility-title01 span::before {
  content: "";
  position: absolute;
  top: 0;
  right: -125px;
  width: 108px;
  height: 82px;
  background-image: url(../img/facility/title_illust02.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .facility-title01 span::before {
    width: 60px;
    right: -50px;
    top: 10px;
  }
}

.facility-title02 {
  font-size: 3.1rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.2;
  margin-bottom: 30px;
  padding-bottom: 15px;
  padding-left: 50px;
  padding-top: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-image: url(../img/facility/title_illust03.png);
  background-repeat: no-repeat;
  background-size: 42px auto;
  background-position: left 0 top 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .facility-title02 {
    font-size: 2.7rem;
    background-size: 35px auto;
    padding-left: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-title02 {
    font-size: 2.5rem;
    background-size: 30px auto;
    padding-left: 35px;
    padding-top: 4px;
  }
}
.facility-title02::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #83b292;
  border-radius: 200px;
}
@media screen and (max-width: 599px) {
  .facility-title02::before {
    width: 50%;
  }
}
.facility-title02 span {
  font-family: "Hind", sans-serif !important;
  font-size: 1.3rem;
  color: #619a73;
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .facility-title02 span {
    display: block;
    margin-left: 0;
    margin-top: 3px;
    font-size: 1.1rem;
  }
}

.facility-one-block {
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  .facility-one-block {
    margin-bottom: 50px;
  }
}

.facility-photo-list {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 599px) {
  .facility-photo-list {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.facility-photo-list > li {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 599px) {
  .facility-photo-list > li {
    width: 100%;
  }
}
.facility-photo-list > li > img {
  border-radius: 20px;
  box-shadow: 10px 10px 0 #ebf1ed;
}
@media screen and (max-width: 1024px) {
  .facility-photo-list > li > img {
    border-radius: 10px;
    box-shadow: 5px 5px 0 #ebf1ed;
  }
}

.facility-photo-one > img {
  border-radius: 20px;
  box-shadow: 10px 10px 0 #ebf1ed;
}
@media screen and (max-width: 1024px) {
  .facility-photo-one > img {
    border-radius: 10px;
  }
}

.facility-two-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .facility-two-block {
    flex-wrap: wrap;
    gap: 60px;
  }
}
.facility-two-block > li {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 599px) {
  .facility-two-block > li {
    width: 100%;
  }
}

.facility-map {
  display: flex;
}
@media screen and (max-width: 599px) {
  .facility-map {
    flex-wrap: wrap;
  }
}
.facility-map__title {
  background-color: #83b292;
  border-radius: 15px;
  width: 215px;
  height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 10px 10px 0 #ebf1ed;
}
@media screen and (max-width: 1400px) {
  .facility-map__title {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 599px) {
  .facility-map__title {
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 7px 10px 10px;
    box-shadow: 5px 5px 0 #ebf1ed;
  }
}
.facility-map__title > span {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 4.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .facility-map__title > span {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .facility-map__title > span {
    font-size: 2.3rem;
  }
}
.facility-map__title > span > span {
  margin-bottom: -45px;
  font-weight: 400;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .facility-map__title > span > span {
    font-size: 6rem;
    margin-bottom: -40px;
  }
}
@media screen and (max-width: 599px) {
  .facility-map__title > span > span {
    font-size: 4rem;
    margin-bottom: -30px;
    line-height: 0.8;
  }
}
.facility-map__map {
  width: calc(100% - 215px);
  text-align: center;
  padding: 0 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1400px) {
  .facility-map__map {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 599px) {
  .facility-map__map {
    width: 100%;
    padding: 30px 0 0;
    margin-bottom: 50px;
  }
}
.facility-map__map--last {
  margin-bottom: 0;
}

.facility-map-item01__img {
  position: relative;
  width: 100%;
  max-width: 795px;
  margin: 0 auto;
}
.facility-map-item01__link01 {
  position: absolute;
  top: 19%;
  right: 12%;
  max-width: 184px;
  width: 25%;
}
@media screen and (min-width: 1025px) {
  .facility-map-item01__link01 > a:hover {
    opacity: 0.8;
  }
}
.facility-map-item01__link02 {
  position: absolute;
  top: 61%;
  right: 29%;
  max-width: 181px;
  width: 25%;
}
@media screen and (min-width: 1025px) {
  .facility-map-item01__link02 > a:hover {
    opacity: 0.8;
  }
}
.facility-map-item01__link03 {
  position: absolute;
  top: 75%;
  right: 29%;
  max-width: 181px;
  width: 25%;
}
@media screen and (min-width: 1025px) {
  .facility-map-item01__link03 > a:hover {
    opacity: 0.8;
  }
}

.facility-map-item02__img {
  position: relative;
  width: 100%;
  max-width: 565px;
  margin: 0 auto;
}
.facility-map-item02__link01 {
  position: absolute;
  top: 12%;
  left: 17%;
  max-width: 170px;
  width: 31%;
}
@media screen and (min-width: 1025px) {
  .facility-map-item02__link01 > a:hover {
    opacity: 0.8;
  }
}
.facility-map-item02__link02 {
  position: absolute;
  top: 65%;
  right: 45%;
  max-width: 181px;
  width: 32%;
}
@media screen and (min-width: 1025px) {
  .facility-map-item02__link02 > a:hover {
    opacity: 0.8;
  }
}

.facility-map-item03__img {
  position: relative;
  width: 100%;
  max-width: 565px;
  margin: 0 auto;
}
.facility-map-item03__link01 {
  position: absolute;
  top: 12%;
  left: 21%;
  max-width: 170px;
  width: 32%;
}
@media screen and (min-width: 1025px) {
  .facility-map-item03__link01 > a:hover {
    opacity: 0.8;
  }
}
.facility-map-item03__link02 {
  position: absolute;
  top: 75%;
  right: 45%;
  max-width: 181px;
  width: 33%;
}
@media screen and (min-width: 1025px) {
  .facility-map-item03__link02 > a:hover {
    opacity: 0.8;
  }
}/*# sourceMappingURL=style.css.map */