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

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

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

	リセット : html5reset-1.6.1.css

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

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

[disabled] {
  cursor: not-allowed;
}

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

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

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

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

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

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

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

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

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

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

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

/*視差効果
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .header {
    position: relative;
  }
}

.header-logo {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 200px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    width: calc(100% - 80px);
    max-width: 150px;
    top: 13px;
    left: 13px;
  }
}

.header-fix-links {
  position: absolute;
  top: 0;
  right: 130px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .header-fix-links {
    display: none;
  }
}

.header-fix-link > a {
  display: block;
  background-color: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  color: #222;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 8px 18px 9px 40px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  .header-fix-link > a:hover {
    transform: translateX(2px);
    color: #16b299;
  }
}
.header-fix-link.hospital > a {
  background-image: url(../img/common/icon_hospital.svg);
  background-size: 22px auto;
  background-position: left 10px top 10px;
}
.header-fix-link.caremane > a {
  background-image: url(../img/common/icon_care.svg);
  background-size: 18px auto;
  background-position: left 13px top 5px;
}

/* ===================================
ハンバーガー
=====================================*/
/*ハンバーガーボタン*/
#nav-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 90px;
  width: 110px;
  cursor: pointer;
  background-color: #f35a31;
  border-bottom-left-radius: 5px;
  z-index: 100;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  #nav-toggle:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  #nav-toggle {
    position: fixed;
  }
}
@media screen and (max-width: 599px) {
  #nav-toggle {
    width: 80px;
    height: 66px;
  }
}
#nav-toggle::before {
  content: "メニュー";
  position: absolute;
  bottom: 17px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 599px) {
  #nav-toggle::before {
    bottom: 7px;
  }
}
#nav-toggle > div {
  position: absolute;
  top: 27px;
  left: 39px;
  width: 28px;
}
@media screen and (max-width: 599px) {
  #nav-toggle > div {
    width: 26px;
    top: 16px;
    left: 28px;
  }
}
#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 close */
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 8px;
}
#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: #f1f1f1;
  position: fixed;
  top: 0;
  right: 0;
  width: 700px;
  height: 100vh;
  transform: translateX(700px);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 99;
}
@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;
  }
}

/*ハンバーガーコンテンツ内*/
.hamburger-head {
  margin-bottom: 50px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .hamburger-head {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
.hamburger-head > li {
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 599px) {
  .hamburger-head > li {
    width: 100%;
  }
}

.hamburger-link01 {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #16b299;
  border-radius: 6px;
  text-align: left;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  padding: 15px 5px 12px 73px;
  letter-spacing: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.hamburger-link01 > span {
  display: block;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 600;
}
.hamburger-link01--search {
  background-image: url(../img/common/side_search.png);
  background-repeat: no-repeat;
  background-position: left 11px bottom 0;
  background-size: 52px auto;
}
.hamburger-link01--soudan {
  background-image: url(../img/common/side_soudan.png);
  background-repeat: no-repeat;
  background-position: left 14px bottom 0;
  background-size: 50px auto;
}
@media screen and (min-width: 1025px) {
  .hamburger-link01:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}

.hamburger-links-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .hamburger-links-list {
    margin-bottom: 40px;
  }
}
.hamburger-links-list > li {
  width: calc((100% - 10px) / 2);
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .hamburger-links-list > li:hover {
    transform: translateY(2px);
  }
  .hamburger-links-list > li:hover > a {
    color: #f35a31;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-links-list > li {
    width: 100%;
  }
}
.hamburger-links-list > li > a,
.hamburger-links-list > li > button {
  width: 100%;
  height: 100%;
  display: block;
  color: #444;
  line-height: 1.3;
  padding: 14px 10px 15px 44px;
  font-weight: 500;
  position: relative;
  box-shadow: none;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .hamburger-links-list > li > a,
  .hamburger-links-list > li > button {
    padding: 15px 10px 16px 44px;
  }
}
.hamburger-links-list > li > a::before,
.hamburger-links-list > li > button::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 11px;
  width: 23px;
  height: 23px;
  background-color: #f35a31;
  border-radius: 50%;
}
.hamburger-links-list > li > a::after,
.hamburger-links-list > li > button::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 19px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.hamburger-links-toggle {
  cursor: pointer;
}
.hamburger-links-toggle::before {
  background-color: #faedda !important;
  background-image: url(../img/common/icon_plus.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: left 5px top 4px;
}
.hamburger-links-toggle::after {
  content: none !important;
}
.hamburger-links-toggle.active::before {
  background-image: url(../img/common/icon_minus.png);
}

.hamburger-links-hidden {
  display: none;
  padding: 5px 20px 15px;
}
.hamburger-links-hidden > li {
  margin-bottom: 9px;
}
@media screen and (max-width: 599px) {
  .hamburger-links-hidden > li {
    margin-bottom: 13px;
  }
}
.hamburger-links-hidden > li > a {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.4;
  display: block;
  font-weight: 500;
  padding-left: 27px;
  position: relative;
}
.hamburger-links-hidden > li > a::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #f35a31;
  border-right: 1px solid #f35a31;
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .hamburger-links-hidden > li > a:hover {
    color: #f35a31;
    transform: translateX(2px);
  }
}
@media screen and (max-width: 599px) {
  .hamburger-links-hidden > li > a {
    font-size: 1.6rem;
  }
}

.hamburger-conversion {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .hamburger-conversion {
    margin-bottom: 30px;
  }
}
.hamburger-conversion > li {
  width: calc((100% - 20px) / 3);
}
.hamburger-conversion > li > a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  display: block;
  text-align: center;
  color: #444;
  font-weight: 500;
  line-height: 1.3;
  padding: 53px 10px 17px;
}
@media screen and (min-width: 1025px) {
  .hamburger-conversion > li > a:hover {
    color: #16b299;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .hamburger-conversion > li > a {
    padding: 50px 3px 12px;
    font-size: min(3.5vw, 1.5rem);
    letter-spacing: -0.03em;
  }
}
.hamburger-conversion > li > a.mail {
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: left 50% top 21px;
}
@media screen and (max-width: 599px) {
  .hamburger-conversion > li > a.mail {
    background-size: 25px auto;
    background-position: left 50% top 20px;
  }
}
.hamburger-conversion > li > a.siryo {
  background-image: url(../img/common/icon_siryo.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: left 50% top 17px;
}
@media screen and (max-width: 599px) {
  .hamburger-conversion > li > a.siryo {
    background-size: 20px auto;
    background-position: left 50% top 15px;
  }
}
.hamburger-conversion > li > a.raiten {
  background-image: url(../img/common/icon_shop.svg);
  background-repeat: no-repeat;
  background-size: 33px auto;
  background-position: left 50% top 20px;
}
@media screen and (max-width: 599px) {
  .hamburger-conversion > li > a.raiten {
    background-size: 30px auto;
    background-position: left 50% top 17px;
  }
}

.hamburger-overview {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .hamburger-overview {
    gap: 20px;
  }
}
.hamburger-overview > li > a {
  font-size: 1.5rem;
  text-decoration: underline;
  color: #444;
}
@media screen and (min-width: 1025px) {
  .hamburger-overview > li > a:hover {
    text-decoration: none;
  }
}

.hamburger-other {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .hamburger-other {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}

.hamburger-other-link > a {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  color: #222;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 8px 18px 9px 40px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  .hamburger-other-link > a:hover {
    transform: translateY(2px);
    color: #16b299;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-other-link > a {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.hamburger-other-link.hospital > a {
  background-image: url(../img/common/icon_hospital.svg);
  background-size: 22px auto;
  background-position: left 10px top 10px;
}
.hamburger-other-link.caremane > a {
  background-image: url(../img/common/icon_care.svg);
  background-size: 18px auto;
  background-position: left 13px top 5px;
}

.hamburger-info {
  text-align: center;
}
.hamburger-info__catch {
  font-size: 1.4rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 13px;
  line-height: 1.3;
}
.hamburger-info__logo {
  width: 100%;
  max-width: 150px;
  margin-bottom: 32px;
}
.hamburger-info__address {
  margin-bottom: 25px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #444;
  font-weight: 500;
}
.hamburger-info__map {
  width: 100%;
  max-width: 230px;
  margin: 0 auto 40px;
  padding: 13px 5px 14px 30px;
  display: block;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #d8d8d8;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #444;
  position: relative;
  text-align: left;
}
.hamburger-info__map::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 11px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #f35a31;
  border-right: 1px solid #f35a31;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .hamburger-info__map::before {
    left: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .hamburger-info__map:hover {
    color: #f35a31;
    transform: translateY(2px);
  }
}
.hamburger-info__copy {
  font-size: 1.1rem;
  color: #949494;
  font-family: "Hind", sans-serif !important;
  font-weight: 500;
}

.footer-head {
  background-color: #f3f3f3;
  padding-left: 265px;
}
@media screen and (max-width: 1024px) {
  .footer-head {
    padding-left: 0;
  }
}
.footer-head__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 50px;
}
@media screen and (max-width: 1024px) {
  .footer-head__inner {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-head__inner {
    padding: 50px 30px 30px;
  }
}

.footer-slider {
  max-width: 900px;
  margin: 0 auto 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer-slider {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-slider {
    max-width: 300px;
  }
}
.footer-slider .slick-slide {
  margin: 0 10px;
}
@media screen and (min-width: 1025px) {
  .footer-slider .slick-slide a:hover {
    opacity: 0.8;
  }
}
.footer-slider .prev-arrow {
  cursor: pointer;
  width: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  left: -50px;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .footer-slider .prev-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .footer-slider .prev-arrow {
    left: -15px;
  }
}
.footer-slider .next-arrow {
  cursor: pointer;
  width: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  right: -50px;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .footer-slider .next-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .footer-slider .next-arrow {
    right: -15px;
  }
}

.footer-links-block {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 599px) {
  .footer-links-block {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
  }
}

@media screen and (max-width: 599px) {
  .footer-links {
    width: 100%;
  }
}
.footer-links > li {
  margin-bottom: 18px;
}
.footer-links > li > a {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.3;
  color: #222;
  display: block;
  position: relative;
  padding-left: 18px;
}
@media screen and (max-width: 599px) {
  .footer-links > li > a {
    font-size: 1.6rem;
  }
}
.footer-links > li > a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid #f35a31;
  border-radius: 50%;
}
@media screen and (min-width: 1025px) {
  .footer-links > li > a:hover {
    color: #f35a31;
    transform: translateX(2px);
  }
}
.footer-links > li > ul {
  list-style: none;
  margin-left: 15px;
  margin-top: 20px;
}
.footer-links > li > ul > li {
  margin-bottom: 13px;
}
.footer-links > li > ul > li > a {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #222;
  display: block;
  position: relative;
  padding-left: 18px;
}
.footer-links > li > ul > li > a::before {
  content: "・";
  margin-right: 3px;
}
@media screen and (min-width: 1025px) {
  .footer-links > li > ul > li > a:hover {
    color: #f35a31;
    transform: translateX(2px);
  }
}
@media screen and (max-width: 599px) {
  .footer-links > li > ul > li > a {
    font-size: 1.5rem;
  }
}

.footer-info {
  padding-left: 265px;
}
@media screen and (max-width: 1024px) {
  .footer-info {
    padding-left: 0;
  }
}
.footer-info__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 30px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer-info__inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .footer-info__inner {
    padding: 40px 15px;
  }
}

.footer-info-logo {
  width: 340px;
}
@media screen and (max-width: 1024px) {
  .footer-info-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
.footer-info-logo__text {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.footer-info-logo__logo {
  width: 100%;
  max-width: 150px;
}

.footer-info-data {
  width: calc(100% - 340px);
  border-left: 1px solid #d8d8d8;
  padding-left: 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-info-data {
    width: 100%;
    display: block;
    text-align: center;
    padding-left: 0;
    border-left: 0;
  }
}
.footer-info-data__add {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .footer-info-data__add {
    margin-bottom: 30px;
  }
}
.footer-info-data__links > a {
  width: 230px;
  margin-bottom: 10px;
  display: block;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-size: 1.4rem;
  color: #222;
  line-height: 1.3;
  padding: 13px 10px 16px 28px;
  position: relative;
}
.footer-info-data__links > a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #f35a31;
  border-right: 1px solid #f35a31;
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .footer-info-data__links > a:hover {
    color: #f35a31;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .footer-info-data__links > a {
    margin: 0 auto 10px;
  }
}

.footer-copy {
  background-color: #555555;
  color: #fff;
  text-align: center;
  padding: 20px;
  line-height: 1;
  font-family: "Hind", sans-serif !important;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .footer-copy {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .footer-copy {
    padding: 15px;
  }
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 280px;
  z-index: 50;
  opacity: 0.7;
}
@media screen and (min-width: 1025px) {
  .pagetop:hover {
    opacity: 0.5;
  }
}

/*右下固定バナー*/
.footer-fix {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
}
@media screen and (max-width: 1024px) {
  .footer-fix {
    display: none;
  }
}
.footer-fix .close-btn {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 36px;
  height: 36px;
  background-color: #222;
  border-radius: 50%;
  color: #fff;
}
.footer-fix .close-btn:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.footer-fix-slider {
  width: 280px;
}
@media screen and (min-width: 1025px) {
  .footer-fix-slider .slick-slide a:hover {
    opacity: 0.8;
  }
}
.footer-fix-slider__dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.footer-fix-slider__dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #a7a7a7;
  border-radius: 50%;
  cursor: pointer;
}
.footer-fix-slider__dots-wrap li:hover {
  background: rgb(68, 68, 68);
}
.footer-fix-slider__dots-wrap li.slick-active {
  background: rgb(68, 68, 68);
}
.footer-fix-slider__dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.footer-fix-conversion {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background-color: #16b299;
  padding: 7px 10px;
  display: flex;
  gap: 5px;
  z-index: 50;
}
@media screen and (min-width: 1025px) {
  .footer-fix-conversion {
    display: none;
  }
}

.footer-fix-conversion-links {
  display: flex;
  gap: 5px;
  width: 100%;
  height: 100%;
}
.footer-fix-conversion-links > li {
  width: calc((100% - 15px) / 4);
}
.footer-fix-conversion-links > li > a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: block;
  border-radius: 6px;
  text-align: center;
  color: #222;
  font-size: min(3.4vw, 1.5rem);
  letter-spacing: -0.02em;
  padding: 38px 2px 4px;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .footer-fix-conversion-links > li > a {
    font-size: min(3.6vw, 1.4rem);
  }
}
.footer-fix-conversion-links > li > a.mail {
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: 25px auto;
  background-position: left 50% top 13px;
}
.footer-fix-conversion-links > li > a.siryo {
  background-image: url(../img/common/icon_siryo.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 50% top 10px;
}
.footer-fix-conversion-links > li > a.raiten {
  background-image: url(../img/common/icon_shop.svg);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: left 50% top 11px;
}
.footer-fix-conversion-links > li > a.tel {
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 50% top 9px;
}

.side {
  position: fixed;
  top: 25px;
  left: 25px;
  width: 240px;
  background-color: #f35a31;
  border-radius: 20px;
  overflow: auto;
  height: calc(100% - 40px);
  max-height: 730px;
  z-index: 99;
  padding: 30px 15px 20px;
}
@media screen and (min-width: 1025px) {
  .side::-webkit-scrollbar {
    width: 6px;
  }
  .side::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 17px 0;
  }
  .side::-webkit-scrollbar-thumb {
    background: #c53913;
    border-radius: 10px;
    box-shadow: none;
  }
}
@media screen and (max-width: 1024px) {
  .side {
    display: none;
  }
}

.side-logo {
  max-width: 196px;
  margin: 0 auto 25px;
}
@media screen and (min-width: 1025px) {
  .side-logo > a:hover {
    opacity: 0.7;
  }
}

.side-links-list {
  margin-bottom: 26px;
}
.side-links-list > li {
  margin-bottom: 10px;
}
.side-links-list > li:last-child {
  margin-bottom: 0;
}

.side-link01 {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  text-align: left;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
  padding: 9px 4px 9px 56px;
  letter-spacing: 0;
}
.side-link01 > span {
  display: block;
  color: #f35a31;
  font-size: 2.6rem;
  font-weight: 700;
}
.side-link01--search {
  background-image: url(../img/common/side_search.png);
  background-repeat: no-repeat;
  background-position: left 2px bottom 0;
  background-size: 52px auto;
}
.side-link01--soudan {
  background-image: url(../img/common/side_soudan.png);
  background-repeat: no-repeat;
  background-position: left 4px bottom 0;
  background-size: 50px auto;
}
@media screen and (min-width: 1025px) {
  .side-link01:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}

.side-links-list2 {
  margin-bottom: 30px;
}
.side-links-list2 > li {
  margin-bottom: 11px;
}
.side-links-list2 > li:last-child {
  margin-bottom: 0;
}
.side-links-list2 > li > a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
  padding-left: 15px;
  display: block;
}
.side-links-list2 > li > a::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .side-links-list2 > li > a:hover {
    transform: translateX(3px);
  }
}

.side-conversion {
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 6px;
  padding: 13px 15px 5px;
  display: flex;
  flex-wrap: wrap;
}
.side-conversion__mail {
  width: 50%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.side-conversion__mail > a {
  font-size: 1.4rem;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  padding: 33px 5px 0 0;
  line-height: 1.4;
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: 26px auto;
  background-position: left 45% top 4px;
}
@media screen and (min-width: 1025px) {
  .side-conversion__mail > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.side-conversion__siryo {
  width: 50%;
}
.side-conversion__siryo > a {
  font-size: 1.4rem;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  padding: 33px 0 0 5px;
  line-height: 1.4;
  background-image: url(../img/common/icon_siryo.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 53% top 1px;
}
@media screen and (min-width: 1025px) {
  .side-conversion__siryo > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.side-conversion__raiten {
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.side-conversion__raiten > a {
  font-size: 1.4rem;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
  background-image: url(../img/common/icon_shop.svg);
  background-repeat: no-repeat;
  background-size: 31px auto;
  padding: 14px 0 13px 38px;
  display: block;
  background-position: left 0 top 20px;
}
.side-conversion__raiten > a span {
  font-size: 1.3rem;
}
@media screen and (min-width: 1025px) {
  .side-conversion__raiten > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}

.side-link02 {
  margin-bottom: 24px;
}
.side-link02 > a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 1.4rem;
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
  display: block;
}
@media screen and (min-width: 1025px) {
  .side-link02 > a:hover {
    transform: translateX(3px);
  }
}
.side-link02 > a::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 50%;
}
.side-link02 > a::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #f35a31;
  border-right: 1px solid #f35a31;
  transform: rotate(45deg);
}

.side-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  padding-top: 15px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.3;
}
.side-contact__text01 {
  margin-bottom: 7px;
}
.side-contact > a {
  font-family: "Hind", sans-serif !important;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .side-contact > a {
    pointer-events: none;
  }
}

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

.contents-layout-base {
  padding-left: 265px;
}
@media screen and (max-width: 1024px) {
  .contents-layout-base {
    padding-left: 0;
  }
}
.contents-layout-base__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 30px 130px;
}
@media screen and (max-width: 1024px) {
  .contents-layout-base__inner {
    padding: 60px 30px 100px;
  }
}
@media screen and (max-width: 599px) {
  .contents-layout-base__inner {
    padding: 40px 15px 60px;
  }
}

/*--------------------------------------------------------
pagetitle
----------------------------------------------------------*/
.pagetitle {
  height: 320px;
  background-color: #f3f3f3;
  background-image: url(../img/common/pagetitle_bg.png);
  background-repeat: no-repeat;
  background-position: right 45px top 0;
  padding-left: 265px;
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    padding-left: 0;
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: auto;
    padding: 110px 15px 40px;
    background-size: 80% auto;
    background-position: right 0 bottom 0;
  }
}

.pagetitle-inner {
  max-width: 1160px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 30px;
}
@media screen and (max-width: 599px) {
  .pagetitle-inner {
    padding: 0;
  }
}

.pagetitle-title {
  position: absolute;
  bottom: 80px;
  left: 30px;
  line-height: 1.3;
  font-size: 3.9rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .pagetitle-title {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-title {
    position: relative;
    left: auto;
    bottom: auto;
    font-size: 2.9rem;
    padding-left: 18px;
  }
}
.pagetitle-title::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 5px;
  height: calc(100% - 3px);
  background-color: #f35a31;
  border-radius: 10px;
}
.pagetitle-title > span {
  font-size: 1.4rem;
  color: #d0d0d0;
  font-family: "Hind", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 20px;
}
@media screen and (max-width: 599px) {
  .pagetitle-title > span {
    display: none;
  }
}

/*--------------------------------------------------------
breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  padding-top: 70px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb > li {
  position: relative;
  font-size: 1.4rem;
  color: #838383;
  letter-spacing: 0;
}
.breadcrumb > li:not(:last-child) {
  padding-right: 45px;
}
.breadcrumb > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 22px;
  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: #f35a31;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .breadcrumb > li > a:hover {
    text-decoration: none;
  }
}

/*--------------------------------------------------------
_wysiwyg
----------------------------------------------------------*/
.wysiwyg {
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*テーブル*/
  /*youtube*/
  /* ************** レポート用 ****************/
  /* ************** //レポート用 ****************/
  /*以下テンプレート外*/
}
.wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.wysiwyg .box {
  margin-bottom: 30px;
}
.wysiwyg .box:before, .wysiwyg .box:after {
  content: "";
  display: table;
}
.wysiwyg .box:after {
  clear: both;
}
.wysiwyg .ttl01 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding: 0 0 2px 20px;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl01 {
    font-size: 2.7rem;
    margin-bottom: -5px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01 {
    font-size: 2.4rem;
    padding: 0 0 2px 17px;
  }
}
.wysiwyg .ttl01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #f35a31;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01::before {
    width: 4px;
  }
}
.wysiwyg .ttl02 {
  background-color: #faedda;
  border-radius: 5px;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 10px 14px 30px;
  position: relative;
  margin-top: 20px;
  margin-bottom: -10px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl02 {
    margin-top: 10px;
    font-size: 2rem;
  }
}
.wysiwyg .ttl02::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 4px;
  height: calc(100% - 22px);
  background-color: #f35a31;
  display: block;
  border-radius: 10px;
}
.wysiwyg .ttl03 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding: 2px 0 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: -10px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl03 {
    padding: 2px 0 15px 0;
    font-size: 1.9rem;
  }
}
.wysiwyg .ttl03::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 38px;
  height: 3px;
  background-color: #f35a31;
  border-radius: 10px;
}
.wysiwyg .ttl04 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0 0 0 24px;
  line-height: 1.4;
  margin-bottom: -15px;
}
.wysiwyg .ttl04::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 16px;
  width: 16px;
  border: 4px solid #f35a31;
  border-radius: 50px;
}
.wysiwyg .copy01 {
  color: #f35a31;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy01 {
    font-size: 1.8rem;
  }
}
.wysiwyg .copy02 {
  color: #f35a31;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.4;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy02 {
    font-size: 1.8rem;
  }
}
.wysiwyg .text--mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif !important;
  font-weight: 500;
}
.wysiwyg .img-right {
  margin: 6px 0 20px 30px;
  max-width: 44%;
  float: right;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
.wysiwyg .img-right img {
  max-width: 100%;
  height: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .img-left {
  margin: 6px 30px 20px 0;
  max-width: 44%;
  float: left;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
.wysiwyg .img-left img {
  max-width: 100%;
  height: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .btn-wrapper {
  text-align: center;
}
.wysiwyg .btn-wrapper a {
  display: block;
  background-color: #f35a31;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 14px 35px 15px;
  border-radius: 6px;
  position: relative;
  display: inline-block;
  min-width: 300px;
}
@media screen and (min-width: 1025px) {
  .wysiwyg .btn-wrapper a:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .btn-wrapper a {
    max-width: 100%;
    min-width: auto;
    padding: 14px 45px 15px;
  }
}
.wysiwyg .btn-wrapper a::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
}
.wysiwyg .btn-wrapper a::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 21px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #f35a31;
  border-right: 1px solid #f35a31;
  transform: rotate(45deg);
}
.wysiwyg .photo-3 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-3 {
    gap: 15px;
  }
}
.wysiwyg .photo-3::after {
  content: none;
}
.wysiwyg .photo-3 li {
  flex: 1;
  text-align: center;
}
.wysiwyg .photo-3 li img {
  max-width: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-3 li {
    width: 100%;
    flex: auto;
  }
}
.wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-2 {
    gap: 15px;
  }
}
.wysiwyg .photo-2::after {
  content: none;
}
.wysiwyg .photo-2 li {
  flex: 1;
  text-align: center;
}
.wysiwyg .photo-2 li img {
  max-width: 100%;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-2 li {
    width: 100%;
    flex: auto;
  }
}
.wysiwyg .photo-1 {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .photo-1 img {
  border-radius: 6px;
}
.wysiwyg .caption {
  display: block;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .caption {
    margin-top: 5px;
  }
}
.wysiwyg .list-wrapper {
  margin: 0;
  list-style: none;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper {
    padding: 20px;
  }
}
.wysiwyg .list-wrapper li {
  position: relative;
  padding-left: 21px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.wysiwyg .list-wrapper li:last-child {
  margin-bottom: 0;
}
.wysiwyg .list-wrapper li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #f35a31;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper li::before {
    top: 7px;
  }
}
.wysiwyg .list-wrapper02 {
  margin: 0;
  list-style: none;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 6px;
  counter-reset: num;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper02 {
    padding: 20px;
  }
}
.wysiwyg .list-wrapper02 li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  line-height: 1.4;
}
.wysiwyg .list-wrapper02 li:last-child {
  margin-bottom: 0;
}
.wysiwyg .list-wrapper02 li::before {
  content: counter(num);
  counter-increment: num;
  top: -1px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #f35a31;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding-top: 3px;
}
.wysiwyg .table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.wysiwyg .table thead th {
  padding: 15px;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  background-color: #f35a31;
  color: #fff;
  border: 1px solid #cecece;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table thead th {
    padding: 10px;
  }
}
.wysiwyg .table th {
  padding: 15px;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  background-color: #faedda;
  border: 1px solid #cecece;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table th {
    padding: 10px;
  }
}
.wysiwyg .table td {
  padding: 15px;
  line-height: 1.4;
  vertical-align: middle;
  border: 1px solid #cecece;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table td {
    padding: 10px;
  }
}
.wysiwyg .table02 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table02 {
    display: block;
  }
}
.wysiwyg .table02 tr:nth-child(odd) {
  background-color: #f3f3f3;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table02 tr {
    width: 100%;
    display: block;
    border-radius: 6px;
  }
}
.wysiwyg .table02 th {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 240px;
  text-align: left;
  padding: 25px;
  color: #f35a31;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .table02 th {
    width: 200px;
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .table02 th {
    width: 100%;
    display: block;
    padding-bottom: 0;
  }
}
.wysiwyg .table02 td {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 25px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .table02 td {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .table02 td {
    width: 100%;
    display: block;
    padding-top: 10px;
  }
}
.wysiwyg .youtube-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
}
.wysiwyg .youtube-wrapper iframe {
  width: 100%;
  height: 100%;
}
.wysiwyg .facility-report-title {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .facility-report-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-title {
    font-size: 2.1rem;
  }
}
.wysiwyg .facility-report-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 3px;
  background-color: #f35a31;
  border-radius: 10px;
}
.wysiwyg .facility-report-text {
  margin-bottom: 30px;
}
.wysiwyg .facility-report-photobox01 {
  margin-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .facility-report-photobox01 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-photobox01 {
    margin-bottom: 40px;
  }
}
.wysiwyg .facility-report-photobox01__text-box {
  text-align: justify;
}
.wysiwyg .facility-report-photobox01__photo {
  width: auto;
  max-width: 48%;
  margin-left: 30px;
  float: right;
  display: inline-block;
  text-align: center;
}
.wysiwyg .facility-report-photobox01__photo img {
  border-radius: 6px;
  margin-bottom: 15px;
}
.wysiwyg .facility-report-photobox01__photo p {
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-photobox01__photo {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    display: block;
    margin-bottom: 20px;
    float: none;
  }
}
.wysiwyg .facility-report-photobox02 {
  margin-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .facility-report-photobox02 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-photobox02 {
    margin-bottom: 40px;
  }
}
.wysiwyg .facility-report-photobox02__text-box {
  text-align: justify;
}
.wysiwyg .facility-report-photobox02__photo {
  width: auto;
  max-width: 48%;
  margin-right: 30px;
  float: left;
  display: inline-block;
  text-align: center;
}
.wysiwyg .facility-report-photobox02__photo img {
  border-radius: 6px;
  margin-bottom: 15px;
}
.wysiwyg .facility-report-photobox02__photo p {
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-photobox02__photo {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    display: block;
    margin-bottom: 20px;
    float: none;
  }
}
.wysiwyg .facility-report-photo01 {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .facility-report-photo01 {
    margin-bottom: 50px;
  }
}
.wysiwyg .facility-report-photo01 img {
  border-radius: 6px;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-photo01 {
    margin-bottom: 40px;
  }
  .wysiwyg .facility-report-photo01 p {
    text-align: justify;
  }
}
.wysiwyg .facility-report-photo02 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  margin-bottom: 60px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .facility-report-photo02 {
    margin-bottom: 50px;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-photo02 {
    margin-bottom: 40px;
    gap: 30px;
  }
}
.wysiwyg .facility-report-photo02 > li {
  width: calc((100% - 40px) / 2);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .facility-report-photo02 > li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-photo02 > li {
    width: 100%;
  }
}
.wysiwyg .facility-report-photo02 > li > img {
  border-radius: 6px;
  margin-bottom: 15px;
}
.wysiwyg .facility-report-photo02 > li > p {
  text-align: justify;
}
.wysiwyg .facility-report-photo03 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin-bottom: 60px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .facility-report-photo03 {
    margin-bottom: 50px;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-photo03 {
    gap: 30px;
  }
}
.wysiwyg .facility-report-photo03 > li {
  width: calc((100% - 60px) / 3);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .facility-report-photo03 > li {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .facility-report-photo03 > li {
    width: 100%;
  }
}
.wysiwyg .facility-report-photo03 > li > img {
  border-radius: 6px;
  margin-bottom: 15px;
}
.wysiwyg .facility-report-photo03 > li > p {
  text-align: justify;
}
.wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
.wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg ul {
  padding-left: 40px;
  list-style-type: disc;
}
.wysiwyg ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.wysiwyg blockquote {
  padding-left: 1em;
}
.wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
.wysiwyg hr {
  display: block;
}
.wysiwyg em {
  font-style: italic !important;
}
.wysiwyg strong {
  font-weight: bold !important;
}
.wysiwyg em strong, .wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

/*--------------------------------------------------------
_pagination
----------------------------------------------------------*/
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
}
@media screen and (max-width: 599px) {
  .pagination__list {
    gap: 0 6px;
  }
}
.pagination__list__number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46px;
  height: 46px;
  padding-top: 4px;
  border-radius: 50%;
  color: #222;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .pagination__list__number {
    width: 44px;
    height: 44px;
  }
}
.pagination__list__number:hover, .pagination__list__number.active {
  background-color: #01c6ad;
  color: #fff !important;
  transition: 0.3s;
}
.pagination__list__number::before, .pagination__list__number::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  margin: auto;
}
.pagination__list__prev, .pagination__list__next {
  display: block;
  width: 46px;
  height: 46px;
}
@media screen and (max-width: 599px) {
  .pagination__list__prev, .pagination__list__next {
    width: 44px;
    height: 44px;
  }
}
.pagination__list__prev {
  margin-right: 10px;
  transform: scale(-1);
}
@media screen and (max-width: 599px) {
  .pagination__list__prev {
    margin-right: 8px;
  }
}
.pagination__list__prev:hover {
  transform: scale(-1) translateX(4px);
}
.pagination__list__next {
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .pagination__list__next {
    margin-left: 8px;
  }
}
.pagination__list__next:hover {
  transform: translateX(4px);
}
.pagination__list__dot {
  display: inline-block;
  width: 32px;
  color: #f35a31;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  text-align: center;
}

