@charset "UTF-8";

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  overflow-y: hidden;
  border-bottom: 1px solid #000;
  padding: 0;
  margin: 0;
}

.tab-nav li {
  width: calc((100% - 4px * 10) / 11); /* タブ11個・gap10個分 */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #000;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  margin-bottom: -1px;
}

.tab-nav li.active {
  background: #000;             /* ← アクティブは黒背景 */
  color: #fff;                  /* ← 白文字 */
  font-weight: bold;
  border: 1px solid #000;
  border-bottom: 1px solid #000; /* ← しっかりつながるようにする */
  z-index: 2;
}

/* タブコンテンツ */
.tab-content {
  display: none;
  background: #fff;
  padding: 20px;
  border: none;         /* 枠線なし */
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.tab-content.active {
  display: block;
}

/* PC：横一列で並べる */
@media (min-width: 768px) {
  .tab-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .tab-nav li {
    flex: 1 1 auto;
  }
}

/* SP：3列構成 */
@media (max-width: 767px) {
  .tab-nav li {
    width: calc(33.333% - 4px);
    flex: none;
  }
}

.section h3:first-child {
  margin-bottom: 24px;
}
.section hr {
  margin-bottom: 60px;
  margin-top: 60px;
  max-width: 1200px;
}
@media (min-width: 768px) {
  .section hr {
    margin-bottom: 100px;
    margin-top: 100px;
  }
}

.section_bg {
  background: #FFFAF7;
}
.section_bg .box_bg {
  background: #fff;
}
.section_bg .box_bg .box_bg {
  background: #FFFAF7;
}
.section_bg .box_bg .box_bg .box_bg {
  background: #fff;
}

.box_bg {
  background: #FFFAF7;
}
.box_bg .box_bg {
  background: #fff;
}
.box_bg .box_bg .box_bg {
  background: #fef1e7;
}

.box_bg_2 {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2em 2em 3em 2em; /* 上 右 下 左 */
  margin: 1em auto 2em auto;
  width: 100%;
}
.box_bg_2 h3 {
  margin-top: 0.01em;
}

.box_border {
  background: #fff;
  border: 5px solid #fef1e7;
}

.box_border .box_bg {
  background: #fef1e7;
}

.section_bg .box_border .box_bg {
  background: #FFFAF7;
}

.box_bg,
.box_border {
  border-radius: 0px;
  margin-top: 0;
  margin-bottom: 40px;
  padding: 24px 16px;
}
.box_bg:last-child,
.box_border:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .box_bg,
  .box_border {
    margin-bottom: 50px;
    padding: 50px;
  }
}
.section .box_bg:first-child, .section_bg .box_bg:first-child,
.section .box_border:first-child,
.section_bg .box_border:first-child {
  margin-top: 24px;
}
.box_bg ul:first-child, .box_bg ol:first-child, .box_bg dl:first-child, .box_bg table:first-child, .box_bg p:first-child, .box_bg h3:first-child, .box_bg h4:first-child, .box_bg h5:first-child, .box_bg h6:first-child,
.box_border ul:first-child,
.box_border ol:first-child,
.box_border dl:first-child,
.box_border table:first-child,
.box_border p:first-child,
.box_border h3:first-child,
.box_border h4:first-child,
.box_border h5:first-child,
.box_border h6:first-child {
  margin-top: 0;
}

.row.sp_col_2 .col_2 .box_bg,
.row.sp_col_2 .col_2 .box_border, .row.sp_col_2 .col_3 .box_bg,
.row.sp_col_2 .col_3 .box_border, .row.sp_col_2 .col_4 .box_bg,
.row.sp_col_2 .col_4 .box_border, .row.sp_col_2 .col_5 .box_bg,
.row.sp_col_2 .col_5 .box_border, .row.sp_col_2 .col_6 .box_bg,
.row.sp_col_2 .col_6 .box_border {
  height: 100%;
}
.row.sp_col_2 .col_2 .box_bg .box_bg,
.row.sp_col_2 .col_2 .box_bg .box_border,
.row.sp_col_2 .col_2 .box_border .box_bg,
.row.sp_col_2 .col_2 .box_border .box_border, .row.sp_col_2 .col_3 .box_bg .box_bg,
.row.sp_col_2 .col_3 .box_bg .box_border,
.row.sp_col_2 .col_3 .box_border .box_bg,
.row.sp_col_2 .col_3 .box_border .box_border, .row.sp_col_2 .col_4 .box_bg .box_bg,
.row.sp_col_2 .col_4 .box_bg .box_border,
.row.sp_col_2 .col_4 .box_border .box_bg,
.row.sp_col_2 .col_4 .box_border .box_border, .row.sp_col_2 .col_5 .box_bg .box_bg,
.row.sp_col_2 .col_5 .box_bg .box_border,
.row.sp_col_2 .col_5 .box_border .box_bg,
.row.sp_col_2 .col_5 .box_border .box_border, .row.sp_col_2 .col_6 .box_bg .box_bg,
.row.sp_col_2 .col_6 .box_bg .box_border,
.row.sp_col_2 .col_6 .box_border .box_bg,
.row.sp_col_2 .col_6 .box_border .box_border {
  height: auto;
}
@media (min-width: 768px) {
  .row .col_2 .box_bg,
  .row .col_2 .box_border, .row .col_3 .box_bg,
  .row .col_3 .box_border, .row .col_4 .box_bg,
  .row .col_4 .box_border, .row .col_5 .box_bg,
  .row .col_5 .box_border, .row .col_6 .box_bg,
  .row .col_6 .box_border {
    height: 100%;
  }
  .row .col_2 .box_bg .box_bg,
  .row .col_2 .box_bg .box_border,
  .row .col_2 .box_border .box_bg,
  .row .col_2 .box_border .box_border, .row .col_3 .box_bg .box_bg,
  .row .col_3 .box_bg .box_border,
  .row .col_3 .box_border .box_bg,
  .row .col_3 .box_border .box_border, .row .col_4 .box_bg .box_bg,
  .row .col_4 .box_bg .box_border,
  .row .col_4 .box_border .box_bg,
  .row .col_4 .box_border .box_border, .row .col_5 .box_bg .box_bg,
  .row .col_5 .box_bg .box_border,
  .row .col_5 .box_border .box_bg,
  .row .col_5 .box_border .box_border, .row .col_6 .box_bg .box_bg,
  .row .col_6 .box_bg .box_border,
  .row .col_6 .box_border .box_bg,
  .row .col_6 .box_border .box_border {
    height: auto;
  }
}

