@charset "UTF-8";
html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
}

html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanJP, "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
  background: #fff;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (min-width: 1024px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
.mark {
  background: linear-gradient(0deg, #fffc27 0%, #fffc27 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}

/*----------------------------------------------------
	LAYOUT
----------------------------------------------------*/
.inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .inner {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.column.tri {
  position: relative;
}
.column.tri:before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: #eaf3fd;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 210px;
}
@media screen and (max-width: 820px) {
  .column.tri:before {
    height: 90px;
  }
}
.column.tri_r {
  position: relative;
}
.column.tri_r:before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
  background: #eaf3fd;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 210px;
}
@media screen and (max-width: 820px) {
  .column.tri_r:before {
    height: 90px;
  }
}

.center {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .center {
    text-align: left;
  }
}

.right {
  text-align: right;
}

.mb30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .mb30 {
    margin-bottom: 15px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  .mb60 {
    margin-bottom: 30px;
  }
}

.pt60 {
  padding-top: 60px;
}
@media screen and (max-width: 820px) {
  .pt60 {
    padding-top: 30px;
  }
}

.pt30 {
  padding-top: 30px;
}
@media screen and (max-width: 820px) {
  .pt30 {
    padding-top: 15px;
  }
}

.pb30 {
  padding-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .pb30 {
    padding-bottom: 15px;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#wrapper {
  padding-top: 20px;
}

/*----------------------------------------------------
	BUTTON
----------------------------------------------------*/
.btn {
  font-size: 1.6rem;
  text-decoration: none;
  color: #fff;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
  margin: 30px 0;
  background: #1c5991;
  margin: 0 auto;
  display: block;
  position: relative;
}
@media screen and (max-width: 820px) {
  .btn {
    width: 100%;
  }
}
.btn:after {
  content: "\f054";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.btn.w100 {
  width: 100%;
  max-width: 100%;
}

/*----------------------------------------------------
	TAB
----------------------------------------------------*/
.tab_wrap {
  position: relative;
  margin-top: 30px;
}
.tab_wrap .tab_btn {
  width: calc(25% - 0px);
  text-align: center;
  border-radius: 10px 10px 0 0;
  font-size: 2rem;
  background: #f4f4f4;
  padding: 5px;
  font-size: 1.8rem;
}
.tab_wrap .tab_btn:hover {
  cursor: pointer;
}
.tab_wrap .tab_btn.show {
  background: #2b7ed3;
  color: #fff;
}
.tab_wrap .tab_btn:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  .tab_wrap .tab_btn {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .tab_wrap .tab_btn {
    text-align: center;
    padding: 10px 0;
    font-size: 1.4rem;
    margin-right: 0;
  }
  .tab_wrap .tab_btn.show {
    padding: 10px 0;
  }
}
.tab_wrap .tab_list {
  position: relative;
  justify-content: center;
  margin: 0 auto;
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .tab_wrap .tab_list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.tab_wrap .panel_area {
  position: relative;
  border-top: 2px solid #ccc;
}
.tab_wrap .tab_contents {
  display: none;
}
.tab_wrap .tab_contents.show {
  display: block;
}

/*----------------------------------------------------
	FONTS
----------------------------------------------------*/
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

.sec_title {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  .sec_title {
    margin-bottom: 20px;
  }
}
.sec_title .big {
  font-size: 1.1em;
}
.sec_title .color {
  color: #2b7ed3;
}
.sec_title.dark {
  color: #1c5991;
}
.sec_title .num {
  font-family: YakuHanJP, "Oswald", sans-serif;
}

.catch {
  font-size: 1.8rem;
  color: #505455;
  text-align: center;
  margin-bottom: 30px;
}

.breadcrumbs {
  font-size: 1.2rem;
}

/*----------------------------------------------------
	固定要素
----------------------------------------------------*/
.fixed_bnrs {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 1001;
}

.foot_fixed_bnr {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 900;
  background: #2b7ed3;
  padding: 20px 0 15px;
}
@media screen and (max-width: 1100px) {
  .foot_fixed_bnr {
    padding: 15px;
  }
}
.foot_fixed_bnr .inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
}
@media screen and (max-width: 1100px) {
  .foot_fixed_bnr .inner {
    justify-content: center;
  }
}
.foot_fixed_bnr .footer_lady {
  position: absolute;
  left: 0;
  bottom: -15px;
}
@media screen and (max-width: 1100px) {
  .foot_fixed_bnr .footer_lady {
    display: none;
  }
}
.foot_fixed_bnr .box_tel {
  color: #fff;
  text-align: center;
  line-height: 1.4;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .foot_fixed_bnr .box_tel {
    flex-wrap: wrap;
    justify-content: center;
  }
  .foot_fixed_bnr .box_tel .tel_wrap {
    margin-right: 10px;
  }
  .foot_fixed_bnr .box_tel .tel_wrap span {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .foot_fixed_bnr .box_tel {
    margin-right: 0;
    width: auto;
  }
}
.foot_fixed_bnr .box_tel .tel_catch {
  font-weight: 600;
  text-align: right;
}
.foot_fixed_bnr .box_tel .tel_catch .num {
  font-size: 1.1em;
}
.foot_fixed_bnr .box_tel .flex {
  align-items: center;
  gap: 5px;
}
.foot_fixed_bnr .box_tel .tel_anime {
  width: 35px;
  height: 35px;
}
.foot_fixed_bnr .box_tel .tel_anime svg {
  fill: #fff;
}
.foot_fixed_bnr .box_tel .tel_num {
  white-space: nowrap;
  font-size: 4rem;
  font-family: YakuHanJP, "Oswald", sans-serif;
  line-height: 1;
}
.foot_fixed_bnr .box_inquiry a {
  background: #fff;
  padding: 7px 10px;
  color: #dd2828;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  text-align: center;
  border: 1px solid #dd2828;
  line-height: 1.2;
  border-radius: 4px;
}
.foot_fixed_bnr .box_inquiry a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: all 0.3s;
}

.footer_floating_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer_floating_sp {
    display: flex;
    background: rgba(51, 51, 51, 0.8588235294);
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 800;
  }
  .footer_floating_sp .flex {
    gap: 10px;
  }
  .footer_floating_sp .flex li {
    flex: auto;
  }
}

/*----------------------------------------------------
	HEADER
----------------------------------------------------*/
#header {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  #header.simple_header .head_belt .inner {
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 1100px) {
  #header .nav {
    display: none;
  }
  #header.scroll .menu-box_sp2 {
    position: fixed;
    top: 0;
    z-index: 900;
    background: #fff;
  }
}
#header .inner {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  #header .inner {
    padding: 0;
  }
}
#header .inner > .flex {
  padding: 25px 0;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #header .inner > .flex {
    gap: 0;
    padding: 0;
  }
}
#header .inner .area_field {
  text-align: center;
  margin-top: 26px;
}
#header .inner .head_l {
  align-items: center;
}
@media screen and (max-width: 820px) {
  #header .inner .head_l {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  #header .inner .head_l {
    width: 65%;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 820px) {
  #header .inner .head_l .logo {
    display: block;
    margin: 0 auto;
  }
}
#header .inner .head_l .logo h1 {
  position: relative;
}
#header .inner .head_l .logo h1:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #2b7ed3;
  margin: auto;
  z-index: -1;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
}
#header .inner .head_l .logo h1 .wrap {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  display: block;
  padding: 1px 10px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #header .inner .head_l .logo h1 .wrap {
    font-size: 1.1rem;
    padding: 0 3px;
    letter-spacing: 0;
  }
}
#header .inner .head_l .logo h1 .wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  margin: auto;
  z-index: -1;
  position: relative;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
}
#header .inner .head_r {
  display: flex;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #header .inner .head_r {
    gap: 0;
    flex: 1;
    border-left: 1px solid #ccc;
  }
}
#header .inner .head_r .links {
  position: relative;
}
#header .inner .head_r .links::after {
  content: "\f13a";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #2b7ed3;
  pointer-events: none;
}
#header .inner .head_r .links .area-select {
  width: 100%;
  width: 168px;
  padding: 4px 30px 4px 10px;
  border: 1px solid #2b7ed3;
  background: #f7fafc;
  color: #2b7ed3;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  font-weight: 700;
}
#header .inner .head_r .links .area-select:hover {
  cursor: pointer;
}
#header .inner .head_r .tels {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #header .inner .head_r .tels {
    padding: 10px;
  }
  #header .inner .head_r .tels .title {
    font-size: 1.1rem;
  }
  #header .inner .head_r .tels img {
    width: 18px;
  }
}
#header .inner .head_r .tels .flex {
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
#header .inner .head_r .tels .num {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
  color: #dd2828;
  font-family: YakuHanJP, "Oswald", sans-serif;
}
@media screen and (max-width: 820px) {
  #header .inner .head_r .tels .num {
    font-size: 3rem;
  }
}
#header .inner .head_r .tels .time {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  background: #edf6ff;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  #header .inner .head_r .sp_cta {
    flex: 1;
    padding: 6px;
    border-right: 1px solid #ccc;
  }
  #header .inner .head_r .sp_cta .title {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  #header .inner .head_r .inquiry i {
    color: #fa970b;
    font-size: 2rem;
  }
}

