@charset "UTF-8";
/*----------------------------------------------------
	PLAN
----------------------------------------------------*/
.parent_list {
  justify-content: center;
  gap: 5px;
}
.parent_list .item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #bbb;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2rem);
}
.parent_list .item a {
  display: block;
  padding: 10px 40px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .parent_list .item a {
    padding: 10px 5px;
  }
}
.parent_list .item.plan-goudo.is-active {
  background: #b06356;
}
.parent_list .item.plan-kobetsu.is-active {
  background: #4e8b54;
}
.parent_list .item.plan-funeral.is-active {
  background: #29466e;
}

.child_list {
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .child_list {
    gap: 5px;
  }
}
.child_list .item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #bbb;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2rem);
  border-radius: 10px;
  padding: 5px 40px;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .child_list .item {
    padding: 2px 12px;
    text-align: center;
  }
}

.child_wrap {
  display: none;
}
.child_wrap.is-active {
  display: block;
}
.child_wrap .plan_detail_first {
  background: #fff;
  padding: 20px 40px;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .child_wrap .plan_detail_first {
    flex-direction: column-reverse;
    gap: 5px;
    margin-bottom: 30px;
    padding: 20px;
  }
}
.child_wrap .plan_detail_first .info {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .child_wrap .plan_detail_first .info {
    width: 100%;
  }
}
.child_wrap .plan_detail_first .info .catch {
  color: #fff;
  border-radius: 50px;
  margin-bottom: 20px;
  text-align: center;
}
.child_wrap .plan_detail_first .info .title {
  text-align: center;
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #1c7342;
}
.child_wrap .plan_detail_first .info .price_untax {
  font-family: "Oswald", sans-serif;
  font-size: 7.4rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}
.child_wrap .plan_detail_first .info .price_untax .yen {
  font-size: 0.5em;
  position: relative;
  font-weight: 700;
}
.child_wrap .plan_detail_first .info .price_untax .yen .tax {
  position: absolute;
  top: -5px;
  left: 3px;
  font-size: 0.4em;
}
.child_wrap .plan_detail_first .info .price_taxin {
  text-align: center;
}
.child_wrap .plan_detail_first .info .price_taxin .num {
  font-family: "Oswald", sans-serif;
  font-size: 1.2em;
}
.child_wrap .plan_detail_first .img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .child_wrap .plan_detail_first .img {
    width: 100%;
  }
}
.child_wrap .plan_detail_first .img .caption {
  font-size: 1.5rem;
}