/*--------------------------------------------------------
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: #f35a31;
  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: #f35a31;
  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: #f35a31;
    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: #f35a31;
  color: #fff;
}
.pagenav .num > ul > li.borderNon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------
title
----------------------------------------------------------*/
.base-title01 {
  margin-bottom: 40px;
  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: #f35a31;
  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;
  }
}
.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: 25px;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding: 2px 0 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 599px) {
  .base-title02 {
    padding: 2px 0 15px 16px;
    margin-bottom: 23px;
  }
}
.base-title02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: calc(100% - 14px);
  background-color: #f35a31;
  border-radius: 10px;
}

.base-title03 {
  margin-bottom: 25px;
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding: 2px 0 0 20px;
}
@media screen and (max-width: 1024px) {
  .base-title03 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title03 {
    font-size: 2.4rem;
    padding: 2px 0 2px 20px;
  }
}
.base-title03::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #f35a31;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .base-title03::before {
    top: 1px;
  }
}
.base-title03--fs02 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .base-title03--fs02 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title03--fs02 {
    font-size: 1.9rem;
  }
}
.base-title03--underline {
  margin-bottom: 40px;
}
.base-title03--underline::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ead9c0;
}
.base-title03--blue::before {
  background-color: #12a6d6;
}

.base-title04 {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 17px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .base-title04 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}
.base-title04::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 3px;
  background-color: #f35a31;
  border-radius: 10px;
}

.base-title05 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.9rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .base-title05 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title05 {
    font-size: 2.4rem;
  }
}
.base-title05::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #f35a31;
  border-radius: 10px;
}
.base-title05--underline-short::before {
  width: 40px;
  height: 5px;
}

.base-title-obi {
  background-color: #faedda;
  border-radius: 5px;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 10px 14px 30px;
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .base-title-obi {
    font-size: 2rem;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 599px) {
  .base-title-obi {
    font-size: 1.9rem;
    margin-bottom: 23px;
  }
}
.base-title-obi::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 4px;
  height: calc(100% - 22px);
  background-color: #f35a31;
  display: block;
  border-radius: 10px;
}

/*--------------------------------------------------------
text
----------------------------------------------------------*/
.text-base {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.9;
}

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

.text-link {
  color: #f35a31;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .text-link:hover {
    text-decoration: none;
  }
}

.text-color-red {
  color: #e82a2a;
}

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

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

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

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

/*--------------------------------------------------------
button
----------------------------------------------------------*/
.btn-base {
  display: block;
  background-color: #f35a31;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 14px 40px 15px;
  border-radius: 6px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .btn-base:hover {
    transform: translateY(2px);
  }
}
.btn-base::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
}
.btn-base::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 21px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #f35a31;
  border-right: 1px solid #f35a31;
  transform: rotate(45deg);
}
.btn-base--back::before {
  right: auto;
  left: 15px;
}
.btn-base--back::after {
  right: auto;
  left: 22px;
  transform: rotate(-135deg);
}
.btn-base--green {
  background-color: #16b299;
}
.btn-base--green::after {
  border-top: 1px solid #16b299;
  border-right: 1px solid #16b299;
}

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

_form

===================================================== */
/*　全体共通　*/
input,
button,
textarea,
input[type=text],
input[type=search],
input[type=tel],
input[type=email],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}
input:focus,
button:focus,
textarea:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=email]:focus,
select:focus {
  outline: none !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
input::-webkit-input-placeholder,
button::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #a1a1a1;
}
input::-moz-placeholder,
button::-moz-placeholder,
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
select::-moz-placeholder {
  color: #a1a1a1;
  opacity: 1;
}
input:-ms-input-placeholder,
button:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #a1a1a1 !important;
}

textarea {
  resize: vertical;
}

input[type=radio],
input[type=checkbox] {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

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

/*--リセット ここまで--*/
/* ************************************************************
共通フォームスタイル▼▼▼▼▼▼
・お問い合わせ
・来店予約
・資料請求
**************************************************************/
/*共通処理*/
#contact input,
#contact textarea,
#contact select,
#request input,
#request textarea,
#request select,
#visit input,
#visit textarea,
#visit select {
  width: 100%;
  background-color: #f0f0f0;
  padding: 12px;
  resize: vertical;
  box-sizing: border-box;
  border-radius: 6px;
  /* Edge */
}
#contact input::placeholder,
#contact textarea::placeholder,
#contact select::placeholder,
#request input::placeholder,
#request textarea::placeholder,
#request select::placeholder,
#visit input::placeholder,
#visit textarea::placeholder,
#visit select::placeholder {
  color: #a1a1a1;
  font-weight: 400;
}
#contact input::-ms-input-placeholder,
#contact textarea::-ms-input-placeholder,
#contact select::-ms-input-placeholder,
#request input::-ms-input-placeholder,
#request textarea::-ms-input-placeholder,
#request select::-ms-input-placeholder,
#visit input::-ms-input-placeholder,
#visit textarea::-ms-input-placeholder,
#visit select::-ms-input-placeholder {
  color: #a1a1a1;
}
#contact input:focus,
#contact textarea:focus,
#contact select:focus,
#request input:focus,
#request textarea:focus,
#request select:focus,
#visit input:focus,
#visit textarea:focus,
#visit select:focus {
  outline: none !important;
  box-shadow: none;
}
#contact select,
#request select,
#visit select {
  background-image: url(../img/common/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 14px auto;
  padding-right: 28px;
}
#contact select::-ms-expand,
#request select::-ms-expand,
#visit select::-ms-expand {
  display: none;
}

.form-tbl-wd220 {
  display: flex;
  align-items: center;
}
.form-tbl-wd220 input {
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-tbl-wd220 input {
    width: 100%;
  }
}
.form-tbl-wd220 span {
  margin-left: 10px;
  display: inline-block;
}

.form-flow {
  margin-bottom: 50px;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 599px) {
  .form-flow {
    margin-bottom: 30px;
  }
}
.form-flow > li {
  width: calc((100% - 50px) / 3);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 10px 20px 10px 10px;
  color: #7c7c7c;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .form-flow > li {
    font-size: 1.6rem;
    padding: 10px;
  }
}
@media screen and (max-width: 599px) {
  .form-flow > li {
    font-size: 1.4rem;
  }
}
.form-flow > li::before {
  content: "";
  margin-top: -7px;
  position: absolute;
  top: 50%;
  right: -30px;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 10px;
  border-left-color: #f35a31;
}
.form-flow > li.active {
  background-color: #f35a31;
  border: 1px solid #f35a31;
  color: #fff;
}
.form-flow > li:last-child::before {
  content: none;
}

.form-head {
  background-color: #faedda;
  border-radius: 6px;
  margin-bottom: 50px;
  padding: 25px;
}
@media screen and (max-width: 599px) {
  .form-head {
    padding: 20px;
    margin-bottom: 35px;
  }
}
.form-head > dt {
  margin-bottom: 15px;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  padding: 1px 0 1px 16px;
}
@media screen and (max-width: 599px) {
  .form-head > dt {
    font-size: 1.7rem;
  }
}
.form-head > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #f35a31;
  border-radius: 10px;
}
.form-head > dd {
  background-color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.7rem;
  padding: 22px 22px 22px 22px;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .form-head > dd {
    padding: 15px;
    font-size: 1.6rem;
  }
}
.form-head__text {
  position: relative;
  padding-left: 20px;
  display: block;
  margin-bottom: 10px;
}
.form-head__text:last-of-type {
  margin-bottom: 0;
}
.form-head__text::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #f35a31;
}
.form-head__text .dlt {
  background-color: #fff;
  background-color: #ddd;
  font-size: 1.3rem;
  padding: 3px 10px;
  border-radius: 3px;
  margin-left: 10px;
  cursor: pointer;
  color: #555;
  display: inline-block;
}
.form-head__text .dlt:hover {
  opacity: 0.8;
}

.form-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .form-tbl {
    margin-bottom: 0;
    border-top: none;
  }
}
.form-tbl th {
  width: 300px;
  text-align: left;
  box-sizing: border-box;
  position: relative;
  font-weight: 500;
  font-size: 1.7rem;
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: top;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .form-tbl th {
    width: 100%;
    display: block;
    line-height: 1.3;
    padding: 4px 0 13px 16px;
    border-radius: 3px;
    position: relative;
    font-size: 1.8rem;
  }
  .form-tbl th::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: calc(100% - 8px);
    background-color: #f35a31;
    border-radius: 10px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl th {
    font-size: 1.7rem;
  }
}
.form-tbl td {
  padding: 30px 0 30px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .form-tbl td {
    display: block;
    border-bottom: none;
    padding: 20px 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl td {
    padding: 20px 0 35px;
  }
}
.form-tbl--conf th {
  font-size: 1.6rem;
  line-height: 1.4;
}
.form-tbl--conf td {
  word-break: break-all;
  line-height: 1.4;
  font-weight: 400;
}

/*共通必須項目*/
.form-must {
  margin-left: 12px;
  padding: 2px 12px 3px;
  font-size: 1.3rem;
  line-height: 1.4;
  border-radius: 3px;
  background-color: #ec3d3d;
  color: #fff;
  display: inline-block;
  vertical-align: text-bottom;
}
.form-must--mgnone {
  margin: 0;
}

/*共通ラジオボタン リスト*/
.form-radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-radio-list > li {
  width: 100%;
  line-height: 1.3;
  margin-bottom: 7px;
}
.form-radio-list > li:last-child {
  margin-bottom: 0;
}
.form-radio-list > li input[type=radio] {
  display: none;
}
.form-radio-list > li label {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  padding-right: 40px;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label {
    line-height: 1.5;
    padding-top: 2px;
  }
}
.form-radio-list > li label:before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 26px;
  height: 26px;
  background: #e4e4e4;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label:before {
    top: 0;
  }
}
.form-radio-list > li input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: 12px;
  left: 6px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 50%;
  background: #f35a31;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li input[type=radio]:checked + label:after {
    top: 14px;
  }
}

/*住所*/
.form-address-list > li {
  margin-bottom: 14px;
}
.form-address-list > li:last-child {
  margin-bottom: 0;
}
.form-address-list__select {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__select {
    flex-wrap: wrap;
  }
}
.form-address-list__select span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__select span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__select select {
  width: calc(100% - 170px) !important;
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-address-list__select select {
    width: 100% !important;
    max-width: 100%;
  }
}
.form-address-list__text {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__text {
    flex-wrap: wrap;
  }
}
.form-address-list__text span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__text span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__text input {
  width: calc(100% - 170px) !important;
}
@media screen and (max-width: 599px) {
  .form-address-list__text input {
    width: 100% !important;
    max-width: 100%;
  }
}

/*らくらす年鑑購入*/
.form-buy-explain {
  margin-bottom: 25px;
  background-color: #faedda;
  border-radius: 6px;
  padding: 25px 30px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .form-buy-explain {
    padding: 20px;
  }
}
.form-buy-explain__price {
  margin-bottom: 10px;
}
.form-buy-explain__price span {
  color: #f35a31;
}
.form-buy-explain__notice span {
  color: #f35a31;
}