.googlemap,
.youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}
.googlemap iframe,
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section .box_bg:first-child, .section_bg .box_bg:first-child, .section .box_border:first-child, .section_bg .box_border:first-child {
  margin-top: 0;
}

div.clearfix {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  div.clearfix {
    margin-bottom: 50px;
  }
}

.mce-content-body .link_anchor {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .mce-content-body .link_anchor {
    margin-top: 20px;
  }
}

.link_anchor {
  border: 1px solid #154f44;
  border-radius: 0px;
  padding: min(30px , 3.8vw);
  display: flex;
  flex-wrap: wrap;
  column-gap: min(20px , 2.4vw);
  row-gap: min(14px, 2vw);
}
.link_anchor li {
  display: flex;
  flex: 0 0 100%;
  width: 100%;
  line-height: 1;
  margin: 0;
  align-items: baseline;
}
.link_anchor a {
  line-height: 1.3;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 0;
  border: none;
  color: #333333 !important;
  display: inline;
  padding: 0.25em 0;
  padding-left: 2.1em;
}
.link_anchor a::after, .link_anchor a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}
.link_anchor a:before {
  display: none;
}
.link_anchor a:hover {
  background: none;
  color: #333333 !important;
  opacity: 1;
  text-decoration: underline;
}
.link_anchor a::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  left: calc( ( 1.6875em / 2 ) - 4px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: calc(0.65em + 0.25em - 4px);
}
.link_anchor a::before {
  display: block;
  background: #154f44;
  border-radius: 50%;
  height: 1.6875em;
  width: 1.6875em;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .link_anchor li {
    flex: 0 0 100%;
    max-width: calc(( 100% - min(20px , 2.4vw) ) / 2);
  }
  .link_anchor li a {
    height: 100%;
    display: flex;
  }
  .link_anchor.link_col_3 li {
    max-width: calc(( 100% - min(20px , 2.4vw) - min(20px , 2.4vw) ) / 3);
  }
}

.ul_circle,
.ul_dot,
.ul_triangle,
.ul_check,
.ol_circle {
  margin-bottom: 24px;
}
.ul_circle:last-child,
.ul_dot:last-child,
.ul_triangle:last-child,
.ul_check:last-child,
.ol_circle:last-child {
  margin-bottom: 0;
}
.ul_circle li,
.ul_dot li,
.ul_triangle li,
.ul_check li,
.ol_circle li {
  margin-top: 0;
  line-height: 1.75;
  margin-bottom: 12px;
  padding-left: 17.6px;
  position: relative;
}
.ul_circle li:last-child,
.ul_dot li:last-child,
.ul_triangle li:last-child,
.ul_check li:last-child,
.ol_circle li:last-child {
  margin-bottom: 0;
}
.ul_circle li::before, .ul_circle li::after,
.ul_dot li::before,
.ul_dot li::after,
.ul_triangle li::before,
.ul_triangle li::after,
.ul_check li::before,
.ul_check li::after,
.ol_circle li::before,
.ol_circle li::after {
  content: "";
  position: absolute;
  letter-spacing: 0;
}
.ul_circle li ul:first-child,
.ul_dot li ul:first-child,
.ul_triangle li ul:first-child,
.ul_check li ul:first-child,
.ol_circle li ul:first-child {
  margin-top: 12px;
}
.ul_circle + p,
.ul_dot + p,
.ul_triangle + p,
.ul_check + p,
.ol_circle + p {
  margin-bottom: 24px;
}

.ul_circle li::before {
  border-radius: 50%;
  background: #94c7de;
  height: calc(16px / 2);
  left: 0.2em;
  top: calc((16px * 1.75 / 2) - (16px / 4));
  width: calc(16px / 2);
}

.ul_dot li::before {
  border-radius: 50%;
  background: #94c7de;
  height: calc(16px / 3);
  left: 0.5em;
  top: calc((16px * 1.75 / 2) - (16px / 6));
  width: calc(16px / 3);
}

.ul_check li {
  padding-left: 2em;
}
.ul_check li::before {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  height: 12px;
  left: 6px;
  margin-top: -4px;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  top: calc(( 16px * 1.75 / 2 ) - ( 16px / 4 ));
  width: 7px;
  z-index: 1;
}
.ul_check li:after {
  content: "";
  position: absolute;
  display: block;
  background: #333333;
  width: 20px;
  height: 20px;
  margin: auto;
  left: 0;
  right: auto;
  top: 4px;
  bottom: auto;
  z-index: 0;
  border-radius: 2px;
}

.ul_triangle li::before {
  left: 2px;
  border: 4px solid transparent;
  border-left: 6px solid #94c7de;
  top: calc(( 16px * 1.75 / 2 ) - ( 16px / 4 ));
}

.ol_circle {
  counter-reset: ol_circle;
}
.ol_circle li {
  padding-left: 28px;
  position: relative;
}
.ol_circle li::before, .ol_circle li:after {
  content: "";
  position: absolute;
}
.ol_circle li::before {
  background-color: #94c7de;
  border-radius: 50%;
  color: #fff;
  content: counter(ol_circle);
  counter-increment: ol_circle;
  display: block;
  font-size: 13.12px;
  height: 20px;
  left: 0;
  line-height: 21px;
  letter-spacing: 0.02em;
  text-align: center;
  top: 6px;
  width: 20px;
  position: absolute;
}