.plan_flow {
  text-align: center;
}
.plan_flow .sec_title .color {
  color: #1c7342;
}
.plan_flow .title {
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}
.plan_flow .catch {
  margin-bottom: 30px;
}
.plan_flow .flow_list {
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .plan_flow .flow_list {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
.plan_flow .flow_list .item {
  aspect-ratio: 1/1;
  width: 120px;
  line-height: 120px;
  border-radius: 100px;
  background: #1c7342;
  text-align: center;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan_flow .flow_list .item {
    width: 90px;
    line-height: 90px;
  }
}
.plan_flow .flow_list .item:not(:last-of-type):after {
  content: "\f054";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  color: #1c7342;
  font-size: clamp(1.6rem, 4vw, 2rem);
}
@media screen and (max-width: 767px) {
  .plan_flow .flow_list .item:not(:last-of-type):after {
    right: -17px;
  }
}

.plan_isset {
  background: #fff;
  padding: 40px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
@media screen and (max-width: 820px) {
  .plan_isset {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .plan_isset {
    padding: 30px 15px;
  }
  .plan_isset .sec_title {
    font-size: 2.2rem;
  }
}
.plan_isset .plan_inset {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
  margin-bottom: 10px;
}
.plan_isset .plan_inset .flex {
  width: calc(25% - 4px);
  background: #fafafa;
  padding: 8px;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .plan_isset .plan_inset .flex {
    width: calc(33.3333333333% - 4px);
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 5px;
    gap: 0;
  }
}
.plan_isset .plan_inset .flex img {
  width: 60px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(1%) saturate(638%) hue-rotate(318deg) brightness(102%) contrast(86%);
}
.plan_isset .plan_inset .flex .name {
  font-weight: 700;
  color: #ccc;
  line-height: 1.2;
}
.plan_isset .plan_inset .flex.in .name {
  color: #1c7342;
}
.plan_isset .caption {
  font-size: 1.5rem;
  white-space: nowrap;
}

.plan_comparison_table .sec_title .color {
  color: #1c7342;
}
@media screen and (max-width: 767px) {
  .plan_comparison_table .table_wrapper {
    overflow-x: scroll;
  }
}
.plan_comparison_table .comparison_table {
  width: 100%;
  border-collapse: collapse;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .plan_comparison_table .comparison_table {
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .plan_comparison_table .comparison_table {
    width: 600px;
  }
}
.plan_comparison_table .comparison_table th,
.plan_comparison_table .comparison_table td {
  border: 1px solid #ccc;
  padding: 1em;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .plan_comparison_table .comparison_table th,
.plan_comparison_table .comparison_table td {
    padding: 0.5em;
  }
}
.plan_comparison_table .comparison_table th {
  color: #fff;
  font-size: 1.8rem;
  white-space: nowrap;
}
.plan_comparison_table .comparison_table .price_value {
  background: #fff;
}

.parent_wrap {
  display: none;
  background: #fafafa;
}
.parent_wrap.is-active {
  display: block;
  padding-top: 30px;
}
.parent_wrap#plan-goudo {
  border-top: 4px solid #b06356;
}
.parent_wrap#plan-goudo .child_list .is-active {
  background: #b87367;
}
.parent_wrap#plan-goudo .child_wrap .plan_detail_first .info .catch {
  background: #c08278;
}
.parent_wrap#plan-goudo .child_wrap .plan_detail_first .info .title {
  color: #b06356;
}
.parent_wrap#plan-goudo .plan_flow .sec_title .color {
  color: #b06356;
}
.parent_wrap#plan-goudo .plan_flow .flow_list .item {
  background: #b06356;
}
.parent_wrap#plan-goudo .plan_flow .flow_list .item:after {
  color: #b06356;
}
.parent_wrap#plan-goudo .plan_isset .plan_inset .flex.in {
  background: #fbf7f7;
}
.parent_wrap#plan-goudo .plan_isset .plan_inset .flex.in .name {
  color: #b06356;
}
.parent_wrap#plan-goudo .plan_isset .plan_inset .flex.in img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(29%) saturate(787%) hue-rotate(321deg) brightness(92%) contrast(90%);
}
.parent_wrap#plan-goudo .plan_comparison_table .comparison_table th {
  background: #d0a19a;
}
.parent_wrap#plan-goudo .plan_comparison_table .sec_title .color {
  color: #b06356;
}
.parent_wrap#plan-kobetsu {
  border-top: 4px solid #4e8b54;
}
.parent_wrap#plan-kobetsu .child_list .is-active {
  background: #609765;
}
.parent_wrap#plan-kobetsu .child_wrap .plan_detail_first .info .catch {
  background: #71a276;
}
.parent_wrap#plan-kobetsu .child_wrap .plan_detail_first .info .title {
  color: #4e8b54;
}
.parent_wrap#plan-kobetsu .plan_flow .sec_title .color {
  color: #4e8b54;
}
.parent_wrap#plan-kobetsu .plan_flow .flow_list .item {
  background: #4e8b54;
}
.parent_wrap#plan-kobetsu .plan_flow .flow_list .item:after {
  color: #4e8b54;
}
.parent_wrap#plan-kobetsu .plan_isset .plan_inset .flex.in {
  background: #f6f9f6;
}
.parent_wrap#plan-kobetsu .plan_isset .plan_inset .flex.in .name {
  color: #4e8b54;
}
.parent_wrap#plan-kobetsu .plan_isset .plan_inset .flex.in img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(45%) saturate(410%) hue-rotate(75deg) brightness(88%) contrast(92%);
}
.parent_wrap#plan-kobetsu .plan_comparison_table .comparison_table th {
  background: #95b998;
}
.parent_wrap#plan-kobetsu .plan_comparison_table .sec_title .color {
  color: #4e8b54;
}
.parent_wrap#plan-funeral {
  border-top: 4px solid #29466e;
}
.parent_wrap#plan-funeral .child_list .is-active {
  background: #3e597d;
}
.parent_wrap#plan-funeral .child_wrap .plan_detail_first .info .catch {
  background: #546b8b;
}
.parent_wrap#plan-funeral .child_wrap .plan_detail_first .info .title {
  color: #29466e;
}
.parent_wrap#plan-funeral .plan_flow .sec_title .color {
  color: #29466e;
}
.parent_wrap#plan-funeral .plan_flow .flow_list .item {
  background: #29466e;
}
.parent_wrap#plan-funeral .plan_flow .flow_list .item:after {
  color: #29466e;
}
.parent_wrap#plan-funeral .plan_isset .plan_inset .flex.in {
  background: #f4f6f8;
}
.parent_wrap#plan-funeral .plan_isset .plan_inset .flex.in .name {
  color: #29466e;
}
.parent_wrap#plan-funeral .plan_isset .plan_inset .flex.in img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(15%) saturate(2056%) hue-rotate(176deg) brightness(96%) contrast(92%);
}
.parent_wrap#plan-funeral .plan_comparison_table .comparison_table th {
  background: #7f90a8;
}
.parent_wrap#plan-funeral .plan_comparison_table .sec_title .color {
  color: #29466e;
}