.front_mv {
  text-align: center;
  position: relative;
}
.front_mv .caution {
  max-width: 900px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 2%;
  margin: auto;
  font-size: 1rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .front_mv .caution {
    bottom: -5%;
  }
}
.front_mv .caution p {
  -webkit-text-stroke: 5px #383838;
  paint-order: stroke;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .front_mv .caution p {
    paint-order: unset;
    -webkit-text-stroke: unset;
    color: inherit;
  }
}

.head_cta {
  padding: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .head_cta {
    padding: 30px 0;
  }
}
.head_cta .title {
  text-align: center;
  font-weight: 600;
  font-size: clamp(2.4rem, 2vw, 2.6rem);
}
@media screen and (max-width: 767px) {
  .head_cta .title {
    margin-bottom: 10px;
  }
}
.head_cta .title .time {
  font-size: 0.9em;
}
.head_cta .title .big {
  font-size: 1.2em;
}
.head_cta .title .color {
  color: #dd2828;
  font-size: 1.25em;
}
.head_cta .link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/*----------------------------------------------------
	グロナビ
----------------------------------------------------*/
.navigation_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .navigation_sp {
    display: block;
    position: fixed;
    width: 100vw;
    top: 0;
    right: 0;
    z-index: 999;
    transition: top 0.3s;
  }
  .navigation_sp .nav_flex {
    border-top: 1px solid #eee;
    background: #fafafa;
    gap: 0;
  }
  .navigation_sp .nav_flex > li .link_txt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    font-size: 1.3rem;
  }
  .navigation_sp .nav_flex > li .link_txt i {
    font-size: 2.4rem;
    color: #2b7ed3;
  }
  .navigation_sp .nav_flex .menu_btn {
    height: 60px;
    text-align: center;
    flex: 1;
    white-space: nowrap;
  }
  .navigation_sp .nav_flex .menu_btn .link_txt .open_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-weight: 600;
  }
  .navigation_sp .nav_flex .menu_btn .link_txt .close {
    background: #2b7ed3;
    color: #fff;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box {
    display: none;
    z-index: 1;
    position: absolute;
    width: 100vw;
    height: calc(100vh - 60px);
    right: 0;
    top: 60px;
    background: #eee;
    overflow-y: scroll;
    padding: 20px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box.plan {
    padding: 20px 15px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .title {
    text-align: left;
    margin-bottom: 10px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .sub_title {
    text-align: left;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .sub_title.area_name_btn {
    background: #fff;
    border: 1px solid #ccc;
    position: relative;
    width: 100%;
    display: block;
    padding: 15px 10px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .sub_title.area_name_btn:after {
    content: "\f078";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    transform: translateY(-50%);
    top: 50%;
    transition: all 0.2s;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .sub_title.area_name_btn.open:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_head_flex {
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_head_flex .title {
    margin-bottom: 0;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_head_flex .link_front {
    background: #fff;
    border: 1px solid;
    padding: 5px 10px;
    color: #2b7ed3;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn {
    width: calc(50% - 5px);
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a {
    background: #fff;
    border: 1px solid;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2b7ed3;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a:after {
    content: "\f105";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    transform: translateY(-50%);
    top: 50%;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a.with_thm {
    padding: 0 15px 0 0;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a.with_thm .img {
    width: 100px;
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a.with_thm .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a i {
    color: #2b7ed3;
    font-size: 2rem;
  }
  .navigation_sp .nav_flex .menu_btn.hurry {
    background: #dd2828;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .link_txt {
    color: #fff;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .link_txt i {
    color: #fff;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .sub_title {
    text-align: center;
    color: #dd2828;
    background: #fff;
    border: 2px solid;
    border-radius: 4px;
    margin: 0 auto 15px;
    padding: 5px 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .sub_title:after {
    content: "";
    width: 2px;
    height: 20px;
    background: #dd2828;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -13px;
    margin: auto;
    transform: rotate(5deg);
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .catch {
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .catch .big {
    font-size: 1.4em;
    color: #dd2828;
    display: block;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .staff {
    padding: 10px 20px;
    text-align: center;
    background: #497aa7;
    font-size: 1.6rem;
    text-align: center;
    color: #fff;
    position: relative;
    margin: 20px auto 0;
    border-radius: 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1.4;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .staff:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #497aa7;
    border-top: 0;
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
    margin: auto;
  }
}

@media screen and (max-width: 1100px) {
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 900;
    background: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
  .black_bg.open {
    opacity: 0.8;
    visibility: visible;
  }
}
/*----------------------------------------------------
	式場を探す　エリア別
----------------------------------------------------*/
.areas {
  padding: 90px 0 80px;
}
.areas .areas_link {
  background: #f2faff;
  padding: 40px 0;
}
.areas .areas_link .flex {
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 20px;
}
@media screen and (max-width: 820px) {
  .areas .areas_link .flex {
    gap: 10px;
    justify-content: flex-start;
  }
}
.areas .areas_link .flex a {
  width: calc(20% - 16px);
  display: block;
  color: #2b7ed3;
  border: 1px solid;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  position: relative;
  text-align: center;
  font-weight: 600;
  background: #fff;
  padding: 12px 20px;
}
@media screen and (max-width: 820px) {
  .areas .areas_link .flex a {
    width: calc(33.3333333333% - 7px);
    padding: 10px;
  }
}
.areas .areas_link .flex a:before {
  content: "\f054";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}
@media screen and (max-width: 820px) {
  .areas .areas_link .flex a:before {
    right: 4px;
    font-size: 1.4rem;
  }
}
.areas .areas_map {
  padding: 40px 0 0;
  text-align: center;
}
.areas .areas_map .inner {
  position: relative;
  max-width: 900px;
}

/*----------------------------------------------------
	バナー
----------------------------------------------------*/
.cta_column {
  background: #fff9f1;
  padding: 90px 0 70px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .cta_column {
    padding: 80px 0 40px;
  }
}
.cta_column .inner {
  max-width: 1000px;
}
.cta_column .inner .fuki_titile {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  margin: auto;
  background: #333;
  color: #fff;
  font-size: clamp(2rem, 2vw, 2.8rem);
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1100px) {
  .cta_column .inner .fuki_titile {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: -110px;
  }
}
.cta_column .inner .fuki_titile:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 30px solid #333;
  border-bottom: 0;
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
  margin: auto;
}
.cta_column .inner .fuki_titile .color {
  color: #fffc27;
}
.cta_column .inner .tel_catch {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  padding: 0 20px;
  position: relative;
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  margin: 0 auto;
  line-height: 1.4;
}
.cta_column .inner .tel_catch:before, .cta_column .inner .tel_catch:after {
  content: "";
  width: 2px;
  height: 30px;
  position: absolute;
  bottom: 8px;
  background: #333;
}
.cta_column .inner .tel_catch:before {
  left: 0;
  transform: rotate(-40deg);
}
.cta_column .inner .tel_catch::after {
  right: 0;
  transform: rotate(40deg);
}
.cta_column .inner .tel_catch .color {
  color: #dd2828;
}
.cta_column .inner .link {
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  .cta_column .inner .link {
    margin-bottom: 20px;
  }
}
.cta_column .inner .inquiry {
  display: block;
  margin-bottom: 20px;
}
.cta_column .half_wrap {
  gap: 40px;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .cta_column .half_wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.cta_column .half_wrap a {
  flex: 1;
}
.cta_column .half_wrap a.link, .cta_column .half_wrap a.inquiry {
  margin-bottom: 0;
}

.features {
  padding: 100px 0 90px;
}
@media screen and (max-width: 820px) {
  .features {
    padding: 40px 0;
  }
}
.features .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .features .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.features .grid .item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.features .grid .item .label {
  background: #389385;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  font-family: YakuHanJP, "Oswald", sans-serif;
  width: 84px;
  height: 84px;
  border-radius: 80px;
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .features .grid .item .label {
    width: 70px;
    height: 70px;
  }
}
.features .grid .item .label .num {
  font-size: clamp(3rem, 4vw, 4.3rem);
  display: block;
}
.features .grid .item img {
  border-radius: 10px;
  overflow: hidden;
}
.features .grid .item .box {
  margin: 0 auto;
  width: 90%;
  position: relative;
  top: -60px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1;
}
.features .grid .item .box .title {
  color: #2b7ed3;
  font-size: clamp(2.2rem, 2vw, 2.4rem);
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  line-height: 1.4;
}

.faq {
  padding: 80px 0 160px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .faq {
    padding: 40px 0;
  }
}

/*----------------------------------------------------
	プラン一覧
----------------------------------------------------*/
.plans {
  position: relative;
  background: #f7fafc;
  padding: 90px 0;
}
@media screen and (max-width: 820px) {
  .plans {
    padding: 40px 0;
  }
}
.plans .inner {
  max-width: 1200px;
}
.plans .plan_list {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1100px) {
  .plans .plan_list {
    flex-wrap: wrap;
  }
}
.plans .plan_list > .item {
  flex: 1;
  max-width: 33%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  line-height: 1.4;
}
.plans .plan_list > .item:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1100px) {
  .plans .plan_list > .item {
    width: calc(50% - 8px);
    max-width: unset;
    flex: unset;
  }
}
.plans .plan_list > .item .feature {
  width: calc(100% + 30px);
  margin: 0 -15px;
  color: #fff;
  text-align: center;
  padding: 2px 0;
  font-size: 1.5rem;
}
.plans .plan_list > .item .title {
  font-size: clamp(3rem, 4vw, 3.2rem);
  text-align: center;
  position: relative;
  font-weight: 600;
}
.plans .plan_list > .item .title:after {
  content: "\f138";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  font-size: 2rem;
}
.plans .plan_list > .item .img {
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
}
.plans .plan_list > .item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.plans .plan_list > .item .discount {
  max-width: 200px;
  margin: 0 auto;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  width: 100%;
  text-align: center;
  padding: 5px;
  font-weight: 600;
  margin-bottom: 5px;
}
.plans .plan_list > .item .discount:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 0;
  position: absolute;
  bottom: -12px;
  right: 0;
  left: 0;
  margin: auto;
}
.plans .plan_list > .item .club_untax {
  color: #dd2828;
  line-height: 1;
  font-size: 5.5rem;
  font-weight: 600;
  text-align: center;
}
.plans .plan_list > .item .club_untax .num {
  font-family: YakuHanJP, "Oswald", sans-serif;
}
.plans .plan_list > .item .club_untax .yen {
  font-size: 0.5em;
  position: relative;
}
.plans .plan_list > .item .club_untax .yen .tax {
  font-size: 0.4em;
  position: absolute;
  top: -10px;
  left: 0;
}
.plans .plan_list > .item .club_taxin {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}
.plans .plan_list > .item .club_taxin .num {
  font-family: YakuHanJP, "Oswald", sans-serif;
  font-size: 2.3rem;
}
.plans .plan_list > .item .flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
}
.plans .plan_list > .item .flow .item {
  background: #f3f2f2;
  color: #bababa;
  text-align: center;
  padding: 4px;
  font-size: 1.8rem;
  font-weight: 600;
}
.plans .plan_list > .item .more {
  border-top: 1px solid;
  text-align: center;
  padding: 5px;
  width: calc(100% + 30px);
  margin: 0 -15px;
  position: relative;
  font-weight: 700;
}
.plans .plan_list > .item .more:after {
  content: "\f138";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  transform: translateY(-50%);
  top: 50%;
  font-size: 1.5rem;
}
.plans .plan_list > .item.plan_direct {
  border: 1px solid #cb447a;
}
.plans .plan_list > .item.plan_direct .feature {
  background: #cb447a;
}
.plans .plan_list > .item.plan_direct .title {
  color: #cb447a;
}
.plans .plan_list > .item.plan_direct .discount {
  background: #cb447a;
}
.plans .plan_list > .item.plan_direct .discount:after {
  border-top: 12px solid #cb447a;
}
.plans .plan_list > .item.plan_direct .flow .in {
  background: #cb447a;
  color: #fff;
}
.plans .plan_list > .item.plan_direct .more {
  color: #cb447a;
}
.plans .plan_list > .item.plan_simple {
  border: 1px solid #c49455;
}
.plans .plan_list > .item.plan_simple .feature {
  background: #c49455;
}
.plans .plan_list > .item.plan_simple .title {
  color: #c49455;
}
.plans .plan_list > .item.plan_simple .discount {
  background: #c49455;
}
.plans .plan_list > .item.plan_simple .discount:after {
  border-top: 12px solid #c49455;
}
.plans .plan_list > .item.plan_simple .flow .in {
  background: #c49455;
  color: #fff;
}
.plans .plan_list > .item.plan_simple .more {
  color: #c49455;
}
.plans .plan_list > .item.plan_family {
  border: 1px solid #6b5ead;
}
.plans .plan_list > .item.plan_family .feature {
  background: #6b5ead;
}
.plans .plan_list > .item.plan_family .title {
  color: #6b5ead;
}
.plans .plan_list > .item.plan_family .discount {
  background: #6b5ead;
}
.plans .plan_list > .item.plan_family .discount:after {
  border-top: 12px solid #6b5ead;
}
.plans .plan_list > .item.plan_family .flow .in {
  background: #6b5ead;
  color: #fff;
}
.plans .plan_list > .item.plan_family .more {
  color: #6b5ead;
}
.plans .plan_list > .item.plan_oneday {
  border: 1px solid #389385;
}
.plans .plan_list > .item.plan_oneday .feature {
  background: #389385;
}
.plans .plan_list > .item.plan_oneday .title {
  color: #389385;
}
.plans .plan_list > .item.plan_oneday .discount {
  background: #389385;
}
.plans .plan_list > .item.plan_oneday .discount:after {
  border-top: 12px solid #389385;
}
.plans .plan_list > .item.plan_oneday .flow .in {
  background: #389385;
  color: #fff;
}
.plans .plan_list > .item.plan_oneday .more {
  color: #389385;
}
.plans .promiss {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0 40px 40px;
}
@media screen and (max-width: 820px) {
  .plans .promiss {
    padding: 0 30px 30px;
  }
}
.plans .promiss .wrap {
  background: #1c5991;
  text-align: center;
  width: calc(100% + 80px);
  margin: 0 -40px 40px;
}
@media screen and (max-width: 767px) {
  .plans .promiss .wrap {
    margin-bottom: 20px;
  }
}
.plans .promiss .wrap .title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  color: #fff;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: 700;
  padding: 10px 0;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .plans .promiss .wrap .title {
    text-align: left;
    margin: 0;
    width: 100%;
    padding: 10px 20px;
  }
}
.plans .promiss .wrap .title:after {
  content: url(../img/area/promiss.png);
  position: absolute;
  right: -120px;
  transform: translateY(-50%);
  top: 50%;
}
@media screen and (max-width: 767px) {
  .plans .promiss .wrap .title:after {
    right: 10px;
  }
}
.plans .promiss .wrap .title .color {
  color: #fffc27;
}
.plans .promiss .wrap .title .num {
  font-family: YakuHanJP, "Oswald", sans-serif;
  font-size: 1.2em;
}
.plans .promiss .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 45px;
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .plans .promiss .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .plans .promiss .grid {
    grid-template-columns: 1fr;
  }
}
.plans .promiss .grid .item {
  background: #f2faff;
  padding: 30px 20px 20px;
  text-align: center;
  position: relative;
}
.plans .promiss .grid .item .label {
  position: absolute;
  right: 0;
  left: 0;
  top: -15px;
  margin: auto;
  background: #fa970b;
  color: #fff;
  font-size: 1.8rem;
  padding: 0 20px;
  border-radius: 0 10px 0 10px;
  box-shadow: 3px 3px 0 #c0842e;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.plans .promiss .grid .item .label .num {
  font-family: YakuHanJP, "Oswald", sans-serif;
  font-size: 1.1em;
}
.plans .promiss .grid .item img {
  max-width: 100px;
  display: block;
  margin: 0 auto 15px;
}
.plans .promiss .grid .item .catch {
  line-height: 1.4;
  margin: 0 auto;
  font-weight: 700;
}
.plans .promiss .grid .item .catch .color {
  color: #1c5991;
}
.plans .promiss .attend {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.2rem);
}
.plans .promiss .attend .color {
  color: #dd2828;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .plan_box_sp {
    border: 1px solid #d1ccc4;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px #d1ccc4;
    background: #fff;
  }
  .plan_box_sp .wrap {
    padding: 10px;
    gap: 10px;
    align-items: center;
  }
  .plan_box_sp .wrap .info {
    flex: 1;
    text-align: center;
  }
  .plan_box_sp .wrap .info .feature {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .plan_box_sp .wrap .info .plan_name {
    font-size: 2.8rem;
    font-weight: bold;
  }
  .plan_box_sp .wrap .img {
    width: 42%;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 10px;
  }
  .plan_box_sp .wrap .img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .plan_box_sp .price {
    padding: 5px 10px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fafafa;
  }
  .plan_box_sp .price .num {
    font-family: YakuHanJP, "Oswald", sans-serif;
    line-height: 1;
  }
  .plan_box_sp .price .discount {
    text-align: center;
    line-height: 1.4;
  }
  .plan_box_sp .price .discount .discount_catch {
    font-weight: 600;
    color: #fff;
    padding: 5px 10px;
    position: relative;
    line-height: 1.2;
  }
  .plan_box_sp .price .discount .discount_catch:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 0;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .plan_box_sp .price .discount .discount_price {
    color: #fff;
    background: #dd2828;
    font-weight: bold;
  }
  .plan_box_sp .price .club {
    font-size: 1.5rem;
    text-align: right;
  }
  .plan_box_sp .price .club .club_untax {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.2;
    color: #dd2828;
    white-space: nowrap;
  }
  .plan_box_sp .price .club .club_untax .num {
    font-size: 2em;
    letter-spacing: 0;
    font-weight: 500;
  }
  .plan_box_sp .price .club .club_untax .yen {
    position: relative;
  }
  .plan_box_sp .price .club .club_untax .yen .tax {
    font-size: 1rem;
    position: absolute;
    top: -13px;
    right: 0;
    white-space: nowrap;
  }
  .plan_box_sp .price .club .club_taxin {
    font-size: 1.5rem;
  }
  .plan_box_sp .more {
    text-align: center;
    color: #fff;
    position: relative;
    padding: 3px;
  }
  .plan_box_sp .more:after {
    content: "\f054";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    transform: translateY(-50%);
    top: 50%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .plan_box_sp .more:after {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .plan_box_sp.plan_direct {
    border: 1px solid #cb447a;
  }
  .plan_box_sp.plan_direct .plan_name {
    color: #cb447a;
  }
  .plan_box_sp.plan_direct .discount_catch {
    background: #cb447a;
  }
  .plan_box_sp.plan_direct .discount_catch:after {
    border-left: 10px solid #cb447a;
  }
  .plan_box_sp.plan_direct .more {
    background: #cb447a;
  }
}
@media screen and (max-width: 767px) {
  .plan_box_sp.plan_simple {
    border: 1px solid #c49455;
  }
  .plan_box_sp.plan_simple .plan_name {
    color: #c49455;
  }
  .plan_box_sp.plan_simple .discount_catch {
    background: #c49455;
  }
  .plan_box_sp.plan_simple .discount_catch:after {
    border-left: 10px solid #c49455;
  }
  .plan_box_sp.plan_simple .more {
    background: #c49455;
  }
}
@media screen and (max-width: 767px) {
  .plan_box_sp.plan_family {
    border: 1px solid #6b5ead;
  }
  .plan_box_sp.plan_family .plan_name {
    color: #6b5ead;
  }
  .plan_box_sp.plan_family .discount_catch {
    background: #6b5ead;
  }
  .plan_box_sp.plan_family .discount_catch:after {
    border-left: 10px solid #6b5ead;
  }
  .plan_box_sp.plan_family .more {
    background: #6b5ead;
  }
}
@media screen and (max-width: 767px) {
  .plan_box_sp.plan_oneday {
    border: 1px solid #389385;
  }
  .plan_box_sp.plan_oneday .plan_name {
    color: #389385;
  }
  .plan_box_sp.plan_oneday .discount_catch {
    background: #389385;
  }
  .plan_box_sp.plan_oneday .discount_catch:after {
    border-left: 10px solid #389385;
  }
  .plan_box_sp.plan_oneday .more {
    background: #389385;
  }
}
.plan_detail .box {
  align-items: center;
  margin-bottom: 20px;
  gap: 60px;
}
@media screen and (max-width: 820px) {
  .plan_detail .box {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .plan_detail .box {
    flex-direction: column-reverse;
  }
}
.plan_detail .info {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .plan_detail .info {
    width: 100%;
  }
}
.plan_detail .info .plan_name {
  font-size: 4rem;
  font-weight: bold;
}
.plan_detail .info .plan_feature {
  color: #fff;
  border-radius: 80px;
}
.plan_detail .info .price_wrap {
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.plan_detail .info .price_wrap .label {
  color: #fff;
  padding: 10px;
  border-radius: 2px;
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 820px) {
  .plan_detail .info .price_wrap .label {
    font-size: 1.8rem;
    padding: 8px 10px;
  }
}
.plan_detail .info .price_wrap .label:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid;
  border-right: 0;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.plan_detail .info .price_wrap .untax {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 820px) {
  .plan_detail .info .price_wrap .untax {
    font-size: 2rem;
  }
}
.plan_detail .info .price_wrap .untax .num {
  font-size: 2.8em;
  font-family: YakuHanJP, "Oswald", sans-serif;
}
@media screen and (max-width: 820px) {
  .plan_detail .info .price_wrap .untax .num {
    font-size: 2.5em;
  }
}
.plan_detail .info .price_wrap .untax .yen {
  position: relative;
}
.plan_detail .info .price_wrap .untax .yen .tax {
  font-size: 0.6em;
  position: absolute;
  top: -1.2em;
  left: 0;
}
.plan_detail .info .price_wrap .taxin {
  display: block;
  text-align: right;
}
.plan_detail .info .price_wrap .taxin .num {
  font-size: 1.3em;
  font-family: YakuHanJP, "Oswald", sans-serif;
}
.plan_detail .info .flow_container {
  background: #eee;
  padding: 10px;
  margin-bottom: 10px;
}
.plan_detail .info .flow_container .item {
  flex: 1;
  background: #ccc;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
}
.plan_detail .info .flow_container .item:not(:last-of-type):after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ccc;
  border-right: 0;
  position: absolute;
  right: -15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.plan_detail .info .credit_box {
  padding: 10px;
  margin-bottom: 10px;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .plan_detail .info .credit_box {
    flex-direction: column;
  }
}
.plan_detail .info .credit_box .title {
  font-weight: 600;
  font-size: 1.7rem;
  background: #fff;
  line-height: 1.4;
}
.plan_detail .info .credit_box .type {
  font-size: 1.4rem;
}
.plan_detail .info .credit_box img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .plan_detail .info .credit_box img {
    width: 60%;
    margin: 0 auto;
  }
}
.plan_detail .info .caution {
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.2;
}
.plan_detail .img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.plan_detail .feature {
  padding: 20px;
}
.plan_detail .feature .feature_title {
  text-align: center;
  font-size: clamp(2.8rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 10px;
}
.plan_detail .feature .catch_1 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1em;
  font-weight: 600;
}
.plan_detail .feature .catch_2 {
  text-align: center;
  margin-bottom: 1em;
}
.plan_detail .feature .title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  margin: 0 auto 10px;
  font-size: 2rem;
  position: relative;
}
.plan_detail .feature .title:before, .plan_detail .feature .title:after {
  content: "";
  width: 2px;
  height: 100%;
  background: #333;
  position: absolute;
  bottom: 0;
}
.plan_detail .feature .title:before {
  left: 0;
  transform: rotate(-20deg);
}
.plan_detail .feature .title:after {
  right: 0;
  transform: rotate(20deg);
}
.plan_detail .feature .feature_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .plan_detail .feature .feature_list {
    grid-template-columns: 1fr;
  }
}
.plan_detail .feature .feature_list .item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .plan_detail .feature .feature_list .item {
    padding: 0 15px;
    flex-direction: row;
  }
}
.plan_detail .feature .feature_list .item img {
  width: 100px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.plan_detail .feature .feature_list .item .lead {
  flex: 1;
  line-height: 1.4;
}
.plan_detail.plan_direct .plan_name {
  color: #cb447a;
}
.plan_detail.plan_direct .plan_feature {
  background: #cb447a;
}
.plan_detail.plan_direct .price_wrap .label {
  background: #cb447a;
}
.plan_detail.plan_direct .price_wrap .label:after {
  border-left-color: #cb447a;
}
.plan_detail.plan_direct .flow_container .in {
  background: #cb447a;
}
.plan_detail.plan_direct .credit_box {
  background: #fcf6f8;
}
.plan_detail.plan_direct .feature {
  background: #fcf6f8;
}
.plan_detail.plan_direct .feature .feature_title {
  color: #cb447a;
}
.plan_detail.plan_simple .plan_name {
  color: #c49455;
}
.plan_detail.plan_simple .plan_feature {
  background: #c49455;
}
.plan_detail.plan_simple .price_wrap .label {
  background: #c49455;
}
.plan_detail.plan_simple .price_wrap .label:after {
  border-left-color: #c49455;
}
.plan_detail.plan_simple .flow_container .in {
  background: #c49455;
}
.plan_detail.plan_simple .credit_box {
  background: #fcfaf7;
}
.plan_detail.plan_simple .feature {
  background: #fcfaf7;
}
.plan_detail.plan_simple .feature .feature_title {
  color: #c49455;
}
.plan_detail.plan_family .plan_name {
  color: #6b5ead;
}
.plan_detail.plan_family .plan_feature {
  background: #6b5ead;
}
.plan_detail.plan_family .price_wrap .label {
  background: #6b5ead;
}
.plan_detail.plan_family .price_wrap .label:after {
  border-left-color: #6b5ead;
}
.plan_detail.plan_family .flow_container .in {
  background: #6b5ead;
}
.plan_detail.plan_family .credit_box {
  background: #f8f7fb;
}
.plan_detail.plan_family .feature {
  background: #f8f7fb;
}
.plan_detail.plan_family .feature .feature_title {
  color: #6b5ead;
}
.plan_detail.plan_oneday .plan_name {
  color: #389385;
}
.plan_detail.plan_oneday .plan_feature {
  background: #389385;
}
.plan_detail.plan_oneday .price_wrap .label {
  background: #389385;
}
.plan_detail.plan_oneday .price_wrap .label:after {
  border-left-color: #389385;
}
.plan_detail.plan_oneday .flow_container .in {
  background: #389385;
}
.plan_detail.plan_oneday .credit_box {
  background: #f5faf9;
}
.plan_detail.plan_oneday .feature {
  background: #f5faf9;
}
.plan_detail.plan_oneday .feature .feature_title {
  color: #389385;
}

/*----------------------------------------------------
	斎場一覧　簡易版
----------------------------------------------------*/
.halls {
  padding: 70px 0 80px;
}
@media screen and (max-width: 767px) {
  .halls {
    padding: 40px 0;
  }
}
.halls .inner {
  max-width: 1200px;
}
.halls .halls_label {
  background: #2b7ed3;
  color: #fff;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto 40px;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: 600;
  border-radius: 80px;
  padding: 0 30px;
}
@media screen and (max-width: 820px) {
  .halls .halls_label {
    margin-bottom: 20px;
  }
}
.halls .halls_label .num {
  font-family: YakuHanJP, "Oswald", sans-serif;
  font-size: 1.2em;
}
.halls .center {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .halls .center {
    margin-bottom: 30px;
  }
}
.halls .item {
  border: 1px solid #2b7ed3;
  padding: 30px 50px;
  border-radius: 10px;
}
.halls .item:not(:last-of-type) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  .halls .item {
    padding: 30px;
  }
}
@media screen and (max-width: 820px) {
  .halls .item {
    padding: 20px;
  }
}
.halls .item .title_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .halls .item .title_wrap {
    flex-direction: column;
    gap: 5px;
  }
}
.halls .item .title_wrap .anchi {
  background: #2b7ed3;
  color: #fff;
  padding: 2px 30px;
  border-radius: 4px;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .halls .item .title_wrap .anchi {
    padding: 2px 10px;
  }
}
.halls .item .title_wrap .title {
  color: #2b7ed3;
  font-size: clamp(2.4rem, 4vw, 2.8rem);
}
.halls .item .flex {
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .halls .item .flex {
    flex-direction: column;
    gap: 20px;
  }
}
.halls .item .flex .img {
  width: 500px;
}
@media screen and (max-width: 1100px) {
  .halls .item .flex .img {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .halls .item .flex .img {
    width: 100%;
  }
}
.halls .item .flex .info {
  flex: 1;
}
.halls .item .flex .info .hall_name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.halls .item .flex .info .infos {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 5px 20px;
  margin-bottom: 20px;
}
.halls .item .flex .info .infos dt {
  color: #2b7ed3;
  font-weight: 700;
}
.halls .item .flex .info .infos dd .comment {
  color: #2b7ed3;
  text-decoration: underline;
}
.halls .item .flex .info .infos dd .comment:after {
  content: "\f35d";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
}
@media screen and (max-width: 820px) {
  .halls .item .flex .info .infos dd .comment {
    display: block;
  }
}
.halls .item .flex .info .infos dd .tel {
  color: #dd2828;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.2rem);
}
.halls .item .flex .info .infos dd .tel .mini {
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  .halls .item .flex .info .infos dd .tel .mini {
    display: block;
  }
}
.halls .item .flex .info .feature {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 20px;
}
@media screen and (max-width: 1100px) {
  .halls .item .flex .info .feature {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.halls .item .flex .info .feature .f_item {
  background: #f2faff;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #2b7ed3;
}
.halls .item .flex .info .feature .f_item .name {
  padding: 10px 20px;
  font-weight: 600;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}
@media screen and (max-width: 1100px) {
  .halls .item .flex .info .feature .f_item .name {
    padding: 5px;
  }
}
.halls .item .flex .info .feature .f_item .name:before {
  content: "\f054";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  color: #2b7ed3;
  padding-right: 5px;
}
.halls .item .flex .info .feature .f_item.station .name:before {
  content: "\f239";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
}
.halls .item .flex .info .feature .f_item.parking .name:before {
  content: "\f540";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
}
.halls .item .flex .info .feature .f_item.anchi .name:before {
  content: "\f236";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
}
.halls .item .flex .info .feature .f_item.room .name:before {
  content: "\f4b8";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
}
.halls .item .flex .info .feature .f_item.stay .name:before {
  content: "\e065";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
}
.halls .item .flex .info .feature .f_item.barrier .name:before {
  content: "\f193";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
}
.halls .item .sp_tel {
  background: #dd2828;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 4px #ccc;
  color: #fff;
  padding: 6px;
  margin-top: 15px;
}
.halls .item .sp_tel .tel_anime svg {
  fill: #fff;
}
.halls .item .sp_tel .text {
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.2;
}
.halls .item .sp_tel .text .big {
  font-size: 1.2em;
}
.halls .item .sp_tel .text .time {
  color: #ffee00;
  display: block;
  font-size: 1.5rem;
}

.worry {
  background-color: #fff6f9;
  background-image: url(../img/area/worry_bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 70px 0 60px;
}
@media screen and (max-width: 767px) {
  .worry {
    padding: 40px 0;
  }
}
.worry .inner {
  max-width: 1000px;
}
.worry .sec_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
  padding: 0 40px;
  font-size: clamp(3rem, 4vw, 4rem);
}
@media screen and (max-width: 767px) {
  .worry .sec_title {
    width: 100%;
    padding: 0 30px;
  }
}
.worry .sec_title:before {
  content: url(../img/area/fuki_l.png);
  position: absolute;
  left: 0;
  bottom: -10px;
}
.worry .sec_title::after {
  content: url(../img/area/fuki_r.png);
  position: absolute;
  right: 0;
  bottom: -10px;
}
.worry .wrap {
  align-items: center;
  gap: 40px;
  padding: 20px 80px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 15px 15px 0 #f5ccdb;
}
.worry .wrap img {
  max-width: 30%;
}
@media screen and (max-width: 767px) {
  .worry .wrap img {
    max-width: 50%;
  }
}
@media screen and (max-width: 820px) {
  .worry .wrap {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .worry .wrap {
    width: 90%;
    margin: 0 auto;
    flex-direction: column-reverse;
    padding: 20px;
    gap: 20px;
    box-shadow: 10px 10px 0 #f5ccdb;
  }
}
.worry .wrap .list .item {
  font-size: clamp(2rem, 2vw, 2.4rem);
  margin-bottom: 10px;
  font-weight: 600;
  padding-left: 1.4em;
  text-indent: -1.4em;
}
.worry .wrap .list .item:before {
  content: "\f058";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  color: #f479a7;
}

.mind {
  padding: 230px 0 140px;
  background: #f2faff;
  position: relative;
}
@media screen and (max-width: 820px) {
  .mind {
    padding: 80px 0;
  }
}
.mind:after {
  content: "";
  max-width: 800px;
  width: 80vw;
  height: auto;
  background: #fff6f9;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  aspect-ratio: 800/130;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.mind .inner {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
.mind .inner .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
@media screen and (max-width: 820px) {
  .mind .inner .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .mind .inner .grid {
    grid-template-columns: 1fr;
  }
}
.mind .inner .grid .item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.mind .inner .grid .item .label {
  color: #fa970b;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 84px;
  height: 84px;
  border: 5px solid;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.8rem;
  border-radius: 80px;
  background: #fff;
  font-weight: 700;
  line-height: 1;
}
.mind .inner .grid .item .label .num {
  font-family: YakuHanJP, "Oswald", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
}
.mind .inner .grid .item img {
  margin-bottom: 20px;
}
.mind .inner .grid .item .title {
  color: #2b7ed3;
  font-size: 2.2rem;
  position: relative;
  text-align: center;
  font-weight: 600;
  padding-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 1100px) {
  .mind .inner .grid .item .title {
    font-size: 2rem;
  }
}
.mind .inner .grid .item .title:after {
  content: "";
  width: 90px;
  height: 1px;
  background: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.mind .inner .grid .item .lead {
  padding: 20px 30px;
}

.flows {
  padding: 80px 0 100px;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .flows {
    padding: 40px 0 80px;
  }
}
.flows .center {
  margin-bottom: 30px;
}
.flows .box {
  position: relative;
}
.flows .box:before {
  content: "";
  width: 80px;
  height: 100%;
  background: #2b7ed3;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  margin: auto;
  z-index: 1;
}
.flows .box .item {
  background: #fff;
  border: 1px solid #2b7ed3;
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .flows .box .item {
    flex-direction: column;
    gap: 0;
  }
}
.flows .box .item .title {
  font-size: clamp(2.2rem, 4vw, 2.6rem);
  margin: 10px 0 20px;
}
@media screen and (max-width: 767px) {
  .flows .box .item .title {
    margin: 10px 0;
  }
}
.flows .box .item .title:before {
  content: "Flow 0" counter(number);
  counter-increment: number 1;
  background: #2b7ed3;
  color: #f7f3ee;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 0 10px 0 10px;
  margin-right: 10px;
  padding: 5px 10px;
}
.flows .box .item .tel_bnr {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 0 0 auto;
}

/*----------------------------------------------------
	お問い合わせコーナー
----------------------------------------------------*/
.column_contact .sec_title .fuki {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .column_contact .sec_title .fuki {
    padding: 0 20px;
  }
}
.column_contact .sec_title .fuki:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #333;
  position: absolute;
  left: -30px;
  bottom: 0;
  transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .column_contact .sec_title .fuki:before {
    height: 40%;
    left: 0;
  }
}
.column_contact .sec_title .fuki:after {
  content: "";
  width: 2px;
  height: 100%;
  background: #333;
  position: absolute;
  right: -30px;
  bottom: 0;
  transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  .column_contact .sec_title .fuki:after {
    height: 40%;
    right: 0;
  }
}
.column_contact .sub_title {
  background: #5598dc;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 10px;
  margin-bottom: 40px;
}
.column_contact .bnr_img {
  margin-left: auto;
  display: block;
}
@media screen and (max-width: 1100px) {
  .column_contact .bnr_img {
    margin: 0 auto;
  }
}
.column_contact .lady_img {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 820px) {
  .column_contact .lady_img {
    height: 150px;
    left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .column_contact .lady_img {
    display: none;
  }
}

/*----------------------------------------------------
	事前相談
----------------------------------------------------*/
.column_consultation {
  background: #fafafa;
}
.column_consultation .label {
  text-align: center;
  margin-bottom: 30px;
}
.column_consultation .label span {
  display: inline-block;
  padding: 8px 25px;
  background: #2b7ed3;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50px;
  line-height: 1.4;
}
.column_consultation .sec_title {
  font-weight: 600;
}
.column_consultation .lead {
  text-align: center;
  margin-bottom: 40px;
}
.column_consultation .list {
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .column_consultation .list {
    flex-wrap: wrap;
  }
}
.column_consultation .list .item {
  width: calc(33.3333333333% - 17px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
}
@media screen and (max-width: 820px) {
  .column_consultation .list .item {
    width: 100%;
  }
}
.column_consultation .list .item .list_title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.column_consultation .list .item .list_title .color {
  color: #2b7ed3;
}
.column_consultation .list .item .list_lead {
  text-align: left;
}

/*----------------------------------------------------
	資料請求
----------------------------------------------------*/
.column_inquiry {
  padding: 0;
  margin-bottom: 60px;
}
.column_inquiry::before {
  content: "";
  background: url(../img/common/inquiry_bg.jpg);
  width: 960px;
  height: 670px;
  position: absolute;
  right: 0;
  z-index: -1;
  padding: 0;
}
@media screen and (max-width: 820px) {
  .column_inquiry::before {
    content: none;
  }
}
.column_inquiry .inquiry_wrap {
  width: 50%;
  padding: 60px;
  padding-left: 0;
  background: #fff;
  float: left;
}
@media screen and (max-width: 1100px) {
  .column_inquiry .inquiry_wrap {
    width: 60%;
    padding: 50px;
    padding-left: 0;
  }
}
@media screen and (max-width: 820px) {
  .column_inquiry .inquiry_wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
}
.column_inquiry .inquiry_wrap .inquiry_title {
  color: #2b7ed3;
  font-size: 2.4rem;
  padding-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .column_inquiry .inquiry_wrap .inquiry_title {
    font-size: 2rem;
    padding-top: 30px;
  }
}
.column_inquiry .inquiry_wrap .doc_box {
  border-top: 1px solid #2b7ed3;
  border-bottom: 1px solid #2b7ed3;
  padding: 30px 0;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .column_inquiry .inquiry_wrap .doc_box {
    padding: 20px;
  }
}
.column_inquiry .inquiry_wrap .doc_box_title {
  color: #2b7ed3;
  margin-bottom: 10px;
}
.column_inquiry .inquiry_wrap .doc_box_title span {
  color: #333;
  border-bottom: 0;
  padding-left: 1rem;
}
.column_inquiry .inquiry_wrap .doc_box_laber {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}
.column_inquiry .inquiry_wrap .doc_box_laber p {
  width: 48%;
  background: #f6f908;
  color: #333;
  border-radius: 45px;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .column_inquiry .inquiry_wrap .doc_box_laber p {
    width: 100%;
  }
}
.column_inquiry .btn {
  position: relative;
}
.column_inquiry .btn .inquiry_img {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .column_inquiry .btn .inquiry_img {
    display: none;
  }
}
.column_inquiry .sp_img {
  display: none;
}
@media screen and (max-width: 767px) {
  .column_inquiry .sp_img {
    display: block;
  }
}

/*----------------------------------------------------
	よくある質問
----------------------------------------------------*/
.faq_wrap {
  margin: 0 auto 20px;
  position: relative;
}
.faq_wrap .question {
  position: relative;
  font-weight: 700;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.faq_wrap .question .question_mark {
  position: absolute;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2rem);
  left: 30px;
  transform: translateY(-50%);
  top: 50%;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .faq_wrap .question .question_mark {
    left: 12px;
  }
}
.faq_wrap .question .open_btn {
  color: #fff;
  background: #2b7ed3;
  position: relative;
  border: unset;
  width: 100%;
  padding: 0;
  text-align: left;
  padding: 20px 20px 20px 70px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .faq_wrap .question .open_btn {
    padding: 10px 20px 10px 40px;
  }
}
.faq_wrap .answer {
  padding: 20px 30px 20px 70px;
  background: #fff;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .faq_wrap .answer {
    padding: 10px 10px 10px 40px;
  }
}
.faq_wrap .answer .answer_mark {
  position: absolute;
  color: #1c5991;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  left: 30px;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .faq_wrap .answer .answer_mark {
    left: 12px;
    top: 10px;
  }
}
.faq_wrap .title {
  margin-bottom: 20px;
}
.faq_wrap a {
  display: inline-block;
  color: #dd2828;
  text-decoration: underline;
}
.faq_wrap a[href^="tel:"]:before {
  content: "\f095";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  margin-right: 3px;
}

/*----------------------------------------------------
	資料請求
----------------------------------------------------*/
.close_btn {
  display: block;
  padding: 10px 20px;
  transition: 0.5s;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  background: #2b7ed3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .close_btn {
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 5px;
    width: 90%;
    margin: 0 auto;
  }
}

.contact_form {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.contact_form dt,
.contact_form dd {
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.contact_form dt {
  width: 30%;
  background: #fafafa;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact_form dt {
    width: 100%;
  }
}
.contact_form dt .hissu,
.contact_form dt .nini {
  font-size: 1.4rem;
  position: absolute;
  right: 10px;
  background-color: #dd2828;
  color: #fff;
  padding: 4px 5px;
  border-radius: 5px;
  line-height: 1;
}
.contact_form dt .nini {
  background-color: #ccc;
}
.contact_form dd {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .contact_form dd {
    width: 100%;
  }
}
.contact_form dd .input_wrap.name {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.contact_form dd .input_wrap.f_start {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-start;
}
.contact_form dd.flex,
.contact_form dd .zip_box {
  justify-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.contact_form input[type=text],
.contact_form input[type=email],
.contact_form textarea {
  width: 100%;
  border-style: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
}
.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_box {
  width: 80%;
  height: 240px;
  box-sizing: border-box;
  overflow-y: scroll;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 20px auto 40px;
}
@media screen and (max-width: 767px) {
  .pp_box {
    width: 100%;
  }
}
.pp_box p,
.pp_box ul {
  font-size: 1.5rem;
  padding: 15px 0;
}
.pp_box p span,
.pp_box ul span {
  display: block;
  font-weight: 700;
}
.pp_box p li,
.pp_box ul li {
  list-style-type: disc;
  margin-left: 1.5em;
}
.pp_box p + p, .pp_box p + ul,
.pp_box ul + p,
.pp_box ul + ul {
  padding-top: 0;
}
.pp_box h2 {
  font-size: clamp(2rem, 4vw, 2.4rem);
}
.pp_box h3 {
  font-size: 1.8rem;
}

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

.wpcf7-submit,
.wpcf7-previous {
  margin: 0 auto;
  display: block;
  border: 1px solid #dd2828;
  box-shadow: 0 4px 0 #891616;
  border-radius: 10px;
  background: #dd2828;
  color: #fff;
  padding: 10px 50px;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1.4;
  position: relative;
}
.wpcf7-submit .sub,
.wpcf7-previous .sub {
  display: block;
  font-size: 1.6rem;
}
.wpcf7-submit .main,
.wpcf7-previous .main {
  font-size: 2.4rem;
  font-weight: 700;
}
.wpcf7-submit:after,
.wpcf7-previous:after {
  content: "\f054";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  transform: translateY(-50%);
  top: 50%;
}

.wpcf7-previous {
  background: #fff;
  color: #fa970b;
  border: 1px solid #fa970b;
  transition: all 0.3s;
}
.wpcf7-previous:hover {
  background: #fa970b;
  color: #fff;
}

/*----------------------------------------------------
	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 #2b7ed3, 0 2px 0 #2b7ed3, -2px 0 0 #2b7ed3, 0 -2px 0 #2b7ed3;
  color: #fff;
}

/*----------------------------------------------------
	FOOTER
----------------------------------------------------*/
#footer .logo_wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #footer .logo_wrap {
    max-width: 340px;
  }
}
#footer .logo_wrap p {
  position: relative;
}
#footer .logo_wrap p:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #2b7ed3;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
}
#footer .logo_wrap p .wrap {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  display: block;
  padding: 1px 10px;
  z-index: 1;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #footer .logo_wrap p .wrap {
    font-size: 1.3rem;
  }
}
#footer .logo_wrap p .wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  margin: auto;
  z-index: -1;
  position: relative;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
}
#footer.front_footer {
  background: #eaf3fd;
  padding: 80px 0 130px;
}
@media screen and (max-width: 767px) {
  #footer.front_footer {
    padding: 40px 0 80px;
  }
}
#footer.front_footer .footer_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 70px;
}
@media screen and (max-width: 820px) {
  #footer.front_footer .footer_wrap {
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }
}
#footer.front_footer .footer_wrap .company_info .logo_wrap p .wrap:before {
  background: #eaf3fd;
}
#footer.front_footer .footer_wrap .company_info .logo {
  display: block;
  margin-bottom: 40px;
  max-width: 370px;
  width: 100%;
}
@media screen and (max-width: 820px) {
  #footer.front_footer .footer_wrap .company_info .logo {
    margin-bottom: 30px;
    max-width: 300px;
  }
}
#footer.front_footer .footer_wrap .company_info .tels {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  #footer.front_footer .footer_wrap .company_info .tels {
    margin: 0 auto 20px;
  }
}
#footer.front_footer .footer_wrap .company_info .tels .flex {
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
#footer.front_footer .footer_wrap .company_info .tels .num {
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
  font-family: YakuHanJP, "Oswald", sans-serif;
}
#footer.front_footer .footer_wrap .company_info .tels .time {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  background: #fff;
  text-align: center;
  padding: 5px;
  line-height: 1.2;
}
@media screen and (max-width: 820px) {
  #footer.front_footer .footer_wrap .company_info .inquiry {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
#footer.front_footer .footer_wrap .f_areas {
  width: 50%;
  max-width: 450px;
}
@media screen and (max-width: 820px) {
  #footer.front_footer .footer_wrap .f_areas {
    width: 100%;
    max-width: auto;
  }
}
#footer.front_footer .footer_wrap .f_areas .title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
  font-weight: 600;
}
#footer.front_footer .footer_wrap .f_areas .title:after {
  content: "";
  height: 1px;
  flex: 1;
  background: #b3b3b3;
}
#footer.front_footer .footer_wrap .f_areas .nagano {
  white-space: nowrap;
}
#footer.front_footer .footer_wrap .f_areas .list {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 20px;
}
@media screen and (max-width: 820px) {
  #footer.front_footer .footer_wrap .f_areas .list {
    gap: 10px;
  }
}
#footer.front_footer .footer_wrap .f_areas .list .item:before {
  content: ">";
}
#footer.front_footer .copy {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
}
#footer.area_footer {
  background: #fff;
  text-align: center;
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  #footer.area_footer {
    padding-bottom: 70px;
  }
}
#footer.area_footer .copy {
  display: block;
  background: #f2faff;
  font-size: 1.2rem;
  margin-top: 60px;
  padding: 5px;
}