@media (min-width: 768px) {
  ul.list_columns_2 {
    display: flex;
    gap: 12px 2%;
    flex-wrap: wrap;
  }
  ul.list_columns_2 li {
    width: 49%;
    margin: 0;
  }
  ul.list_columns_3 {
    display: flex;
    gap: 12px 2%;
    flex-wrap: wrap;
  }
  ul.list_columns_3 li {
    width: 32%;
    margin: 0;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
}
table th, table td {
  line-height: 1.6;
}
table.table_address, table.table_timetable, table.table {
  margin-bottom: 1em;
}
table.table_address:last-child, table.table_timetable:last-child, table.table:last-child {
  margin-bottom: 0;
}
table.table_address {
  background: none;
}
table.table_address th, table.table_address td {
  text-align: left;
  padding: 1em 0 1em 0.5em;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
}
table.table_address th {
  color: #154f44;
  border-top: 1px solid #154f44;
  border-bottom: 1px solid #154f44;
  font-weight: 600;
  text-align: left;
  width: 32%;
}
@media (min-width: 768px) {
  table.table_address th {
    width: 25%;
  }
  table.table_address th, table.table_address td {
    padding: 1.5em 0 1.5em 1em;
  }
}
table.table_timetable {
  table-layout: fixed;
}
table.table_timetable th, table.table_timetable td {
  background: none;
  padding: 0.8rem 0.2rem;
  text-align: center;
  border: none;
}
table.table_timetable thead {
  border-bottom: 1px solid #dddddd;
}
table.table_timetable thead th {
  background: none;
  color: #333333;
}
table.table_timetable thead th:first-child {
  width: 30%;
}
table.table_timetable tbody {
  border-bottom: 1px solid #dddddd;
}
table.table_timetable tbody th {
  text-align: center;
}
@media (max-width: 767px) {
  table.table_timetable {
    font-size: 90%;
  }
}
table.table th, table.table td {
  border: 1px solid #dddddd;
  font-weight: normal;
  padding: 0.75em 0.35em;
  text-align: center;
}
table.table thead th, table.table thead td {
  background: #f0dfd3;
  color: #333333;
  font-weight: bold;
}
table.table tbody th {
  background: #fef1e7;
}
table.table tbody td {
  background: #fff;
}
@media (min-width: 768px) {
  table.table th, table.table td {
    padding: 1.3em 1em;
  }
}
table.th_td_left tbody th, table.th_td_left tbody td {
  text-align: left;
}
table.th_left tbody th {
  text-align: left;
}
table.td_left tbody td {
  text-align: left;
}
table.td_right tbody td {
  text-align: right;
}
table.td_last_right tbody td:last-child {
  text-align: right;
}
table.table_default tbody th, table.table_default tbody td {
  text-align: left;
}
table.table_default:not(.table_fixed) tbody tr th:first-child {
  width: 32%;
}
@media (min-width: 768px) {
  table.table_default:not(.table_fixed) tbody tr th:first-child {
    width: 25%;
  }
}
table.table_fee tbody th {
  text-align: left;
}
table.table_fee tbody td:last-child {
  text-align: right;
}
table.table_fixed {
  table-layout: fixed;
}
@media (max-width: 767px) {
  table.table_sp_stack, table.table_sp_stack_noborder {
    border-bottom: 1px solid #dddddd;
  }
  table.table_sp_stack thead, table.table_sp_stack tbody, table.table_sp_stack tr, table.table_sp_stack th, table.table_sp_stack td, table.table_sp_stack_noborder thead, table.table_sp_stack_noborder tbody, table.table_sp_stack_noborder tr, table.table_sp_stack_noborder th, table.table_sp_stack_noborder td {
    display: block;
    width: auto;
  }
  table.table_sp_stack th, table.table_sp_stack_noborder th {
    border-bottom: none;
  }
  table.table_sp_stack td, table.table_sp_stack_noborder td {
    border-bottom: none;
  }
  table.table_sp_stack_noborder th {
    border-top-color: #dddddd;
    padding-bottom: 0.25em;
  }
  table.table_sp_stack_noborder td {
    border-top: none;
    padding-top: 0.25em;
  }
}

.consul {
  color: #154f44 !important;
}

.consul2 {
  color: #fef1e7 !important;
}

.js-scrollable,
.js-scrollable_pc {
  margin-bottom: 1em;
}
.js-scrollable table,
.js-scrollable_pc table {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .js-scrollable table {
    width: auto;
    min-width: 768px;
  }
  .js-scrollable table.table_fixed {
    width: 100%;
  }
}
.js-scrollable_pc table {
  width: auto;
  min-width: 768px;
}
.js-scrollable_pc table.table_fixed {
  width: 100%;
}
@media (min-width: 768px) {
  .js-scrollable_pc table {
    min-width: 1300px;
  }
}

.js-scrollable.scroll-hint {
  overflow-y: hidden !important;
}

.box_faq {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 28px;
  margin-bottom: 28px;
}
.box_faq:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.box_faq .question,
.box_faq .answer {
  padding: 6px 0px 6px 60px;
  position: relative;
}
.box_faq .question::before,
.box_faq .answer::before {
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 600;
  height: 40px;
  left: 0;
  letter-spacing: 0;
  line-height: 36.8px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 40px;
}
.box_faq .question {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}
.box_faq .question::before {
  content: "Q";
  color: #fff;
  background: #154f44;
}
.box_faq .question .faq_title {
  cursor: pointer;
  font-family: "Shippori Mincho", serif;
  margin-top: 0;
  padding-right: 20px;
  position: relative;
}
.box_faq .question .faq_title::before, .box_faq .question .faq_title::after {
  position: absolute;
  content: "";
  top: 12px;
  right: 0;
  background: #154f44;
  border-radius: 1px;
  width: 16px;
  height: 3px;
}
.box_faq .question .faq_title::after {
  transform: rotate(90deg);
  transition: 0.3s;
}
.box_faq .question.open .faq_title::after {
  transform: rotate(0);
}
.box_faq .answer {
  display: none;
  padding-top: 37px;
}
.box_faq .answer p {
  margin-top: 0;
}
.box_faq .answer::before {
  content: "A";
  color: #fff;
  background: #333333;
  top: 30px;
}

.flow-box {
  margin-bottom: 50px;
}
.flow-box:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .flow-box {
    margin-bottom: 40px;
  }
  .flow-box:last-child {
    margin-bottom: 0;
  }
}