@media screen and (max-width: 767px) {
  .plan_option_price .flex {
    flex-direction: column;
  }
}
.plan_option_price .table_wrap {
  width: calc(50% - 15px);
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .plan_option_price .table_wrap {
    width: 100%;
  }
}
.plan_option_price .table_wrap .title {
  font-size: clamp(2rem, 4vw, 2.4rem);
  text-align: center;
  background: #f7eef4;
  padding: 8px;
}
.plan_option_price .table_wrap .title .color {
  color: #b35092;
}
.plan_option_price .table_wrap table {
  width: 100%;
  padding: 20px;
  position: relative;
}
.plan_option_price .table_wrap table tr:nth-child(odd) {
  background: #eee;
}
.plan_option_price .table_wrap table th,
.plan_option_price .table_wrap table td {
  padding: 0.5em;
}
.plan_option_price .table_wrap table th {
  width: 30%;
}
.plan_option_price .table_wrap table td {
  width: 70%;
}
.plan_option_price .table_wrap table caption {
  caption-side: bottom;
  position: relative;
  top: -1em;
  font-size: 1.5rem;
}

@media screen and (max-width: 1100px) {
  .other_plan_list .plan_box {
    flex-direction: column;
  }
}
.other_plan_list .plan_box .box {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
}
.other_plan_list .plan_box .box .flex {
  align-items: center;
  gap: 0;
  height: 100%;
}
.other_plan_list .plan_box .box .flex .plan_box_info_wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 15px;
}
@media screen and (max-width: 820px) {
  .other_plan_list .plan_box .box .flex .plan_box_info_wrap {
    padding: 0;
  }
}
.other_plan_list .plan_box .box .flex .plan_box_info_wrap .plan_box_catch {
  font-size: clamp(1.5rem, 4vw, 1.6rem);
  line-height: 1.4;
}
.other_plan_list .plan_box .box .flex .plan_box_info_wrap .plan_box_title {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Lora", "YakuHanMincho", "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho Pro", serif;
}
.other_plan_list .plan_box .box .flex .plan_box_img {
  width: 30%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .other_plan_list .plan_box .box .flex .plan_box_img {
    aspect-ratio: 1/1;
  }
}
.other_plan_list .plan_box .box .flex .plan_box_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.other_plan_list .plan_box .plan_goudo {
  background: #b06356;
  border: 2px solid #b06356;
  border-radius: 10px;
  overflow: hidden;
}
.other_plan_list .plan_box .plan_kobetsu {
  background: #4e8b54;
  border: 2px solid #4e8b54;
  border-radius: 10px;
  overflow: hidden;
}
.other_plan_list .plan_box .plan_funeral {
  background: #29466e;
  border: 2px solid #29466e;
  border-radius: 10px;
  overflow: hidden;
}