.form-buy-year {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-buy-year {
    flex-wrap: wrap;
  }
}
.form-buy-year__text {
  margin-right: 25px;
}
@media screen and (max-width: 599px) {
  .form-buy-year__text {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.form-buy-year > select {
  max-width: 220px !important;
}

/*お名前/フリガナ*/
.form-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
.form-name-list > li {
  display: flex;
  align-items: center;
}
.form-name-list > li input {
  max-width: 220px !important;
}
.form-name-list > li span {
  margin-right: 5px;
  display: block;
  width: 50px;
  text-align: center;
}

.form-address-post {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-address-post input {
  max-width: 220px !important;
}
@media screen and (max-width: 599px) {
  .form-address-post input {
    max-width: 200px !important;
  }
}
.form-address-post button {
  width: 160px;
  background-color: #555555;
  border-radius: 6px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  padding: 15px 10px;
}
@media screen and (min-width: 1025px) {
  .form-address-post button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .form-address-post button {
    width: 110px;
    padding: 15px 5px;
    font-size: 1.5rem;
  }
}

.form-notice-text {
  font-size: 1.4rem;
  color: #e82a2a;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

.form-privacy-text {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .form-privacy-text {
    margin-bottom: 25px;
  }
}
.form-privacy-text a {
  color: #f35a31;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .form-privacy-text a:hover {
    text-decoration: none;
  }
}

/*希望日時*/
.form-time-kibou {
  margin-bottom: 30px;
}
.form-time-kibou:last-of-type {
  margin-bottom: 0;
}
.form-time-kibou > dt {
  margin-bottom: 14px;
  line-height: 1.3;
  padding: 3px 0 3px 17px;
  position: relative;
}
.form-time-kibou > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #f35a31;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .form-time-kibou > dt {
    background-color: #faedda;
    border-radius: 5px;
    padding: 10px 10px 11px 22px;
  }
  .form-time-kibou > dt::before {
    width: 15px;
    height: 4px;
    top: 19px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.form-time-kibou__date {
  margin-bottom: 10px;
  display: flex;
}
.form-time-kibou__date input {
  max-width: 220px !important;
}
.form-time-kibou__date .ui-datepicker-trigger {
  width: 50px;
  margin-left: 5px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .form-time-kibou__date .ui-datepicker-trigger:hover {
    opacity: 0.8;
  }
}
.form-time-kibou__time {
  display: flex;
  align-items: center;
}
.form-time-kibou__time > span {
  width: 70px;
}
.form-time-kibou__time select {
  max-width: 220px !important;
}

.form-btn {
  margin: 0 auto;
  display: block;
  position: relative;
}
.form-btn input[type=submit] {
  max-width: 270px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #16b299 !important;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 10px;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: 0.2s;
  background-image: url(../img/common/icon_form_arrow.png);
  background-size: 17px auto;
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
}
@media screen and (min-width: 1025px) {
  .form-btn input[type=submit]:hover {
    transform: translateY(2px);
  }
}
.form-btn__corrected {
  width: 210px;
  margin: 20px auto 0;
  padding: 14px 17px;
  background-color: #818181;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 6px;
  transition: 0.2s;
  line-height: 1.3;
  background-image: url(../img/common/icon_form_arrow2.png);
  background-size: 17px auto;
  background-repeat: no-repeat;
  background-position: left 15px top 50%;
}
@media screen and (min-width: 1025px) {
  .form-btn__corrected:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .form-btn__corrected {
    position: relative;
    margin: 15px auto 0;
    padding: 15px;
  }
}
.form-error {
  margin-bottom: 50px;
  padding: 26px;
  color: #e82a2a;
  font-weight: 500;
  border-radius: 6px;
  background-color: #fcd5d5;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .form-error {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .form-error {
    margin-bottom: 20px;
    padding: 15px;
  }
}

.form-error-text {
  margin-bottom: 10px;
  color: #e82a2a;
  line-height: 1.3;
}

.form-send {
  margin-bottom: 35px;
  background-color: #faedda;
  border-radius: 6px;
  text-align: center;
  padding: 70px 20px;
}
@media screen and (max-width: 1024px) {
  .form-send {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 599px) {
  .form-send {
    padding: 40px 20px;
    margin-bottom: 25px;
  }
}
.form-send > dt {
  font-size: 2.7rem;
  color: #f35a31;
  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;
}

/* ************************************************************
//ここまで　共通フォームスタイル▲▲▲▲▲▲
//・お問い合わせ
//・来店予約
//・資料請求
**************************************************************/
.list01 > li {
  padding: 0 0 5px 21px;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .list01 > li {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .list01 > li {
    padding: 0 0 5px 19px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.list01 > li:last-child {
  padding-bottom: 0;
}
.list01 > li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #01c6ad;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .list01 > li::before {
    top: 5px;
    width: 10px;
    height: 10px;
  }
}
.list01.line {
  display: flex;
  flex-wrap: wrap;
}
.list01.line > li {
  margin-right: 15px;
}
.list01.line > li:last-child {
  margin-right: 0;
}

.list02 > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.5;
}
.list02 > li:last-child {
  margin-bottom: 0;
}
.list02 > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------------------------------------------
modal
----------------------------------------------------------*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 103;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .modal-container {
    padding: 40px 10px;
  }
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 700px;
  width: 96%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  padding: 1px 0 0 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  background-color: #000;
  border-radius: 200px;
  z-index: 1;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
  border-radius: 5px;
  cursor: auto;
  max-height: 80vh;
  overflow: auto;
}
@media screen and (min-width: 1025px) {
  .modal-content::-webkit-scrollbar {
    width: 6px;
  }
  .modal-content::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }
  .modal-content::-webkit-scrollbar-thumb {
    background: #7e7e7e;
    border-radius: 10px;
    box-shadow: none;
  }
}
@media screen and (max-width: 599px) {
  .modal-content {
    padding: 25px;
  }
}

/*--------------------------------------------------------
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;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
/* **************** topメイン ******************/
.top-main {
  padding-left: 265px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-main {
    padding-left: 0;
    background-color: #faedda;
    z-index: 1;
  }
}
.top-main::before {
  content: "";
  width: 100%;
  height: 242px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #faedda;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .top-main::before {
    height: 27%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main::before {
    height: 38%;
    top: 0;
    bottom: auto;
    background-color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .top-main::before {
    height: 37.4%;
  }
}
.top-main__inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .top-main__inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .top-main__inner {
    padding: 0;
  }
}

.top-main-illust {
  width: calc(100% - 530px);
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
  /*右からカクカクの動き*/
}
@media screen and (max-width: 1500px) {
  .top-main-illust {
    width: calc(100% - (40% + 20px));
    padding-top: 110px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .top-main-illust {
    width: calc(100% - (36% + 20px));
  }
}
@media screen and (max-width: 1024px) {
  .top-main-illust {
    width: 100%;
    padding-bottom: 9%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-illust {
    padding-top: 75px;
    margin-bottom: 85px;
  }
}
.top-main-illust::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 75px;
  width: 70px;
  height: 90px;
  background-image: url(../img/top/main_illust2.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .top-main-illust::before {
    width: 50px;
    height: 70px;
    right: -10px;
    top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-illust::before {
    content: none;
  }
}
.top-main-illust::after {
  content: "";
  position: absolute;
  left: -110px;
  top: 93px;
  width: 109px;
  height: 161px;
  background-image: url(../img/top/main_illust3.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .top-main-illust::after {
    width: 80px;
    left: -60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-illust::after {
    content: none;
  }
}
.top-main-illust__img {
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-main-illust__img {
    overflow: hidden;
    height: 110%;
  }
  .top-main-illust__img img {
    margin-left: -22%;
    width: 120%;
    max-width: 120%;
  }
}
@keyframes decoSwing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(6deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}
.top-main-illust__img-soccer {
  position: absolute;
  top: 52%;
  right: 5%;
  width: 20%;
  max-width: 144px;
  height: 100px;
  animation: decoSwing 5s steps(1) infinite;
}
.top-main-illust__img-bike {
  position: absolute;
  bottom: -3%;
  right: 9%;
  width: 20%;
  max-width: 132px;
  animation: decoSwing 4s steps(1) infinite;
}
@media screen and (max-width: 599px) {
  .top-main-illust__img-bike {
    bottom: 2.5%;
  }
}
.top-main-illust__img-wheelchair {
  position: absolute;
  bottom: 2%;
  right: 44%;
  width: 11%;
  max-width: 78px;
  animation: decoSwing 5s steps(1) infinite;
}
@media screen and (max-width: 599px) {
  .top-main-illust__img-wheelchair {
    right: 44%;
    bottom: 13%;
  }
}
.top-main-illust__img-couple {
  position: absolute;
  bottom: 35%;
  right: 54%;
  width: 9%;
  max-width: 62px;
  animation: decoSwing 4s steps(1) infinite;
}
@media screen and (max-width: 599px) {
  .top-main-illust__img-couple {
    right: 73%;
    bottom: 38%;
  }
}
.top-main-illust__img-line1 {
  width: 40%;
  max-width: 290px;
  height: 145px;
  position: absolute;
  top: 55%;
  right: 10%;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .top-main-illust__img-line1 {
    right: 13%;
    top: 53%;
  }
}
.top-main-illust__img-line1 svg {
  width: 100%;
}
.top-main-illust__img-line1 .svg01 {
  position: absolute;
  top: 0;
  right: 0;
}
.top-main-illust__img-line1 .svg01 path {
  fill: none;
  stroke: #f35a31;
  stroke-width: 0.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500px;
  stroke-dashoffset: 0;
  stroke-width: 4px;
  animation: line_animation 5s ease-out infinite;
  opacity: 0;
}
@keyframes line_animation {
  0% {
    stroke-dashoffset: 500px;
    opacity: 1;
  }
  85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.top-main-illust__img-line1__mark {
  width: 57px;
  height: 57px;
  position: absolute;
  top: -22px;
  right: 40%;
  opacity: 0;
  animation: visible 5s ease-out infinite;
}
@media screen and (max-width: 599px) {
  .top-main-illust__img-line1__mark {
    width: 40px;
    height: 40px;
  }
}
@keyframes visible {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  93% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.top-main-illust__img-line2 {
  width: 20%;
  max-width: 146px;
  height: 140px;
  position: absolute;
  top: 23%;
  right: 38%;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .top-main-illust__img-line2 {
    right: 56%;
    top: 26%;
  }
}
.top-main-illust__img-line2 svg {
  width: 100%;
}
.top-main-illust__img-line2 .svg02 {
  position: absolute;
  top: 0;
  right: 0;
}
.top-main-illust__img-line2 .svg02 path {
  fill: none;
  stroke: #f35a31;
  stroke-width: 0.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500px;
  stroke-dashoffset: 0;
  stroke-width: 4px;
  animation: line_animation 5s ease-out infinite;
  animation-delay: 1s;
  opacity: 0;
}
@keyframes line_animation {
  0% {
    stroke-dashoffset: 500px;
    opacity: 1;
  }
  85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.top-main-illust__img-line2__mark {
  width: 57px;
  height: 57px;
  position: absolute;
  top: -22px;
  right: 40%;
  opacity: 0;
  animation: visible 5s ease-out infinite;
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .top-main-illust__img-line2__mark {
    width: 40px;
    height: 40px;
    right: 28%;
  }
}
@keyframes visible {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  93% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.top-main-illust__title {
  position: absolute;
  bottom: 18%;
  left: 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: min(3.2vw, 5.1rem);
  color: #f35a31;
  line-height: 1.38;
}
@media screen and (max-width: 1500px) {
  .top-main-illust__title {
    bottom: 15%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-illust__title {
    font-size: min(6.2vw, 5rem);
    bottom: 10%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-illust__title {
    left: 15px;
    bottom: -10%;
    font-size: min(9.2vw, 4.3rem);
  }
}
.top-main-illust__title span {
  display: inline-block;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  background-color: #5b84c2;
  border-radius: 100px;
  line-height: 1;
  padding: 9px 20px 10px;
  margin-bottom: 8px;
  font-size: min(1vw, 1.6rem);
}
@media screen and (max-width: 1024px) {
  .top-main-illust__title span {
    font-size: min(2vw, 1.6rem);
  }
}
@media screen and (max-width: 599px) {
  .top-main-illust__title span {
    font-size: min(3.5vw, 1.7rem);
    line-height: 1.3;
    padding: 9px 15px 10px;
  }
}

.top-main-search {
  width: 500px;
  padding-top: 120px;
  margin-left: 30px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1500px) {
  .top-main-search {
    width: 40%;
    margin-left: 20px;
    margin-bottom: 70px;
    padding-top: 110px;
  }
}
@media screen and (max-width: 1200px) {
  .top-main-search {
    width: 36%;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-search {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main-search {
    margin-bottom: 50px;
    padding: 0 15px;
  }
}

.top-main-search-box {
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .top-main-search-box {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 1200px) {
  .top-main-search-box {
    padding: 30px 5px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-search-box {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-search-box {
    padding: 30px 5px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}
.top-main-search-box__title {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 1500px) {
  .top-main-search-box__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .top-main-search-box__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-search-box__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-search-box__title {
    font-size: 2.2rem;
  }
}
.top-main-search-box__title span {
  padding: 2px 38px;
  background-image: url(../img/common/icon_search.svg);
  background-repeat: no-repeat;
  background-size: 29px auto;
  background-position: left 0 top 6px;
}
@media screen and (max-width: 1500px) {
  .top-main-search-box__title span {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .top-main-search-box__title span {
    background-size: 22px auto;
    padding: 2px 28px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-search-box__title span {
    background-size: 29px auto;
    padding: 2px 38px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-search-box__title span {
    background-size: 26px auto;
    padding: 2px 32px;
    padding-right: 10px;
  }
}
.top-main-search-box__list {
  display: flex;
  flex-wrap: wrap;
}
.top-main-search-box__list > li {
  width: 50%;
  position: relative;
}
.top-main-search-box__list > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: calc(100% - 20px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.top-main-search-box__list > li > a {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  padding: 123px 5px 14px;
  display: block;
  background-repeat: no-repeat;
  background-size: 95px auto;
  background-position: left 50% top 17px;
  line-height: 1.3;
}
@media screen and (min-width: 1025px) {
  .top-main-search-box__list > li > a:hover {
    color: #16b299;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1500px) {
  .top-main-search-box__list > li > a {
    font-size: min(1.3vw, 1.8rem);
  }
}
@media screen and (max-width: 1200px) {
  .top-main-search-box__list > li > a {
    background-size: 70px;
    padding: 95px 5px 14px;
    font-size: min(1.2vw, 1.6rem);
  }
}
@media screen and (max-width: 1024px) {
  .top-main-search-box__list > li > a {
    background-size: 95px auto;
    padding: 123px 5px 14px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-search-box__list > li > a {
    background-size: 80px auto;
    padding: 108px 5px 14px;
    font-size: min(4.4vw, 1.7rem);
  }
}
.top-main-search-box__list > li > a > span {
  padding: 1px 5px 1px 28px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .top-main-search-box__list > li > a > span {
    padding: 1px 5px 1px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-search-box__list > li > a > span {
    padding: 1px 5px 1px 28px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-search-box__list > li > a > span {
    padding: 1px 5px 1px 20px;
  }
}
.top-main-search-box__list > li > a > span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 23px;
  height: 23px;
  background-color: #16b299;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .top-main-search-box__list > li > a > span::before {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-search-box__list > li > a > span::before {
    width: 23px;
    height: 23px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-search-box__list > li > a > span::before {
    top: 7px;
    width: 16px;
    height: 16px;
  }
}
.top-main-search-box__list > li > a > span::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1200px) {
  .top-main-search-box__list > li > a > span::after {
    top: 9px;
    left: 4px;
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-search-box__list > li > a > span::after {
    top: 12px;
    left: 7px;
    width: 7px;
    height: 7px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-search-box__list > li > a > span::after {
    top: 12px;
    left: 4px;
    width: 6px;
    height: 6px;
  }
}
.top-main-search-box__list > li > a.area {
  background-image: url(../img/top/main_icon_bus.png);
}
.top-main-search-box__list > li > a.hiyou {
  background-image: url(../img/top/main_icon_hiyou.png);
}
.top-main-search-box__list > li > a.zyoken {
  background-image: url(../img/top/main_icon_zyoken.png);
}
.top-main-search-box__list > li > a.type {
  background-image: url(../img/top/main_icon_type.png);
}
.top-main-search-box__list > li:nth-child(1)::before, .top-main-search-box__list > li:nth-child(2)::before {
  content: none;
}
.top-main-search-box__list > li:nth-child(1) > a, .top-main-search-box__list > li:nth-child(2) > a {
  padding: 111px 5px 14px;
  background-position: left 50% top 8px;
}
@media screen and (max-width: 1200px) {
  .top-main-search-box__list > li:nth-child(1) > a, .top-main-search-box__list > li:nth-child(2) > a {
    padding: 85px 5px 14px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-search-box__list > li:nth-child(1) > a, .top-main-search-box__list > li:nth-child(2) > a {
    padding: 111px 5px 14px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-search-box__list > li:nth-child(1) > a, .top-main-search-box__list > li:nth-child(2) > a {
    padding: 98px 5px 14px;
  }
}
.top-main-search-box__list > li:nth-child(2n+1)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.top-main-search-box__btn {
  margin: 15px auto 0;
  width: 100%;
  max-width: 210px;
  display: block;
  background-color: #16b299;
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
  line-height: 1.5;
  padding: 11px 10px 13px;
  font-size: 1.7rem;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top-main-search-box__btn:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .top-main-search-box__btn {
    font-size: 1.6rem;
  }
}
.top-main-search-box__btn::before {
  content: "";
  margin-top: -9px;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 17px;
  height: 17px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
}
.top-main-search-box__btn::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 21px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #16b299;
  border-right: 1px solid #16b299;
  transform: rotate(45deg);
}

/* **************** topスライダー ******************/
.top-slider {
  background-color: #faedda;
  padding-left: 265px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .top-slider {
    padding-left: 0;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-slider {
    padding-bottom: 50px;
  }
}
.top-slider__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 599px) {
  .top-slider__inner {
    padding: 0 5px;
  }
}

.top-slider-wrap {
  transition: 0.2s;
}
.top-slider-wrap .slick-track {
  display: flex;
  padding-bottom: 3px;
}
.top-slider-wrap .slick-slide {
  height: auto !important;
}
.top-slider-wrap .prev-arrow {
  width: 40px;
  position: absolute;
  left: -50px;
  top: 50%;
  margin-top: -20px;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .top-slider-wrap .prev-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .top-slider-wrap .prev-arrow {
    left: -40px;
  }
}
@media screen and (max-width: 599px) {
  .top-slider-wrap .prev-arrow {
    width: 30px;
    left: 0;
    top: 185px;
    margin-top: 0;
  }
}
.top-slider-wrap .next-arrow {
  width: 40px;
  position: absolute;
  right: -50px;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .top-slider-wrap .next-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .top-slider-wrap .next-arrow {
    right: -40px;
  }
}
@media screen and (max-width: 599px) {
  .top-slider-wrap .next-arrow {
    width: 30px;
    right: 0;
    top: 185px;
    margin-top: 0;
  }
}

.top-slider-item {
  width: calc((100% - 60px) / 4);
  margin: 0 10px;
}
.top-slider-item__link {
  width: 100%;
  height: 100%;
  display: block;
  color: #222;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .top-slider-item__link:hover {
    color: #f35a31;
    transform: translateY(3px);
  }
}
.top-slider-item__photo {
  width: 100%;
  height: 150px;
}
.top-slider-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 599px) {
  .top-slider-item__photo {
    height: 200px;
  }
}
.top-slider-item__box {
  padding: 18px 18px 25px;
}
.top-slider-item__category {
  font-size: 1.3rem;
  color: #fff;
  background-color: #f35a31;
  display: inline-block;
  line-height: 1.3;
  border-radius: 3px;
  font-weight: 500;
  padding: 4px 12px 3px;
  margin-bottom: 10px;
}
.top-slider-item__title {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
}
.top-slider-item__address {
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: #888888;
  line-height: 1.3;
}
.top-slider-item__point {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.top-slider-item__point > li {
  display: inline-block;
  font-size: 1.2rem;
  color: #f35a31;
  font-weight: 500;
  letter-spacing: 0;
  background-color: #faedda;
  line-height: 1.3;
  padding: 4px 10px 5px;
  border-radius: 100px;
}

/*中間コンテンツ囲み*/
.top-middle-contents {
  padding-left: 265px;
}
@media screen and (max-width: 1024px) {
  .top-middle-contents {
    padding-left: 0;
  }
}
.top-middle-contents__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px 30px 110px;
}
@media screen and (max-width: 1024px) {
  .top-middle-contents__inner {
    padding: 80px 30px 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-middle-contents__inner {
    padding: 50px 15px 70px;
  }
}

/* **************** 老人ホーム・介護施設を探す ******************/
.top-search__title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .top-search__title {
    font-size: 2.2rem;
  }
}
.top-search__title span {
  padding: 3px 15px 3px 44px;
  background-image: url(../img/common/icon_search.svg);
  background-repeat: no-repeat;
  background-size: 34px auto;
  background-position: left 0 top 7px;
}
@media screen and (max-width: 599px) {
  .top-search__title span {
    background-size: 24px auto;
    background-position: left 0 top 8px;
    padding: 3px 15px 3px 31px;
  }
}
.top-search__block {
  margin-bottom: 80px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  padding: 70px 50px 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-search__block {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-search__block {
    padding: 60px 15px 30px;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}
.top-search__block::before {
  content: "";
  position: absolute;
  top: -94px;
  right: 45px;
  width: 200px;
  height: 104px;
  background-image: url(../img/top/search_illust.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1400px) {
  .top-search__block::before {
    width: 150px;
    right: 20px;
    top: -20px;
  }
}

.top-search-keyword {
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .top-search-keyword {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-search-keyword {
    margin-bottom: 15px;
  }
}
.top-search-keyword__title {
  width: 260px;
  line-height: 1.3;
  font-size: 1.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-search-keyword__title {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-search-keyword__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.top-search-keyword__title span {
  background-image: url(../img/common/icon_key.svg);
  background-repeat: no-repeat;
  padding: 4px 0 4px 35px;
  background-size: 26px auto;
  background-position: left 0 top 5px;
}
@media screen and (max-width: 599px) {
  .top-search-keyword__title span {
    background-size: 20px auto;
    padding: 2px 0 4px 25px;
  }
}
.top-search-keyword > input {
  width: calc(100% - 450px);
  padding: 11px 20px 11px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-search-keyword > input {
    width: calc(100% - 190px);
  }
}
@media screen and (max-width: 599px) {
  .top-search-keyword > input {
    width: calc(100% - 100px);
    padding: 14px 10px;
  }
}
.top-search-keyword > button {
  width: 180px;
  background-color: #16b299;
  border-radius: 6px;
  color: #fff;
  margin-left: 10px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  transition: 0.2s;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .top-search-keyword > button {
    width: 90px;
    font-size: 1.6rem;
  }
}
.top-search-keyword > button > span {
  background-image: url(../img/common/icon_search_white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 0 top 2px;
  padding: 0 20px 0 28px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .top-search-keyword > button > span {
    background-size: 16px auto;
    background-position: left 0 top 3px;
    padding: 0 0 0 20px;
  }
}
@media screen and (min-width: 1025px) {
  .top-search-keyword > button:hover {
    opacity: 0.8;
  }
}

.top-search-layout {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-search-layout {
    flex-wrap: wrap;
  }
}
.top-search-layout__detail {
  width: 50%;
  order: 2;
}
@media screen and (max-width: 1400px) {
  .top-search-layout__detail {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .top-search-layout__detail {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-search-layout__detail {
    margin-bottom: 30px;
  }
}
.top-search-layout__map {
  width: 46%;
  margin-right: 4%;
  order: 1;
}
@media screen and (max-width: 1400px) {
  .top-search-layout__map {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .top-search-layout__map {
    width: 100%;
    margin-right: 0;
    order: 2;
  }
}

.top-search-area {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-search-area {
    margin-bottom: 10px;
  }
}
.top-search-area > dt {
  width: 175px;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .top-search-area > dt {
    width: 100%;
    margin-bottom: 7px;
  }
}
.top-search-area > dt span {
  padding: 15px 0 7px 35px;
  display: inline-block;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .top-search-area > dt span {
    padding: 7px 0 7px 25px;
  }
}
.top-search-area > dt.area span {
  background-image: url(../img/common/icon_map.svg);
  background-size: 24px auto;
  background-position: left 0 top 12px;
}
@media screen and (max-width: 599px) {
  .top-search-area > dt.area span {
    background-size: 20px auto;
    background-position: left 0 top 6px;
  }
}
.top-search-area > dt.hiyou span {
  background-image: url(../img/common/icon_dentaku.svg);
  background-size: 21px auto;
  background-position: left 2px top 11px;
}
@media screen and (max-width: 599px) {
  .top-search-area > dt.hiyou span {
    background-size: 17px auto;
    background-position: left 2px top 6px;
  }
}
.top-search-area > dt.zyoken span {
  background-image: url(../img/common/icon_ie.svg);
  background-size: 30px auto;
  background-position: left 0px top 11px;
}
@media screen and (max-width: 599px) {
  .top-search-area > dt.zyoken span {
    background-size: 23px auto;
    background-position: left 0px top 8px;
  }
}
.top-search-area > dd {
  width: calc(100% - 175px);
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .top-search-area > dd {
    width: 100%;
    margin-bottom: 20px;
  }
}

/*エリアで探す*/
.top-search-area-box > select {
  width: 100%;
  background-color: #f0f0f0;
  border-radius: 6px;
  font-weight: 500;
  padding: 11px 30px 12px 12px;
  background-image: url(../img/common/select_arrow_green.png);
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
  background-size: 14px auto;
}
.top-search-area-box > select:focus {
  outline: none !important;
  box-shadow: none;
}

/*費用で探す*/
.top-search-monthly-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.top-search-monthly-box__text {
  font-weight: 500;
  width: 45px;
}
.top-search-monthly-box__space {
  width: 30px;
  text-align: center;
}
.top-search-monthly-box > select {
  width: 100%;
  width: calc((100% - 75px) / 2);
  background-color: #f0f0f0;
  border-radius: 6px;
  font-weight: 500;
  padding: 11px 30px 12px 12px;
  background-image: url(../img/common/select_arrow_green.png);
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
  background-size: 14px auto;
}
@media screen and (max-width: 599px) {
  .top-search-monthly-box > select {
    padding: 11px 22px 12px 8px;
    background-position: right 6px top 50%;
  }
}
.top-search-monthly-box > select:focus {
  outline: none !important;
  box-shadow: none;
}

/*入居条件で探す*/
.top-search-condition-box {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.top-search-condition-box label {
  width: calc((100% - 6px) / 2);
  line-height: 1.3;
  background-color: #f0f0f0;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  padding: 10px 20px 11px;
  position: relative;
  letter-spacing: 0;
  display: block;
}
.top-search-condition-box label::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 11px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 2px;
}
.top-search-condition-box input[type=checkbox]:checked + label {
  color: #fff;
  background-color: #16b299;
}
.top-search-condition-box input[type=checkbox]:checked + label::before {
  background-color: #fff;
}
.top-search-condition-box input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 16px;
  width: 6px;
  height: 12px;
  border-top: 2px solid #16b299;
  border-left: 2px solid #16b299;
  transform: rotate(-135deg);
}

/*クイック検索*/
.top-search-quick-btn {
  width: 100%;
  max-width: 180px;
  background-color: #16b299;
  border-radius: 6px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  transition: 0.2s;
  padding: 13px 13px 15px;
  line-height: 1.3;
  display: block;
  margin: 0 auto 20px;
}
.top-search-quick-btn > span {
  background-image: url(../img/common/icon_search_white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 0 top 4px;
  padding: 0 10px 0 28px;
}
@media screen and (min-width: 1025px) {
  .top-search-quick-btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .top-search-quick-btn {
    max-width: 230px;
  }
}

/*他ボタン*/
.top-search-more-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .top-search-more-btns {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.top-search-more-btns > a {
  display: block;
  font-size: 1.5rem;
  color: #222;
  font-weight: 500;
  max-width: 210px;
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  line-height: 1.3;
  padding: 12px 10px 14px 26px;
  position: relative;
}
.top-search-more-btns > a::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #16b299;
  border-right: 1px solid #16b299;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .top-search-more-btns > a::before {
    left: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .top-search-more-btns > a:hover {
    transform: translateY(2px);
    color: #16b299;
  }
}

/*マップ*/
.top-search-map {
  height: 412px;
  background-image: url(../img/top/map.jpg);
  background-size: cover;
  background-position: left 50% top 50%;
  border-radius: 15px;
  position: relative;
  margin-bottom: 22px;
}
@media screen and (max-width: 599px) {
  .top-search-map {
    height: 300px;
    border-radius: 6px;
  }
}
.top-search-map > a {
  min-width: 140px;
  display: inline-block;
  background-color: #fff;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
  padding: 10px 15px 11px 35px;
  box-shadow: 0 0 10px rgba(46, 118, 191, 0.3);
  background-image: url(../img/common/pin.svg);
  background-repeat: no-repeat;
  background-size: 19px auto;
  background-position: left 10px top 9px;
}
@media screen and (min-width: 1025px) {
  .top-search-map > a:hover {
    color: #16b299;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1400px) {
  .top-search-map > a {
    min-width: auto;
  }
}
.top-search-map > a.kitakyu {
  position: absolute;
  right: 5%;
  top: 23%;
}
@media screen and (max-width: 1024px) {
  .top-search-map > a.kitakyu {
    right: auto;
    left: 66%;
  }
}
@media screen and (max-width: 599px) {
  .top-search-map > a.kitakyu {
    left: auto;
    right: 5%;
    top: 11%;
  }
}
.top-search-map > a.chikuhou {
  position: absolute;
  right: 5%;
  top: 44%;
}
@media screen and (max-width: 1024px) {
  .top-search-map > a.chikuhou {
    right: auto;
    left: 57%;
    top: 40%;
  }
}
@media screen and (max-width: 599px) {
  .top-search-map > a.chikuhou {
    left: auto;
    right: 11%;
    top: 35%;
  }
}
.top-search-map > a.fukuoka {
  position: absolute;
  left: 5%;
  top: 40%;
}
@media screen and (max-width: 1024px) {
  .top-search-map > a.fukuoka {
    left: 22%;
    top: 40%;
  }
}
@media screen and (max-width: 599px) {
  .top-search-map > a.fukuoka {
    left: 5%;
  }
}
.top-search-map > a.chikugo {
  position: absolute;
  left: 13%;
  top: 68%;
}
@media screen and (max-width: 1024px) {
  .top-search-map > a.chikugo {
    left: 39%;
    top: 75%;
  }
}
@media screen and (max-width: 599px) {
  .top-search-map > a.chikugo {
    left: 43%;
    top: 70%;
  }
}

.top-search-map-btn > a {
  margin: 0 auto;
  display: block;
  font-size: 1.5rem;
  color: #222;
  font-weight: 500;
  max-width: 210px;
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  line-height: 1.3;
  padding: 12px 10px 14px 26px;
  position: relative;
}
.top-search-map-btn > a::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #16b299;
  border-right: 1px solid #16b299;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .top-search-map-btn > a::before {
    left: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .top-search-map-btn > a:hover {
    transform: translateY(2px);
    color: #16b299;
  }
}

/*らくらすに相談*/
.top-search-soudan {
  max-width: 500px;
  margin: 30px auto 0;
  background-color: #e3efed;
  border-radius: 6px;
  padding: 15px 15px 15px 95px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  background-image: url(../img/top/search_soudan.png);
  background-size: 60px auto;
  background-position: left 20px bottom 0;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .top-search-soudan {
    background-image: none;
    text-align: center;
    padding: 20px;
    justify-content: center;
  }
}
.top-search-soudan__text {
  font-weight: 500;
  line-height: 1.3;
  width: 100%;
  margin-bottom: 7px;
}
@media screen and (max-width: 599px) {
  .top-search-soudan__text {
    margin-bottom: 12px;
  }
}
.top-search-soudan__tel {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .top-search-soudan__tel {
    width: 100%;
    margin-bottom: 14px;
  }
}
.top-search-soudan__tel > a {
  font-size: 3.2rem;
  color: #109b85;
  font-family: "Hind", sans-serif !important;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-left: 5px;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .top-search-soudan__tel > a {
    text-decoration: underline;
  }
}
.top-search-soudan__mail > a {
  padding: 9px 25px 9px 48px;
  background-color: #fff;
  display: block;
  font-size: 1.5rem;
  color: #222;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 6px;
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: 26px auto;
  background-position: left 13px top 50%;
}
@media screen and (min-width: 1025px) {
  .top-search-soudan__mail > a:hover {
    transform: translateY(2px);
    color: #16b299;
  }
}
@media screen and (max-width: 599px) {
  .top-search-soudan__mail > a {
    padding: 13px 25px 14px 48px;
  }
}

.top-info-contents {
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-info-contents {
    flex-wrap: wrap;
  }
}

/*お知らせ*/
.top-info {
  width: calc(100% - 300px);
  padding-right: 100px;
}
@media screen and (max-width: 1400px) {
  .top-info {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-info {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 599px) {
  .top-info {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.top-info__title {
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  position: relative;
  padding: 3px 3px 3px 20px;
  margin-bottom: 28px;
}
.top-info__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #f35a31;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .top-info__title {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
}
.top-info__btn {
  max-width: 210px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 599px) {
  .top-info__btn {
    margin: 0 auto;
  }
}

.top-info-tab {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  margin-bottom: 23px;
}
@media screen and (max-width: 1024px) {
  .top-info-tab {
    margin-bottom: 15px;
  }
}
.top-info-tab__item {
  width: calc((100% - 30px) / 4);
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .top-info-tab__item:hover {
    background-color: #faedda;
    color: #f35a31;
  }
}
@media screen and (max-width: 599px) {
  .top-info-tab__item {
    height: 48px;
    line-height: 1.2;
  }
}
.top-info-tab__item.active {
  background-color: #f35a31;
  color: #fff;
  pointer-events: none;
  position: relative;
}
.top-info-tab__item.active::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -3px;
  border-style: solid;
  border-width: 8px 6px;
  border-color: transparent;
  border-top-color: #f35a31;
}

.top-info-content {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .top-info-content {
    margin-bottom: 15px;
  }
}
.top-info-content__item {
  display: none;
}
.top-info-content__item.show {
  display: block;
}
.top-info-content__no-news {
  margin-top: 20px;
  margin-bottom: 60px;
  background-color: #f7f7f7;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
}

.top-info-item > a {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
  align-items: flex-start;
  color: #222;
}
@media screen and (min-width: 1025px) {
  .top-info-item > a:hover {
    opacity: 0.8;
    transform: translateX(2px);
    color: #f35a31;
  }
}
.top-info-item__date {
  width: 95px;
  font-size: 1.5rem;
  color: #f35a31;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .top-info-item__date {
    letter-spacing: 0;
  }
}
.top-info-item__category {
  width: 100px;
  margin-right: 20px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  border-radius: 3px;
  text-align: center;
  background-color: #efefef;
  color: #949494;
  font-weight: 500;
  padding: 6px;
  line-height: 1;
}
.top-info-item__text {
  width: calc(100% - 215px);
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-info-item__text {
    width: 100%;
    margin-top: 5px;
  }
}
.top-info-item__new {
  font-size: 1.3rem;
  color: #fd3f0c;
  font-weight: 600;
  margin-left: 10px;
}

.top-pickup {
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .top-pickup {
    max-width: 250px;
  }
}
@media screen and (max-width: 599px) {
  .top-pickup {
    max-width: 100%;
  }
}
.top-pickup__title {
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  position: relative;
  padding: 3px 3px 3px 20px;
  margin-bottom: 28px;
}
@media screen and (max-width: 599px) {
  .top-pickup__title {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
}
.top-pickup__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #f35a31;
  border-radius: 10px;
}

/*ピックアップ*/
.top-pickup-item > a {
  color: #222;
  display: block;
}
@media screen and (min-width: 1025px) {
  .top-pickup-item > a:hover {
    opacity: 0.8;
    color: #f35a31;
    transform: translateY(2px);
  }
}
.top-pickup-item__photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .top-pickup-item__photo {
    border-radius: 15px;
  }
}
.top-pickup-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.top-pickup-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.top-pickup-item__date {
  font-size: 1.5rem;
  color: #f35a31;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: inline-block;
}
.top-pickup-item__category {
  font-size: 1.2rem;
  color: #949494;
  font-weight: 600;
  display: inline-block;
  min-width: 100px;
  background-color: #efefef;
  border-radius: 3px;
  text-align: center;
  padding: 2px;
  margin-left: 15px;
}
.top-pickup-item__text {
  width: 100%;
  margin-top: 10px;
  line-height: 1.4;
}

/*topics*/
.top-topics {
  background-color: #faedda;
  padding-left: 265px;
  margin-bottom: 95px;
}
@media screen and (max-width: 1024px) {
  .top-topics {
    padding-left: 0;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics {
    margin-bottom: 50px;
  }
}
.top-topics__inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  padding: 70px 30px;
}
@media screen and (max-width: 599px) {
  .top-topics__inner {
    padding: 60px 15px 50px;
  }
}
.top-topics__title {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 3.8rem;
  color: #f35a31;
  font-family: "Hind", sans-serif !important;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-topics__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__title {
    font-size: 3.4rem;
  }
}
.top-topics__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 8px;
  height: 8px;
  background-color: #f35a31;
  border-radius: 50px;
  margin-left: -4px;
}

.top-topics-list {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .top-topics-list {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics-list {
    flex-wrap: wrap;
  }
}

.top-topics-item {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1024px) {
  .top-topics-item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-topics-item {
    width: 100%;
  }
}
.top-topics-item > a {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  min-height: 160px;
  letter-spacing: 0.03em;
  padding: 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-topics-item > a {
    font-size: 2rem;
    min-height: 140px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics-item > a {
    min-height: 110px;
    border-radius: 15px;
  }
}
.top-topics-item > a span {
  font-size: 1.6rem;
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .top-topics-item > a span {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .top-topics-item > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.top-topics-item > a::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #f35a31;
  border-radius: 20px;
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.top-topics-item > a::after {
  content: "";
  position: absolute;
  bottom: 22px;
  right: 23px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.top-topics-item--nenkan > a {
  background-image: url(../img/top/bg_topics01.jpg);
}
.top-topics-item--interview > a {
  background-image: url(../img/top/bg_topics02.jpg);
}
.top-topics-item--plaza > a {
  background-image: url(../img/top/bg_topics03.jpg);
}

/*タイプ別施設特集*/
.top-feature {
  padding-left: 265px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .top-feature {
    padding-left: 0;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature {
    margin-bottom: 70px;
  }
}
.top-feature__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 599px) {
  .top-feature__inner {
    padding: 0 15px;
  }
}
.top-feature__title {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  padding-bottom: 22px;
  position: relative;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .top-feature__title {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
}
.top-feature__title::before {
  content: "";
  width: 40px;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
  background-color: #f35a31;
  border-radius: 10px;
}
.top-feature__text {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .top-feature__text {
    margin-bottom: 30px;
  }
}
.top-feature__btn {
  max-width: 210px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-feature__btn {
    margin: 0 auto;
  }
}

.top-feature-list {
  display: flex;
  gap: 36px 46px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .top-feature-list {
    gap: 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-feature-list {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature-list {
    gap: 30px 15px;
  }
}

.top-feature-item {
  width: calc((100% - 138px) / 4);
}
@media screen and (max-width: 1400px) {
  .top-feature-item {
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 1024px) {
  .top-feature-item {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-feature-item {
    width: calc((100% - 15px) / 2);
  }
}
.top-feature-item > a {
  color: #222;
  display: block;
}
@media screen and (min-width: 1025px) {
  .top-feature-item > a:hover {
    opacity: 0.8;
    color: #f35a31;
    transform: translateY(2px);
  }
}
.top-feature-item__photo {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 17px;
}
@media screen and (max-width: 599px) {
  .top-feature-item__photo {
    border-radius: 10px;
    margin-bottom: 12px;
  }
}
.top-feature-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.top-feature-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.top-feature-item__text {
  background-image: url(../img/common/icon_bookmark.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  line-height: 1.4;
  padding-left: 26px;
  font-weight: 600;
  font-size: 1.7rem;
}
@media screen and (max-width: 599px) {
  .top-feature-item__text {
    font-size: 1.6rem;
    padding-left: 22px;
    background-position: left 0 top 1px;
  }
}

/*お役立ち情報*/
.top-guide {
  padding-left: 265px;
  background-image: url(../img/top/bg_guide.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .top-guide {
    padding-left: 0;
  }
}
.top-guide__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-guide__inner {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-guide__inner {
    padding: 60px 15px 50px;
  }
}
.top-guide__inner::before {
  content: "";
  position: absolute;
  top: -54px;
  left: 12%;
  width: 192px;
  height: 147px;
  background-image: url(../img/top/guide_illust.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1400px) {
  .top-guide__inner::before {
    width: 150px;
    top: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-guide__inner::before {
    width: 120px;
    top: -50px;
    left: 15px;
  }
}
.top-guide__title {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  position: relative;
  margin-bottom: 36px;
  padding-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .top-guide__title {
    font-size: 2.4rem;
    margin-bottom: 23px;
  }
}
.top-guide__title::before {
  content: "";
  width: 40px;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
  background-color: #f35a31;
  border-radius: 10px;
}
.top-guide__text {
  margin-bottom: 45px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 599px) {
  .top-guide__text {
    margin-bottom: 30px;
  }
}
.top-guide__btn {
  max-width: 210px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-guide__btn {
    margin: 0 auto;
  }
}

.top-guide-list {
  display: flex;
  gap: 30px 50px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .top-guide-list {
    gap: 30px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-list {
    gap: 15px;
  }
}

.top-guide-item {
  width: calc((100% - 100px) / 3);
}
@media screen and (max-width: 1400px) {
  .top-guide-item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-guide-item {
    width: calc((100% - 15px) / 2);
  }
}
.top-guide-item > a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: block;
  color: #222;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .top-guide-item > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
    color: #f35a31;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-item > a {
    border-radius: 10px;
  }
}
.top-guide-item__photo {
  position: relative;
}
.top-guide-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.top-guide-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.top-guide-item__box {
  padding: 20px 20px 30px;
}
@media screen and (max-width: 599px) {
  .top-guide-item__box {
    padding: 12px 10px 20px;
  }
}
.top-guide-item__date {
  font-size: 1.5rem;
  color: #f35a31;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .top-guide-item__date {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-item__date {
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 2px;
  }
}
.top-guide-item__category {
  font-size: 1.2rem;
  color: #949494;
  font-weight: 600;
  background-color: #efefef;
  border-radius: 3px;
  width: 100px;
  text-align: center;
  display: inline-block;
  line-height: 1.4;
  padding: 4px;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .top-guide-item__category {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-guide-item__category {
    padding: 2px 8px;
    width: auto;
  }
}
.top-guide-item__new {
  display: inline-block;
  font-size: 1.3rem;
  color: #fd3f0c;
  font-weight: 600;
  margin-left: 7px;
}
@media screen and (max-width: 599px) {
  .top-guide-item__new {
    margin-left: 3px;
    font-size: 1.2rem;
  }
}
.top-guide-item__text {
  margin-top: 9px;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .top-guide-item__text {
    font-size: 1.6rem;
  }
}

/*らくらすプラザ*/
.top-plaza {
  padding-left: 265px;
}
@media screen and (max-width: 1024px) {
  .top-plaza {
    padding-left: 0;
  }
}
.top-plaza__inner {
  max-width: 1160px;
  padding: 90px 30px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-plaza__inner {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-plaza__inner {
    padding: 50px 15px;
  }
}

.top-plaza-item {
  display: flex;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .top-plaza-item:hover {
    transform: translateY(2px);
  }
  .top-plaza-item:hover > a {
    color: #f35a31;
  }
}
@media screen and (max-width: 599px) {
  .top-plaza-item {
    border-radius: 15px;
    flex-wrap: wrap;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}
.top-plaza-item > a {
  width: 100%;
  height: 100%;
  display: flex;
  color: #222;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-plaza-item > a {
    flex-wrap: wrap;
  }
}
.top-plaza-item__photo {
  width: 41%;
}
@media screen and (max-width: 599px) {
  .top-plaza-item__photo {
    width: 100%;
    height: 160px;
  }
}
.top-plaza-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media screen and (max-width: 599px) {
  .top-plaza-item__photo img {
    border-radius: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-position: left 50% top 5%;
  }
}
.top-plaza-item__box {
  width: 59%;
  padding: 40px 45px 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-plaza-item__box {
    padding: 30px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-plaza-item__box {
    width: 100%;
    padding: 25px 20px 50px;
  }
}
.top-plaza-item__logo {
  width: 70%;
  max-width: 330px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .top-plaza-item__logo {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-plaza-item__logo {
    width: 80%;
    max-width: 270px;
    margin-bottom: 15px;
  }
}
.top-plaza-item__text {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .top-plaza-item__text {
    text-align: justify;
  }
}
.top-plaza-item__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 210px;
  background-color: #555555;
  color: #fff;
  font-weight: 500;
  padding: 6px 5px 7px;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (max-width: 599px) {
  .top-plaza-item__btn {
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
.top-plaza-item__btn::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 26px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/*--------------------------------------------------------
search
----------------------------------------------------------*/
/*search index内共通*/
/*checkbox*/
.search-checkbox-common {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.search-checkbox-common__box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 10px 0;
}
@media screen and (max-width: 599px) {
  .search-checkbox-common__box {
    flex-wrap: wrap;
  }
}
.search-checkbox-common__item-name {
  width: 260px;
  padding: 8px 5px;
  font-size: 1.6rem;
  color: #f35a31;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  background-color: #faedda;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .search-checkbox-common__item-name {
    width: 180px;
  }
}
@media screen and (max-width: 599px) {
  .search-checkbox-common__item-name {
    width: 100%;
  }
}
.search-checkbox-common__item-box {
  padding: 10px 0 10px 35px;
  width: calc(100% - 260px);
}
@media screen and (max-width: 1024px) {
  .search-checkbox-common__item-box {
    width: calc(100% - 180px);
    padding: 10px 0 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  .search-checkbox-common__item-box {
    width: 100%;
    padding: 15px 0;
  }
}
.search-checkbox-common__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
}
@media screen and (max-width: 599px) {
  .search-checkbox-common__list {
    gap: 16px 10px;
  }
}
.search-checkbox-common__list > li {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 599px) {
  .search-checkbox-common__list > li {
    width: calc((100% - 10px) / 2);
  }
}
.search-checkbox-common__list > li label {
  line-height: 1.3;
  padding: 0 0 0 27px;
  position: relative;
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 599px) {
  .search-checkbox-common__list > li label {
    padding: 0 0 0 24px;
  }
}
.search-checkbox-common__list > li label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #e4e4e4;
  border-radius: 2px;
}
.search-checkbox-common__list > li input[type=checkbox]:checked + label {
  color: #f35a31;
}
.search-checkbox-common__list > li input[type=checkbox]:checked + label::before {
  background-color: #f35a31;
}
.search-checkbox-common__list > li input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-135deg);
}

/*共通検索ボタン*/
.search-btn-common {
  width: 100%;
  max-width: 200px;
  background-color: #f35a31;
  border-radius: 6px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  transition: 0.2s;
  padding: 13px 13px 15px;
  line-height: 1.3;
}
.search-btn-common > span {
  background-image: url(../img/common/icon_search_white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 0 top 4px;
  padding: 0 10px 0 28px;
}
.search-btn-common > span > sub {
  font-size: 1.1rem;
  vertical-align: top;
}
@media screen and (min-width: 1025px) {
  .search-btn-common:hover {
    opacity: 0.8;
  }
}

/*あいうえお表*/
.search-order-common {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .search-order-common {
    margin-bottom: 30px;
    overflow-x: auto;
    position: relative;
  }
  .search-order-common::before {
    content: "";
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 38px);
    box-sizing: border-box;
    width: 76px;
    height: 70px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 25px 10px 5px 10px;
    z-index: 1;
    background-image: url(../img/common/scroll.svg);
    background-repeat: no-repeat;
    background-size: 36px;
    background-position: 45% 50%;
  }
  .search-order-common.scrolled::before {
    content: none;
  }
}
.search-order-common__wrap {
  display: flex;
  width: 100%;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .search-order-common__wrap {
    gap: 5px;
  }
}
@media screen and (max-width: 599px) {
  .search-order-common__wrap {
    width: 800px;
  }
}
.search-order-common__wrap > ul {
  width: calc((100% - 140px) / 15);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .search-order-common__wrap > ul {
    width: calc((100% - 70px) / 15);
    gap: 5px;
  }
}
.search-order-common__wrap > ul > li {
  text-align: center;
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .search-order-common__wrap > ul > li {
    height: 46px;
  }
}
.search-order-common__wrap > ul > li > a {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
  border-radius: 6px;
  color: #f35a31;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .search-order-common__wrap > ul > li > a:hover {
    background-color: #dddddd;
  }
}
@media screen and (max-width: 599px) {
  .search-order-common__wrap > ul > li > a {
    font-weight: 500;
  }
}

.search-order-list-common {
  padding: 40px;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .search-order-list-common {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .search-order-list-common {
    padding: 15px;
  }
}
.search-order-list-common > ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.search-order-list-common > ul > li {
  width: calc((100% - 12px) / 3);
}
@media screen and (max-width: 599px) {
  .search-order-list-common > ul > li {
    width: calc((100% - 6px) / 2);
  }
}
.search-order-list-common > ul > li > a {
  width: 100%;
  height: 100%;
  background-color: #fcf2e3;
  display: block;
  border-radius: 6px;
  color: #222;
  letter-spacing: 0;
  line-height: 1.3;
  padding: 11px 11px 11px 33px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .search-order-list-common > ul > li > a:hover {
    transform: translateY(2px);
    color: #f35a31;
  }
}
@media screen and (max-width: 599px) {
  .search-order-list-common > ul > li > a {
    padding: 11px 11px 11px 23px;
  }
}
.search-order-list-common > ul > li > a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #f35a31;
  border-right: 1px solid #f35a31;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .search-order-list-common > ul > li > a::before {
    left: 7px;
  }
}

/*search index内共通 ここまで*/
.search-keyword {
  padding-left: 265px;
}
@media screen and (max-width: 1024px) {
  .search-keyword {
    padding-left: 0;
  }
}
.search-keyword__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px 30px 60px;
}
@media screen and (max-width: 1024px) {
  .search-keyword__inner {
    padding: 60px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .search-keyword__inner {
    padding: 40px 15px;
  }
}

.search-keyword-box {
  display: flex;
}
.search-keyword-box > input {
  width: calc(100% - 240px);
  padding: 15px 20px 15px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .search-keyword-box > input {
    width: calc(100% - 100px);
    padding: 14px 10px;
  }
}
.search-keyword-box > button {
  width: 230px;
  background-color: #f35a31;
  border-radius: 6px;
  color: #fff;
  margin-left: 10px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  transition: 0.2s;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .search-keyword-box > button {
    width: 90px;
    font-size: 1.6rem;
  }
}
.search-keyword-box > button > span {
  background-image: url(../img/common/icon_search_white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 0 top 2px;
  padding: 0 20px 0 28px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .search-keyword-box > button > span {
    background-size: 16px auto;
    background-position: left 0 top 3px;
    padding: 0 0 0 20px;
  }
}
@media screen and (min-width: 1025px) {
  .search-keyword-box > button:hover {
    opacity: 0.8;
  }
}

.search-anchor {
  background-color: #f3f3f3;
  padding-left: 265px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .search-anchor {
    margin-bottom: 60px;
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .search-anchor {
    margin-bottom: 60px;
  }
}
.search-anchor__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 50px 30px;
}
@media screen and (max-width: 599px) {
  .search-anchor__inner {
    padding: 40px 15px;
  }
}

.search-anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 599px) {
  .search-anchor-list {
    gap: 10px;
  }
}
.search-anchor-list > li {
  width: calc((100% - 45px) / 4);
}
@media screen and (max-width: 1024px) {
  .search-anchor-list > li {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .search-anchor-list > li {
    width: calc((100% - 10px) / 2);
  }
}
.search-anchor-list > li > a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  min-height: 70px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  color: #000;
  padding: 5px 5px 5px 53px;
  letter-spacing: 0;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .search-anchor-list > li > a {
    min-height: 64px;
    padding: 5px 5px 5px 46px;
  }
}
.search-anchor-list > li > a::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 23px;
  height: 23px;
  background-color: #f35a31;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .search-anchor-list > li > a::before {
    top: 20px;
    left: 15px;
  }
}
.search-anchor-list > li > a::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(135deg);
}
@media screen and (max-width: 1024px) {
  .search-anchor-list > li > a::after {
    top: 26px;
    left: 23px;
  }
}
.search-anchor-list > li > a > span {
  display: block;
}
.search-anchor-list > li > a > span > span {
  font-size: 2rem;
  color: #f35a31;
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
  .search-anchor-list > li > a > span > span {
    font-size: 1.8rem;
    margin-right: 2px;
  }
}
@media screen and (max-width: 599px) {
  .search-anchor-list > li > a > span > span {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .search-anchor-list > li > a:hover {
    transform: translateY(3px);
  }
}

.search-contents {
  padding-left: 265px;
}
@media screen and (max-width: 1024px) {
  .search-contents {
    padding-left: 0;
  }
}
.search-contents__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px 130px;
}
@media screen and (max-width: 1024px) {
  .search-contents__inner {
    padding: 0 30px 90px;
  }
}
@media screen and (max-width: 599px) {
  .search-contents__inner {
    padding: 0 15px 60px;
  }
}

/*市区町村から探す*/
.search-area {
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .search-area {
    margin-bottom: 60px;
  }
}

.search-area-title {
  margin-bottom: 25px;
  background-color: #faedda;
  border-radius: 5px;
  padding: 16px 16px 16px 58px;
  line-height: 1.3;
  font-size: 1.9rem;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .search-area-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .search-area-title {
    font-size: 1.8rem;
  }
}
.search-area-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background-color: #fff;
  background-image: url(../img/common/icon_plus.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
}
.search-area-title.active::before {
  background-image: url(../img/common/icon_minus.png);
}
.search-area-title > a {
  color: #f35a31;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .search-area-title > a:hover {
    text-decoration: none;
  }
}

.search-area-hidden {
  display: none;
}

.search-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .search-area-list {
    margin-bottom: 40px;
  }
}
.search-area-list > li {
  width: calc((100% - 21px) / 4);
}
@media screen and (max-width: 599px) {
  .search-area-list > li {
    width: calc((100% - 7px) / 2);
  }
}
.search-area-list > li > a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  color: #222;
  letter-spacing: 0;
  line-height: 1.3;
  padding: 11px 11px 11px 33px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .search-area-list > li > a {
    padding: 11px 11px 11px 23px;
  }
}
.search-area-list > li > a::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 11px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #f35a31;
  border-right: 1px solid #f35a31;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .search-area-list > li > a::before {
    left: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .search-area-list > li > a:hover {
    transform: translateY(2px);
    color: #f35a31;
  }
}

/*路線・駅から探す*/
.search-station {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .search-station {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .search-station {
    margin-bottom: 70px;
  }
}

.search-station-btn {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .search-station-btn {
    text-align: center;
  }
}
.search-station-btn__notice {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #6b6b6b;
  font-weight: 500;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 599px) {
  .search-station-btn__notice {
    text-align: left;
  }
}

/*条件から探す*/
.search-condition {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .search-condition {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .search-condition {
    margin-bottom: 70px;
  }
}

.search-condition-btn {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .search-condition-btn {
    text-align: center;
  }
}
.search-condition-btn__notice {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #6b6b6b;
  font-weight: 500;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 599px) {
  .search-condition-btn__notice {
    text-align: left;
  }
}

/*施設種別から探す*/
.search-type {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .search-type {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .search-type {
    margin-bottom: 70px;
  }
}

.search-type-btn {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .search-type-btn {
    text-align: center;
  }
}
.search-type-btn__notice {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #6b6b6b;
  font-weight: 500;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 599px) {
  .search-type-btn__notice {
    text-align: left;
  }
}

/*施設名から探す*/
.search-facility {
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .search-facility {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .search-facility {
    margin-bottom: 70px;
  }
}

/*運営会社名から探す*/
.search-unei {
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .search-unei {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .search-unei {
    margin-bottom: 70px;
  }
}

/*月額費用*/
.search-monthly {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .search-monthly {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .search-monthly {
    margin-bottom: 70px;
  }
}

.search-monthly-select {
  background-color: #faedda;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .search-monthly-select {
    padding: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.search-monthly-select__text {
  font-weight: 500;
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  .search-monthly-select__text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4px;
  }
}
.search-monthly-select__space {
  padding: 0 10px;
}
@media screen and (max-width: 599px) {
  .search-monthly-select__space {
    width: 26px;
    padding: 0;
    text-align: center;
  }
}
.search-monthly-select select {
  width: 100%;
  max-width: 160px;
  background-color: #fff;
  border-radius: 6px;
  font-weight: 500;
  padding: 10px 30px 10px 12px;
  background-image: url(../img/common/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 14px auto;
}
@media screen and (max-width: 599px) {
  .search-monthly-select select {
    max-width: 100%;
    width: calc((100% - 26px) / 2);
  }
}

.search-monthly-btn {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .search-monthly-btn {
    text-align: center;
  }
}
.search-monthly-btn__notice {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #6b6b6b;
  font-weight: 500;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 599px) {
  .search-monthly-btn__notice {
    text-align: left;
  }
}

/*マップ*/
.search-map-block {
  min-height: 700px;
  background-image: url(../img/search/map.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 66px 20px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .search-map-block {
    display: block;
    background-image: none;
    padding: 0;
    position: relative;
    padding-bottom: 450px;
  }
  .search-map-block::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 450px;
    background-image: url(../img/search/map.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .search-map-block {
    padding-bottom: 240px;
  }
  .search-map-block::before {
    height: 240px;
  }
}
.search-map-block__block01 {
  width: 45%;
  max-width: 380px;
}
@media screen and (max-width: 1400px) {
  .search-map-block__block01 {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .search-map-block__block01 {
    max-width: 100%;
    width: 100%;
  }
}
.search-map-block__block02 {
  width: 45%;
  max-width: 380px;
}
@media screen and (max-width: 1400px) {
  .search-map-block__block02 {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .search-map-block__block02 {
    width: 100%;
    max-width: 100%;
  }
}

.search-map-box {
  border-radius: 6px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1025px) {
  .search-map-box:first-child {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .search-map-box {
    box-shadow: none;
    padding: 0;
    border-top: 1px dotted #cfcfcf;
    margin-bottom: 30px;
    padding-top: 25px;
  }
}
.search-map-box__title {
  margin-bottom: 8px;
  font-weight: 500;
  background-image: url(../img/common/pin.svg);
  background-repeat: no-repeat;
  background-size: 19px auto;
  background-position: left 0 top 2px;
  padding: 3px 0 3px 25px;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .search-map-box__title {
    margin-bottom: 15px;
    font-size: 1.8rem;
    background-position: left 0 top 3px;
  }
}
.search-map-box > ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media screen and (max-width: 1024px) {
  .search-map-box > ul {
    gap: 8px;
  }
}
.search-map-box > ul > li > a {
  min-width: 64px;
  display: block;
  background-color: #f0f0f0;
  border-radius: 6px;
  color: #222;
  line-height: 1.3;
  padding: 7px 9px;
  letter-spacing: 0;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .search-map-box > ul > li > a:hover {
    background-color: #16b299;
    color: #fff;
  }
}
@media screen and (max-width: 1400px) {
  .search-map-box > ul > li > a {
    padding: 5px 9px;
  }
}
@media screen and (max-width: 1024px) {
  .search-map-box > ul > li > a {
    font-size: 1.6rem;
    padding: 10px;
  }
}

/*--------------------------------------------------------
result 検索結果　
----------------------------------------------------------*/
/*result内共通*/
/*checkbox*/
.result-checkbox-common {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.result-checkbox-common__box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 10px 0;
}
@media screen and (max-width: 599px) {
  .result-checkbox-common__box {
    flex-wrap: wrap;
  }
}
.result-checkbox-common__item-name {
  width: 260px;
  padding: 8px 5px;
  font-size: 1.6rem;
  color: #f35a31;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  background-color: #faedda;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .result-checkbox-common__item-name {
    width: 180px;
  }
}
@media screen and (max-width: 599px) {
  .result-checkbox-common__item-name {
    width: 100%;
  }
}
.result-checkbox-common__item-box {
  padding: 10px 0 10px 35px;
  width: calc(100% - 260px);
}
@media screen and (max-width: 1024px) {
  .result-checkbox-common__item-box {
    width: calc(100% - 180px);
    padding: 10px 0 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  .result-checkbox-common__item-box {
    width: 100%;
    padding: 15px 0;
  }
}
.result-checkbox-common__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
}
@media screen and (max-width: 599px) {
  .result-checkbox-common__list {
    gap: 16px 10px;
  }
}
.result-checkbox-common__list > li {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 599px) {
  .result-checkbox-common__list > li {
    width: calc((100% - 10px) / 2);
  }
}
.result-checkbox-common__list > li label {
  line-height: 1.3;
  padding: 0 0 0 27px;
  position: relative;
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 599px) {
  .result-checkbox-common__list > li label {
    padding: 0 0 0 24px;
  }
}
.result-checkbox-common__list > li label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #e4e4e4;
  border-radius: 2px;
}
.result-checkbox-common__list > li input[type=checkbox]:checked + label {
  color: #f35a31;
}
.result-checkbox-common__list > li input[type=checkbox]:checked + label::before {
  background-color: #f35a31;
}
.result-checkbox-common__list > li input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-135deg);
}

/*result内共通 ここまで*/
.result-number {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 11px;
  margin-bottom: 18px;
}
@media screen and (max-width: 599px) {
  .result-number {
    font-size: 2rem;
    line-height: 1;
    padding-bottom: 8px;
  }
}
.result-number span {
  color: #f35a31;
  font-size: 5rem;
  font-family: "Hind", sans-serif !important;
  padding-left: 14px;
  padding-right: 5px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .result-number span {
    font-size: 4rem;
    display: inline-block;
  }
}

.result-conditions-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .result-conditions-text {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
}

.result-notfound {
  margin-bottom: 50px;
  background-color: #fcd5d5;
  border-radius: 6px;
  padding: 20px;
  font-size: 1.6rem;
  color: #e82a2a;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .result-notfound {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .result-notfound {
    margin-bottom: 35px;
    padding: 15px;
    line-height: 1.4;
  }
}

/* ***************************************************
検索エリア

▼▼▼　同一ブロック有 クラス注意　▼▼▼
・feature/detail.html
・search/result.html
******************************************************/
.result-search {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  padding: 10px;
}
@media screen and (max-width: 599px) {
  .result-search {
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}

.result-search-block {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 30px 0;
}
@media screen and (max-width: 599px) {
  .result-search-block {
    padding: 10px 5px 0;
  }
}
.result-search-block > dt {
  width: 205px;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
}
.result-search-block > dt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .result-search-block > dt {
    width: 100%;
    margin-bottom: 7px;
  }
}
.result-search-block > dt span {
  padding: 10px 0 7px 35px;
  display: inline-block;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .result-search-block > dt span {
    padding: 7px 0 7px 25px;
  }
}
.result-search-block > dt.area span {
  background-image: url(../img/common/icon_map_orange.svg);
  background-size: 24px auto;
  background-position: left 0 top 7px;
}
@media screen and (max-width: 599px) {
  .result-search-block > dt.area span {
    background-size: 20px auto;
    background-position: left 0 top 6px;
  }
}
.result-search-block > dt.hiyou span {
  background-image: url(../img/common/icon_dentaku_orange.svg);
  background-size: 21px auto;
  background-position: left 2px top 7px;
}
@media screen and (max-width: 599px) {
  .result-search-block > dt.hiyou span {
    background-size: 17px auto;
    background-position: left 2px top 6px;
  }
}
.result-search-block > dt.zyoken span {
  background-image: url(../img/common/icon_ie_orange.svg);
  background-size: 30px auto;
  background-position: left 0px top 7px;
}
@media screen and (max-width: 599px) {
  .result-search-block > dt.zyoken span {
    background-size: 23px auto;
    background-position: left 0px top 8px;
  }
}
.result-search-block > dt.keyword span {
  background-image: url(../img/common/icon_key_orange.svg);
  background-size: 23px auto;
  background-position: left 3px top 11px;
}
@media screen and (max-width: 599px) {
  .result-search-block > dt.keyword span {
    background-size: 21px auto;
    background-position: left 0px top 9px;
  }
}
.result-search-block > dt.kodawari span {
  background-image: url(../img/common/icon_isu.svg);
  background-size: 27px auto;
  background-position: left 0 top 7px;
}
@media screen and (max-width: 599px) {
  .result-search-block > dt.kodawari span {
    background-size: 21px auto;
    background-position: left 1px top 7px;
  }
}
.result-search-block > dd {
  width: calc(100% - 205px);
  margin-bottom: 30px;
}
.result-search-block > dd:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .result-search-block > dd {
    width: 100%;
    margin-bottom: 20px;
  }
}

/*エリアで探す*/
.result-search-area-box > select {
  width: 100%;
  max-width: 325px;
  background-color: #f0f0f0;
  border-radius: 6px;
  font-weight: 500;
  padding: 11px 30px 12px 12px;
  background-image: url(../img/common/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
  background-size: 14px auto;
}
.result-search-area-box > select:focus {
  outline: none !important;
  box-shadow: none;
}

/*費用で探す*/
.result-search-monthly-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.result-search-monthly-box:first-of-type {
  margin-bottom: 10px;
}
.result-search-monthly-box__text {
  font-weight: 500;
  width: 70px;
}
@media screen and (max-width: 599px) {
  .result-search-monthly-box__text {
    width: 60px;
  }
}
.result-search-monthly-box__space {
  width: 30px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .result-search-monthly-box__space {
    width: 20px;
  }
}
.result-search-monthly-box > select {
  width: 100%;
  max-width: 150px;
  width: calc((100% - 100px) / 2);
  background-color: #f0f0f0;
  border-radius: 6px;
  font-weight: 500;
  padding: 11px 30px 12px 12px;
  background-image: url(../img/common/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
  background-size: 14px auto;
}
@media screen and (max-width: 599px) {
  .result-search-monthly-box > select {
    width: calc((100% - 80px) / 2);
    padding: 11px 22px 12px 8px;
    background-position: right 6px top 50%;
  }
}
.result-search-monthly-box > select:focus {
  outline: none !important;
  box-shadow: none;
}

/*入居条件で探す*/
.result-search-condition-box {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.result-search-condition-box label {
  max-width: 160px;
  width: calc((100% - 18px) / 4);
  line-height: 1.3;
  background-color: #f0f0f0;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  padding: 10px 20px 11px;
  position: relative;
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 1024px) {
  .result-search-condition-box label {
    max-width: 100%;
    width: calc((100% - 6px) / 2);
  }
}
.result-search-condition-box label::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 11px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 2px;
}
.result-search-condition-box input[type=checkbox]:checked + label {
  color: #fff;
  background-color: #f35a31;
}
.result-search-condition-box input[type=checkbox]:checked + label::before {
  background-color: #fff;
}
.result-search-condition-box input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 16px;
  width: 6px;
  height: 12px;
  border-top: 2px solid #f35a31;
  border-left: 2px solid #f35a31;
  transform: rotate(-135deg);
}

/*フリーワード*/
.result-search-keyword-box > input {
  width: 100%;
  padding: 11px 20px 12px;
  background-color: #f0f0f0;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
.result-search-keyword-box > input:focus {
  outline: none !important;
  box-shadow: none;
}
@media screen and (max-width: 599px) {
  .result-search-keyword-box > input {
    padding: 14px 10px;
  }
}

/*こだわり*/
.result-search-kodawari-box {
  display: flex;
  align-items: center;
  padding: 3px 0;
}
@media screen and (max-width: 1024px) {
  .result-search-kodawari-box {
    flex-wrap: wrap;
  }
}
.result-search-kodawari-box__text {
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .result-search-kodawari-box__text {
    width: 100%;
  }
}
.result-search-kodawari-box__btn {
  width: 120px;
  background-color: #555555;
  border-radius: 6px;
  color: #fff;
  padding: 6px 12px 7px 5px;
  margin-left: 20px;
  position: relative;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .result-search-kodawari-box__btn:hover {
    opacity: 0.8;
    transform: translateY(1px);
  }
}
@media screen and (max-width: 1024px) {
  .result-search-kodawari-box__btn {
    margin-top: 10px;
    margin-left: 0;
  }
}
.result-search-kodawari-box__btn::before {
  content: "";
  margin-top: -1px;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 2px;
  background-color: #fff;
}
.result-search-kodawari-box__btn::after {
  content: "";
  margin-top: -6px;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 2px;
  height: 12px;
  background-color: #fff;
}
.result-search-kodawari-box__btn.active::after {
  content: none;
}

/*非表示部分*/
.result-search-kodawari-hidden {
  display: none;
  padding: 30px 30px 0;
}
@media screen and (max-width: 599px) {
  .result-search-kodawari-hidden {
    padding: 15px 5px 0;
  }
}

/*検索ボタン*/
.result-search-btn {
  margin-top: 40px;
  background-color: #faedda;
  border-radius: 20px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .result-search-btn {
    margin-top: 30px;
  }
}
.result-search-btn__btn {
  width: 100%;
  max-width: 240px;
  background-color: #f35a31;
  border-radius: 6px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  transition: 0.2s;
  padding: 17px 13px 19px;
  line-height: 1.3;
}
.result-search-btn__btn > span {
  background-image: url(../img/common/icon_search_white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 0 top 5px;
  padding: 0 10px 0 28px;
}
@media screen and (min-width: 1025px) {
  .result-search-btn__btn:hover {
    opacity: 0.8;
  }
}

/*詳しく検索*/
.result-search-more {
  text-align: right;
  margin-top: 25px;
  line-height: 1.4;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .result-search-more {
    margin-bottom: 70px;
  }
}
.result-search-more > a {
  color: #f35a31;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: underline;
  position: relative;
  padding-left: 28px;
}
.result-search-more > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  background-color: #f35a31;
  border-radius: 50px;
}
.result-search-more > a::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .result-search-more > a:hover {
    text-decoration: none;
  }
}

/*まとめて資料請求*/
.result-matomete {
  background-color: #c6e3de;
  border-radius: 6px;
  font-size: 1.5rem;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .result-matomete {
    flex-wrap: wrap;
    flex-flow: column;
    align-items: flex-start;
    padding: 12px 20px 16px;
    margin-bottom: 30px;
  }
}
.result-matomete::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -28px;
  border-style: solid;
  border-width: 14px 8px;
  border-color: transparent;
  border-top-color: #c6e3de;
}
.result-matomete--end::before {
  bottom: auto;
  top: -28px;
  border-top-color: transparent;
  border-bottom-color: #c6e3de;
}
.result-matomete > a {
  margin-left: 16px;
  background-color: #16b299;
  border-radius: 6px;
  color: #fff;
  font-size: 1.4rem;
  padding: 8px 20px 9px 30px;
  display: inline-block;
  line-height: 1.3;
  position: relative;
}
.result-matomete > a::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .result-matomete > a:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .result-matomete > a {
    margin-left: 0;
  }
}

/*検索結果　施設一覧ブロック*/
.result-facility {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  padding: 10px;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .result-facility {
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}
.result-facility__inner {
  padding: 20px 30px 40px 60px;
}
@media screen and (max-width: 599px) {
  .result-facility__inner {
    padding: 10px 5px;
  }
}
.typec .result-facility__inner {
  padding: 20px 30px 40px 30px;
}
@media screen and (max-width: 599px) {
  .typec .result-facility__inner {
    padding: 10px 5px;
  }
}
.result-facility__request {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  text-align: center;
  padding-top: 70px;
}
@media screen and (max-width: 599px) {
  .result-facility__request {
    position: relative;
    padding-top: 0;
    width: auto;
    margin-bottom: 10px;
  }
}
.result-facility__request label {
  width: 100%;
  position: relative;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .result-facility__request label {
    writing-mode: horizontal-tb;
    background-color: #eeeeee;
    border-radius: 5px;
    padding: 10px 10px 10px 42px;
  }
}
.result-facility__request label::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 23px;
  width: 24px;
  height: 24px;
  background-color: #ececec;
  border-radius: 2px;
}
@media screen and (max-width: 599px) {
  .result-facility__request label::before {
    top: 11px;
    left: 10px;
    background-color: #fff;
  }
}
.result-facility__request label::after {
  content: "";
  position: absolute;
  top: -32px;
  left: 30px;
  width: 11px;
  height: 18px;
  border-top: 4px solid #d4d4d4;
  border-left: 4px solid #d4d4d4;
  transform: rotate(-135deg);
}
@media screen and (max-width: 599px) {
  .result-facility__request label::after {
    top: 12px;
    left: 17px;
  }
}
@media screen and (max-width: 599px) {
  .result-facility__request input[type=checkbox]:checked + label {
    background-color: #c6e3de;
  }
}
.result-facility__request input[type=checkbox]:checked + label::after {
  border-top: 4px solid #16b299;
  border-left: 4px solid #16b299;
}
.result-facility__title > a {
  display: block;
  line-height: 1.3;
  font-size: 3.2rem;
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  color: #222;
}
@media screen and (max-width: 1024px) {
  .result-facility__title > a {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .result-facility__title > a {
    font-size: 2.5rem;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
}
.result-facility__title > a span {
  margin-bottom: 7px;
  font-size: 1.3rem;
  color: #f35a31;
  display: inline-block;
  border: 1px solid #f35a31;
  border-radius: 3px;
  padding: 3px 10px;
}
@media screen and (min-width: 1025px) {
  .result-facility__title > a:hover {
    color: #f35a31;
    opacity: 0.8;
  }
}
.result-facility__copy {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 22px;
}
@media screen and (max-width: 599px) {
  .result-facility__copy {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
}
.result-facility__lead {
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .result-facility__lead {
    margin-bottom: 25px;
  }
}
.result-facility__detail {
  display: flex;
}
@media screen and (max-width: 599px) {
  .result-facility__detail {
    flex-wrap: wrap;
  }
}
.result-facility__photo {
  width: 40%;
}
@media screen and (max-width: 599px) {
  .result-facility__photo {
    width: 100%;
    margin-bottom: 30px;
  }
}
.result-facility__photo > a {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .result-facility__photo > a:hover {
    opacity: 0.8;
  }
}
.result-facility__photo-item01 {
  width: 100%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}
.result-facility__photo-item01::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.result-facility__photo-item01 img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.result-facility__photo-item02 {
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.result-facility__photo-item02::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.result-facility__photo-item02 img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.result-facility__photo-item03 {
  width: calc((100% - 10px) / 2);
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.result-facility__photo-item03::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.result-facility__photo-item03 img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.result-facility__data {
  width: 60%;
  padding-left: 35px;
}
@media screen and (max-width: 599px) {
  .result-facility__data {
    width: 100%;
    padding-left: 0;
  }
}
.result-facility__data > dl {
  padding: 14px 0;
  border-bottom: 1px dotted #cccccc;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}
.result-facility__data > dl:first-of-type {
  padding-top: 0;
}
.result-facility__data > dl:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .result-facility__data > dl {
    display: block;
  }
}
.result-facility__data > dl > dt {
  width: 94px;
  background-color: #f0f0f0;
  text-align: center;
  border-radius: 3px;
  font-size: 1.5rem;
  padding: 2px;
}
@media screen and (max-width: 1024px) {
  .result-facility__data > dl > dt {
    width: 100%;
    margin-bottom: 7px;
  }
}
.result-facility__data > dl > dd {
  width: calc(100% - 94px);
  padding: 1px 0 1px 25px;
}
@media screen and (max-width: 1024px) {
  .result-facility__data > dl > dd {
    width: 100%;
    padding: 0;
  }
}
.result-facility__data-price {
  display: flex;
  flex-wrap: wrap;
}
.result-facility__data-price > dt {
  width: 70px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .result-facility__data-price > dt {
    margin-bottom: 2px;
  }
}
.result-facility__data-price > dd {
  width: calc(100% - 70px);
  padding-left: 12px;
  font-size: 2rem;
  font-weight: 700;
  color: #f35a31;
  line-height: 1.3;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .result-facility__data-price > dd {
    margin-bottom: 2px;
  }
}
.result-facility__data-tel {
  font-size: 2rem;
  color: #222;
  line-height: 1.2;
  font-weight: 700;
}
.result-facility__btns {
  background-color: #faedda;
  border-radius: 20px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .result-facility__btns {
    margin-top: 10px;
    border-radius: 10px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 20px;
    gap: 6px;
  }
}
.result-facility__btns-item > a {
  background-color: #f35a31;
  border-radius: 6px;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 600;
  width: 245px;
  display: block;
  text-align: center;
  padding: 18px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .result-facility__btns-item > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .result-facility__btns-item > a {
    width: 220px;
  }
}
@media screen and (max-width: 599px) {
  .result-facility__btns-item > a {
    font-size: 1.6rem;
  }
}
.result-facility__btns-item > a::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -9px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50px;
}
.result-facility__btns-item > a::after {
  content: "";
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -3.5px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #f35a31;
  border-top: 2px solid #f35a31;
  transform: rotate(45deg);
}
.result-facility__btns-item--request > a {
  background-color: #16b299;
}
.result-facility__btns-item--request > a::after {
  border-right: 2px solid #16b299;
  border-top: 2px solid #16b299;
}

/*--------------------------------------------------------
facility 施設情報
----------------------------------------------------------*/
/* ************* facility内共通 ****************/
/*共通公式ホームページボタン*/
.facility-official-btn-common {
  position: absolute;
  top: 0;
  right: 0;
}

/*共通施設タイトル*/
.facility-title-common {
  position: relative;
  margin-bottom: 20px;
}
.facility-title-common__title {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .facility-title-common__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .facility-title-common__title {
    font-size: 2.5rem;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
}
.facility-title-common:has(> .facility-title-common__official-btn) .facility-title-common__title {
  padding-right: 180px;
}
@media screen and (max-width: 1024px) {
  .facility-title-common:has(> .facility-title-common__official-btn) .facility-title-common__title {
    padding-right: 0;
  }
}
.facility-title-common__title-category {
  margin-bottom: 7px;
  font-size: 1.3rem;
  color: #f35a31;
  display: inline-block;
  border: 1px solid #f35a31;
  border-radius: 3px;
  padding: 3px 10px;
}
@media screen and (max-width: 599px) {
  .facility-title-common__title-category {
    padding: 2px 10px;
  }
}
.facility-title-common__title-text {
  display: block;
  color: #222;
  line-height: 1.3;
  font-size: 3.2rem;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .facility-title-common__title-text {
    font-size: 2.6rem;
  }
}
.facility-title-common__official-btn {
  position: absolute;
  bottom: 24px;
  right: 0;
  font-size: 1.4rem;
  color: #222;
  display: block;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  line-height: 1.3;
  padding: 11px 28px 12px 13px;
  font-weight: 500;
  background-image: url(../img/common/icon_target.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: right 7px top 15px;
}
@media screen and (min-width: 1025px) {
  .facility-title-common__official-btn:hover {
    transform: translateY(2px);
    color: #f35a31;
  }
}
@media screen and (max-width: 1024px) {
  .facility-title-common__official-btn {
    margin-top: 20px;
    position: relative;
    display: inline-block;
    bottom: auto;
    right: auto;
  }
}
@media screen and (max-width: 599px) {
  .facility-title-common__official-btn {
    margin-top: 0;
  }
}

/*共通住所*/
.facility-address-common {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .facility-address-common {
    margin-bottom: 40px;
  }
}
.facility-address-common__map {
  margin-left: 15px;
  font-size: 1.3rem;
  color: #f35a31;
  font-weight: 500;
  display: inline-block;
  line-height: 1.2;
  padding: 6px 20px 6px 32px;
  border: 1px solid #f35a31;
  border-radius: 3px;
  background-image: url(../img/common/pin_orange.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: left 11px top 50%;
}
@media screen and (min-width: 1025px) {
  .facility-address-common__map:hover {
    transform: translateY(2px);
  }
}

/*共通アンカー*/
.facility-anchor-common {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .facility-anchor-common {
    border-bottom: none;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .facility-anchor-common {
    margin-bottom: 30px;
  }
}
.facility-anchor-common > li {
  width: calc((100% - 50px) / 6);
}
@media screen and (max-width: 1024px) {
  .facility-anchor-common > li {
    width: calc((100% - 20px) / 3);
  }
}
.facility-anchor-common > li > a {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  text-align: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  color: #777;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .facility-anchor-common > li > a:hover {
    background-color: #f35a31;
    color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .facility-anchor-common > li > a {
    border-radius: 6px;
  }
}
@media screen and (max-width: 599px) {
  .facility-anchor-common > li > a {
    color: #777;
    padding: 5px;
    line-height: 1.2;
  }
}
.facility-anchor-common > li > a.active {
  background-color: #f35a31;
  color: #fff;
}
.facility-anchor-common > li > a.active::before {
  content: "";
  margin-left: -6px;
  position: absolute;
  left: 50%;
  bottom: -16px;
  border-style: solid;
  border-width: 8px 6px;
  border-color: transparent;
  border-top-color: #f35a31;
}
@media screen and (min-width: 1025px) {
  .facility-anchor-common--bottom {
    display: none;
  }
}
.facility-anchor-common--bottom > li > a.active::before {
  top: -16px;
  bottom: auto;
  border-top-color: transparent;
  border-bottom-color: #f35a31;
}

/*共通施設閲覧履歴 この施設を見た人はこんな施設も見ています*/
.facility-relation-common {
  background-color: #c6e3de;
  border-radius: 15px;
  padding: 30px 30px 40px;
}
@media screen and (max-width: 599px) {
  .facility-relation-common {
    padding: 20px 15px;
  }
}
.facility-relation-common__title {
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 0 10px 55px;
  background-image: url(../img/common/view.png);
  background-repeat: no-repeat;
  background-size: 40px auto;
}
@media screen and (max-width: 599px) {
  .facility-relation-common__title {
    margin-bottom: 15px;
    padding: 2px 0 2px 55px;
    line-height: 1.3;
    background-position: left 0 top 3px;
  }
}

.facility-relation-common-list {
  display: flex;
  gap: 27px;
}
@media screen and (max-width: 1024px) {
  .facility-relation-common-list {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .facility-relation-common-list {
    gap: 10px;
  }
}

.facility-relation-common-item {
  width: calc((100% - 81px) / 4);
}
@media screen and (max-width: 1024px) {
  .facility-relation-common-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .facility-relation-common-item {
    width: calc((100% - 10px) / 2);
  }
}
.facility-relation-common-item > a {
  background-color: #fff;
  display: block;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  padding: 10px 10px 17px;
  color: #222;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 599px) {
  .facility-relation-common-item > a {
    border-radius: 10px;
  }
}
.facility-relation-common-item > a::before {
  content: "";
  width: 23px;
  height: 23px;
  background-color: #16b299;
  border-radius: 20px;
  position: absolute;
  bottom: 12px;
  right: 12px;
}
@media screen and (max-width: 599px) {
  .facility-relation-common-item > a::before {
    bottom: 8px;
    right: 8px;
  }
}
.facility-relation-common-item > a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 21px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .facility-relation-common-item > a::after {
    bottom: 16px;
    right: 17px;
  }
}
@media screen and (min-width: 1025px) {
  .facility-relation-common-item > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
    color: #16b299;
  }
}
.facility-relation-common-item__photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 13px;
}
@media screen and (max-width: 599px) {
  .facility-relation-common-item__photo {
    border-radius: 6px;
  }
}
.facility-relation-common-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.facility-relation-common-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.facility-relation-common-item__text01 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #888888;
  line-height: 1.3;
  margin-bottom: 4px;
}
.facility-relation-common-item__text02 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .facility-relation-common-item__text02 {
    font-size: 1.9rem;
  }
}
.facility-relation-common-item__text03 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #888888;
  line-height: 1.3;
  padding-right: 30px;
}

/* ********* 施設基本情報 メイン（A・B・C共通） ************/
.facility-base-main {
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .facility-base-main {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

.facility-base-main-photos {
  width: 50%;
  /*スライダーなし1枚のみ（B・C）*/
}
@media screen and (max-width: 599px) {
  .facility-base-main-photos {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .facility-base-main-photos--mb-none {
    margin-bottom: 0;
  }
}
.facility-base-main-photos__photo-one {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.facility-base-main-photos__photo-one::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.facility-base-main-photos__photo-one img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.facility-base-main-photos__slider {
  border-radius: 6px;
  overflow: hidden;
}
.facility-base-main-photos__slider .slick-slide {
  position: relative;
}
.facility-base-main-photos__slider .slick-slide::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.facility-base-main-photos__slider .slick-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.facility-base-main-photos__thumbnail {
  margin-top: 6px;
}
.facility-base-main-photos__thumbnail .slick-track {
  margin-left: -6px;
  width: calc(100% + 12px) !important;
  transform: unset !important;
  display: flex;
  gap: 6px;
}
.facility-base-main-photos__thumbnail .slick-slide {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s;
  opacity: 0.5;
}
@media screen and (min-width: 1025px) {
  .facility-base-main-photos__thumbnail .slick-slide:hover {
    opacity: 1;
  }
}
.facility-base-main-photos__thumbnail .slick-slide::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.facility-base-main-photos__thumbnail .slick-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.facility-base-main-photos__thumbnail .slick-current {
  opacity: 1;
}
.facility-base-main-photos__more {
  margin-top: 15px;
  text-align: right;
}
.facility-base-main-photos__more > a {
  color: #f35a31;
  font-weight: 500;
  text-decoration: underline;
  padding: 2px 0 2px 29px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .facility-base-main-photos__more > a:hover {
    text-decoration: none;
  }
}
.facility-base-main-photos__more > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 23px;
  height: 23px;
  background-color: #f35a31;
  border-radius: 50px;
}
.facility-base-main-photos__more > a::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

.facility-base-main-block {
  width: 50%;
  padding-left: 30px;
}
@media screen and (max-width: 599px) {
  .facility-base-main-block {
    width: 100%;
    padding-left: 0;
  }
}
.facility-base-main-block__copy {
  margin-bottom: 26px;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .facility-base-main-block__copy {
    margin-bottom: 15px;
  }
}
.facility-base-main-block__text {
  text-align: justify;
  line-height: 1.9;
}

/* ********* コンバージョン Aクライアント用 ************/
.facility-cv-typea {
  background-color: #faedda;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typea {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typea {
    margin-bottom: 30px;
    padding: 20px 15px 30px;
  }
}

.facility-cv-typea-name {
  margin-bottom: 50px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(211, 188, 154, 0.4);
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typea-name {
    padding-bottom: 15px;
    margin-bottom: 40px;
  }
}
.facility-cv-typea-name__category {
  font-size: 1.3rem;
  color: #f35a31;
  font-weight: 600;
  background-color: #fff;
  display: inline-block;
  border-radius: 3px;
  padding: 4px 15px;
  border: 1px solid #f35a31;
  margin-right: 13px;
  margin-top: 6px;
  margin-bottom: 3px;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typea-name__category {
    margin-bottom: 5px;
  }
}
.facility-cv-typea-name__text {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typea-name__text {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-name__text {
    font-size: 2.5rem;
  }
}

.facility-cv-typea-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-btns {
    margin-bottom: 20px;
  }
}
.facility-cv-typea-btns__tel {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-btns__tel {
    width: 100%;
    text-align: center;
  }
}
.facility-cv-typea-btns__tel__text {
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 3px;
}
.facility-cv-typea-btns__tel__text span {
  color: #f35a31;
}
.facility-cv-typea-btns__request {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-btns__request {
    width: 100%;
    text-align: center;
  }
}

.facility-cv-typea-tellink {
  min-width: 270px;
  height: 100%;
  background-color: #f35a31;
  border-radius: 6px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 18px 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-tellink {
    min-width: auto;
    max-width: 270px;
    width: 100%;
    display: inline-block;
  }
}
.facility-cv-typea-tellink__number span {
  font-family: "Hind", sans-serif !important;
  font-size: 3rem;
  line-height: 1;
  padding-left: 5px;
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-tellink__number span {
    font-size: 2.8rem;
  }
}
.facility-cv-typea-tellink__time {
  display: block;
}

.facility-cv-typea-requestlink {
  min-width: 270px;
  min-height: 80px;
  height: 100%;
  background-color: #16b299;
  border-radius: 6px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 1.8rem;
  padding: 10px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .facility-cv-typea-requestlink:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-requestlink {
    min-width: auto;
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
    min-height: 70px;
    font-size: 1.7rem;
  }
}
.facility-cv-typea-requestlink::before {
  content: "";
  margin-top: -9px;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 50px;
}
.facility-cv-typea-requestlink::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  right: 21px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #16b299;
  border-top: 2px solid #16b299;
  transform: rotate(45deg);
}

.facility-cv-typea-soudan {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-soudan {
    text-align: center;
    justify-content: center;
  }
}
.facility-cv-typea-soudan__text {
  font-weight: 500;
  line-height: 1.3;
  width: 100%;
  margin-bottom: 7px;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-soudan__text {
    margin-bottom: 12px;
  }
}
.facility-cv-typea-soudan__tel {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-soudan__tel {
    width: 100%;
    margin-bottom: 14px;
  }
}
.facility-cv-typea-soudan__tel > a {
  font-size: 3.2rem;
  color: #f35a31;
  font-family: "Hind", sans-serif !important;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-left: 5px;
  margin-right: 12px;
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-soudan__tel > a {
    text-decoration: underline;
    font-size: 3rem;
  }
}
.facility-cv-typea-soudan__mail > a {
  padding: 9px 25px 9px 48px;
  background-color: #fff;
  display: block;
  font-size: 1.5rem;
  color: #222;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 6px;
  background-image: url(../img/common/icon_mail_orange.svg);
  background-repeat: no-repeat;
  background-size: 26px auto;
  background-position: left 13px top 50%;
}
@media screen and (min-width: 1025px) {
  .facility-cv-typea-soudan__mail > a:hover {
    transform: translateY(2px);
    color: #f35a31;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typea-soudan__mail > a {
    padding: 13px 25px 14px 48px;
  }
}

/* ********* コンバージョン Bクライアント用 ************/
.facility-cv-typeb {
  background-color: #faedda;
  border-radius: 15px;
  padding: 40px 40px 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typeb {
    padding: 30px 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb {
    margin-bottom: 30px;
    padding: 20px 15px 30px;
  }
}

.facility-cv-typeb-name {
  margin-bottom: 30px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(211, 188, 154, 0.4);
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typeb-name {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-name {
    margin-bottom: 20px;
  }
}
.facility-cv-typeb-name__category {
  font-size: 1.3rem;
  color: #f35a31;
  font-weight: 600;
  background-color: #fff;
  display: inline-block;
  border-radius: 3px;
  padding: 4px 15px;
  border: 1px solid #f35a31;
  margin-right: 13px;
  margin-top: 6px;
  margin-bottom: 3px;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typeb-name__category {
    margin-bottom: 5px;
  }
}
.facility-cv-typeb-name__text {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typeb-name__text {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-name__text {
    font-size: 2.5rem;
  }
}

.facility-cv-typeb-soudan {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 20px;
  padding: 20px;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-soudan {
    text-align: center;
    justify-content: center;
    border-radius: 6px;
  }
}
.facility-cv-typeb-soudan__text {
  font-weight: 500;
  line-height: 1.3;
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-soudan__text {
    margin-bottom: 12px;
  }
}
.facility-cv-typeb-soudan__tel {
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-soudan__tel {
    width: 100%;
    margin-right: 0;
    margin-bottom: 14px;
  }
}
.facility-cv-typeb-soudan__tel > a {
  font-size: 3.2rem;
  color: #f35a31;
  font-family: "Hind", sans-serif !important;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-left: 5px;
  margin-right: 12px;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-soudan__tel > a {
    text-decoration: underline;
    font-size: 3rem;
  }
}
.facility-cv-typeb-soudan__tel > span {
  font-size: 1.4rem;
  display: block;
  line-height: 1;
}
.facility-cv-typeb-soudan__mail > a {
  padding: 9px 25px 9px 48px;
  background-color: #faedda;
  display: block;
  font-size: 1.5rem;
  color: #222;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 6px;
  background-image: url(../img/common/icon_mail_orange.svg);
  background-repeat: no-repeat;
  background-size: 26px auto;
  background-position: left 13px top 50%;
}
@media screen and (min-width: 1025px) {
  .facility-cv-typeb-soudan__mail > a:hover {
    transform: translateY(2px);
    color: #f35a31;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-soudan__mail > a {
    padding: 13px 25px 14px 48px;
  }
}

.facility-cv-typeb-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-btn {
    margin-bottom: 30px;
  }
}

.facility-cv-typeb-requestlink {
  width: 100%;
  max-width: 270px;
  min-height: 80px;
  height: 100%;
  background-color: #16b299;
  border-radius: 6px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 1.8rem;
  padding: 10px;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .facility-cv-typeb-requestlink:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-requestlink {
    min-height: 70px;
    font-size: 1.7rem;
  }
}
.facility-cv-typeb-requestlink::before {
  content: "";
  margin-top: -9px;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 50px;
}
.facility-cv-typeb-requestlink::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  right: 21px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #16b299;
  border-top: 2px solid #16b299;
  transform: rotate(45deg);
}

.facility-cv-typeb-flow {
  background-color: #fff;
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-flow {
    border-radius: 6px;
  }
}
.facility-cv-typeb-flow > dt {
  background-color: #f35a31;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  padding: 12px;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-flow > dt {
    font-size: 1.6rem;
  }
}
.facility-cv-typeb-flow > dd {
  padding: 30px 40px;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typeb-flow > dd {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-flow > dd {
    padding: 20px 15px;
  }
}
.facility-cv-typeb-flow__list {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-flow__list {
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-bottom: 20px;
  }
}
.facility-cv-typeb-flow__list > li {
  width: calc((100% - 120px) / 5);
  background-color: #faedda;
  border-radius: 15px;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  padding: 20px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-flow__list > li {
    border-radius: 6px;
    width: calc((100% - 30px) / 3);
    font-size: 1.4rem;
    padding: 10px 5px;
  }
}
.facility-cv-typeb-flow__list > li::before {
  content: "";
  margin-top: -10px;
  position: absolute;
  right: -34px;
  top: 50%;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 12px;
  border-left-color: #f35a31;
  border-radius: 4px;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-flow__list > li::before {
    margin-top: -7px;
    right: -18px;
    border-width: 6px 7px;
  }
}
.facility-cv-typeb-flow__list > li:last-child::before {
  content: none;
}
.facility-cv-typeb-flow__list > li > span {
  color: #f35a31;
  font-size: 2.1rem;
  font-weight: 600;
  font-family: "Hind", sans-serif !important;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .facility-cv-typeb-flow__list > li > span {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
.facility-cv-typeb-flow__link {
  margin-top: 10px;
  text-align: right;
}
.facility-cv-typeb-flow__link > a {
  color: #f35a31;
  font-weight: 500;
  text-decoration: underline;
  padding: 2px 0 2px 29px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .facility-cv-typeb-flow__link > a:hover {
    text-decoration: none;
  }
}
.facility-cv-typeb-flow__link > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 23px;
  height: 23px;
  background-color: #f35a31;
  border-radius: 50px;
}
.facility-cv-typeb-flow__link > a::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

/* ********* コンバージョン Cクライアント用 ************/
.facility-cv-typec {
  background-color: #faedda;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typec {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typec {
    margin-bottom: 30px;
    padding: 20px 15px 30px;
  }
}

.facility-cv-typec-name {
  margin-bottom: 20px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(211, 188, 154, 0.4);
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typec-name {
    padding-bottom: 15px;
  }
}
.facility-cv-typec-name__category {
  font-size: 1.3rem;
  color: #f35a31;
  font-weight: 600;
  background-color: #fff;
  display: inline-block;
  border-radius: 3px;
  padding: 4px 15px;
  border: 1px solid #f35a31;
  margin-right: 13px;
  margin-top: 6px;
  margin-bottom: 3px;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typec-name__category {
    margin-bottom: 5px;
  }
}
.facility-cv-typec-name__text {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .facility-cv-typec-name__text {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .facility-cv-typec-name__text {
    font-size: 2.5rem;
  }
}

.facility-cv-typec-btns {
  text-align: center;
}
.facility-cv-typec-btns__text {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 3px;
}
.facility-cv-typec-btns__text span {
  color: #f35a31;
}

.facility-cv-typec-tellink {
  height: 100%;
  background-color: #f35a31;
  border-radius: 6px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 18px 30px 15px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .facility-cv-typec-tellink {
    min-width: auto;
    max-width: 270px;
    width: 100%;
    display: inline-block;
  }
}
.facility-cv-typec-tellink__number {
  font-family: "Hind", sans-serif !important;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .facility-cv-typec-tellink__number {
    font-size: 2.8rem;
  }
}
.facility-cv-typec-tellink__time {
  display: block;
}

/* ********* 施設基本情報 料金（A・B・Cクライアント共通） ************/
.facility-base-price {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .facility-base-price {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .facility-base-price {
    margin-bottom: 40px;
  }
}

.facility-base-price-data {
  border-bottom: 1px dotted #cccccc;
  padding: 17px 0;
  display: flex;
  align-items: flex-start;
}
.facility-base-price-data:first-of-type {
  border-top: 1px dotted #cccccc;
}
@media screen and (max-width: 599px) {
  .facility-base-price-data {
    flex-wrap: wrap;
  }
}
.facility-base-price-data > dt {
  width: 144px;
  background-color: #f0f0f0;
  border-radius: 3px;
  text-align: center;
  line-height: 1.4;
  padding: 3px 3px 4px;
}
@media screen and (max-width: 599px) {
  .facility-base-price-data > dt {
    width: 100%;
  }
}
.facility-base-price-data > dd {
  width: calc(100% - 144px);
  padding-left: 23px;
}
@media screen and (max-width: 599px) {
  .facility-base-price-data > dd {
    width: 100%;
    padding-left: 0;
    padding-top: 13px;
  }
}
.facility-base-price-data__detail {
  display: flex;
  flex-wrap: wrap;
}
.facility-base-price-data__detail > dt {
  width: 70px;
  margin-bottom: 5px;
}
.facility-base-price-data__detail > dd {
  width: calc(100% - 70px);
  margin-bottom: 5px;
}
.facility-base-price-data__detail > dd span {
  font-size: 2.3rem;
  color: #f35a31;
  font-weight: 700;
  line-height: 1;
  padding: 0 5px;
}
.facility-base-price-data__notice {
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

/* ********* 施設基本情報 この施設の特徴（A・B・Cクライアント共通） ************/
.facility-base-feature {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .facility-base-feature {
    margin-bottom: 50px;
  }
}
.facility-base-feature__detail {
  padding: 50px 0;
  border-top: 1px dotted #cccccc;
  border-bottom: 1px dotted #cccccc;
}
@media screen and (max-width: 599px) {
  .facility-base-feature__detail {
    padding: 40px 0 30px;
  }
}

.facility-base-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .facility-base-feature-list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .facility-base-feature-list {
    gap: 10px 8px;
    margin-bottom: 40px;
  }
}
.facility-base-feature-list > li {
  width: calc((100% - 140px) / 8);
}
@media screen and (max-width: 1024px) {
  .facility-base-feature-list > li {
    width: calc((100% - 60px) / 7);
  }
}
@media screen and (max-width: 599px) {
  .facility-base-feature-list > li {
    width: calc((100% - 24px) / 4);
  }
}
.facility-base-feature-list > li > p {
  margin-top: 9px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .facility-base-feature-list > li > p {
    margin-top: 6px;
  }
}

.facility-base-feature-photos {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .facility-base-feature-photos {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.facility-base-feature-photos > li {
  width: calc((100% - 40px) / 3);
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .facility-base-feature-photos > li {
    width: 100%;
  }
}
.facility-base-feature-photos > li::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.facility-base-feature-photos > li img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}

.facility-base-feature-explain > dt {
  margin-bottom: 13px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .facility-base-feature-explain > dt {
    font-size: 1.9rem;
  }
}
.facility-base-feature-explain > dt::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 21px;
  height: 21px;
  border-radius: 4px;
  border: 2px solid #f35a31;
}
@media screen and (max-width: 599px) {
  .facility-base-feature-explain > dt::before {
    top: 3px;
  }
}
.facility-base-feature-explain > dt::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 12px;
  border-top: 2px solid #f35a31;
  border-left: 2px solid #f35a31;
  transform: rotate(-135deg);
}
.facility-base-feature-explain > dd {
  padding-left: 30px;
  margin-bottom: 30px;
}
.facility-base-feature-explain > dd:last-of-type {
  margin-bottom: 0;
}

/* ********* 施設基本情報 施設概要（A・B・Cクライアント共通） ************/
.facility-base-overview-map {
  font-size: 1.3rem;
  color: #f35a31;
  font-weight: 500;
  display: block;
  width: 120px;
  line-height: 1.2;
  padding: 6px 20px 6px 32px;
  border: 1px solid #f35a31;
  border-radius: 3px;
  background-image: url(../img/common/pin_orange.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: left 11px top 50%;
  margin: -60px 0 30px auto;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .facility-base-overview-map:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .facility-base-overview-map {
    margin: -55px 0 30px auto;
  }
}
@media screen and (max-width: 599px) {
  .facility-base-overview-map {
    margin: 0 0 25px;
  }
}

.facility-base-overview {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .facility-base-overview {
    margin-bottom: 40px;
  }
}
.facility-base-overview tr:nth-child(odd) {
  background-color: #f3f3f3;
}
.facility-base-overview th {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 240px;
  text-align: left;
  padding: 25px;
  color: #f35a31;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .facility-base-overview th {
    width: 140px;
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-base-overview th {
    padding: 15px 4px 15px 15px;
    width: 105px;
  }
}
.facility-base-overview td {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 25px;
}
@media screen and (max-width: 1024px) {
  .facility-base-overview td {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-base-overview td {
    padding: 15px;
  }
}

.facility-base-bikou {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 25px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .facility-base-bikou {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .facility-base-bikou {
    padding: 15px;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------
facility-photo 写真
----------------------------------------------------------*/
.facility-photo-slider__main {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  transition: 0.2s;
}
.facility-photo-slider__main .prev-arrow {
  width: 40px;
  position: absolute;
  left: -60px;
  top: 50%;
  margin-top: -40px;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .facility-photo-slider__main .prev-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .facility-photo-slider__main .prev-arrow {
    left: -20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-photo-slider__main .prev-arrow {
    left: -10px;
    width: 30px;
  }
}
.facility-photo-slider__main .next-arrow {
  width: 40px;
  position: absolute;
  right: -60px;
  top: 50%;
  margin-top: -40px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .facility-photo-slider__main .next-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .facility-photo-slider__main .next-arrow {
    right: -20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-photo-slider__main .next-arrow {
    right: -10px;
    width: 30px;
  }
}
.facility-photo-slider__photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.facility-photo-slider__photo::before {
  content: "";
  display: block;
  padding-top: 66.765%;
}
.facility-photo-slider__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.facility-photo-slider__text {
  margin-top: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .facility-photo-slider__text {
    margin-top: 10px;
  }
}
.facility-photo-slider__thumbnail {
  margin-top: 35px;
  margin-bottom: 70px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f3f3f3;
  padding: 30px 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .facility-photo-slider__thumbnail {
    padding: 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .facility-photo-slider__thumbnail {
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
.facility-photo-slider__thumbnail .thumbnail-prev-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background-color: #f35a31;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .facility-photo-slider__thumbnail .thumbnail-prev-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .facility-photo-slider__thumbnail .thumbnail-prev-arrow {
    width: 40px;
  }
}
@media screen and (max-width: 599px) {
  .facility-photo-slider__thumbnail .thumbnail-prev-arrow {
    display: none !important;
  }
}
.facility-photo-slider__thumbnail .thumbnail-prev-arrow::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  left: 21px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
}
@media screen and (max-width: 1024px) {
  .facility-photo-slider__thumbnail .thumbnail-prev-arrow::after {
    left: 17px;
  }
}
.facility-photo-slider__thumbnail .thumbnail-next-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background-color: #f35a31;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .facility-photo-slider__thumbnail .thumbnail-next-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .facility-photo-slider__thumbnail .thumbnail-next-arrow {
    width: 40px;
  }
}
@media screen and (max-width: 599px) {
  .facility-photo-slider__thumbnail .thumbnail-next-arrow {
    display: none !important;
  }
}
.facility-photo-slider__thumbnail .thumbnail-next-arrow::before {
  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);
}
@media screen and (max-width: 1024px) {
  .facility-photo-slider__thumbnail .thumbnail-next-arrow::before {
    right: 17px;
  }
}
@media screen and (min-width: 1025px) {
  .facility-photo-slider__thumbnail .slick-list {
    padding: 0 1px;
  }
}
.facility-photo-slider__thumbnail .slick-slide {
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  margin: 0 3px;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .facility-photo-slider__thumbnail .slick-slide:hover {
    opacity: 0.8;
  }
}
.facility-photo-slider__thumbnail .slick-slide::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.facility-photo-slider__thumbnail .slick-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.facility-photo-slider__thumbnail .is-active-next,
.facility-photo-slider__thumbnail .slick-current {
  position: relative;
}
.facility-photo-slider__thumbnail .is-active-next::after,
.facility-photo-slider__thumbnail .slick-current::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #f35a31;
  display: block;
  border-radius: 6px;
}
.facility-photo-slider__thumbnail.no-scroll .slick-track {
  transform: none !important;
}

/*--------------------------------------------------------
facility-med 受け入れ・医療体制
----------------------------------------------------------*/
.facility-med-ukeire-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .facility-med-ukeire-list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .facility-med-ukeire-list {
    gap: 10px 8px;
  }
}
.facility-med-ukeire-list > li {
  width: calc((100% - 140px) / 8);
}
@media screen and (max-width: 1024px) {
  .facility-med-ukeire-list > li {
    width: calc((100% - 60px) / 7);
  }
}
@media screen and (max-width: 599px) {
  .facility-med-ukeire-list > li {
    width: calc((100% - 24px) / 4);
  }
}
.facility-med-ukeire-list > li > p {
  margin-top: 9px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .facility-med-ukeire-list > li > p {
    margin-top: 6px;
  }
}

/*認知症*/
.facility-med-dementia {
  border-bottom: 1px dotted #cccccc;
  padding: 17px 0;
  display: flex;
  align-items: flex-start;
}
.facility-med-dementia:first-of-type {
  border-top: 1px dotted #cccccc;
}
@media screen and (max-width: 599px) {
  .facility-med-dementia {
    flex-wrap: wrap;
  }
}
.facility-med-dementia > dt {
  width: 210px;
  background-color: #f0f0f0;
  border-radius: 3px;
  text-align: center;
  line-height: 1.4;
  padding: 3px 3px 4px;
  color: #575757;
}
@media screen and (max-width: 599px) {
  .facility-med-dementia > dt {
    width: 100%;
  }
}
.facility-med-dementia > dd {
  width: calc(100% - 144px);
  padding-left: 23px;
}
@media screen and (max-width: 599px) {
  .facility-med-dementia > dd {
    width: 100%;
    padding-left: 0;
    padding-top: 13px;
  }
}

.facility-med-taiou-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .facility-med-taiou-list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .facility-med-taiou-list {
    gap: 10px 8px;
  }
}
.facility-med-taiou-list > li {
  width: calc((100% - 140px) / 8);
}
@media screen and (max-width: 1024px) {
  .facility-med-taiou-list > li {
    width: calc((100% - 60px) / 7);
  }
}
@media screen and (max-width: 599px) {
  .facility-med-taiou-list > li {
    width: calc((100% - 24px) / 4);
  }
}
.facility-med-taiou-list > li > p {
  margin-top: 9px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .facility-med-taiou-list > li > p {
    margin-top: 6px;
  }
}

/*--------------------------------------------------------
facility-access アクセス
----------------------------------------------------------*/
.facility-access-overview {
  width: 100%;
  margin-top: 40px;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .facility-access-overview {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.facility-access-overview tr:nth-child(odd) {
  background-color: #f3f3f3;
}
.facility-access-overview th {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 240px;
  text-align: left;
  padding: 25px;
  color: #f35a31;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .facility-access-overview th {
    width: 140px;
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-access-overview th {
    padding: 15px 4px 15px 15px;
    width: 105px;
  }
}
.facility-access-overview td {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 25px;
}
@media screen and (max-width: 1024px) {
  .facility-access-overview td {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-access-overview td {
    padding: 15px;
  }
}

.facility-access-map {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .facility-access-map {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .facility-access-map {
    border-radius: 6px;
    margin-bottom: 40px;
  }
}
.facility-access-map::before {
  content: "";
  display: block;
  padding-top: 54%;
}
@media screen and (max-width: 599px) {
  .facility-access-map::before {
    padding-top: 300px;
  }
}
.facility-access-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}

/*--------------------------------------------------------
facility-report 取材レポート
----------------------------------------------------------*/
.facility-report-main {
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .facility-report-main {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

.facility-report-main-photos {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .facility-report-main-photos {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-report-main-photos--mb-none {
    margin-bottom: 0;
  }
}
.facility-report-main-photos__box {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.facility-report-main-photos__box::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.facility-report-main-photos__box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}

.facility-report-main-block {
  width: 50%;
  padding-left: 30px;
}
@media screen and (max-width: 599px) {
  .facility-report-main-block {
    width: 100%;
    padding-left: 0;
  }
}
.facility-report-main-block__copy {
  margin-bottom: 26px;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .facility-report-main-block__copy {
    margin-bottom: 15px;
  }
}
.facility-report-main-block__text {
  text-align: justify;
  line-height: 1.9;
}

/*--------------------------------------------------------
facility-reason この施設への入居の決め手
----------------------------------------------------------*/
.facility-reason-block {
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .facility-reason-block {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .facility-reason-block {
    margin-bottom: 50px;
  }
}

.facility-reason-item {
  margin-bottom: 50px;
  display: flex;
}
@media screen and (max-width: 599px) {
  .facility-reason-item {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.facility-reason-item__image {
  width: 160px;
  text-align: center;
  margin-right: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .facility-reason-item__image {
    width: 100%;
    display: flex;
    text-align: left;
    align-items: center;
    margin-bottom: 20px;
  }
  .facility-reason-item__image img {
    width: 100px;
  }
}
.facility-reason-item__image > p {
  margin-top: 16px;
}
@media screen and (max-width: 599px) {
  .facility-reason-item__image > p {
    margin-top: 0;
    padding-left: 20px;
    width: calc(100% - 100px);
    font-size: 1.7rem;
  }
}
.facility-reason-item__data {
  width: calc(100% - 200px);
  border-radius: 20px;
  box-shadow: -3px 0 20px rgba(0, 0, 0, 0.18);
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .facility-reason-item__data {
    width: 100%;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.18);
  }
}
.facility-reason-item__data::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -24px;
  border-style: solid;
  border-color: transparent;
  border-right-color: #fff;
  border-width: 8px 12px;
}
@media screen and (max-width: 599px) {
  .facility-reason-item__data::before {
    border-right-color: transparent;
    border-bottom-color: #fff;
    border-width: 12px 8px;
    top: -24px;
    left: 43px;
  }
}

/*--------------------------------------------------------
information
----------------------------------------------------------*/
.info-tab {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .info-tab {
    margin-bottom: 15px;
  }
}
.info-tab__item {
  width: calc((100% - 30px) / 4);
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .info-tab__item:hover {
    background-color: #faedda;
    color: #f35a31;
  }
}
@media screen and (max-width: 599px) {
  .info-tab__item {
    height: 48px;
    line-height: 1.2;
  }
}
.info-tab__item.active {
  background-color: #f35a31;
  color: #fff;
  pointer-events: none;
  position: relative;
}
.info-tab__item.active::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -3px;
  border-style: solid;
  border-width: 8px 6px;
  border-color: transparent;
  border-top-color: #f35a31;
}

.info-content {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .info-content {
    margin-bottom: 15px;
  }
}
.info-content__item {
  display: none;
}
.info-content__item.show {
  display: block;
}
.info-content__no-news {
  margin-top: 20px;
  margin-bottom: 60px;
  background-color: #f7f7f7;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
}

.info-item > a {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
  align-items: flex-start;
  color: #222;
}
@media screen and (min-width: 1025px) {
  .info-item > a:hover {
    opacity: 0.8;
    transform: translateX(2px);
    color: #f35a31;
  }
}
.info-item__date {
  width: 95px;
  font-size: 1.5rem;
  color: #f35a31;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .info-item__date {
    letter-spacing: 0;
  }
}
.info-item__category {
  width: 100px;
  margin-right: 20px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  border-radius: 3px;
  text-align: center;
  background-color: #efefef;
  color: #949494;
  font-weight: 500;
  padding: 6px;
  line-height: 1;
}
.info-item__text {
  width: calc(100% - 215px);
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .info-item__text {
    width: 100%;
    margin-top: 5px;
  }
}
.info-item__new {
  font-size: 1.3rem;
  color: #fd3f0c;
  font-weight: 600;
  margin-left: 10px;
}

/* ******* detail ******** */
.info-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) {
  .info-detail-title {
    padding-bottom: 22px;
    margin-bottom: 35px;
  }
}
.info-detail-title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 4px;
  border-radius: 10px;
  background-color: #f35a31;
}
.info-detail-title__date {
  font-size: 1.5rem;
  color: #f35a31;
  font-weight: 600;
  line-height: 1.5;
  display: inline-block;
  margin-right: 8px;
}
@media screen and (max-width: 599px) {
  .info-detail-title__date {
    letter-spacing: 0;
  }
}
.info-detail-title__category {
  width: 100px;
  margin-right: 10px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  border-radius: 3px;
  text-align: center;
  background-color: #efefef;
  color: #949494;
  font-weight: 500;
  padding: 6px;
  line-height: 1;
  display: inline-block;
}
.info-detail-title__new {
  font-size: 1.3rem;
  color: #fd3f0c;
  font-weight: 600;
  display: inline-block;
}
.info-detail-title__text {
  margin-top: 10px;
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .info-detail-title__text {
    font-size: 2.5rem;
  }
}

.info-detail-btn {
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}
.info-detail-btn > a {
  max-width: 250px;
  margin: 0 auto;
}

/*--------------------------------------------------------
feature
----------------------------------------------------------*/
.feature-index-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .feature-index-list {
    gap: 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .feature-index-list {
    gap: 30px 30px;
    padding: 0 15px;
  }
}

/*feature index*/
.feature-index-item {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1024px) {
  .feature-index-item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .feature-index-item {
    width: 100%;
  }
}
.feature-index-item > a {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: block;
  overflow: hidden;
  color: #222;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .feature-index-item > a:hover {
    transform: translateY(3px);
    color: #f35a31;
  }
}
@media screen and (max-width: 599px) {
  .feature-index-item > a {
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  }
}
.feature-index-item > a::before {
  content: "";
  width: 23px;
  height: 23px;
  background-color: #f35a31;
  border-radius: 20px;
  position: absolute;
  bottom: 20px;
  right: 17px;
}
@media screen and (max-width: 599px) {
  .feature-index-item > a::before {
    bottom: 10px;
    right: 10px;
  }
}
.feature-index-item > a::after {
  content: "";
  position: absolute;
  bottom: 28px;
  right: 26px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .feature-index-item > a::after {
    bottom: 18px;
    right: 19px;
  }
}
.feature-index-item__photo {
  position: relative;
}
.feature-index-item__photo::before {
  content: "";
  display: block;
  padding-top: 60%;
}
@media screen and (max-width: 599px) {
  .feature-index-item__photo::before {
    padding-top: 50%;
  }
}
.feature-index-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.feature-index-item__text-box {
  padding: 25px 25px 45px;
}
@media screen and (max-width: 599px) {
  .feature-index-item__text-box {
    padding: 20px 20px 35px;
  }
}
.feature-index-item__title {
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 600;
  background-image: url(../img/common/icon_bookmark.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: left 0 top 4px;
  padding-left: 26px;
}
@media screen and (max-width: 599px) {
  .feature-index-item__title {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }
}
.feature-index-item__text {
  font-size: 1.5rem;
}

/*feature detail*/
.feature-detail-main {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .feature-detail-main {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .feature-detail-main {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 30px;
  }
}
.feature-detail-main__photo {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .feature-detail-main__photo {
    width: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .feature-detail-main__photo::before {
    content: "";
    display: block;
    padding-top: 50%;
  }
}
.feature-detail-main__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 599px) {
  .feature-detail-main__photo img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
  }
}
.feature-detail-main__text-box {
  width: 50%;
  padding: 30px 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .feature-detail-main__text-box {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .feature-detail-main__text-box {
    width: 100%;
    padding: 0;
  }
}
.feature-detail-main__title {
  background-image: url(../img/common/icon_bookmark.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: left 0 top 13px;
  padding-left: 40px;
  font-size: 3rem;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .feature-detail-main__title {
    font-size: 2.6rem;
    padding-left: 33px;
    background-size: 20px auto;
    background-position: left 0 top 10px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 599px) {
  .feature-detail-main__title {
    font-size: 2.4rem;
    background-position: left 0 top 8px;
  }
}
.feature-detail-main__title span {
  display: inline;
  border-bottom: 4px dotted #f35a31;
}

.feature-detail-copy {
  font-size: 2.7rem;
  color: #f35a31;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .feature-detail-copy {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .feature-detail-copy {
    font-size: 2.1rem;
    margin-bottom: 15px;
  }
}

.feature-detail-head-text {
  margin-bottom: 50px;
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .feature-detail-head-text {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------
company
----------------------------------------------------------*/
.company-table {
  width: 100%;
}
.company-table tr:nth-child(odd) {
  background-color: #f3f3f3;
}
.company-table th, .company-table td {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  text-align: left;
}
.company-table th {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 240px;
  padding: 20px 35px;
  color: #f35a31;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .company-table th {
    width: 25%;
    padding: 15px 25px;
  }
}
@media screen and (max-width: 599px) {
  .company-table th {
    width: 90px;
    padding: 10px 15px;
  }
}
.company-table td {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 20px 35px 20px 0;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .company-table td {
    width: 75%;
    padding: 15px 25px 15px 0;
  }
}
@media screen and (max-width: 599px) {
  .company-table td {
    width: calc(100% - 90px);
    padding: 10px 15px 10px 0;
  }
}
.company-table__link-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .company-table__link-list {
    display: block;
  }
}
.company-table__link-list li {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  margin-right: 40px;
}
@media screen and (max-width: 599px) {
  .company-table__link-list li {
    display: block;
    padding-left: 25px;
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.company-table__link-list li:last-child {
  margin-right: 0;
}
.company-table__link-list li::before {
  content: "";
  width: 23px;
  height: 23px;
  background-color: #f35a31;
  border-radius: 30px;
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .company-table__link-list li::before {
    top: 4px;
    width: 18px;
    height: 18px;
  }
}
.company-table__link-list li.in-site-link::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .company-table__link-list li.in-site-link::after {
    left: 5px;
    width: 6px;
    height: 6px;
  }
}
.company-table__link-list li.external-link::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 5px;
  width: 13px;
  height: 10px;
  background-image: url(../img/common/icon_target_white.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .company-table__link-list li.external-link::after {
    top: 9px;
    left: 4px;
    width: 10px;
    height: 8px;
  }
}
.company-table__link-list li a {
  color: #f35a31;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media screen and (min-width: 1025px) {
  .company-table__link-list li a:hover {
    text-decoration: none;
  }
}

/*--------------------------------------------------------
privacy
----------------------------------------------------------*/
.privacy-box {
  display: flex;
  background-color: #faedda;
  border-radius: 5px;
  padding: 20px 0;
}
@media screen and (max-width: 599px) {
  .privacy-box {
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
.privacy-box__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 245px;
  border-right: 1px solid #e0cfb5;
  padding: 15px 40px;
  color: #f35a31;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .privacy-box__title {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 599px) {
  .privacy-box__title {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0cfb5;
    padding: 12px 0 10px;
    font-size: 1.7rem;
  }
}
.privacy-box__text {
  padding: 15px 40px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 1024px) {
  .privacy-box__text {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 599px) {
  .privacy-box__text {
    padding: 10px 0 12px;
  }
}

/*--------------------------------------------------------
consul
----------------------------------------------------------*/
.consul-index-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .consul-index-box {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-box {
    gap: 15px;
  }
}
.consul-index-box__text {
  width: 55%;
}
@media screen and (max-width: 599px) {
  .consul-index-box__text {
    width: 100%;
  }
}
.consul-index-box__text__title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .consul-index-box__text__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-box__text__title {
    font-size: 2.1rem;
  }
}
.consul-index-box__text__title__color {
  color: #f35a31;
}
.consul-index-box__text__title__large {
  z-index: 1;
  position: relative;
  padding: 3px;
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .consul-index-box__text__title__large {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-box__text__title__large {
    font-size: 2.8rem;
  }
}
.consul-index-box__text__title__large::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #fdd03f;
  border-radius: 2px;
}
.consul-index-box__img {
  width: calc(45% - 40px);
}
@media screen and (max-width: 599px) {
  .consul-index-box__img {
    width: 100%;
  }
}
.consul-index-box__img img {
  border-radius: 6px;
}

.consul-index-qa {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .consul-index-qa {
    gap: 20px;
  }
}
.consul-index-qa__item {
  width: calc((100% - 30px) / 2);
  background-color: #faedda;
  border-radius: 15px;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .consul-index-qa__item {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-qa__item {
    width: 100%;
    border-radius: 10px;
    padding: 20px;
  }
}
.consul-index-qa__item__title {
  position: relative;
  background-color: #fff;
  border-radius: 50px;
  padding: 20px 15px 20px 115px;
  margin-bottom: 65px;
  color: #f35a31;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .consul-index-qa__item__title {
    margin-bottom: 50px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-qa__item__title {
    padding: 15px 15px 15px 78px;
    margin-bottom: 35px;
    border-radius: 10px;
    font-size: 1.8rem;
  }
}
.consul-index-qa__item__title::before, .consul-index-qa__item__title::after {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
}
.consul-index-qa__item__title::after {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 23px;
  background-image: url(../img/consul/index/arrow.png);
}
@media screen and (max-width: 1024px) {
  .consul-index-qa__item__title::after {
    bottom: -42px;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-qa__item__title::after {
    bottom: -32px;
    width: 38px;
    height: 18px;
  }
}
.consul-index-qa__item__title::before {
  width: 90px;
  height: 100px;
  bottom: 0;
  left: 15px;
}
@media screen and (max-width: 599px) {
  .consul-index-qa__item__title::before {
    width: 60px;
    height: 70px;
    left: 6px;
  }
}
.consul-index-qa__item__title--01::before {
  background-image: url(../img/consul/index/illust01.png);
}
.consul-index-qa__item__title--02::before {
  background-image: url(../img/consul/index/illust02.png);
}
.consul-index-qa__item__title--03::before {
  background-image: url(../img/consul/index/illust03.png);
}
.consul-index-qa__item__title--04::before {
  background-image: url(../img/consul/index/illust04.png);
}
.consul-index-qa__item .text-base {
  text-align: justify;
}

.consul-index-feature {
  counter-reset: num;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .consul-index-feature {
    gap: 20px;
  }
}
.consul-index-feature__item {
  counter-increment: num;
  width: calc((100% - 30px) / 2);
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 6px rgba(198, 198, 198, 0.4);
  padding: 25px 30px;
}
@media screen and (max-width: 1024px) {
  .consul-index-feature__item {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-feature__item {
    width: 100%;
    border-radius: 10px;
    padding: 15px 20px;
  }
}
.consul-index-feature__item__title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 48px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .consul-index-feature__item__title {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-feature__item__title {
    padding-left: 40px;
    font-size: 1.9rem;
  }
}
.consul-index-feature__item__title span {
  color: #f35a31;
}
.consul-index-feature__item__title::before {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  top: -1px;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background-color: #f35a31;
  color: #fff;
  font-family: "Hind", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 40px;
}
@media screen and (max-width: 1024px) {
  .consul-index-feature__item__title::before {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-feature__item__title::before {
    width: 30px;
    height: 30px;
    font-size: 1.7rem;
    line-height: 34px;
  }
}
.consul-index-feature__item__text {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .consul-index-feature__item__text {
    font-size: 1.6rem;
  }
}

.consul-index-store {
  background-color: #faedda;
  border-radius: 20px;
  padding: 45px;
}
@media screen and (max-width: 1024px) {
  .consul-index-store {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-store {
    border-radius: 10px;
    padding: 15px;
  }
}
.consul-index-store__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .consul-index-store__inner {
    gap: 30px;
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-store__inner {
    gap: 15px;
    border-radius: 10px;
    padding: 20px;
  }
}
.consul-index-store__inner__img {
  width: 42.5%;
}
@media screen and (max-width: 1024px) {
  .consul-index-store__inner__img {
    width: 35%;
  }
}
@media screen and (max-width: 834px) {
  .consul-index-store__inner__img {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
}
.consul-index-store__inner__img img {
  border-radius: 6px;
}
.consul-index-store__inner__text {
  width: calc(57.5% - 45px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .consul-index-store__inner__text {
    width: calc(65% - 30px);
  }
}
@media screen and (max-width: 834px) {
  .consul-index-store__inner__text {
    width: 100%;
  }
}
.consul-index-store__inner__text__inner__title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 35px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .consul-index-store__inner__text__inner__title {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-store__inner__text__inner__title {
    font-size: 2rem;
  }
}
.consul-index-store__inner__text__inner__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background-color: #f35a31;
  border-radius: 10px;
}
.consul-index-store__inner__text__inner .text-base {
  text-align: justify;
}
.consul-index-store__inner__text__inner__btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.consul-index-store__inner__text__inner__btn-list__item--01 {
  width: calc(44% - 5px);
}
@media screen and (max-width: 599px) {
  .consul-index-store__inner__text__inner__btn-list__item--01 {
    width: 100%;
  }
}
.consul-index-store__inner__text__inner__btn-list__item--02 {
  width: calc(56% - 5px);
}
@media screen and (max-width: 599px) {
  .consul-index-store__inner__text__inner__btn-list__item--02 {
    width: 100%;
  }
}

.consul-index-link-area__item {
  display: block;
  background-color: #c6e3de;
  border-radius: 15px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .consul-index-link-area__item {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item {
    padding: 20px;
  }
}
.consul-index-link-area__item__title {
  margin-bottom: 25px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .consul-index-link-area__item__title {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item__title {
    margin-bottom: 15px;
    font-size: 1.9rem;
  }
}
.consul-index-link-area__item__tel {
  text-align: center;
  margin-bottom: 20px;
}
.consul-index-link-area__item__tel__number {
  color: #222;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item__tel__number {
    font-size: 1.5rem;
  }
}
.consul-index-link-area__item__tel__number > a {
  font-family: "Hind", sans-serif !important;
  font-size: 4.1rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  color: #08a189;
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item__tel__number > a {
    font-size: 3.4rem;
    margin-left: 5px;
  }
}
.consul-index-link-area__item__tel__time {
  display: block;
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item__tel__time {
    font-size: 1.5rem;
  }
}
.consul-index-link-area__item__btn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .consul-index-link-area__item__btn-list {
    max-width: 320px;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item__btn-list {
    gap: 10px;
    max-width: 280px;
  }
}
.consul-index-link-area__item__btn-list__item {
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 834px) {
  .consul-index-link-area__item__btn-list__item {
    width: 100%;
  }
}
.consul-index-link-area__item__btn-list__item__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 15px 21px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(148, 198, 189, 0.8);
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
.consul-index-link-area__item__btn-list__item__link::before, .consul-index-link-area__item__btn-list__item__link::after {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  top: 50%;
}
.consul-index-link-area__item__btn-list__item__link::before {
  transform: translateY(-50%);
  right: 15px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #08a189;
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item__btn-list__item__link::before {
    width: 18px;
    height: 18px;
  }
}
.consul-index-link-area__item__btn-list__item__link::after {
  right: 23px;
  transform: translateY(-50%) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item__btn-list__item__link::after {
    right: 22px;
    width: 5px;
    height: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .consul-index-link-area__item__btn-list__item__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .consul-index-link-area__item__btn-list__item__link {
    padding: 19px 15px 17px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item__btn-list__item__link {
    padding: 15px 15px 13px;
    font-size: 1.6rem;
  }
}
.consul-index-link-area__item__btn-list__item__link__inner {
  position: relative;
  line-height: 1.3;
}
.consul-index-link-area__item__btn-list__item__link__inner::before {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
}
.consul-index-link-area__item__btn-list__item__link__inner__small {
  font-size: 1.3rem;
}
.consul-index-link-area__item__btn-list__item__link.raiten::before, .consul-index-link-area__item__btn-list__item__link.raiten::after {
  display: none;
}
.consul-index-link-area__item__btn-list__item__link.raiten .consul-index-link-area__item__btn-list__item__link__inner {
  padding-left: 45px;
  line-height: 1.2;
}
.consul-index-link-area__item__btn-list__item__link.raiten .consul-index-link-area__item__btn-list__item__link__inner::before {
  top: 5px;
  left: 0;
  width: 35px;
  height: 32px;
  background-image: url(../img/common/icon_shop.svg);
}
@media screen and (max-width: 599px) {
  .consul-index-link-area__item__btn-list__item__link.raiten .consul-index-link-area__item__btn-list__item__link__inner::before {
    top: 3px;
  }
}

.consul-flow-flow__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #faedda;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item {
    gap: 20px;
    padding: 25px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item {
    border-radius: 10px;
    gap: 15px;
    padding: 20px;
    margin-bottom: 50px;
  }
}
.consul-flow-flow__item::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 30px;
  background-image: url(../img/consul/flow/arrow_orange.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item::before {
    bottom: -47px;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item::before {
    bottom: -37px;
    width: 50px;
    height: 23px;
  }
}
.consul-flow-flow__item__number {
  z-index: 3;
  position: absolute;
  top: -20px;
  left: 20px;
  width: 80px;
  height: 80px;
  background-color: #f35a31;
  border-radius: 40px;
  padding-top: 16px;
  color: #fff;
  font-family: "Hind", sans-serif !important;
  font-size: 3.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item__number {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item__number {
    left: 10px;
    width: 60px;
    height: 60px;
    padding-top: 14px;
    font-size: 2.4rem;
    line-height: 1;
  }
}
.consul-flow-flow__item__number span {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item__number span {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item__number span {
    font-size: 1.6rem;
  }
}
.consul-flow-flow__item__img {
  width: 30%;
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item__img {
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item__img {
    width: 100%;
    margin: 0 auto;
  }
}
.consul-flow-flow__item__img img {
  border-radius: 15px;
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item__img img {
    border-radius: 10px;
  }
}
.consul-flow-flow__item__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(70% - 30px);
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item__text {
    width: calc(65% - 20px);
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item__text {
    width: 100%;
  }
}
.consul-flow-flow__item__text__inner__title {
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item__text__inner__title {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item__text__inner__title {
    font-size: 1.9rem;
  }
}
.consul-flow-flow__item__text__inner__title span {
  color: #f35a31;
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item__text__inner .text-base {
    line-height: 1.7;
  }
}
.consul-flow-flow__item--contact {
  display: block;
  background-color: #c6e3de;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item--contact {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item--contact {
    padding: 20px;
  }
}
.consul-flow-flow__item--contact::before {
  background-image: url(../img/consul/flow/arrow_green.png);
}
.consul-flow-flow__item--contact__title {
  margin-bottom: 25px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item--contact__title {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item--contact__title {
    margin-bottom: 15px;
    font-size: 1.9rem;
  }
}
.consul-flow-flow__item--contact__btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .consul-flow-flow__item--contact__btn-list {
    max-width: 320px;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item--contact__btn-list {
    gap: 10px;
    max-width: 280px;
  }
}
.consul-flow-flow__item--contact__btn-list__item {
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 834px) {
  .consul-flow-flow__item--contact__btn-list__item {
    width: 100%;
  }
}
.consul-flow-flow__item--contact__btn-list__item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 15px 21px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(148, 198, 189, 0.8);
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item--contact__btn-list__item__link {
    padding: 19px 15px 17px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item--contact__btn-list__item__link {
    padding: 15px 15px 13px;
    font-size: 1.6rem;
  }
}
.consul-flow-flow__item--contact__btn-list__item__link__inner {
  position: relative;
  line-height: 1.2;
}
.consul-flow-flow__item--contact__btn-list__item__link__inner::before {
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
}
.consul-flow-flow__item--contact__btn-list__item__link__inner__small {
  font-size: 1.3rem;
}
@media screen and (min-width: 1025px) {
  .consul-flow-flow__item--contact__btn-list__item__link.tel a[href^="tel:"] {
    pointer-events: none;
  }
}
.consul-flow-flow__item--contact__btn-list__item__link.tel .consul-flow-flow__item--contact__btn-list__item__link__inner {
  line-height: 1;
}
.consul-flow-flow__item--contact__btn-list__item__link.tel .consul-flow-flow__item--contact__btn-list__item__link__inner .tel-number {
  display: block;
  color: #08a189;
  font-family: "Hind", sans-serif !important;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__item--contact__btn-list__item__link.tel .consul-flow-flow__item--contact__btn-list__item__link__inner .tel-number {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item--contact__btn-list__item__link.tel .consul-flow-flow__item--contact__btn-list__item__link__inner .tel-number {
    font-size: 2.8rem;
  }
}
.consul-flow-flow__item--contact__btn-list__item__link.tel .consul-flow-flow__item--contact__btn-list__item__link__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) {
  .consul-flow-flow__item--contact__btn-list__item__link.tel .consul-flow-flow__item--contact__btn-list__item__link__inner .tel-number__en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item--contact__btn-list__item__link.tel .consul-flow-flow__item--contact__btn-list__item__link__inner .tel-number__en {
    font-size: 1.7rem;
  }
}
.consul-flow-flow__item--contact__btn-list__item__link.tel .consul-flow-flow__item--contact__btn-list__item__link__inner .reception-hours {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  line-height: 1.3;
}
.consul-flow-flow__item--contact__btn-list__item__link.tel .consul-flow-flow__item--contact__btn-list__item__link__inner .reception-hours__small {
  font-size: 1.2rem;
}
@media screen and (min-width: 1025px) {
  .consul-flow-flow__item--contact__btn-list__item__link.mail:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.consul-flow-flow__item--contact__btn-list__item__link.mail .consul-flow-flow__item--contact__btn-list__item__link__inner {
  padding-left: 40px;
}
.consul-flow-flow__item--contact__btn-list__item__link.mail .consul-flow-flow__item--contact__btn-list__item__link__inner::before {
  top: 0;
  left: 0;
  width: 30px;
  height: 25px;
  background-image: url(../img/common/icon_mail.svg);
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item--contact__btn-list__item__link.mail .consul-flow-flow__item--contact__btn-list__item__link__inner::before {
    top: -2px;
  }
}
@media screen and (min-width: 1025px) {
  .consul-flow-flow__item--contact__btn-list__item__link.raiten:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.consul-flow-flow__item--contact__btn-list__item__link.raiten .consul-flow-flow__item--contact__btn-list__item__link__inner {
  padding-left: 45px;
}
.consul-flow-flow__item--contact__btn-list__item__link.raiten .consul-flow-flow__item--contact__btn-list__item__link__inner::before {
  top: 5px;
  left: 0;
  width: 35px;
  height: 32px;
  background-image: url(../img/common/icon_shop.svg);
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__item--contact__btn-list__item__link.raiten .consul-flow-flow__item--contact__btn-list__item__link__inner::before {
    top: 3px;
  }
}
.consul-flow-flow__end {
  max-width: 374px;
  width: 100%;
  background-color: #f35a31;
  border-radius: 50px;
  padding: 13px 0 15px;
  margin: 0 auto;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .consul-flow-flow__end {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-flow-flow__end {
    font-size: 1.9rem;
  }
}

/*-------------------交通アクセスページ-----------------------*/
.consul-access-about__lead {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .consul-access-about__lead {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-access-about__lead {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.consul-access-about__lead span {
  color: #f35a31;
}
.consul-access-about__text {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .consul-access-about__text {
    text-align: justify;
    font-size: 1.7rem;
  }
}

.consul-access-traffic__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .consul-access-traffic__table {
    margin-bottom: 40px;
  }
}
.consul-access-traffic__table tr:nth-child(odd) {
  background-color: #faedda;
}
.consul-access-traffic__table th {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 140px;
  text-align: left;
  font-weight: 600;
  padding: 25px 25px 28px;
  color: #f35a31;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .consul-access-traffic__table th {
    width: 110px;
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .consul-access-traffic__table th {
    padding: 15px 4px 15px 15px;
    width: 70px;
  }
}
.consul-access-traffic__table td {
  font-size: 1.8rem;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 25px 25px 28px;
}
@media screen and (max-width: 1024px) {
  .consul-access-traffic__table td {
    padding: 20px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-access-traffic__table td {
    padding: 15px;
    font-size: 1.6rem;
  }
}
.consul-access-traffic__table td .caution {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.6rem;
}
.consul-access-traffic__method__item {
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  padding: 10px 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .consul-access-traffic__method__item {
    flex-wrap: wrap;
    padding: 15px 0 15px 60px;
  }
}
.consul-access-traffic__method__item:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.consul-access-traffic__method__item::before, .consul-access-traffic__method__item::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  border-radius: 50%;
  left: 0;
  top: calc(50% - 23px);
}
.consul-access-traffic__method__item::before {
  background-color: #faedda;
}
.consul-access-traffic__method__item::after {
  background-position: center;
  background-repeat: no-repeat;
}
.consul-access-traffic__method__item.train::after {
  background-image: url(../img/consul/access/icon_train.svg);
  background-size: 19px auto;
}
.consul-access-traffic__method__item.tika::after {
  background-image: url(../img/consul/access/icon_tika.svg);
  background-size: 20px auto;
}
.consul-access-traffic__method__item.bus::after {
  background-image: url(../img/consul/access/icon_bus.svg);
  background-size: 29px auto;
}
.consul-access-traffic__method__item p {
  line-height: 1.4;
}
.consul-access-traffic__method__item__title {
  width: 290px;
  padding: 14px 20px 14px 58px;
  border-right: 1px solid #e5e5e5;
}
@media screen and (max-width: 599px) {
  .consul-access-traffic__method__item__title {
    width: 100%;
    padding: 0;
    border-right: none;
    font-weight: 600;
  }
}
.consul-access-traffic__method__item__text {
  width: calc(100% - 290px);
  color: #222;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 599px) {
  .consul-access-traffic__method__item__text {
    width: 100%;
    padding: 0;
  }
}

.consul-access-shop__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .consul-access-shop__list {
    flex-wrap: wrap;
  }
}
.consul-access-shop__list__item {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1024px) {
  .consul-access-shop__list__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .consul-access-shop__list__item {
    width: 100%;
  }
  .consul-access-shop__list__item:first-child {
    margin-bottom: 25px;
  }
}
.consul-access-shop__list__item__img {
  margin-bottom: 21px;
}
@media screen and (max-width: 1024px) {
  .consul-access-shop__list__item__img {
    margin-bottom: 17px;
  }
}
.consul-access-shop__list__item__img img {
  border-radius: 6px;
}
.consul-access-shop__list__item__img.ill {
  border: 1px solid #d0d0d0;
  border-radius: 6px;
}
.consul-access-map__inner {
  width: 100%;
}
.consul-access-map__inner iframe {
  width: 100%;
  height: 550px;
}
@media screen and (max-width: 1024px) {
  .consul-access-map__inner iframe {
    height: 450px;
  }
}
@media screen and (max-width: 599px) {
  .consul-access-map__inner iframe {
    height: 64vw;
  }
}

/*--------------------------------------------------------
interview
----------------------------------------------------------*/
.interview-index-list {
  box-shadow: 0px 0px 10px 6px rgba(198, 198, 198, 0.4);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .interview-index-list {
    box-shadow: 0px 0px 5px 3px rgba(198, 198, 198, 0.6);
  }
}
.interview-index-list:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .interview-index-list {
    transition: 0.5s;
  }
  .interview-index-list:hover {
    transform: translateY(3px);
  }
}
.interview-index-list__link {
  display: flex;
  flex-wrap: wrap;
  color: #222;
}
.interview-index-list__img {
  position: relative;
  width: 41.4%;
  /*height: 100%;*/
}
@media screen and (max-width: 599px) {
  .interview-index-list__img {
    width: 100%;
    height: 46vw;
  }
}
.interview-index-list__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 599px) {
  .interview-index-list__img::before {
    background-position: top -10px center;
  }
}
.interview-index-list__img--01::before {
  background-image: url(../img/interview/index01.jpg);
}
.interview-index-list__img--02::before {
  background-image: url(../img/interview/index02.jpg);
}
.interview-index-list__text {
  position: relative;
  width: 58.6%;
  padding: 45px 45px 85px 45px;
}
@media screen and (max-width: 1024px) {
  .interview-index-list__text {
    padding: 35px 35px 65px 35px;
  }
}
@media screen and (max-width: 599px) {
  .interview-index-list__text {
    width: 100%;
    padding: 20px 20px 60px 20px;
  }
}
.interview-index-list__text__sub-title {
  margin-bottom: 8px;
  color: #f35a31;
  font-family: "Hind", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .interview-index-list__text__sub-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-index-list__text__sub-title {
    font-size: 1.4rem;
  }
}
.interview-index-list__text__sub-title span {
  margin-left: 7px;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .interview-index-list__text__sub-title span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-index-list__text__sub-title span {
    font-size: 2.2rem;
  }
}
.interview-index-list__text__title {
  border-bottom: 1px solid #dedede;
  padding-bottom: 24px;
  margin-bottom: 30px;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .interview-index-list__text__title {
    padding-bottom: 24px;
    margin-bottom: 25px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-index-list__text__title {
    padding-bottom: 14px;
    margin-bottom: 15px;
    font-size: 1.9rem;
  }
}
.interview-index-list__text__company {
  display: inline-block;
  border: solid 1px #f35a31;
  border-radius: 3px;
  padding: 3px 50px 4px;
  margin-bottom: 8px;
  color: #f35a31;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .interview-index-list__text__company {
    padding: 3px 30px 4px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-index-list__text__company {
    padding: 3px 15px 4px;
    font-size: 1.4rem;
  }
}
.interview-index-list__text__name {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .interview-index-list__text__name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-index-list__text__name {
    font-size: 1.5rem;
  }
}
.interview-index-list__text__name span {
  margin: 0 5px 0 12px;
  font-size: 2.1rem;
}
@media screen and (max-width: 1024px) {
  .interview-index-list__text__name span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-index-list__text__name span {
    font-size: 1.6rem;
  }
}
.interview-index-list__text__btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.interview-index-list__text__btn__link {
  display: inline-block;
  transition: 0.5s;
  background-color: #555555;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 7px 50px 8px;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .interview-index-list__text__btn__link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-index-list__text__btn__link {
    font-size: 1.3rem;
  }
}
.interview-index-list__text__btn__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (min-width: 1025px) {
  .interview-index-list__text__btn__link:hover {
    background-color: #f35a31;
  }
}

.interview-detail-lead {
  position: relative;
  background-color: #f6f6f6;
  border-radius: 20px;
  overflow: hidden;
}
.interview-detail-lead__img {
  position: relative;
  width: 100%;
}
.interview-detail-lead__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 50% right 0;
}
@media screen and (max-width: 1300px) {
  .interview-detail-lead__img::before {
    width: 35vw;
  }
}
@media screen and (max-width: 1024px) {
  .interview-detail-lead__img::before {
    width: 44vw;
  }
}
.interview-detail-lead__img--01 {
  height: 37vh;
}
@media screen and (max-width: 1024px) {
  .interview-detail-lead__img--01 {
    height: 31.5vw;
  }
}
@media screen and (max-width: 834px) {
  .interview-detail-lead__img--01 {
    height: 42vw;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-lead__img--01 {
    height: 50vw;
  }
}
.interview-detail-lead__img--01::before {
  background-image: url(../img/interview/interview01_lead.jpg);
}
@media screen and (max-width: 834px) {
  .interview-detail-lead__img--01::before {
    width: 52vw;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-lead__img--01::before {
    width: 100%;
    background-position: top 0 center;
  }
}
.interview-detail-lead__img--02 {
  height: 41vh;
}
@media screen and (max-width: 1024px) {
  .interview-detail-lead__img--02 {
    height: 35vw;
  }
}
@media screen and (max-width: 834px) {
  .interview-detail-lead__img--02 {
    height: 41.5vw;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-lead__img--02 {
    height: 50vw;
  }
}
.interview-detail-lead__img--02::before {
  background-image: url(../img/interview/interview02_lead.jpg);
}
@media screen and (max-width: 834px) {
  .interview-detail-lead__img--02::before {
    width: 48vw;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-lead__img--02::before {
    width: 100%;
    background-position: top -15px center;
  }
}
.interview-detail-lead__text {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  width: 525px;
  background-color: #f35a31;
  border-radius: 15px;
  padding: 40px 50px 43px;
  color: #fff;
}
@media screen and (max-width: 1300px) {
  .interview-detail-lead__text {
    width: 43vw;
    padding: 3vw 4vw 3.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .interview-detail-lead__text {
    right: 40px;
    width: 54vw;
    padding: 30px 40px 33px;
  }
}
@media screen and (max-width: 834px) {
  .interview-detail-lead__text {
    padding: 20px 30px 23px;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-lead__text {
    position: inherit;
    width: 100%;
    top: auto;
    right: auto;
    bottom: 0;
    transform: translateY(0);
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding: 15px 20px 18px;
  }
}
.interview-detail-lead__text__title {
  margin-bottom: 20px;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1300px) {
  .interview-detail-lead__text__title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .interview-detail-lead__text__title {
    margin-bottom: 25px;
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-lead__text__title {
    margin-bottom: 15px;
    font-size: 1.9rem;
  }
}
.interview-detail-lead__text__company {
  display: inline-block;
  background-color: #fff;
  border-radius: 3px;
  padding: 2px 45px 4px;
  margin-bottom: 7px;
  color: #f35a31;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .interview-detail-lead__text__company {
    padding: 3px 30px 4px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-lead__text__company {
    padding: 3px 15px 4px;
    font-size: 1.4rem;
  }
}
.interview-detail-lead__text__name {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .interview-detail-lead__text__name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-lead__text__name {
    font-size: 1.5rem;
  }
}
.interview-detail-lead__text__name span {
  margin: 0 5px 0 12px;
  font-size: 2.1rem;
}
@media screen and (max-width: 1024px) {
  .interview-detail-lead__text__name span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-lead__text__name span {
    font-size: 1.6rem;
  }
}

.interview-detail-flow__img {
  width: 37%;
  float: left;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 45px 35px 0;
}
@media screen and (max-width: 1024px) {
  .interview-detail-flow__img {
    margin: 0 35px 25px 0;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-flow__img {
    width: 100%;
    float: none;
    margin: 0 0 10px;
  }
}
.interview-detail-flow__img span {
  display: block;
  background-color: #f6f6f6;
  padding: 10px 15px 11px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}
.interview-detail-flow__img--img-right {
  float: right;
  margin: 0 0 35px 45px;
}
@media screen and (max-width: 1024px) {
  .interview-detail-flow__img--img-right {
    margin: 0 0 25px 35px;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-flow__img--img-right {
    float: none;
    margin: 0 0 10px;
  }
}

.interview-detail-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .interview-detail-box {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-box {
    gap: 15px;
  }
}
.interview-detail-box__item {
  width: calc((100% - 40px) / 2);
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 6px rgba(167, 167, 167, 0.16);
  padding: 20px 20px 60px;
}
@media screen and (max-width: 1024px) {
  .interview-detail-box__item {
    width: calc((100% - 30px) / 2);
    padding: 20px 20px 50px;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-box__item {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 3px rgba(167, 167, 167, 0.3);
    padding: 20px 20px 15px;
  }
}
.interview-detail-box__item__title {
  position: relative;
  background-color: #f35a31;
  border-radius: 30px;
  padding: 10px 15px;
  margin-bottom: 35px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .interview-detail-box__item__title {
    margin-bottom: 30px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-box__item__title {
    padding: 7px 10px;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
.interview-detail-box__item__title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 15px;
  background-color: #f35a31;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.interview-detail-box__item__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .interview-detail-box__item__text {
    font-size: 1.95rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-box__item__text {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.interview-detail-box__item__text--fs02 {
  font-size: 1.8rem;
  line-height: 1.9;
}
@media screen and (max-width: 1024px) {
  .interview-detail-box__item__text--fs02 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-box__item__text--fs02 {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.interview-detail-facility-list__item {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  background-color: #faedda;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .interview-detail-facility-list__item {
    gap: 30px;
    padding: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-facility-list__item {
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
  }
}
.interview-detail-facility-list__item__img {
  width: 30%;
}
@media screen and (max-width: 599px) {
  .interview-detail-facility-list__item__img {
    width: 100%;
  }
}
.interview-detail-facility-list__item__img img {
  border-radius: 6px;
}
.interview-detail-facility-list__item__text {
  display: flex;
  align-items: center;
  width: calc(70% - 50px);
}
@media screen and (max-width: 599px) {
  .interview-detail-facility-list__item__text {
    width: 100%;
  }
}
.interview-detail-facility-list__item__text__inner {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .interview-detail-facility-list__item__text__inner .base-title03 {
    margin-bottom: 30px;
  }
}
.interview-detail-facility-list__item__text__inner__address {
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .interview-detail-facility-list__item__text__inner__address {
    margin-bottom: 5px;
  }
}
.interview-detail-facility-list__item__text__inner__tel {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .interview-detail-facility-list__item__text__inner__tel {
    margin-bottom: 15px;
  }
}
.interview-detail-facility-list__item__text__inner__tel__en {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.8;
}
.interview-detail-facility-list__item__text__inner__tel__number {
  margin: 0 12px 0 6px;
  font-family: "Hind", sans-serif !important;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .interview-detail-facility-list__item__text__inner__tel__number {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-facility-list__item__text__inner__tel__number {
    font-size: 2.8rem;
  }
}
.interview-detail-facility-list__item__text__inner__tel__number__link {
  color: #f35a31;
}
@media screen and (min-width: 1025px) {
  .interview-detail-facility-list__item__text__inner__tel__number__link a[href^="tel:"] {
    pointer-events: none;
  }
}
.interview-detail-facility-list__item__text__inner__tel__time {
  position: relative;
  top: -5px;
  background-color: #fff;
  border-radius: 3px;
  padding: 0 7px 1px;
  color: #777777;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .interview-detail-facility-list__item__text__inner__tel__time {
    display: inline-block;
    margin-top: 10px;
  }
}
.interview-detail-facility-list__item__text__inner__btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .interview-detail-facility-list__item__text__inner__btn-list {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .interview-detail-facility-list__item__text__inner__btn-list {
    gap: 10px;
  }
}
.interview-detail-facility-list__item__text__inner__btn-list > li {
  width: calc((100% - 25px) / 2);
}
@media screen and (max-width: 834px) {
  .interview-detail-facility-list__item__text__inner__btn-list > li {
    width: 100%;
  }
}
.interview-detail-facility-list__item__text__inner__btn-list > li .btn-base {
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .interview-detail-facility-list__item__text__inner__btn-list > li .btn-base {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-detail-facility-list__item__text__inner__btn-list > li .btn-base {
    font-size: 1.5rem;
  }
}

.interview-detail-back-btn {
  width: 210px;
  margin: 0 auto;
}

/*--------------------------------------------------------
msw
----------------------------------------------------------*/
.msw-lead {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.msw-lead__img {
  position: relative;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 1400px) {
  .msw-lead__img {
    height: 27vw;
  }
}
@media screen and (max-width: 1024px) {
  .msw-lead__img {
    height: 33vw;
  }
}
@media screen and (max-width: 599px) {
  .msw-lead__img {
    height: 45vw;
  }
}
.msw-lead__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/msw/lead.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom 0 left 0;
}
@media screen and (max-width: 599px) {
  .msw-lead__img::before {
    width: 173vw;
    background-position: bottom -8vw left 0;
  }
}
.msw-lead__text {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 470px;
  background-color: #12a6d6;
  border-radius: 15px;
  padding: 35px 45px;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .msw-lead__text {
    right: 30px;
    width: 32vw;
    padding: 1.8vw 2.5vw 2.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .msw-lead__text {
    width: 39vw;
  }
}
@media screen and (max-width: 834px) {
  .msw-lead__text {
    width: 40vw;
  }
}
@media screen and (max-width: 599px) {
  .msw-lead__text {
    position: inherit;
    width: 100%;
    top: auto;
    right: auto;
    bottom: 0;
    transform: translateY(0);
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding: 12px 15px 15px;
  }
}
.msw-lead__text::before {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 33px;
  width: 45px;
  height: 33px;
  background-image: url(../img/msw/lead_fukidashi.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .msw-lead__text::before {
    bottom: -22px;
    width: 35px;
    height: 26px;
  }
}
@media screen and (max-width: 834px) {
  .msw-lead__text::before {
    bottom: -18px;
  }
}
@media screen and (max-width: 599px) {
  .msw-lead__text::before {
    transform: scale(1, -1);
    top: -18px;
    right: 4vw;
    bottom: auto;
    left: auto;
  }
}
.msw-lead__text__01 {
  margin-bottom: 15px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .msw-lead__text__01 {
    margin-bottom: 1vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .msw-lead__text__01 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 599px) {
  .msw-lead__text__01 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.msw-lead__text__02 {
  background-color: #fff;
  border-radius: 6px;
  padding: 12px 15px;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .msw-lead__text__02 {
    padding: 0.9vw 1vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 1024px) {
  .msw-lead__text__02 {
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 599px) {
  .msw-lead__text__02 {
    padding: 8px 10px 10px;
    font-size: 1.6rem;
  }
}
.msw-lead__text__02__color {
  z-index: 1;
  position: relative;
  padding: 0 4px;
  color: #12a6d6;
}
.msw-lead__text__02__color::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #d8edf4;
  border-radius: 2px;
}

.msw-worry__title {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .msw-worry__title {
    margin-bottom: 20px;
  }
}
.msw-worry__title__inner {
  position: relative;
  display: inline-block;
  padding-left: 80px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .msw-worry__title__inner {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .msw-worry__title__inner {
    padding-left: 60px;
    font-size: 1.9rem;
    line-height: 1.5;
  }
}
.msw-worry__title__inner__color {
  color: #079aca;
}
.msw-worry__title__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 70px;
  height: 86px;
  background-image: url(../img/msw/worry_illust.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .msw-worry__title__inner::before {
    width: 50px;
    height: 61px;
  }
}
.msw-worry__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.msw-worry__list__item {
  position: relative;
  width: calc((100% - 10px) / 2);
  background-color: #d8edf4;
  border-radius: 6px;
  padding: 14px 15px 15px 43px;
  font-size: 1.7rem;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .msw-worry__list__item {
    padding: 14px 15px 15px 38px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .msw-worry__list__item {
    width: 100%;
    padding: 11px 15px 11px 32px;
    font-size: 1.5rem;
  }
}
.msw-worry__list__item::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 25px;
  width: 10px;
  height: 10px;
  background-color: #079aca;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .msw-worry__list__item::before {
    top: 22px;
    left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .msw-worry__list__item::before {
    top: 17px;
    left: 15px;
  }
}

.msw-introduction__title {
  margin-bottom: 5px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .msw-introduction__title {
    margin-bottom: 10px;
  }
}
.msw-introduction__title span {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .msw-introduction__title span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .msw-introduction__title span {
    padding: 0 20px;
    font-size: 1.9rem;
    line-height: 1.5;
  }
}
.msw-introduction__title span::before, .msw-introduction__title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .msw-introduction__title span::before, .msw-introduction__title span::after {
    width: 15px;
    height: 28px;
  }
}
.msw-introduction__title span::before {
  left: 0;
  background-image: url(../img/msw/introduction_dec01.png);
}
.msw-introduction__title span::after {
  right: 0;
  background-image: url(../img/msw/introduction_dec02.png);
}
.msw-introduction__sub-title {
  text-align: center;
}
.msw-introduction__sub-title span {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  color: #079aca;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .msw-introduction__sub-title span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .msw-introduction__sub-title span {
    padding: 0 25px;
    font-size: 1.7rem;
    line-height: 1.5;
  }
}
.msw-introduction__sub-title span::before, .msw-introduction__sub-title span::after {
  content: "－";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #079aca;
}
.msw-introduction__sub-title span::before {
  left: 0;
}
.msw-introduction__sub-title span::after {
  right: 0;
}
.msw-introduction__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .msw-introduction__list {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .msw-introduction__list {
    gap: 15px;
  }
}
.msw-introduction__list__item {
  width: calc((100% - 30px) / 2);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 6px rgba(198, 198, 198, 0.4);
}
@media screen and (max-width: 1024px) {
  .msw-introduction__list__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .msw-introduction__list__item {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .msw-introduction__list__item {
    border-radius: 10px;
  }
}
.msw-introduction__list__item__title {
  background-color: #12a6d6;
  padding: 15px 15px;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .msw-introduction__list__item__title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .msw-introduction__list__item__title {
    padding: 12px 15px;
    font-size: 1.8rem;
  }
}
.msw-introduction__list__item__main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #fff;
  padding: 25px 30px 30px;
}
@media screen and (max-width: 599px) {
  .msw-introduction__list__item__main {
    gap: 15px;
    padding: 20px 25px 25px;
  }
}
.msw-introduction__list__item__main__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
}
@media screen and (max-width: 599px) {
  .msw-introduction__list__item__main__img {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
}
.msw-introduction__list__item__main__text {
  width: calc(100% - 200px);
}
@media screen and (max-width: 599px) {
  .msw-introduction__list__item__main__text {
    width: 100%;
  }
}
.msw-introduction__list__item__main__text__title {
  margin-bottom: 10px;
  color: #079aca;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .msw-introduction__list__item__main__text__title {
    font-size: 1.7rem;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .msw-introduction__list__item__main__text__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.msw-introduction__list__item__main__text__list__item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
  font-size: 1.7rem;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .msw-introduction__list__item__main__text__list__item {
    padding-left: 15px;
    margin-right: 15px;
    font-size: 1.6rem;
  }
}
.msw-introduction__list__item__main__text__list__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .msw-introduction__list__item__main__text__list__item:last-child {
    margin-right: 0;
  }
}
.msw-introduction__list__item__main__text__list__item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #079aca;
}
@media screen and (max-width: 599px) {
  .msw-introduction .text-right {
    text-align: left;
  }
}

.msw-flow__box {
  background-color: #d8edf4;
  border-radius: 15px;
  padding: 50px 40px 40px;
}
@media screen and (max-width: 1024px) {
  .msw-flow__box {
    padding: 30px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .msw-flow__box {
    padding: 30px 20px 20px;
  }
}
.msw-flow__box__step {
  counter-reset: number 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .msw-flow__box__step {
    margin-bottom: 25px;
  }
}
.msw-flow__box__step__item {
  position: relative;
  width: calc((100% - 60px) / 3);
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 20px 20px;
}
@media screen and (max-width: 1024px) {
  .msw-flow__box__step__item {
    padding: 40px 15px 15px;
  }
}
@media screen and (max-width: 599px) {
  .msw-flow__box__step__item {
    padding: 35px 15px 15px;
    width: 100%;
  }
}
.msw-flow__box__step__item::before, .msw-flow__box__step__item::after {
  position: absolute;
}
.msw-flow__box__step__item::before {
  counter-increment: number 1;
  content: "STEP." counter(number);
  top: 10px;
  left: 20px;
  color: #12a6d6;
  font-family: "Hind", sans-serif !important;
  font-size: 2.1rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .msw-flow__box__step__item::before {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .msw-flow__box__step__item::before {
    font-size: 1.9rem;
  }
}
.msw-flow__box__step__item::after {
  content: "";
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  width: 16px;
  height: 25px;
  background-image: url(../img/msw/arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .msw-flow__box__step__item::after {
    top: auto;
    right: auto;
    bottom: -37px;
    left: 50%;
    transform: rotate(90deg) translateX(-50%);
  }
}
.msw-flow__box__step__item:last-child::after {
  display: none;
}
.msw-flow__box__step__item__img {
  display: flex;
  justify-content: center;
  align-items: end;
  max-width: 200px;
  width: 100%;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  .msw-flow__box__step__item__img {
    margin-bottom: 10px;
  }
}
.msw-flow__box__step__item__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .msw-flow__box__step__item__text {
    font-size: 1.6rem;
  }
}
.msw-flow__box__title {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .msw-flow__box__title {
    margin-bottom: 15px;
  }
}
.msw-flow__box__title span {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  margin: 0 auto;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .msw-flow__box__title span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .msw-flow__box__title span {
    font-size: 1.9rem;
  }
}
.msw-flow__box__title span::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #12a6d6;
  border-radius: 1.5px;
}
.msw-flow__box .text-base {
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .msw-flow__box .text-base {
    line-height: 1.7;
  }
}

.msw-support__box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .msw-support__box {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .msw-support__box {
    gap: 15px;
  }
}
.msw-support__box__img {
  width: 42%;
}
@media screen and (max-width: 1024px) {
  .msw-support__box__img {
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  .msw-support__box__img {
    width: 100%;
  }
}
.msw-support__box__img img {
  border-radius: 6px;
}
.msw-support__box__text {
  width: calc(58% - 50px);
}
@media screen and (max-width: 1024px) {
  .msw-support__box__text {
    width: calc(65% - 30px);
  }
}
@media screen and (max-width: 599px) {
  .msw-support__box__text {
    width: 100%;
  }
}
.msw-support__box__text__title {
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .msw-support__box__text__title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .msw-support__box__text__title {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.msw-support__box__text__title__blue {
  color: #079aca;
}
.msw-support__box__text .text-base {
  text-align: justify;
}

/*--------------------------------------------------------
ガイドブック
----------------------------------------------------------*/
.book-top-wrapper {
  display: flex;
}
@media screen and (max-width: 834px) {
  .book-top-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.book-top-wrapper__img {
  max-width: 500px;
  margin-right: 50px;
}
@media screen and (max-width: 1300px) {
  .book-top-wrapper__img {
    max-width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .book-top-wrapper__img {
    max-width: 350px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 834px) {
  .book-top-wrapper__img {
    max-width: 450px;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .book-top-wrapper__img {
    margin-bottom: 30px;
  }
}
.book-top-wrapper__img img {
  border-radius: 5px;
}
.book-top-wrapper__text-wrapper {
  width: calc(100% - 550px);
  margin-top: -7px;
}
@media screen and (max-width: 1300px) {
  .book-top-wrapper__text-wrapper {
    width: calc(100% - 450px);
  }
}
@media screen and (max-width: 1024px) {
  .book-top-wrapper__text-wrapper {
    width: calc(100% - 390px);
  }
}
@media screen and (max-width: 834px) {
  .book-top-wrapper__text-wrapper {
    width: 100%;
  }
}
.book-top-wrapper__text-wrapper__btn {
  max-width: 260px;
  margin-top: 34px;
}
@media screen and (max-width: 834px) {
  .book-top-wrapper__text-wrapper__btn {
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .book-top-wrapper__text-wrapper__btn {
    margin-top: 25px;
  }
}

/*-------------------------------------------------*/
.book-new__inner {
  background-color: #f3f3f3;
  padding: 50px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .book-new__inner {
    padding: 40px;
  }
}
@media screen and (max-width: 834px) {
  .book-new__inner {
    padding: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .book-new__inner {
    padding: 20px;
  }
}
.book-new__inner__img {
  width: 270px;
  height: auto;
  display: flex;
  margin-right: 50px;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .book-new__inner__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .book-new__inner__img {
    margin-bottom: 20px;
  }
}
.book-new__inner__img img {
  width: 188px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .book-new__inner__img img {
    width: 150px;
  }
}
.book-new__inner__text-wrapper {
  width: calc(100% - 320px);
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper {
    margin-top: -6px;
  }
}
@media screen and (max-width: 834px) {
  .book-new__inner__text-wrapper {
    width: 100%;
  }
}
.book-new__inner__text-wrapper__title {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__title {
    font-size: 2.2rem;
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 834px) {
  .book-new__inner__text-wrapper__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .book-new__inner__text-wrapper__title {
    font-size: 1.7rem;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
}
.book-new__inner__text-wrapper__title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 38px;
  height: 3px;
  background-color: #f35a31;
  border-radius: 10px;
}
.book-new__inner__text-wrapper__price {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .book-new__inner__text-wrapper__price {
    margin-bottom: 10px;
  }
}
.book-new__inner__text-wrapper__price .price {
  font-family: "Hind", sans-serif !important;
  font-size: 5rem;
  font-weight: 600;
  color: #f35a31;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__price .price {
    font-size: 4.3rem;
  }
}
@media screen and (max-width: 599px) {
  .book-new__inner__text-wrapper__price .price {
    font-size: 3.3rem;
  }
}
.book-new__inner__text-wrapper__price .small-text {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.9rem;
  color: #222;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__price .small-text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .book-new__inner__text-wrapper__price .small-text {
    font-size: 1.5rem;
  }
}
.book-new__inner__text-wrapper__price .small-text.kakaku {
  margin-top: -5px;
  margin-right: 12px;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__price .small-text.kakaku {
    margin-top: -7px;
  }
}
@media screen and (max-width: 599px) {
  .book-new__inner__text-wrapper__price .small-text.kakaku {
    margin-top: -5px;
    margin-right: 6px;
  }
}
.book-new__inner__text-wrapper__price .small-text.tani {
  margin-top: 5px;
  margin-left: 2px;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__price .small-text.tani {
    margin-top: 3px;
  }
}
.book-new__inner__text-wrapper__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px 10px 0;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .book-new__inner__text-wrapper__list {
    margin-bottom: 20px;
  }
}
.book-new__inner__text-wrapper__list__item {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #222;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .book-new__inner__text-wrapper__list__item {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .book-new__inner__text-wrapper__list__item {
    font-size: 1.4rem;
  }
}
.book-new__inner__text-wrapper__list__item.item01 {
  margin-right: 80px;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__list__item.item01 {
    margin-right: 50px;
  }
}
.book-new__inner__text-wrapper__list__item .bg-orange {
  padding: 6px 10px 7px;
  margin-right: 13px;
  background-color: #f35a31;
  border-radius: 5px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__list__item .bg-orange {
    padding: 3px 7px 6px;
    margin-right: 10px;
  }
}
.book-new__inner__text-wrapper__list__item .bg-orange span {
  color: #fff;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.book-new__inner__text-wrapper__list__item .bg-orange .tokusyu {
  font-size: 1.4rem;
  margin-top: 4px;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__list__item .bg-orange .tokusyu {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .book-new__inner__text-wrapper__list__item .bg-orange .tokusyu {
    font-size: 1.2rem;
  }
}
.book-new__inner__text-wrapper__list__item .bg-orange .number {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__list__item .bg-orange .number {
    font-size: 1.8rem;
  }
}
.book-new__inner__text-wrapper__pdf-btn {
  display: flex;
  align-items: center;
  max-width: 290px;
  width: 100%;
  background-color: #555;
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  padding: 16px 40px 19px 47px;
  border-radius: 6px;
  position: relative;
  background-image: url(../img/common/icon_pdf.svg);
  background-position: left 12px center;
  background-size: 25px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .book-new__inner__text-wrapper__pdf-btn {
    font-size: 1.5rem;
    background-size: 23px auto;
    padding: 16px 40px 19px 44px;
  }
}
@media screen and (max-width: 599px) {
  .book-new__inner__text-wrapper__pdf-btn {
    font-size: 1.4rem;
    background-size: 20px auto;
    padding: 16px 40px 19px 41px;
    max-width: 260px;
  }
}
@media screen and (min-width: 1025px) {
  .book-new__inner__text-wrapper__pdf-btn:hover {
    transform: translateY(2px);
  }
}
.book-new__inner__text-wrapper__pdf-btn::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
}
.book-new__inner__text-wrapper__pdf-btn::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 21px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  transform: rotate(45deg);
}

.book-backnumber__list {
  display: flex;
  flex-wrap: wrap;
}
.book-backnumber__list__item {
  width: calc((100% - 50px) / 3);
  background-color: #f3f3f3;
  padding: 25px;
  border-radius: 5px;
  margin-right: 25px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}
.book-backnumber__list__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item {
    width: calc((100% - 40px) / 3);
    padding: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .book-backnumber__list__item {
    width: calc((100% - 20px) / 2);
  }
  .book-backnumber__list__item:nth-child(3n) {
    margin-right: 20px;
  }
  .book-backnumber__list__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .book-backnumber__list__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .book-backnumber__list__item:nth-child(3n) {
    margin-right: 0;
  }
  .book-backnumber__list__item:nth-child(2n) {
    margin-right: 0;
  }
}
.book-backnumber__list__item__img {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__img {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 599px) {
  .book-backnumber__list__item__img {
    margin-bottom: 15px;
  }
}
.book-backnumber__list__item__img img {
  display: inline-block;
  max-width: 160px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__img img {
    max-width: 140px;
  }
}
.book-backnumber__list__item__title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.2rem;
  color: #f35a31;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-bottom: 9px;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__title {
    font-size: 2.1rem;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 599px) {
  .book-backnumber__list__item__title {
    font-size: 1.9rem;
  }
}
.book-backnumber__list__item__price {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  color: #222;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__price {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 599px) {
  .book-backnumber__list__item__price {
    margin-bottom: 15px;
  }
}
.book-backnumber__list__item__feature-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__feature-list {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 599px) {
  .book-backnumber__list__item__feature-list {
    margin-bottom: 15px;
  }
}
.book-backnumber__list__item__feature-list__item {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif !important;
  margin-bottom: 10px;
  width: 100%;
}
.book-backnumber__list__item__feature-list__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .book-backnumber__list__item__feature-list__item {
    margin-bottom: 6px;
  }
}
.book-backnumber__list__item__feature-list__item .bg-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  margin-right: 15px;
  min-height: 33px;
  height: 100%;
  margin-right: 13px;
  background-color: #f35a31;
  border-radius: 5px;
  display: flex;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__feature-list__item .bg-orange {
    width: 45px;
    margin-right: 10px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .book-backnumber__list__item__feature-list__item .bg-orange {
    font-size: 1.2rem;
  }
}
.book-backnumber__list__item__feature-list__item .text {
  width: calc(100% - 65px);
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #222;
  text-align: justify;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__feature-list__item .text {
    font-size: 1.4rem;
    width: calc(100% - 55px);
  }
}
.book-backnumber__list__item__wakuwaku {
  background-color: #fff;
  padding: 14px 15px 17px;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__wakuwaku {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 599px) {
  .book-backnumber__list__item__wakuwaku {
    padding: 10px 15px 12px;
    margin-bottom: 15px;
  }
}
.book-backnumber__list__item__wakuwaku__title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 1.5rem;
  color: #f35a31;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__wakuwaku__title {
    margin-bottom: 3px;
    font-size: 1.4rem;
  }
}
.book-backnumber__list__item__wakuwaku__name {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 1.5rem;
  color: #222;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__wakuwaku__name {
    font-size: 1.4rem;
  }
}
.book-backnumber__list__item__wakuwaku__name span {
  font-size: 1.9rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__wakuwaku__name span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .book-backnumber__list__item__wakuwaku__name span {
    font-size: 1.7rem;
  }
}
.book-backnumber__list__item__pdf-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #555;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.3;
  padding: 16px 40px 19px 47px;
  border-radius: 6px;
  position: relative;
  background-image: url(../img/common/icon_pdf.svg);
  background-position: left 12px center;
  background-size: 25px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .book-backnumber__list__item__pdf-btn {
    font-size: 1.4rem;
    background-size: 23px auto;
    padding: 14px 40px 17px 44px;
  }
}
@media screen and (min-width: 1025px) {
  .book-backnumber__list__item__pdf-btn:hover {
    transition: 0.3s;
  }
  .book-backnumber__list__item__pdf-btn:hover::before {
    right: 12px;
  }
  .book-backnumber__list__item__pdf-btn:hover::after {
    right: 19px;
  }
}
.book-backnumber__list__item__pdf-btn::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  transition: 0.3s;
}
.book-backnumber__list__item__pdf-btn::after {
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 22px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  transform: rotate(45deg);
  transition: 0.3s;
}

/*--------------------------------------------------------
published
----------------------------------------------------------*/
.published-lead {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.published-lead__img {
  position: relative;
  width: calc((74.5% - 20px) / 2);
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .published-lead__img {
    width: 100%;
    height: 50vw;
  }
}
@media screen and (max-width: 599px) {
  .published-lead__img {
    height: 65vw;
  }
}
.published-lead__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/published/lead01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 834px) {
  .published-lead__img::before {
    background-position: top -6vw center;
  }
}
@media screen and (max-width: 599px) {
  .published-lead__img::before {
    background-position: top -1vw center;
  }
}
.published-lead__img__title {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
  width: 90%;
  background-color: #10ad94;
  border-radius: 40px;
  padding: 7px 20px 8px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .published-lead__img__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .published-lead__img__title {
    bottom: 4vw;
  }
}
@media screen and (max-width: 599px) {
  .published-lead__img__title {
    font-size: 1.7rem;
  }
}
.published-lead__img--02::before {
  background-image: url(../img/published/lead02.webp);
}
.published-lead__img--02 .published-lead__img__title {
  background-color: #8565bb;
}
.published-lead__text {
  width: 25.5%;
  background-color: #f35a31;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .published-lead__text {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .published-lead__text {
    padding: 20px 15px;
  }
}
.published-lead__text__inner {
  position: relative;
  display: inline-block;
  padding: 40px 0;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .published-lead__text__inner {
    padding: 0;
    margin-bottom: 10px;
  }
}
.published-lead__text__inner::before, .published-lead__text__inner::after {
  content: "";
  position: absolute;
  width: 71px;
  height: 33px;
  background-image: url(../img/published/lead_arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 834px) {
  .published-lead__text__inner::before, .published-lead__text__inner::after {
    width: 60px;
    height: 28px;
  }
}
.published-lead__text__inner::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 834px) {
  .published-lead__text__inner::before {
    top: 62px;
    left: -30px;
    transform: translateX(0) rotate(90deg);
  }
}
.published-lead__text__inner::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-180deg);
}
@media screen and (max-width: 834px) {
  .published-lead__text__inner::after {
    top: 62px;
    right: -30px;
    bottom: auto;
    left: auto;
    transform: translateX(0) rotate(-90deg);
  }
}
.published-lead__text__inner__title {
  display: inline-block;
  background-color: #f37250;
  border-radius: 50px;
  padding: 3px 25px 4px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1rem;
}
.published-lead__text__inner__logo {
  width: 130px;
  margin: 0 auto;
}
.published-lead__text__fukidashi {
  position: relative;
  width: 200px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  margin: 10px auto 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .published-lead__text__fukidashi {
    width: 100%;
    padding: 10px;
  }
}
.published-lead__text__fukidashi::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 9px;
  background-color: #fff;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.published-lead__text__fukidashi__inner__color {
  color: #f35a31;
}

.published-point__nav {
  background-color: #faedda;
  border-radius: 15px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .published-point__nav {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .published-point__nav {
    padding: 25px 20px 20px;
  }
}
.published-point__nav__title {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .published-point__nav__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .published-point__nav__title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.published-point__nav__title__color {
  color: #f35a31;
}
.published-point__nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .published-point__nav__list {
    gap: 5px;
    max-width: 280px;
    margin: 0 auto;
  }
}
.published-point__nav__list__item {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1024px) {
  .published-point__nav__list__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .published-point__nav__list__item {
    width: 100%;
  }
}
.published-point__nav__list__item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 15px 40px;
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .published-point__nav__list__item__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .published-point__nav__list__item__link {
    margin-top: 10px;
    padding: 15px 15px 37px;
  }
}
.published-point__nav__list__item__link::before, .published-point__nav__list__item__link::after {
  content: "";
  position: absolute;
  left: 50%;
}
.published-point__nav__list__item__link::before {
  bottom: 10px;
  transform: translateX(-50%);
  width: 23px;
  height: 23px;
  border-radius: 20px;
  background-color: #f35a31;
}
@media screen and (max-width: 599px) {
  .published-point__nav__list__item__link::before {
    width: 20px;
    height: 20px;
  }
}
.published-point__nav__list__item__link::after {
  bottom: 19px;
  transform: translateX(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 599px) {
  .published-point__nav__list__item__link::after {
    bottom: 18px;
    width: 6px;
    height: 6px;
  }
}
.published-point__nav__list__item__link__dec {
  z-index: 3;
  position: absolute;
  top: -15px;
  left: -10px;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  background-color: #f35a31;
  padding-top: 16px;
  color: #fff;
  font-family: "Hind", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.05;
}
@media screen and (max-width: 599px) {
  .published-point__nav__list__item__link__dec {
    top: -10px;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
.published-point__nav__list__item__link__dec__number {
  display: block;
  font-size: 2.6rem;
}
@media screen and (max-width: 599px) {
  .published-point__nav__list__item__link__dec__number {
    font-size: 2.2rem;
  }
}
.published-point__nav__list__item__link__inner {
  text-align: center;
}
.published-point__nav__list__item__link__inner__title {
  margin-bottom: 8px;
  color: #f35a31;
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .published-point__nav__list__item__link__inner__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .published-point__nav__list__item__link__inner__title {
    font-size: 1.9rem;
  }
}
.published-point__nav__list__item__link__inner__title span {
  position: relative;
  z-index: 1;
  padding: 0 5px;
}
.published-point__nav__list__item__link__inner__title span::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #faedda;
  border-radius: 2px;
}
.published-point__nav__list__item__link__inner__text {
  color: #222;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.35;
}
@media screen and (max-width: 1024px) {
  .published-point__nav__list__item__link__inner__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .published-point__nav__list__item__link__inner__text {
    font-size: 1.7rem;
  }
}
.published-point__nav__list__item__link__inner__text__number {
  z-index: 1;
  position: relative;
  padding: 0 5px;
  color: #f35a31;
  font-size: 2.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .published-point__nav__list__item__link__inner__text__number {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .published-point__nav__list__item__link__inner__text__number {
    font-size: 2.2rem;
  }
}
.published-point__nav__list__item__link__inner__text__number::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #faedda;
  border-radius: 2px;
}
.published-point #point01, .published-point #point02, .published-point #point03, .published-point #point04 {
  padding-top: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .published-point #point01, .published-point #point02, .published-point #point03, .published-point #point04 {
    padding-top: 35px;
    margin-top: 35px;
  }
}
.published-point__block {
  scroll-padding-top: 70px;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 6px rgba(198, 198, 198, 0.4);
  padding: 55px 50px 60px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .published-point__block {
    padding: 55px 35px 35px;
  }
}
@media screen and (max-width: 599px) {
  .published-point__block {
    border-radius: 15px;
    padding: 45px 20px 20px;
  }
}
.published-point__block__dec {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: #f35a31;
  padding-top: 18px;
  color: #fff;
  font-family: "Hind", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.05;
}
@media screen and (max-width: 599px) {
  .published-point__block__dec {
    width: 70px;
    height: 70px;
    padding-top: 18px;
    font-size: 1.6rem;
    line-height: 1;
  }
}
.published-point__block__dec__number {
  display: block;
  font-size: 3.4rem;
}
@media screen and (max-width: 599px) {
  .published-point__block__dec__number {
    font-size: 2.8rem;
  }
}
.published-point__block__title {
  position: relative;
  display: inline-block;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .published-point__block__title {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__title {
    margin-bottom: 35px;
    font-size: 2rem;
  }
}
.published-point__block__title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #f35a31;
  border-radius: 2px;
}
.published-point__block__title__color {
  color: #f35a31;
}
.published-point__block__box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .published-point__block__box {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__box {
    gap: 15px;
  }
}
.published-point__block__box__img {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .published-point__block__box__img {
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__box__img {
    width: 100%;
  }
}
.published-point__block__box__img img {
  border-radius: 6px;
}
.published-point__block__box__img--point03 {
  padding-left: 40px;
}
@media screen and (max-width: 1200px) {
  .published-point__block__box__img--point03 {
    padding-left: 0;
  }
}
.published-point__block__box__text {
  width: calc(53% - 50px);
}
@media screen and (max-width: 1024px) {
  .published-point__block__box__text {
    width: calc(60% - 30px);
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__box__text {
    width: 100%;
  }
}
.published-point__block__box__text__title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .published-point__block__box__text__title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__box__text__title {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.published-point__block__box__text__title__color {
  color: #f35a31;
}
.published-point__block__box__text .text-base {
  text-align: justify;
}
.published-point__block__point02__title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .published-point__block__point02__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__point02__title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}
.published-point__block__point02__title__color {
  color: #f35a31;
}
.published-point__block__point02__box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .published-point__block__point02__box {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__point02__box {
    gap: 15px;
  }
}
.published-point__block__point02__box__item {
  width: calc((100% - 30px) / 2);
  background-color: #c6e3de;
  border-radius: 15px;
  padding: 30px 25px;
}
@media screen and (max-width: 1024px) {
  .published-point__block__point02__box__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__point02__box__item {
    width: 100%;
    padding: 20px;
  }
}
.published-point__block__point02__box__item__title {
  max-width: 184px;
  width: 100%;
  background-color: #16b299;
  border-radius: 50px;
  padding: 8px 25px;
  margin: 0 auto 15px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .published-point__block__point02__box__item__title {
    margin: 0 auto 10px;
    font-size: 1.7rem;
  }
}
.published-point__block__point02__box__item__list > li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.3;
}
.published-point__block__point02__box__item__list > li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #16b299;
}
.published-point__block__point02__box__item__list > li:last-child {
  margin-bottom: 0;
}
.published-point__block__point02__box__item--blue {
  background-color: #bdd6e4;
}
.published-point__block__point02__box__item--blue .published-point__block__point02__box__item__title {
  background-color: #1c8ac8;
}
.published-point__block__point02__box__item--blue .published-point__block__point02__box__item__list > li::before {
  background-color: #1c8ac8;
}
.published-point__block__point03__img-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #faedda;
  border-radius: 15px;
  padding: 50px 25px 35px;
  margin-top: 23px;
}
@media screen and (max-width: 1024px) {
  .published-point__block__point03__img-list {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__point03__img-list {
    padding: 20px 15px;
  }
}
.published-point__block__point03__img-list::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 22.5%;
  width: 27px;
  height: 24px;
  background-color: #faedda;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
@media screen and (max-width: 1200px) {
  .published-point__block__point03__img-list::before {
    left: 20%;
  }
}
@media screen and (max-width: 1024px) {
  .published-point__block__point03__img-list::before {
    left: 17%;
  }
}
@media screen and (max-width: 599px) {
  .published-point__block__point03__img-list::before {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 21px;
  }
}
.published-point__block__point03__img-list > li {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 599px) {
  .published-point__block__point03__img-list > li {
    width: 100%;
  }
}

/*--------------------------------------------------------
consul-case
----------------------------------------------------------*/
.consul-case-btn {
  display: flex;
  flex-wrap: wrap;
}
.consul-case-btn__item {
  width: calc((100% - 20px) / 3);
  margin-right: 10px;
  margin-bottom: 10px;
}
.consul-case-btn__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 599px) {
  .consul-case-btn__item {
    width: calc((100% - 5px) / 2);
    margin-bottom: 5px;
    margin-right: 5px;
  }
  .consul-case-btn__item:nth-child(3n) {
    margin-right: 5px;
  }
  .consul-case-btn__item:nth-child(2n) {
    margin-right: 0;
  }
}
.consul-case-btn__item__link {
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
  padding: 0 20px 4px 53px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #222;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .consul-case-btn__item__link:hover {
    opacity: 0.8;
    transform: translateY(2px);
    color: #f35a31;
  }
}
@media screen and (max-width: 1024px) {
  .consul-case-btn__item__link {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .consul-case-btn__item__link {
    font-size: 1.6rem;
    padding: 0 20px 2px 45px;
    height: 55px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-btn__item__link {
    padding: 0 10px 2px 37px;
    height: 48px;
  }
}
.consul-case-btn__item__link::before {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #f35a31;
  left: 20px;
  top: calc(50% - 12px);
}
@media screen and (max-width: 834px) {
  .consul-case-btn__item__link::before {
    width: 20px;
    height: 20px;
    left: 14px;
    top: calc(50% - 10px);
  }
}
@media screen and (max-width: 599px) {
  .consul-case-btn__item__link::before {
    width: 18px;
    height: 18px;
    left: 12px;
    top: calc(50% - 9px);
  }
}
.consul-case-btn__item__link::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: 26px;
  top: calc(50% - 4px);
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .consul-case-btn__item__link::after {
    width: 6px;
    height: 6px;
    left: 20px;
    top: calc(50% - 3px);
  }
}
@media screen and (max-width: 599px) {
  .consul-case-btn__item__link::after {
    left: 17px;
    top: calc(50% - 3px);
  }
}
.consul-case-btn__item__link.active {
  background-color: #f35a31;
  border: 1px solid #f35a31;
  color: #fff;
}
.consul-case-btn__item__link.active::before {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #fff;
  left: 20px;
  top: calc(50% - 12px);
}
@media screen and (max-width: 834px) {
  .consul-case-btn__item__link.active::before {
    width: 20px;
    height: 20px;
    left: 14px;
    top: calc(50% - 10px);
  }
}
@media screen and (max-width: 599px) {
  .consul-case-btn__item__link.active::before {
    width: 18px;
    height: 18px;
    left: 12px;
    top: calc(50% - 9px);
  }
}
.consul-case-btn__item__link.active::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: 26px;
  top: calc(50% - 4px);
  width: 7px;
  height: 7px;
  border-top: 1px solid #f35a31;
  border-right: 1px solid #f35a31;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .consul-case-btn__item__link.active::after {
    width: 6px;
    height: 6px;
    left: 20px;
    top: calc(50% - 3px);
  }
}
@media screen and (max-width: 599px) {
  .consul-case-btn__item__link.active::after {
    left: 17px;
    top: calc(50% - 3px);
  }
}
.consul-case-btn__item__link.active:hover {
  opacity: 1;
  transform: translateY(0);
  color: #fff;
}

.consul-case-info__wrapper {
  background-color: #faedda;
  border-radius: 15px;
  padding: 30px 25px 40px;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .consul-case-info__wrapper {
    flex-wrap: wrap;
    padding: 30px 25px 25px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-info__wrapper {
    border-radius: 10px;
    padding: 25px 15px 15px;
  }
}
.consul-case-info__wrapper__img {
  width: calc(100% - 665px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .consul-case-info__wrapper__img {
    width: calc(100% - 565px);
  }
}
@media screen and (max-width: 834px) {
  .consul-case-info__wrapper__img {
    width: 100%;
  }
}
.consul-case-info__wrapper__img img {
  max-width: 336px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 834px) {
  .consul-case-info__wrapper__img img {
    max-width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-info__wrapper__img img {
    max-width: 270px;
  }
}
.consul-case-info__wrapper__text-wrapper {
  width: 640px;
  margin-left: 25px;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .consul-case-info__wrapper__text-wrapper {
    width: 540px;
  }
}
@media screen and (max-width: 834px) {
  .consul-case-info__wrapper__text-wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 25px;
  }
}
.consul-case-info__wrapper__text-wrapper__title {
  position: absolute;
  width: 270px;
  padding: 9px 10px 10px;
  background-color: #6da7d4;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  top: 0;
  left: calc(50% - 135px);
}
@media screen and (max-width: 1024px) {
  .consul-case-info__wrapper__text-wrapper__title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-info__wrapper__text-wrapper__title {
    font-size: 1.7rem;
    padding: 7px 7px 9px;
    width: 200px;
    left: calc(50% - 100px);
  }
}
.consul-case-info__wrapper__text-wrapper__inner {
  margin-top: 20px;
  border-radius: 10px;
  background-color: #fff;
  width: 100%;
  padding: 40px 30px 30px;
}
@media screen and (max-width: 1024px) {
  .consul-case-info__wrapper__text-wrapper__inner {
    padding: 40px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-info__wrapper__text-wrapper__inner {
    margin-top: 16px;
    padding: 35px 15px 15px;
  }
}
.consul-case-info__wrapper__text-wrapper__inner__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
}
.consul-case-info__wrapper__text-wrapper__inner__table tr:nth-child(odd) {
  background-color: #f3f3f3;
}
.consul-case-info__wrapper__text-wrapper__inner__table th {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 195px;
  text-align: left;
  padding: 12px 12px 15px 35px;
  font-size: 1.6rem;
  color: #f35a31;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .consul-case-info__wrapper__text-wrapper__inner__table th {
    width: 170px;
    padding: 10px 10px 12px 25px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-info__wrapper__text-wrapper__inner__table th {
    width: 145px;
    padding: 8px 8px 10px 15px;
  }
}
.consul-case-info__wrapper__text-wrapper__inner__table td {
  font-size: 1.6rem;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 12px 12px 15px;
}
@media screen and (max-width: 1024px) {
  .consul-case-info__wrapper__text-wrapper__inner__table td {
    padding: 10px 10px 12px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-info__wrapper__text-wrapper__inner__table td {
    padding: 8px 8px 10px;
  }
}
.consul-case-info__wrapper__text-wrapper__inner__table td .caution {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.6rem;
}

.consul-case-content__wrapper {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 35px 40px;
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .consul-case-content__wrapper {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-content__wrapper {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 73px;
  }
}
.consul-case-content__wrapper::before {
  position: absolute;
  content: "";
  width: 75px;
  height: 33px;
  background-image: url(../img/consul/case/triangle.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  left: calc(50% - 38px);
  bottom: -58px;
}
@media screen and (max-width: 599px) {
  .consul-case-content__wrapper::before {
    width: 55px;
    background-size: 55px auto;
    left: calc(50% - 27px);
    bottom: -45px;
  }
}
.consul-case-content__wrapper__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
}
.consul-case-content__wrapper__table th {
  width: 160px;
  text-align: left;
  padding: 16px 10px 18px 35px;
  font-size: 1.7rem;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .consul-case-content__wrapper__table th {
    width: 150px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-content__wrapper__table th {
    width: 110px;
    padding: 13px 10px 15px 28px;
  }
}
.consul-case-content__wrapper__table th::before {
  position: absolute;
  content: "";
  width: 21px;
  height: 21px;
  background-image: url(../img/consul/case/icon_check.png);
  background-size: 21px auto;
  background-repeat: no-repeat;
  background-position: left top;
  left: 0;
  top: 19px;
}
@media screen and (max-width: 599px) {
  .consul-case-content__wrapper__table th::before {
    width: 17px;
    height: 17px;
    background-size: 17px auto;
    top: 17px;
  }
}
.consul-case-content__wrapper__table th.top {
  padding: 0 10px 18px 35px;
}
@media screen and (max-width: 599px) {
  .consul-case-content__wrapper__table th.top {
    padding: 0 10px 14px 28px;
  }
}
.consul-case-content__wrapper__table th.top::before {
  top: 5px;
}
.consul-case-content__wrapper__table th.bottom {
  padding: 16px 10px 0 35px;
  border-bottom: none;
}
@media screen and (max-width: 599px) {
  .consul-case-content__wrapper__table th.bottom {
    padding: 13px 10px 0 28px;
  }
  .consul-case-content__wrapper__table th.bottom::before {
    top: 18px;
  }
}
.consul-case-content__wrapper__table td {
  font-size: 1.6rem;
  padding: 16px 10px 18px;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 599px) {
  .consul-case-content__wrapper__table td {
    padding: 13px 10px 15px;
  }
}
.consul-case-content__wrapper__table td.top {
  padding: 0 10px 18px;
}
@media screen and (max-width: 599px) {
  .consul-case-content__wrapper__table td.top {
    padding: 0 10px 14px;
  }
}
.consul-case-content__wrapper__table td.bottom {
  padding: 16px 10px 0;
  border-bottom: none;
}
@media screen and (max-width: 599px) {
  .consul-case-content__wrapper__table td.bottom {
    padding: 13px 10px 0;
  }
}
.consul-case-content__wrapper__table td .caution {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.6rem;
}
.consul-case-content__wrapper__table td ul li {
  list-style: none;
  padding-left: 15px;
  margin-bottom: 5px;
  position: relative;
}
.consul-case-content__wrapper__table td ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
  left: 0;
  top: 10px;
}
.consul-case-content__suggestion {
  position: relative;
}
.consul-case-content__suggestion__title {
  position: absolute;
  padding: 14px 30px 16px;
  background-color: #f35a31;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  top: -20px;
  left: 30px;
}
@media screen and (max-width: 1024px) {
  .consul-case-content__suggestion__title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-content__suggestion__title {
    padding: 12px 15px 15px;
    font-size: 1.7rem;
    width: 240px;
    left: calc(50% - 120px);
  }
}
.consul-case-content__suggestion__inner {
  border-radius: 20px;
  background-color: #faedda;
  width: 100%;
  padding: 48px 30px 25px;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 599px) {
  .consul-case-content__suggestion__inner {
    border-radius: 10px;
    flex-wrap: wrap;
    padding: 40px 20px 25px;
  }
}
.consul-case-content__suggestion__inner__img {
  width: 165px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .consul-case-content__suggestion__inner__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
}
.consul-case-content__suggestion__inner__img img {
  height: auto;
  width: 99px;
}
.consul-case-content__suggestion__inner .consul-case-list {
  width: calc(100% - 185px);
  margin-top: 15px;
}
@media screen and (max-width: 599px) {
  .consul-case-content__suggestion__inner .consul-case-list {
    width: 100%;
  }
}
.consul-case-content__suggestion__inner .consul-case-list__item:last-child {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .consul-case-content__suggestion__inner .consul-case-list__item:last-child {
    margin-bottom: 0;
  }
}

.consul-case-flow__list__item {
  display: flex;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .consul-case-flow__list__item {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-flow__list__item {
    margin-bottom: 25px;
  }
}
.consul-case-flow__list__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% + 50px);
  background-color: #f35a31;
  left: 40px;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .consul-case-flow__list__item::before {
    height: calc(100% + 35px);
    left: 35px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-flow__list__item::before {
    height: calc(100% + 25px);
    left: 30px;
  }
}
.consul-case-flow__list__item:last-child {
  margin-bottom: 0;
}
.consul-case-flow__list__item:last-child::before {
  display: none;
}
.consul-case-flow__list__item__step {
  width: 80px;
  height: 80px;
  margin-right: 30px;
  border-radius: 50%;
  background-color: #f35a31;
}
@media screen and (max-width: 1024px) {
  .consul-case-flow__list__item__step {
    width: 70px;
    height: 70px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-flow__list__item__step {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
}
.consul-case-flow__list__item__step p {
  font-family: "Hind", sans-serif !important;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
.consul-case-flow__list__item__step__en {
  font-size: 1.6rem;
  margin-top: 18px;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .consul-case-flow__list__item__step__en {
    font-size: 1.5rem;
    margin-top: 16px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-flow__list__item__step__en {
    font-size: 1.4rem;
    margin-top: 13px;
    margin-bottom: 1px;
  }
}
.consul-case-flow__list__item__step__num {
  font-size: 3rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .consul-case-flow__list__item__step__num {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-flow__list__item__step__num {
    font-size: 2.3rem;
  }
}
.consul-case-flow__list__item__text-wrapper {
  margin-top: 5px;
  width: calc(100% - 110px);
}
@media screen and (max-width: 1024px) {
  .consul-case-flow__list__item__text-wrapper {
    margin-top: 3px;
    width: calc(100% - 95px);
  }
}
@media screen and (max-width: 599px) {
  .consul-case-flow__list__item__text-wrapper {
    margin-top: 5px;
    width: calc(100% - 75px);
  }
}
.consul-case-flow__list__item__text-wrapper__orange-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  color: #f35a31;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .consul-case-flow__list__item__text-wrapper__orange-title {
    font-size: 1.9rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-flow__list__item__text-wrapper__orange-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }
}
.consul-case-flow__list__item__text-wrapper__title02 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .consul-case-flow__list__item__text-wrapper__title02 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-flow__list__item__text-wrapper__title02 {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
}

.consul-case-voice__wrapper {
  padding: 40px;
  background-color: #faedda;
  border-radius: 20px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .consul-case-voice__wrapper {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-voice__wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 20px 10px;
    border-radius: 10px;
  }
}
.consul-case-voice__wrapper__img {
  width: 130px;
  height: 130px;
  margin-right: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .consul-case-voice__wrapper__img {
    margin-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-voice__wrapper__img {
    margin-right: 0;
  }
}
.consul-case-voice__wrapper__img img {
  width: 68px;
  height: auto;
  display: inline-block;
  margin-bottom: 10px;
}
.consul-case-voice__wrapper__img img.case-b {
  width: 68px;
}
.consul-case-voice__wrapper__img img.case-c {
  width: 72px;
}
.consul-case-voice__wrapper__img img.case-d {
  width: 67px;
}
.consul-case-voice__wrapper__img img.case-e {
  width: 69px;
}
.consul-case-voice__wrapper__text-wrapper {
  width: calc(100% - 170px);
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .consul-case-voice__wrapper__text-wrapper {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 599px) {
  .consul-case-voice__wrapper__text-wrapper {
    width: 100%;
  }
}
.consul-case-voice__wrapper__text-wrapper__title {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .consul-case-voice__wrapper__text-wrapper__title {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 834px) {
  .consul-case-voice__wrapper__text-wrapper__title {
    font-size: 2rem;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-voice__wrapper__text-wrapper__title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
}
.consul-case-voice__wrapper__text-wrapper mark {
  border-bottom: 2px dotted #f35a31;
  background: none;
  padding-bottom: 3px;
  font-style: normal;
  color: #222;
}

.consul-case-contact {
  border-radius: 15px;
  padding: 45px;
  background-color: #c6e3de;
}
@media screen and (max-width: 834px) {
  .consul-case-contact {
    padding: 35px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-contact {
    padding: 20px;
    border-radius: 10px;
  }
}
.consul-case-contact__title {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 26px;
}
@media screen and (max-width: 599px) {
  .consul-case-contact__title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.consul-case-contact__title span {
  color: #08a189;
}
.consul-case-contact__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner {
    border-radius: 10px;
  }
}
.consul-case-contact__inner__white-box {
  padding: 35px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px 15px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .consul-case-contact__inner__white-box {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__white-box {
    padding: 25px 20px 25px;
    flex-wrap: wrap;
    border-radius: 10px 10px 0 0;
  }
}
.consul-case-contact__inner__white-box__logo {
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .consul-case-contact__inner__white-box__logo {
    max-width: 290px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 834px) {
  .consul-case-contact__inner__white-box__logo {
    max-width: 250px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__white-box__logo {
    max-width: 210px;
    margin-right: 0;
    margin-bottom: 14px;
  }
}
.consul-case-contact__inner__gray-box {
  padding: 35px 30px;
  background-color: #f2f2f2;
  border-radius: 0 0 15px 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__gray-box {
    padding: 25px 20px 25px;
    border-radius: 0 0 10px 10px;
  }
}
.consul-case-contact__inner__gray-box__text-wrapper {
  margin-right: 30px;
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__gray-box__text-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.consul-case-contact__inner__gray-box__text-wrapper__tel {
  font-size: 1.9rem;
}
@media screen and (max-width: 1024px) {
  .consul-case-contact__inner__gray-box__text-wrapper__tel {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .consul-case-contact__inner__gray-box__text-wrapper__tel {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__gray-box__text-wrapper__tel {
    width: auto;
    font-size: 1.5rem;
  }
}
.consul-case-contact__inner__gray-box__text-wrapper__tel .text-tel a {
  font-family: "Hind", sans-serif !important;
  font-weight: 600;
  color: #16b299;
  font-size: 4.2rem;
  margin-left: 15px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .consul-case-contact__inner__gray-box__text-wrapper__tel .text-tel a {
    font-size: 3.8rem;
    margin-left: 10px;
  }
}
@media screen and (max-width: 834px) {
  .consul-case-contact__inner__gray-box__text-wrapper__tel .text-tel a {
    font-size: 3.6rem;
    margin-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__gray-box__text-wrapper__tel .text-tel a {
    font-size: 2.9rem;
    margin-left: 5px;
  }
}
.consul-case-contact__inner__gray-box__text-wrapper .text-time {
  padding-left: 51px;
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .consul-case-contact__inner__gray-box__text-wrapper .text-time {
    padding-left: 44px;
  }
}
@media screen and (max-width: 834px) {
  .consul-case-contact__inner__gray-box__text-wrapper .text-time {
    padding-left: 42px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__gray-box__text-wrapper .text-time {
    padding-left: 33px;
    font-size: 1.4rem;
    width: auto;
    margin-top: 5px;
  }
}
.consul-case-contact__inner__gray-box__mail {
  max-width: 240px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__gray-box__mail {
    max-width: 200px;
  }
}
.consul-case-contact__inner__gray-box__mail a {
  display: block;
  width: 100%;
  padding: 18px 15px 20px 36px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  line-height: 1;
  color: #000;
  background-color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__gray-box__mail a {
    padding: 13px 15px 16px 38px;
  }
}
.consul-case-contact__inner__gray-box__mail a::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 100%;
  background-image: url(../img/common/icon_mail.svg);
  background-position: center;
  background-size: 26px auto;
  background-repeat: no-repeat;
  left: 50px;
  top: 0;
}
@media screen and (max-width: 599px) {
  .consul-case-contact__inner__gray-box__mail a::before {
    left: 32px;
    background-size: 22px auto;
  }
}

/*----------------------------------------*/
.consul-case-list__item {
  padding-left: 26px;
  margin-bottom: 5px;
  position: relative;
}
.consul-case-list__item::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid #f35a31;
  left: 0;
  top: 6px;
}
.consul-case-list__item:last-child {
  margin-bottom: 0;
}

.consul-case-orange-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  color: #f35a31;
  margin-bottom: 9px;
}
@media screen and (max-width: 1024px) {
  .consul-case-orange-title {
    font-size: 1.9rem;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 599px) {
  .consul-case-orange-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }
}/*# sourceMappingURL=style.css.map */