.flow-block {
  background: #ffffff; /* 背景：白 */
  border: none; /* 枠線は不要なら消す（あってもOK） */
  border-radius: 8px; /* 角丸 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* ドロップシャドウ */
  margin-top: 82px;
  padding: 50px;
  position: relative;
}
.flow-block:first-child {
  margin-top: 0;
}
.flow-block:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .flow-block {
    padding: 24px 16px;
  }
}
.flow-block::after {
  content: "";
  bottom: -95px;
  border: 32px solid transparent;
  border-top-color: #e5ebee;
  left: 50%;
  margin-left: -32px;
  position: absolute;
}
@media (max-width: 767px) {
  .flow-block::after {
    bottom: -95px;
  }
}
.flow-block:last-child::after, .flow-block.last::after {
  display: none;
}
.section_bg .flow-block {
  background: #fff;
}
.section_bg .flow-block::after {
  border-top-color: #fef1e7;
}
.flow-block .title {
  --flow-title-font-size: 18px; /* .flow-block .title の font-size */
  --flow-title-line-height: 1.5; /* .flow-block .title の line-height */
  /**/
  flex: 0 0 auto;
  display: flex;
  font-family: "Shippori Mincho", serif;
  font-size: var(--flow-title-font-size);
  line-height: var(--flow-title-line-height);
  margin-top: 0 !important;
  padding: 0;
  text-align: left;
  border: none;
}
@media (min-width: 768px) {
  .flow-block .title {
    --flow-title-font-size: 24px; /* .flow-block .title の font-size */
  }
}
.flow-block .title::after, .flow-block .title::before {
  display: none;
}
.flow-block .title .num {
  --flow-num-font-percent: 0.83; /* .flow-block .title .num フォントサイズ */
  --flow-num-width: calc( var(--flow-title-line-height) * var(--flow-title-font-size) * var(--flow-num-font-percent) + ( var(--flow-title-font-size) / 6 ) ); /* .flow-block .title .num の width*/
  /**/
  display: block;
  border: #333333;
  background: #333333;
  margin-right: 0.5em;
  margin-bottom: auto;
  color: #fff;
  border-radius: 2px;
  flex: none;
  font-size: calc(var(--flow-title-font-size) * var(--flow-num-font-percent));
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
  line-height: var(--flow-num-width);
  width: var(--flow-num-width);
  aspect-ratio: 1;
  transform: translateY(calc(var(--flow-title-font-size) / 6 / 2 - var(--yugo-minus)));
}
@media (min-width: 768px) {
  .flow-block .title {
    font-size: var(--flow-title-font-size);
  }
}

.home .footer {
  border-top: none;
}

.footer {
  padding-top: 50px;
  background: #fff;
  overflow: hidden;
  border-top: 2px solid #154f44;
}
@media (min-width: 768px) {
  .footer .logo_img {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .footer .sp_menu_info_lead {
    padding-right: 2em;
  }
}
.footer .footer_ul li {
  padding: 0.5em 0;
  border-bottom: solid 1px #dcdcdc;
}
.footer .sec_img {
  margin: 0;
}
.footer .footer_menu {
  margin: 0 auto 20px;
  width: 280px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .footer .footer_menu {
    margin: 0 0 20px auto;
  }
}
.footer .footer_menu li + li {
  margin-top: 1.3em;
}
.footer .footer_menu a {
  display: block;
  padding-right: 0.5em;
  padding-left: 1.2em;
  position: relative;
  text-decoration: none;
  color: #333333;
  line-height: 1;
}
.footer .footer_menu a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.1em;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}
.footer .footer_menu a:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 1px;
  top: 0.1em;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  background: #333333;
}
.footer .footer_menu a:hover:after {
  right: 0;
}
.footer .fotoer_bnr {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer .fotoer_bnr {
    margin: 0 0 0 auto;
  }
}
@media (min-width: 768px) {
  .footer {
    padding-top: 100px;
  }
  .footer .googlemap {
    height: 100%;
    padding-top: initial;
  }
}

.copyright {
  background: none;
  color: #333333;
  padding: 60px 0 75px;
  text-align: right;
}
@media (max-width: 767px) {
  .copyright {
    text-align: center;
    padding: 10px 0 17%;
  }
}

.list_list dd a {
  color: #333333;
  text-decoration: none;
}
.list_list dd a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .list_list dt {
    padding: 0.5em 0 0;
  }
  .list_list dd {
    padding: 0 0 0.5em;
  }
}
@media (min-width: 768px) {
  .list_list dt {
    float: left;
  }
  .list_list dd {
    padding-left: 120px;
  }
}

.loopslider_wrap {
  overflow: hidden;
}
.loopslider_wrap .loopslider_item {
  margin: 0;
}

.loopslider {
  animation: loopslider 120s linear infinite;
  display: flex;
  width: 2400px;
  height: 100%;
}

@keyframes loopslider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1200px);
  }
}
@media (min-width: 768px) {
  .loopslider {
    animation: loopslider 140s linear infinite;
    width: 3840px;
  }
  @keyframes loopslider {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1920px);
    }
  }
}
.img_slider {
  max-width: 850px;
  margin: auto;
}

.img_slider img {
  border-radius: 0;
}

.img_slider .img_slide_thumb {
  margin-top: 10px;
}

.img_slider .img_slide_thumb img {
  padding: 0 2px;
}

.img_slider .img_slide_main .slick-prev,
.img_slider .img_slide_main .slick-next {
  width: 20px;
  height: 20px;
}

.img_slider .img_slide_main .slick-prev::before,
.img_slider .img_slide_main .slick-next::before {
  font-size: 20px;
}

.img_slider .img_slide_main .slick-prev {
  left: 5px;
  z-index: 1;
}

.img_slider .img_slide_main .slick-next {
  right: 5px;
}

.img_slider .img_slide_main .item {
  position: relative;
}

.img_slider .img_slide_main .img_slider_title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 10px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .img_slider .img_slide_thumb img {
    padding: 0 5px;
  }
  .img_slider .img_slide_main .slick-prev,
  .img_slider .img_slide_main .slick-next {
    width: 30px;
    height: 30px;
  }
  .img_slider .img_slide_main .slick-prev::before,
  .img_slider .img_slide_main .slick-next::before {
    font-size: 30px;
  }
  .img_slider .img_slide_main .slick-prev {
    left: 20px;
  }
  .img_slider .img_slide_main .slick-next {
    right: 20px;
  }
}
h2.top_ttl {
  padding: 0;
  font-size: 40px;
}
@media (max-width: 767px) {
  h2.top_ttl {
    font-size: 24px;
  }
}
h2.top_ttl:after {
  content: none;
}

p.gradation_ttl {
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1 !important;
  font-family: Arial, Helvetica, sans-serif;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(240, 245, 230, 0.99608) 0%, rgb(225, 235, 207) 0%, rgb(220, 238, 240) 25%, rgb(234, 234, 241) 50%, rgb(254, 228, 233) 75%, rgb(253, 223, 202) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  p.gradation_ttl {
    font-size: 200px;
  }
}

@media (min-width: 768px) {
  .con_text {
    display: table;
  }
}

.sec_bnr {
  padding: 50px 0 25px;
}
@media (min-width: 768px) {
  .sec_bnr {
    padding: 70px 0 70px;
  }
}
.sec_bnr .slick-next,
.sec_bnr .slick-prev {
  transform: translate(0, -50%) rotate(45deg);
  top: 50%;
  right: 0;
  left: auto;
  z-index: 1;
}
.sec_bnr .slick-prev {
  left: 0;
  right: auto;
}
@media (max-width: 767px) {
  .sec_bnr .slick-next {
    right: -2%;
    left: auto;
  }
  .sec_bnr .slick-prev {
    left: -2%;
    right: auto;
  }
}
.sec_bnr .slick-next:before,
.sec_bnr .slick-prev:before {
  content: "";
  display: block;
  margin: auto;
  width: 18px;
  height: 18px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transition: 0.2s;
}
.sec_bnr .slick-prev:before {
  border-bottom: 1px solid #333333;
  border-left: 1px solid #333333;
  border-right: none;
  border-top: none;
}
.sec_bnr .bnr_slider {
  text-align: center;
  width: 96%;
  margin: 0 auto;
  max-width: 700px;
}
.sec_bnr .item img {
  margin: auto;
}

.sec_news {
  padding: 25px 0;
}
@media (min-width: 768px) {
  .sec_news {
    padding: 70px 0 190px;
  }
}
@media (min-width: 768px) {
  .sec_news .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.sec_news h2.news_ttl {
  font-size: 24px;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .sec_news h2.news_ttl {
    font-size: 30px;
  }
}
.sec_news .btn {
  text-decoration: none;
  display: block;
  color: #333333;
  position: relative;
  width: 100%;
  max-width: 330px;
  padding: 0.8em;
  margin: 0 auto;
}
.sec_news .btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(90deg, rgba(252, 243, 246, 0.99608) 0%, rgb(254, 239, 228) 100%);
  z-index: -1;
}
.sec_news .btn:hover {
  color: #333333;
}
.sec_news .btn .arrow {
  padding-right: 30px;
  position: relative;
}
.sec_news .btn .arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}
.sec_news .news_box_dl {
  flex: 1;
}
@media (min-width: 768px) {
  .sec_news .news_box {
    display: flex;
  }
}
@media (min-width: 768px) {
  .sec_news .news_box .news_box_title {
    margin-left: max(50% - 600px, 20px);
    margin-right: 50px;
  }
}
@media (min-width: 768px) {
  .sec_news .news_box .list_with_cat {
    display: grid;
    grid-template-columns: max-content auto;
  }
}
.sec_news .news_box .list_with_cat dt {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  padding: 1em 0.5em 0.5em 0.5em;
  border-bottom: none;
}
@media (min-width: 768px) {
  .sec_news .news_box .list_with_cat dt {
    padding: 1em 0.5em 1em 1.5em;
    border-bottom: solid 1px #d9d9d9;
  }
}
@media (max-width: 767px) {
  .sec_news .news_box .list_with_cat dt:first-child {
    padding-top: 0;
  }
}
.sec_news .news_box .list_with_cat dd {
  padding: 0 0 1em 0.5em;
  border-bottom: solid 1px #d9d9d9;
}
@media (min-width: 768px) {
  .sec_news .news_box .list_with_cat dd {
    padding: 1em 1.5em 1em 0.5em;
    padding-right: max(50vw - 600px, 20px);
  }
}
.sec_news .news_box .list_with_cat dd a {
  text-decoration: none;
  color: #333333;
  padding-right: 1em;
  position: relative;
  display: block;
}
.sec_news .news_box .list_with_cat dd a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.3em;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}
.sec_news .news_box .list_with_cat dd a:hover {
  opacity: 0.8;
}
.sec_news .news_box .list_with_cat dd a:hover:after {
  right: 0;
}
.sec_news .news_box .list_with_cat .list_category {
  color: #fff;
  padding: 0.1em 0.5em 0.2em 0.5em;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 0.4em;
  text-align: center;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .sec_news .news_box .list_with_cat .list_category {
    flex: 1;
  }
}
.sec_news .news_box .list_with_cat .list_category.catname-takasu {
  background-color: #c3d997;
}
.sec_news .news_box .list_with_cat .list_category.catname-care_garden {
  background-color: #9bc4e0;
}
.sec_news .news_box .list_with_cat .list_category.catname-group_home {
  background-color: #c9b8e8;
}
.sec_news .news_box .list_with_cat .list_category.catname-sunrise {
  background-color: #eebdd8;
}
.sec_news .news_box .list_with_cat .list_category.catname-care_servise {
  background-color: #f4ba9c;
}
.sec_news .news_box .list_with_cat .list_category.catname-station {
  background-color: #78DEA9;
}
.sec_news .news_box .list_with_cat .list_category.catname-helper {
  background-color: #FFD44B;
}
.sec_news .news_box .list_with_cat .list_title {
  flex: 1;
}

.sec_about {
  padding: 50px 0 50px;
  background: url(../img/top/bg01.jpg) no-repeat center bottom/auto 60%;
}
@media (min-width: 768px) {
  .sec_about {
    padding: 50px 0 200px;
    background: url(../img/top/bg01.jpg) no-repeat center bottom;
  }
}
.sec_about .gradation_ttl {
  text-align: center;
  padding-top: 0.5em;
  position: relative;
}
.sec_about .gradation_ttl:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 0.5em;
  top: 0;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  background: #d9d9d9;
}
.sec_about .about_ttl {
  margin-top: -1.2em;
}
@media (min-width: 768px) {
  .sec_about .about_ttl {
    margin-top: -1.8em;
  }
}
.sec_about .menu_list1 {
  display: flex;
  flex-wrap: wrap;
}
.sec_about .menu_list1 li {
  border-right: solid 1px #d9d9d9;
  border-bottom: solid 1px #d9d9d9;
  width: 50%;
}
@media (max-width: 767px) {
  .sec_about .menu_list1 li:nth-child(-n+2) {
    border-top: solid 1px #d9d9d9;
  }
  .sec_about .menu_list1 li:nth-child(2n-1) {
    border-left: solid 1px #d9d9d9;
  }
}
@media (min-width: 768px) {
  .sec_about .menu_list1 li {
    width: 25%;
  }
  .sec_about .menu_list1 li:nth-child(-n+4) {
    border-top: solid 1px #d9d9d9;
  }
  .sec_about .menu_list1 li:nth-child(4n-3) {
    border-left: solid 1px #d9d9d9;
  }
}
.sec_about .menu_list1 a {
  text-decoration: none;
  color: #333333;
  width: 100%;
  padding: 10px 10px 20px 10px;
  box-sizing: border-box;
  display: block;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 155px;
}
@media (min-width: 768px) {
  .sec_about .menu_list1 a {
    height: 100%;
    padding: 20px 20px 35px 20px;
  }
}
.sec_about .menu_list1 a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 25px;
  right: 25px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}
.sec_about .menu_list1 a:hover {
  color: rgba(51, 51, 51, 0.8);
}
.sec_about .menu_list1 a:hover:after {
  right: 23px;
}
.sec_about .menu_list1 .text {
  display: block;
  font-weight: 500;
  font-size: clamp(14px, 4vw, 18px);
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .sec_about .menu_list1 .text {
    font-size: 20px;
  }
}
.sec_about .menu_list1 .text small {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
.sec_about .menu_list1 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 68px;
}
@media (max-width: 767px) {
  .sec_about .menu_list1 .icon {
    flex: 1;
    width: 65.6px;
    height: 54.4px;
  }
}
@media (max-width: 767px) {
  .sec_about .menu_list1 .icon img {
    scale: 0.8;
  }
}
.sec_about .menu_list2 {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .sec_about .menu_list2 {
    padding: 50px 15px;
  }
}
.sec_about .menu_list2 > li {
  width: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .sec_about .menu_list2 > li {
    padding: 0 30px;
  }
}
.sec_about .menu_list2 > li:not(:last-child) {
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec_about .menu_list2 > li:not(:last-child) {
    border-bottom: none;
    border-right: solid 1px #d9d9d9;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .sec_about .menu_list2 > li {
    width: 25%;
  }
}
.sec_about .menu_list2 .menu_list2_ttl {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.sec_about .menu_list2 figure {
  text-align: center;
}
.sec_about .menu_list2 .menu_list2_link {
  margin-top: 30px;
}
.sec_about .menu_list2 .menu_list2_link li + li {
  margin-top: 1.3em;
}
.sec_about .menu_list2 .menu_list2_link a {
  display: block;
  padding-right: 0.5em;
  padding-left: 1.2em;
  position: relative;
  text-decoration: none;
  color: #333333;
  line-height: 1;
}
.sec_about .menu_list2 .menu_list2_link a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.1em;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}
.sec_about .menu_list2 .menu_list2_link a:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 1px;
  top: 0.1em;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  background: #333333;
}
.sec_about .menu_list2 .menu_list2_link a:hover:after {
  right: 0;
}

.sec_feature {
  padding: 40px 0 50px;
}
@media (min-width: 768px) {
  .sec_feature {
    padding: 100px 0 200px;
  }
}
.sec_feature p {
  line-height: 2.1;
}
.sec_feature .feature_ttl_sub {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 0;
  border: none;
  margin-top: 0;
}
@media (min-width: 768px) {
  .sec_feature .feature_ttl_sub {
    font-size: clamp(33px, 2.7vw, 40px);
  }
}
.sec_feature .feature_ttl_sub:before, .sec_feature .feature_ttl_sub:after {
  content: none;
}
.sec_feature .feature_ttl_sub_small {
  display: table;
  font-weight: bold;
  color: #333;
      background: linear-gradient(45deg, rgb(252, 243, 246) 0%, rgb(254, 239, 228) 100%);
 background-image: -moz-linear-gradient(45deg, rgb(252, 243, 246) 0%, rgb(254, 239, 228) 100%);
  background-image: -webkit-linear-gradient(45deg, rgb(252, 243, 246) 0%, rgb(254, 239, 228) 100%);
  background-image: -ms-linear-gradient(45deg, rgb(252, 243, 246) 0%, rgb(254, 239, 228) 100%);
  font-size: 16px;
  padding: 0.3em 0.5em 0.4em 0.5em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
  
}
@media (min-width: 768px) {
  .sec_feature .feature_ttl_sub_small {
    font-size: 18px;
  }
}
.sec_feature .feature_intro {
  padding: 50px 0 0;
  background: url(../img/top/bg02.jpg) no-repeat right top/90%;
}
@media (min-width: 768px) {
  .sec_feature .feature_intro {
    padding: 100px 0 0;
    background: url(../img/top/bg02.jpg) no-repeat right top;
  }
}
.sec_feature .feature_intro .feature_ttl {
  text-align: left;
  line-height: 2;
}
.sec_feature .feature_intro .ol_link {
  counter-reset: number;
  display: table;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .sec_feature .feature_intro .ol_link {
    margin-top: 50px;
  }
}
.sec_feature .feature_intro .ol_link li {
  counter-increment: number;
}
.sec_feature .feature_intro .ol_link li + li {
  margin-top: 0.3em;
}
.sec_feature .feature_intro .ol_link li a {
  display: block;
  padding-left: 2.3em;
  padding-right: 2.2em;
  position: relative;
  text-decoration: none;
  color: #333333;
  font-size: 16px;
}
.sec_feature .feature_intro .ol_link li a::before {
  content: counter(number, decimal-leading-zero) ". ";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
  font-weight: 300;
  line-height: 1.4;
  font-size: 22px;
  line-height: 1.3;
}
.sec_feature .feature_intro .ol_link li a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 0.1em);
  right: 5%;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}
.sec_feature .feature_intro .ol_link li a:hover{
opacity:0.8;
}
.sec_feature .feature_intro .ol_link li a:hover::after {
  right: 4%;
}
.sec_feature .feature01 {
  background: url(../img/top/bg03.jpg) no-repeat left top;
  position: relative;
  z-index: 0;
  padding-top: 50px;
}
@media (min-width: 768px) {
  .sec_feature .feature01 {
    padding-top: 150px;
  }
}
.sec_feature .feature01 p.gradation_ttl {
  margin: 50px auto 0;
}
@media (min-width: 768px) {
  .sec_feature .feature01 p.gradation_ttl {
    margin: 140px auto 0 max(50% - 700px, 20px);
  }
}
.sec_feature .feature01 p.gradation_ttl + .container {
  margin-top: -10px;
}
@media (min-width: 768px) {
  .sec_feature .feature01 p.gradation_ttl + .container {
    margin-top: -40px;
  }
}
.sec_feature .feature01 .container.container2 {
  width: 1000px;
}
@media (min-width: 768px) {
  .sec_feature .feature01 .container.container2 .col_2:has(.con_text) {
    margin-top: 40px;
  }
}
.sec_feature .feature01 .parallax {
  display: block;
  height: 300px;
  position: relative;
  margin: 40px 0 50px;
}
@media (min-width: 768px) {
  .sec_feature .feature01 .parallax {
    height: 600px;
    margin: 80px 0 90px;
  }
}
.sec_feature .feature01 .parallax_attachment {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.sec_feature .feature01 .parallax_attachment_img {
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  height: 100%;
}
.sec_feature .feature01 .parallax_attachment_img img {
  position: fixed;
  width: 100%;
  height: 100svh;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .sec_feature .feature01 .parallax_attachment_img img {
  width: 100%;
  height: 100%;
  }
}
.sec_feature .feature01 .features_list1 {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 768px) {
  .sec_feature .feature01 .features_list1 {
    gap: 30px;
    margin-bottom: 50px;
  }
}
.sec_feature .feature01 .features_list1 li {
  width: calc((100% - 15px) / 2);
}
@media (min-width: 768px) {
  .sec_feature .feature01 .features_list1 li {
    width: calc((100% - 120px) / 5);
  }
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-4) a {
  border-color: #d7e4bd;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-4) a:before {
  background: linear-gradient(90deg, rgb(215, 228, 189) 0%, rgb(166, 211, 212) 100%);
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-4) a .num {
  background: #d7e4bd;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-4) a:hover .num {
  color: #aaceb6;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-3) a {
  border-color: #9fd1d8;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-3) a:before {
  background: linear-gradient(90deg, rgb(159, 209, 216) 0%, rgb(187, 200, 237) 100%);
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-3) a .num {
  background: #adcde3;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-3) a:hover .num {
  color: #adcde3;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-2) a {
  border-color: #c4c7f1;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-2) a:before {
  background: linear-gradient(90deg, rgb(196, 199, 241) 0%, rgb(235, 202, 243) 100%);
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-2) a .num {
  background: #d7c8f2;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-2) a:hover .num {
  color: #f5d0e4;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-1) a {
  border-color: #eeccf1;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-1) a:before {
  background: linear-gradient(90deg, rgb(238, 204, 241) 0%, rgb(253, 211, 214) 100%);
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-1) a .num {
  background: #f5d0e4;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n-1) a:hover .num {
  color: #f5d0e4;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n) a {
  border-color: #fdd0cc;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n) a:before {
  background: linear-gradient(90deg, rgb(253, 208, 204) 0%, rgb(250, 192, 144) 100%);
}
.sec_feature .feature01 .features_list1 li:nth-child(5n) a .num {
  background: #fbc8ae;
}
.sec_feature .feature01 .features_list1 li:nth-child(5n) a:hover .num {
  color: #fbc8ae;
}
.sec_feature .feature01 .features_list1 li a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 15px;
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
  gap: 0.5em;
  border: solid 1px;
}
@media (min-width: 768px) {
  .sec_feature .feature01 .features_list1 li a {
    font-size: 20px;
    height: 200px;
    border-radius: 30px;
  }
}
.sec_feature .feature01 .features_list1 li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}
@media (min-width: 768px) {
  .sec_feature .feature01 .features_list1 li a:after {
    bottom: 38px;
    right: 15px;
  }
}
.sec_feature .feature01 .features_list1 li a:before {
  content: "";
  width: 150%;
  padding-top: 150%;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform-origin: top left;
  transform: scale(0) translate(-50%, -50%);
  transition: inherit;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.18, 1);
}
.sec_feature .feature01 .features_list1 li a:hover {
  color: #fff;
}
.sec_feature .feature01 .features_list1 li a:hover:before {
  transform: scale(1) translate(-50%, -50%);
}
.sec_feature .feature01 .features_list1 li a:hover:after {
  border-color: #fff;
}
.sec_feature .feature01 .features_list1 li a:hover .num:before {
  transform: scale(1) translate(-50%, -50%);
}
.sec_feature .feature01 .features_list1 li .num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
@media (min-width: 768px) {
  .sec_feature .feature01 .features_list1 li .num {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
.sec_feature .feature01 .features_list1 li .num:before {
  content: "";
  width: 150%;
  padding-top: 150%;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform-origin: top left;
  transform: scale(0) translate(-50%, -50%);
  transition: inherit;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.18, 1);
  transition-delay: 0.2s;
}
@media (min-width: 768px) {
  .sec_feature .feature01 .features_list2 {
    gap: 30px;
    display: flex;
  }
}
@media (min-width: 768px) {
  .sec_feature .feature01 .features_list2 li {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 767px) {
  .sec_feature .feature01 .features_list2 li + li {
    margin-top: 15px;
  }
}
.sec_feature .feature01 .features_list2 li a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-color: rgb(179, 179, 179);
  border: solid 1px;
  position: relative;
  z-index: 0;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  color: #333333;
  border-radius: 20px;
  display: block;
  text-decoration: none;
  line-height: 1.5;
  padding: 0.8em;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media (min-width: 768px) {
  .sec_feature .feature01 .features_list2 li a {
    font-size: 22px;
  }
}
.sec_feature .feature01 .features_list2 li a .arrow {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.sec_feature .feature01 .features_list2 li a .arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 3px;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}
.sec_feature .feature01 .features_list2 li a .arrow:before {
  content: "";
  width: 120%;
  padding-top: 120%;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform-origin: top left;
  transform: scale(0) translate(-50%, -50%);
  transition: inherit;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.18, 1);
  transition-delay: 0.2s;
}
.sec_feature .feature01 .features_list2 li a:before {
  content: "";
  width: 120%;
  padding-top: 120%;
  border-radius: 100%;
  background-color: #454545;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform-origin: top left;
  transform: scale(0) translate(-50%, -50%);
  transition: inherit;
}
.sec_feature .feature01 .features_list2 li a:hover {
  color: #fff;
}
.sec_feature .feature01 .features_list2 li a:hover:before {
  transform: scale(1) translate(-50%, -50%);
}
.sec_feature .feature01 .features_list2 li a:hover .arrow:before {
  transform: scale(1) translate(-50%, -50%);
}
.sec_feature .feature-bg{
  background: url(../img/top/bg04.jpg) no-repeat top 40% left;

}
.sec_feature .feature02-03 {
  padding: 60px 0 40px;
}
.sec_feature .feature02-03 img{
border-radius:15px;
}
@media (min-width: 768px) {
.sec_feature .feature02-03 img{
border-radius:0;
}
  .sec_feature .feature02-03 {
    padding: 180px 0 0;
  }
}
@media (min-width: 768px) {
  .sec_feature .feature02-03 .container {
    padding: 0 0 100px;
    border-bottom: solid 1px #d9d9d9;
  }
}
.sec_feature .feature02-03 .box_text {
  position: relative;
}
@media (min-width: 768px) {
  .sec_feature .feature02-03 .box_text {
    padding-left: 120px;
  }
}
@media (min-width: 1450px) {
  .sec_feature .feature02-03 .box_text {
    margin-left: -120px;
  }
}
.sec_feature .feature02-03 .box_text .vertical_ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.4em;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .sec_feature .feature02-03 .box_text .vertical_ttl {
    writing-mode: vertical-lr;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .sec_feature .feature02-03 .box_img {
    text-align: right;
  }
  .sec_feature .feature02-03 .box_img img {
    max-width: 74%;
  }
}
.sec_feature .feature02-03 .feature_ttl_sub:not(:first-of-type) {
  margin-top: 2.5em;
}
@media (min-width: 768px) {
.sec_feature .feature02-03 .feature_ttl_sub:not(:first-of-type) {
  margin-top: 1em;
}
}

.sec_feature .feature02-03 .btnstyle {
  margin-top: 1em;
}
@media (min-width: 768px) {
.sec_feature .feature02-03 .btnstyle {
  margin-top: 2em;
}
}

.sec_feature .feature04 {
  background: url(../img/top/bg05.png) no-repeat center bottom/contain;
}
@media (min-width: 768px) {
  .sec_feature .feature04 .container {
    padding: 100px 0 100px;
    border-bottom: solid 1px #d9d9d9;
  }
}
.sec_feature .feature04 .feature_ttl_sub {
  text-align: left;
  margin: 0.5em 0 1em;
}
.sec_feature .feature04 .btnstyle a{
margin-right:0;
}
@media (min-width: 768px) {
.sec_feature .feature04 .feature_ttl_sub {
  text-align: center;
}
  .sec_feature .feature04 .con_text {
    margin: 0 auto;

  }
  .sec_feature .feature04 .btnstyle a{
margin-right:auto;
}
}
.sec_feature .feature05 {
  padding-top: 30px;
  background: url(../img/top/bg06.jpg) no-repeat center left 15%;
}
@media (min-width: 768px) {
  .sec_feature .feature05 {
    padding-top: 100px;
  }
}
@media (min-width: 768px) {
  .sec_feature .feature05 .con_text {
    margin-left: 0;
  }
}

.mce-content-body {
  /* 月間予約カレンダー、複合カレンダー、時間割カレンダー、リストカレンダー、ミックスカレンダー、月リストカレンダー */
  /* 指定日予約状況表示 */
  /* ミックスカレンダーデイリー */
  /* 予約フォーム */
  /* Ver.1.34.2 オプション選択肢料金非表示設定 */
  /* 予約フォーム料金表 */
  /* 予約フォーム　同意書　送信ボタン */
  /* 予約フォーム オプション表示項目 */
  /* 予約確認 キャンセル */
}
.mce-content-body .list-monthly-calendar,
.mce-content-body .mix-calendar,
.mce-content-body .list-calendar,
.mce-content-body .timetbale-calendar,
.mce-content-body .multiple-calendar,
.mce-content-body .monthly-calendar {
  margin-bottom: 1.5em;
}
.mce-content-body .list-calendar h3,
.mce-content-body .timetable-calendar h3,
.mce-content-body .multiple-calendar h3,
.mce-content-body .monthly-calendar h3 {
  font-size: 1.1em;
  margin: 0.5em 0;
}
.mce-content-body .calendar-caption {
  font-size: 1.2em;
}
.mce-content-body .mix-calendar th,
.mce-content-body .timetable-calendar th,
.mce-content-body .multiple-calendar th,
.mce-content-body .monthly-calendar th {
  font-size: 1.1em;
}
.mce-content-body .monthly-prev-next {
  font-size: 1em;
}
.mce-content-body .calendar-time-mark,
.mce-content-body .calendar-mark,
.mce-content-body .calendar-time-disable {
  font-size: 1.4em;
}
.mce-content-body .calendar-time-mark {
  line-height: 1.5em;
}
.mce-content-body .calendar-time-mark .time-string,
.mce-content-body .calendar-mark .article-name {
  font-size: 0.8em;
}
.mce-content-body .day-calendar {
  margin-bottom: 1.5em;
}
.mce-content-body .day-calendar h3 {
  font-size: 1.1em;
}
.mce-content-body .day-calendar th,
.mce-content-body .day-calendar td {
  font-size: 1em;
}
.mce-content-body th.day-left {
  line-height: 2.5em;
}
.mce-content-body td.day-right {
  font-size: 1.5em;
}
.mce-content-body .day-mix-calendar {
  margin-bottom: 1.5em;
}
.mce-content-body .day-mix-calendar th, .mce-content-body .day-mix-calendar td {
  font-size: 1em;
}
.mce-content-body .mix-dayrow.space-line {
  height: 1em;
}
.mce-content-body .content-form {
  margin-bottom: 1em;
}
.mce-content-body .content-form .form-message {
  margin-bottom: 1em;
  padding: 0.5em;
}
.mce-content-body .content-form fieldset {
  margin: 0 0 1.5em 0;
}
.mce-content-body .content-form legend {
  font-size: 1.1em;
}
.mce-content-body .content-form th {
  font-size: 1em;
  line-height: 2.2em;
}
.mce-content-body .content-form td {
  font-size: 0.9em;
}
.mce-content-body .content-form input,
.mce-content-body .content-form textarea {
  font-size: 1em;
}
.mce-content-body .content-text.small {
  width: 3em;
}
.mce-content-body .input-number {
  margin-right: 1em;
}
.mce-content-body .content-form .booking-seimei {
  width: 3em;
}
.mce-content-body .bill-details td {
  padding-right: 0.5em;
}
.mce-content-body .bill-total, .mce-content-body .bill-tax {
  padding-right: 1.5em;
}
.mce-content-body #terms-conditions,
.mce-content-body #accedence-box,
.mce-content-body #button-message {
  margin: 1em 0;
}
.mce-content-body .content-form input.booking-option-number {
  width: 3em;
}
.mce-content-body .content-form label.field-item {
  margin-right: 0.4em;
}
.mce-content-body .content-form label.field-item input {
  margin-right: 0.15em;
}
.mce-content-body .content-form select {
  font-size: 1em;
  padding: 0.1em 0.15em;
}
.mce-content-body .subscription-title {
  font-size: 1.2em;
}/*# sourceMappingURL=bond.css.map */