/*----------------------------------------------------
	施設紹介
----------------------------------------------------*/
.floor_first .fukidashi {
  background: #b35092;
  text-align: center;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.4rem);
  padding: 10px 30px;
  border-radius: 4px;
  font-family: "Lora", "YakuHanMincho", "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho Pro", serif;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  position: relative;
  margin-bottom: 20px;
}
.floor_first .fukidashi:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 14px solid #b35092;
  border-bottom: 0;
  position: absolute;
  bottom: -14px;
  right: 0;
  left: 0;
  margin: auto;
}
.floor_first .gallery {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .floor_first .gallery {
    gap: 10px;
  }
}
.floor_first .gallery figure {
  width: calc(33.3333333333% - 14px);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .floor_first .gallery figure {
    width: calc(50% - 5px);
  }
}
.floor_first .gallery figure img {
  width: 90%;
}
.floor_first .gallery figcaption {
  background: #b35092;
  z-index: 2;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -20px auto 0;
  padding: 5px 20px;
  border-radius: 4px;
  color: #fff;
  line-height: 1.4;
}
.floor_first .information_box {
  background: #fafafa;
  padding: 30px;
}
@media screen and (max-width: 820px) {
  .floor_first .information_box {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 767px) {
  .floor_first .information_box {
    flex-direction: column;
  }
}
.floor_first .information_box .wrap {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .floor_first .information_box .wrap {
    width: 100%;
  }
}
.floor_first .information_box .wrap .info {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  margin-bottom: 20px;
}
.floor_first .information_box .wrap .info .title {
  width: 30%;
  border-bottom: 1px solid #eee;
  padding: 1em 0 1em 1em;
  font-weight: 700;
}
.floor_first .information_box .wrap .info .detail {
  width: 70%;
  border-bottom: 1px solid #eee;
  padding: 1em;
}
.floor_first .information_box .map_wrap {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .floor_first .information_box .map_wrap {
    width: 100%;
    height: 300px;
  }
}
.floor_first .information_box .map_wrap iframe {
  width: 100%;
  height: 100%;
}

.floor_about .inner {
  position: relative;
  z-index: 2;
}
.floor_about .text {
  width: 70%;
  padding: 30px;
}
@media screen and (max-width: 820px) {
  .floor_about .text {
    width: 100%;
    padding: 20px;
  }
}
.floor_about .text .title {
  font-family: "Lora", "YakuHanMincho", "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho Pro", serif;
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 3rem);
}
.floor_about .text p {
  margin-bottom: 1em;
}
.floor_about img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .floor_about img {
    position: relative;
  }
}
.floor_about .btn {
  margin-right: 0;
}

/*----------------------------------------------------
	ACCESS
----------------------------------------------------*/
@media screen and (max-width: 820px) {
  .access_column .catch {
    text-align: left;
  }
}
.access_column .access_info {
  text-align: center;
}
.access_column .access_info .map_wrap {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .access_column .access_info .map_wrap {
    width: 100%;
    height: 300px;
  }
}
.access_column .access_info .map_wrap iframe {
  width: 100%;
  height: 100%;
}
.access_column .access_info .lead {
  text-decoration: underline;
}
.access_column .access_info .lead:after {
  content: "\f35d";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
}
.access_column .access_type {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .access_column .access_type {
    flex-direction: column;
    gap: 0;
  }
}
.access_column .access_type .item {
  width: calc(33.3333333333% - 15px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .access_column .access_type .item {
    width: 100%;
    padding: 20px 0;
  }
  .access_column .access_type .item:nth-child(2) {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
}
.access_column .access_type .item > .flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .access_column .access_type .item > .flex {
    gap: 10px;
    flex-direction: row;
    margin-bottom: 10px;
  }
}
.access_column .access_type .item i {
  color: #b35092;
  font-size: 4.5rem;
}
@media screen and (max-width: 767px) {
  .access_column .access_type .item i {
    font-size: 3rem;
  }
}
.access_column .access_type .item .title {
  font-weight: 700;
  color: #b35092;
  font-size: 2rem;
  border-bottom: 2px solid #b35092;
  position: relative;
}
.access_column .access_type .item .title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 15px solid #b35092;
  border-bottom: 0;
}
.access_column .access_map {
  max-width: 900px;
  margin: 0 auto;
  background: #f7f7f7;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .access_column .access_map {
    padding: 10px;
  }
}
.access_column .access_map .map_link {
  position: relative;
}
.access_column .access_map .map_link i {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1.8rem;
  background: #b35092;
  color: #fff;
  border-radius: 80px;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .access_column .access_map .map_link i {
    font-size: 1.4rem;
    bottom: 5px;
    right: 5px;
  }
}
.access_column .access_map .flex {
  gap: 10px;
}