body.inquiry .area_footer,
body.thanks .area_footer {
  padding-bottom: 0 !important;
  border-top: 1px solid #eee;
}

.page-template-arealp .area_footer {
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-template-arealp .area_footer {
    padding: 60px 20px 70px;
  }
}

/*----------------------------------------------------
	モーダルウィンドウ
----------------------------------------------------*/
/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
}
.modal .close_btn {
  display: block;
  border-radius: 80px;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
  background: #fff;
}
.modal .close_btn:before, .modal .close_btn:after {
  content: "";
  width: 2px;
  height: 60%;
  position: absolute;
  background: #ccc;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.modal .close_btn::before {
  transform: rotate(45deg);
}
.modal .close_btn::after {
  transform: rotate(-45deg);
}
.modal .close_btn:hover {
  cursor: pointer;
}

/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  max-height: 80vh;
  width: 100%;
  max-width: 1100px;
  overflow-y: scroll;
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .modal-content {
    padding: 20px;
  }
}
.modal-content .modal_tel {
  margin: 15px 0;
  font-size: 26px;
  font-weight: 600;
  flex-direction: unset;
  justify-content: center;
}
.modal-content .modal_tel::before {
  content: "\f095";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  padding-right: 0.2em;
  color: #2b7ed3;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.modal_fixed {
  overflow: hidden;
}

/*----------------------------------------------------
	#pageTop
----------------------------------------------------*/
#pagetop {
  position: fixed;
  z-index: 100;
  bottom: 120px;
  right: 150px;
}
@media screen and (max-width: 820px) {
  #pagetop {
    right: 10px;
    bottom: 80px;
  }
}
#pagetop a {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  display: block;
  width: 50px;
  height: 50px;
  background: #2b7ed3;
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  #pagetop a {
    width: 48px;
    height: 48px;
  }
}
#pagetop a:after {
  transform: rotate(-45deg);
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -6px;
  margin-top: -5px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media screen and (max-width: 820px) {
  #pagetop a:after {
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -5px;
  }
}

body.inquiry #pagetop {
  bottom: 35px;
}

/*----------------------------------------------------
	改行
----------------------------------------------------*/
@media screen and (min-width: 1100px) {
  .pc_hide {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .tab_hide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
    display: none !important;
  }
}
/*----------------------------------------------------
	電話アニメーション
----------------------------------------------------*/
.tel_anime {
  width: 30px;
  height: 30px;
}
.tel_anime svg {
  width: 100%;
  height: 100%;
  fill: #dd2828;
}
.tel_anime svg .line1 {
  -webkit-animation: fillAnimation1 infinite ease 1.5s;
          animation: fillAnimation1 infinite ease 1.5s;
}
.tel_anime svg .line2 {
  -webkit-animation: fillAnimation2 infinite ease 1.5s;
          animation: fillAnimation2 infinite ease 1.5s;
}
.tel_anime svg .line3 {
  -webkit-animation: fillAnimation3 infinite ease 1.5s;
          animation: fillAnimation3 infinite ease 1.5s;
}
@-webkit-keyframes fillAnimation1 {
  30%, 60% {
    fill-opacity: 0;
  }
  80% {
    fill-opacity: 1;
  }
}
@keyframes fillAnimation1 {
  30%, 60% {
    fill-opacity: 0;
  }
  80% {
    fill-opacity: 1;
  }
}
@-webkit-keyframes fillAnimation2 {
  40%, 70% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
@keyframes fillAnimation2 {
  40%, 70% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
@-webkit-keyframes fillAnimation3 {
  50%, 80% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
@keyframes fillAnimation3 {
  50%, 80% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
/*# sourceMappingURL=common.css.map */