.guide_intro .guide_greeting {
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .guide_intro .guide_greeting {
    flex-direction: column;
    gap: 10px;
  }
}
.guide_intro .guide_greeting .lead {
  width: 55%;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .guide_intro .guide_greeting .lead {
    width: 100%;
  }
}
.guide_intro .guide_greeting .img {
  flex: 1;
}
.guide_intro .guide_greeting .img img {
  width: 100%;
}
.guide_intro .guide_link {
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .guide_intro .guide_link {
    gap: 5px;
  }
}
.guide_intro .guide_link .item {
  width: calc(33.3333333333% - 15px);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .guide_intro .guide_link .item {
    width: calc(50% - 3px);
  }
}
.guide_intro .guide_link .item a {
  padding: 10px 15px;
  color: #b35092;
  background: #f7eef4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  border-radius: 5px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .guide_intro .guide_link .item a {
    padding: 10px;
    flex-direction: column;
    gap: 5px;
  }
}
.guide_intro .guide_link .item a:after {
  content: "\f0d7";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  transform: translateY(-50%);
  top: 50%;
}
.guide_intro .guide_link .item a img {
  width: 45px;
  height: 45px;
  padding: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #b35092;
  border-radius: 80px;
}

.guide_flow {
  padding: 80px 0;
}
@media screen and (max-width: 820px) {
  .guide_flow {
    padding: 80px 0 40px;
  }
}
.guide_flow .shape {
  position: absolute;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  left: 0;
  top: 0;
}
.guide_flow .shape svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
  transform: rotateY(180deg);
}
@media screen and (max-width: 767px) {
  .guide_flow .shape svg {
    height: 30px;
  }
}
.guide_flow .shape .shape-fill {
  fill: #fff;
}
.guide_flow .sec_title {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .guide_flow .sec_title {
    margin-bottom: 40px;
  }
}
.guide_flow .wrap {
  position: relative;
}
.guide_flow .wrap:before {
  content: "";
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #f0dce9;
}
.guide_flow .box {
  background: #fff;
  padding: 30px 40px 20px 40px;
  align-items: center;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  gap: 60px;
}
@media screen and (max-width: 820px) {
  .guide_flow .box {
    padding: 30px 30px 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .guide_flow .box {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.guide_flow .box:not(:last-of-type) {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .guide_flow .box:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.guide_flow .box .info {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .guide_flow .box .info {
    width: 100%;
  }
}
.guide_flow .box .info .label {
  font-family: "Lora", "YakuHanMincho", "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho Pro", serif;
  font-size: 3rem;
  position: absolute;
  top: -30px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .guide_flow .box .info .label {
    top: -30px;
  }
}
.guide_flow .box .info .label .num {
  font-size: 5rem;
  color: #b35092;
}
.guide_flow .box .info .title {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .guide_flow .box .info .title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .guide_flow .box .info .title {
    font-size: 2.4rem;
  }
}
.guide_flow .box .info .lead a {
  text-decoration: underline;
  color: #b35092;
}
.guide_flow .box .info .cta {
  justify-content: center;
  align-items: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 820px) {
  .guide_flow .box .info .cta {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.guide_flow .box .info .cta .tel {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 2.6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .guide_flow .box .info .cta .tel {
    border: 1px solid;
    padding: 10px;
    border-radius: 5px;
  }
}
.guide_flow .box .info .cta .tel .num {
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
.guide_flow .box .info .cta .time {
  text-align: right;
  font-size: 1.5rem;
}
.guide_flow .box .info .cta .btn {
  margin: 0;
}
.guide_flow .box .img {
  width: calc(40% - 60px);
}
@media screen and (max-width: 767px) {
  .guide_flow .box .img {
    width: 100%;
  }
}

.guide_attend {
  padding: 80px 0;
}
@media screen and (max-width: 820px) {
  .guide_attend {
    padding: 80px 0 40px;
  }
}
.guide_attend .shape {
  position: absolute;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  left: 0;
  top: 0;
}
.guide_attend .shape svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
  transform: rotateY(180deg);
}
@media screen and (max-width: 767px) {
  .guide_attend .shape svg {
    height: 30px;
  }
}
.guide_attend .shape .shape-fill {
  fill: #fafafa;
}
@media screen and (max-width: 820px) {
  .guide_attend .lead_wrap .catch {
    text-align: left;
  }
}

.guide_feature {
  background-image: url(../img/guide/feature_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  position: relative;
}
.guide_feature .sec_title .color {
  color: #1c7342;
  font-size: 1.2em;
}
.guide_feature .feature_list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .guide_feature .feature_list {
    flex-direction: column;
  }
}
.guide_feature .feature_list .item {
  width: calc(33.3333333333% - 20px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.8274509804);
  padding: 20px;
  gap: 15px;
}
@media screen and (max-width: 820px) {
  .guide_feature .feature_list .item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .guide_feature .feature_list .item {
    width: 100%;
  }
}
.guide_feature .feature_list .item .wrap {
  position: relative;
}
.guide_feature .feature_list .item .wrap img {
  width: 100%;
}
.guide_feature .feature_list .item .wrap .label {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  background: #498f68;
  font-family: "Lora", "YakuHanMincho", "YuMincho", "Yu Mincho", "游明朝体", "Hiragino Mincho Pro", serif;
  color: #fff;
  font-size: 3rem;
  border-radius: 80px;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  top: -30px;
}
.guide_feature .feature_list .item .title {
  flex: 1;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  font-size: 2.2rem;
  color: #498f68;
}
.guide_feature .feature_list .item .lead {
  flex: 2;
}

.guide_anchi {
  background: url(../img/guide/anchi_bg.png);
  background-repeat: repeat-y;
  background-position: right top;
}
.guide_anchi .anchi_flow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.guide_anchi .anchi_flow:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .guide_anchi .anchi_flow:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.guide_anchi .anchi_flow .title {
  background: #f7eef4;
  color: #b35092;
  padding: 10px 30px;
  font-size: clamp(2.2rem, 4vw, 2.4rem);
  font-weight: 700;
}
.guide_anchi .anchi_flow .flex {
  padding: 40px 30px;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .guide_anchi .anchi_flow .flex {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 767px) {
  .guide_anchi .anchi_flow .flex {
    flex-direction: column;
    gap: 10px;
  }
}
.guide_anchi .anchi_flow .flex .img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .guide_anchi .anchi_flow .flex .img {
    width: 100%;
  }
}
.guide_anchi .anchi_flow .flex .info {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .guide_anchi .anchi_flow .flex .info {
    width: 100%;
  }
}
.guide_anchi .anchi_flow .flex .info .lead:not(:last-of-type) {
  margin-bottom: 1em;
}
.guide_anchi .anchi_flow .flex .info ul,
.guide_anchi .anchi_flow .flex .info li {
  list-style: disc;
}
.guide_anchi .anchi_flow .flex .info ul {
  margin-left: 1em;
  margin-bottom: 1em;
}

/*----------------------------------------------------
	CONTACT
----------------------------------------------------*/
.contact_form {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 40px;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .contact_form {
    margin-bottom: 0;
  }
}
.contact_form dt,
.contact_form dd {
  padding: 20px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .contact_form dt,
.contact_form dd {
    border: 0;
  }
}
.contact_form dt {
  width: 30%;
  background: #f1f1f1;
  position: relative;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .contact_form dt {
    width: 100%;
    font-weight: 700;
    padding: 5px 10px;
  }
}
.contact_form dt .hissu,
.contact_form dt .nini {
  font-size: 1.6rem;
  position: absolute;
  right: 10px;
  background-color: #d72e2e;
  color: #fff;
  padding: 4px 5px;
  border-radius: 3px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact_form dt .hissu,
.contact_form dt .nini {
    transform: translateY(-50%);
    top: 50%;
  }
}
.contact_form dt .nini {
  background-color: #ccc;
}
.contact_form dd {
  width: 70%;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .contact_form dd {
    padding: 15px 10px 30px;
    width: 100%;
  }
}
.contact_form dd .input_wrap.name {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.contact_form dd .input_wrap.f_start {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-start;
}
.contact_form dd .input_wrap.date {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .contact_form dd .input_wrap.date .label {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .contact_form dd .input_wrap .wpcf7-list-item {
    display: block;
    margin: 0;
  }
}
.contact_form dd .ul_a {
  color: #d72e2e;
  font-size: 1.7rem;
  margin-top: 5px;
  padding-left: 1em;
  text-indent: -1em;
}
.contact_form dd .ul_a li:before {
  content: "※";
}
.contact_form input[type=text],
.contact_form input[type=email],
.contact_form textarea {
  width: 100%;
  border-style: none;
  border: 1px solid #ccc;
  padding: 8px 12px;
  font-size: 1.8rem;
}
.contact_form .group {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 820px) {
  .contact_form .group {
    flex-wrap: wrap;
  }
}
.contact_form select {
  padding: 5px 10px;
}

.radio-person {
  display: flex;
  margin-bottom: 30px;
}
.radio-person input {
  display: none;
}
.radio-person .wpcf7-list-item {
  width: 50%;
  border: 2px solid #00a0e9;
  color: #00a0e9;
}
.radio-person .wpcf7-list-item .wpcf7-list-item-label {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px;
}
.radio-person .wpcf7-list-item .wpcf7-list-item-labell:hover {
  cursor: pointer;
}
.radio-person .wpcf7-list-item label {
  width: 100%;
  text-align: center;
  display: inline-block;
}
.radio-person .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label {
  background: #00a0e9;
  color: #fff;
}

.pp_wrap .center {
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .pp_wrap .center {
    text-align: justify;
  }
}

.pp_box {
  width: 100%;
  max-width: 1000px;
  height: 240px;
  box-sizing: border-box;
  overflow-y: scroll;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 20px auto 40px;
}
.pp_box h2 {
  font-size: clamp(2rem, 4vw, 2.4rem);
}
.pp_box p {
  padding: 0 0 1em;
}
.pp_box p span {
  display: block;
  font-weight: 700;
}

.accept {
  padding: 20px;
  background: #fafafa;
  text-align: center;
  margin-bottom: 40px;
}

.wpcf7-submit,
.wpcf7-previous {
  margin: 0 auto;
  display: block;
  border: 1px solid #d72e2e;
  border-radius: 30px;
  font-size: 2.2rem;
  background: #d72e2e;
  color: #fff;
  padding: 15px;
  transition: all 0.3s;
  width: 100%;
  max-width: 550px;
  line-height: 1.2;
  box-shadow: 0 5px #912020;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wpcf7-submit,
.wpcf7-previous {
    white-space: normal;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
  }
}
.wpcf7-submit:hover,
.wpcf7-previous:hover {
  background-color: #fff;
  color: #d72e2e;
}

.column_form_first .contact_lead {
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .column_form_first .contact_lead {
    text-align: justify;
  }
  .column_form_first .contact_lead br {
    display: none;
  }
}
.column_form_first .contact_tel {
  background: #f7f7f7;
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
  margin: 0 auto 40px;
  display: block;
}
@media screen and (max-width: 767px) {
  .column_form_first .contact_tel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    background: unset;
  }
}
.column_form_first .contact_tel .num {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 5px;
  padding: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .column_form_first .contact_tel .num {
    background: #d72e2e;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 5px #9b1e1e;
    color: #fff;
    margin-bottom: 15px;
  }
  .column_form_first .contact_tel .num .mini {
    font-size: 0.8em;
  }
  .column_form_first .contact_tel .num svg {
    fill: #fff;
  }
}
.column_form_first .contact_time {
  width: 100%;
  text-align: center;
  font-size: 1.9rem;
  padding-bottom: 15px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .column_form_first .contact_time {
    padding: 5px;
    background: #f7f7f7;
  }
}

/*----------------------------------------------------
	404
----------------------------------------------------*/
.error-404 {
  text-align: center;
  padding: 80px 0;
  color: #5c5c5c;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .error-404 {
    padding: 60px 0;
  }
}
.error-404 .btn {
  margin-top: 50px;
}
.error-404 .icon_404 {
  background: #fff;
  font-size: 90px;
  font-size: 9rem;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 820px) {
  .error-404 .icon_404 {
    font-size: 7rem;
  }
}
.error-404 .icon_404 span {
  text-shadow: 2px 0 0 #b35092, 0 2px 0 #b35092, -2px 0 0 #b35092, 0 -2px 0 #b35092;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */