@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: "游ゴシック体", "游ゴシック", "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: #4c4e4e;
  background: #fff;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
body .b-fixed {
  position: fixed;
  width: 100%;
}

ol,
li {
  list-style: none;
}

a {
  color: #4c4e4e;
  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;
  }
}
@keyframes updown1 {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
/*----------------------------------------------------
	LAYOUT
----------------------------------------------------*/
.column {
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .column {
    margin-bottom: 30px;
  }
}
.column--top {
  background-image: url(../img/common/img_title_long.png);
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 100px;
}
@media screen and (max-width: 1100px) {
  .column--top {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .column--top {
    background-size: contain;
  }
}
.column--mgb {
  margin-bottom: 0;
}
.column--note {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f7eef2 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f7eef2 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #fff;
  padding: 60px 0;
}
@media screen and (max-width: 1100px) {
  .column--note {
    padding: 30px 0;
  }
}
.column--bg {
  background: #f9f8f1;
  padding: 60px 0;
}
@media screen and (max-width: 1100px) {
  .column--bg {
    padding: 30px 0;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .inner {
    width: 100%;
    padding: 0 15px;
  }
  .inner.column {
    padding-bottom: 30px;
  }
}

.center {
  text-align: center;
}

.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;
}
@media screen and (max-width: 820px) {
  .flex {
    gap: 10px;
  }
}

.num {
  font-family: "Oswald", sans-serif;
}

.half_size {
  font-size: 65%;
}

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

.close_btn {
  display: block;
  padding: 10px 20px;
  transition: 0.5s;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  background: #b1597c;
  position: relative;
}

/*----------------------------------------------------
	TAB
----------------------------------------------------*/
.tab_wrap {
  position: relative;
}
.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: #b1597c;
  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;
}
.tab_wrap .tab_contents {
  display: none;
}
.tab_wrap .tab_contents.show {
  display: block;
}

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

.sec_title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.23;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  position: relative;
}
@media screen and (max-width: 820px) {
  .sec_title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec_title {
    white-space: nowrap;
  }
}
.sec_title--icon {
  position: relative;
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .sec_title--icon {
    padding-top: 50px;
  }
}
.sec_title--icon::before, .sec_title--icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.sec_title--icon::before {
  background: url(../img/common/title_icon.png) no-repeat;
  top: 0;
  width: 73px;
  height: 65px;
  z-index: 2;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec_title--icon::before {
    width: 45px;
    height: 40px;
  }
}
.sec_title--icon::after {
  background: url(../img/common/img_title.png) no-repeat;
  width: 809px;
  height: 188px;
  top: -80px;
  z-index: -1;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec_title--icon::after {
    width: 430px;
    height: 100px;
    top: -20px;
  }
}
.sec_title--icon2 {
  position: relative;
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .sec_title--icon2 {
    padding-top: 50px;
  }
}
.sec_title--icon2::before, .sec_title--icon2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.sec_title--icon2::before {
  background: url(../img/common/title_icon.png) no-repeat;
  top: 0;
  width: 73px;
  height: 65px;
  z-index: 2;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec_title--icon2::before {
    width: 45px;
    height: 40px;
  }
}
.sec_title--icon2::after {
  background: url(../img/common/img_title.png) no-repeat;
  width: 1066px;
  height: 256px;
  top: -90px;
  z-index: 1;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec_title--icon2::after {
    width: 430px;
    height: 100px;
    top: -20px;
  }
}
.sec_title--icon-only {
  position: relative;
  padding-top: 105px;
}
@media screen and (max-width: 767px) {
  .sec_title--icon-only {
    padding-top: 50px;
  }
}
.sec_title--icon-only::before, .sec_title--icon-only::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.sec_title--icon-only::before {
  background: url(../img/common/title_icon.png) no-repeat;
  top: 0;
  width: 73px;
  height: 65px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec_title--icon-only::before {
    width: 34px;
    height: 30px;
    background-size: contain;
  }
}
.sec_title--deco_long {
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .sec_title--deco_long {
    padding-bottom: 20px;
  }
}
.sec_title--deco_long::after {
  content: "";
  background: url(../img/common/title_deco_long.png) no-repeat;
  position: absolute;
  width: 102px;
  height: 7px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.sec_title .big {
  font-size: 1.1em;
}
.sec_title .color {
  color: #b1597c;
}
.sec_title.dark {
  color: #00466c;
}
.sec_title .title, .sec_title .sub_title, .sec_title .main_title {
  position: relative;
  z-index: 2;
}
.sec_title .sub_title {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .sec_title .sub_title {
    font-size: 2.1rem;
  }
}

.sec_label {
  text-align: center;
}
.sec_label .text {
  border: dashed 2px #b1597c;
  padding: 10px 20px;
  line-height: 1;
  display: inline-block;
  border-radius: 6px;
  background: #fff;
}

.text_color {
  color: #b1597c;
}

.marker {
  display: inline;
  background: linear-gradient(transparent 70%, #fafd9f 0%);
}

.read_title {
  text-align: center;
  line-height: 1.2;
  position: relative;
  padding-bottom: 35px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .read_title {
    padding-bottom: 25px;
  }
}
.read_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/common/title_line.svg) no-repeat;
  width: 197px;
  height: 23px;
  background-size: cover;
}

.fukidashi_title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 30px;
}
.fukidashi_title .big {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: #b1597c;
}
.fukidashi_title .red {
  color: #e5071b;
}
.fukidashi_title .wrap {
  position: relative;
  display: inline-block;
}
.fukidashi_title .wrap:before {
  content: url(../img/common/fuku_left.png);
  left: -5%;
}
@media screen and (max-width: 820px) {
  .fukidashi_title .wrap:before {
    left: -8%;
  }
}
.fukidashi_title .wrap:after {
  content: url(../img/common/fuku_right.png);
  right: -5%;
}
@media screen and (max-width: 820px) {
  .fukidashi_title .wrap:after {
    right: -5%;
  }
}
.fukidashi_title .wrap:before, .fukidashi_title .wrap:after {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 820px) {
  .fukidashi_title .wrap:before, .fukidashi_title .wrap:after {
    bottom: -10px;
  }
}

.catch {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .catch {
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
.catch--mgb {
  margin-bottom: 0;
}

.breadcrumbs {
  font-size: 1.2rem;
  margin: 10px 0;
}

main {
  position: relative;
}
main .h1_box {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
main .h1_box .h_tit {
  color: #7f7e7e;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: inherit;
  font-size: 1.1rem;
  position: absolute;
  width: 60vw;
  bottom: 5px;
  left: 0;
}
@media screen and (max-width: 1100px) {
  main .h1_box .h_tit {
    width: 80vw;
  }
}
main .h1_box .h_tit br {
  display: none;
}

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

.fixed_bnrs_wrap {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.fixed_bnrs_wrap a {
  box-shadow: 0 0 10px #c7c7ca;
  border-radius: 8px 0 0 8px;
}

.mourner_bnr {
  position: fixed;
  left: 0;
  bottom: 15%;
  z-index: 2;
}
.mourner_bnr a {
  width: 222px;
  height: 168px;
  background: url(../img/common/mourner_bnr_pc1.png);
  display: block;
}
.mourner_bnr a:hover {
  background: url(../img/common/mourner_bnr_pc2.png);
  opacity: 1;
}

.mourner_bnr {
  position: fixed;
  left: 0;
  bottom: 15%;
  z-index: 2;
}
.mourner_bnr a {
  width: 222px;
  height: 168px;
  background: url(../img/common/mourner_bnr_pc1.png);
  display: block;
}
.mourner_bnr a:hover {
  background: url(../img/common/mourner_bnr_pc2.png);
  opacity: 1;
}

.mourner_bnr_sp {
  display: none;
}

@media screen and (max-width: 820px) {
  .mourner_bnr {
    display: none !important;
  }
  .mourner_bnr_sp {
    display: block;
    padding: 15px;
    text-align: center;
  }
  .mourner_bnr_sp img {
    border-radius: 5px;
  }
}
.foot_fixed_bnr {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  background: #9f4669;
  background-size: cover;
  padding: 10px 0;
}
.foot_fixed_bnr .foot_wrap {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
  gap: 10px;
}
.foot_fixed_bnr .foot_girl {
  position: absolute;
  bottom: -10px;
  left: 0;
}
.foot_fixed_bnr .tel_text {
  white-space: nowrap;
  color: #fff;
}
.foot_fixed_bnr .tel_text .num {
  font-size: 2.2rem;
}
.foot_fixed_bnr .foot_tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  line-height: 1;
  margin-right: 15px;
}
.foot_fixed_bnr .tel_wrap {
  line-height: 1;
  gap: 10px;
  align-items: center;
}
.foot_fixed_bnr .tel_anime {
  width: 33px;
  height: 33px;
}
.foot_fixed_bnr .tel_anime svg {
  fill: #fff;
  width: 33px;
  height: 33px;
}
.foot_fixed_bnr .tel_num {
  font-size: 4.2rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  color: #fff;
}
.foot_fixed_bnr .foot_bnrs {
  gap: 5px;
  align-items: end;
}

.footer_floating_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer_floating_sp {
    display: block;
    background: #4c4e4e;
    padding: 5px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 800;
  }
  .footer_floating_sp .text {
    color: #fff;
    text-align: center;
  }
  .footer_floating_sp .text .line {
    text-decoration: underline;
    color: #fff000;
  }
  .footer_floating_sp ul {
    display: flex;
    gap: 5px;
  }
  .footer_floating_sp ul li {
    width: auto;
  }
  .footer_floating_sp ul li .tel_anime_bnr {
    position: relative;
    height: 100%;
    display: block;
  }
  .footer_floating_sp ul li .tel_anime_bnr .tel_anime {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer_floating_sp ul li .tel_anime_bnr .tel_anime svg {
    width: 30px;
    height: 30px;
    fill: #fff;
  }
}

/*----------------------------------------------------
	HEADER
----------------------------------------------------*/
#header {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  #header.mourner_header .head_belt .inner {
    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 .title_box {
  background: #b1597c;
}
#header .title_box .h_tit {
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  padding: 5px;
}
#header .inner {
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
#header .head_belt {
  background: #fff;
  position: relative;
  padding: 10px 0;
}
@media screen and (max-width: 1100px) {
  #header .head_belt {
    padding: 10px;
  }
}
#header .head_belt .h_tit {
  color: #7f7e7e;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: inherit;
  font-size: 1.1rem;
  position: absolute;
  width: 60vw;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 1100px) {
  #header .head_belt .h_tit {
    width: 80vw;
  }
}
#header .head_belt .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 1100px) {
  #header .head_belt .inner {
    flex-wrap: wrap;
  }
}
#header .head_belt .inner .head_l {
  width: 185px;
}
#header .head_belt .inner .logo_area {
  position: relative;
}
#header .head_belt .inner .logo_area img {
  max-width: 185px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #header .head_belt .inner .logo_area img {
    max-width: 130px;
  }
}
#header .head_belt .inner .area_field {
  text-align: center;
  margin-top: 26px;
}
#header .head_belt .inner .head_r {
  display: flex;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
  gap: 20px;
}
#header .head_belt .inner .head_r .tel {
  gap: 10px;
  align-items: end;
}
#header .head_belt .inner .head_r .tel .lead {
  font-size: 1.5rem;
  font-weight: 600;
}
#header .head_belt .inner .head_r .tel .tel_anime {
  height: 40px;
}
#header .head_belt .inner .head_r .tel .tel_num {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
#header .head_belt .inner .head_r .tel .tel_wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
#header .head_belt .hurry_btn .head_f {
  background: #e5071b;
  color: #fff;
  line-height: 1.5;
  font-size: 1.8rem;
  text-align: center;
  padding: 10px 45px;
  line-height: 1.2;
  position: relative;
  border-radius: 5px;
}
#header .head_belt .hurry_btn .head_f::before {
  content: url(../img/common/hurry_icon.png);
  position: absolute;
  left: 15px;
  top: 30%;
}
#header .head_belt .hurry_btn .head_f::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;
}
#header .head_belt .hurry_btn .head_f span {
  font-size: 1.4rem;
  display: block;
}
#header .head_belt .hurry_btn a {
  display: block;
}
@media screen and (max-width: 1100px) {
  #header .nav {
    display: none;
  }
}

/*----------------------------------------------------
	グロナビ
----------------------------------------------------*/
.navigation_sp {
  display: none;
}
@media screen and (max-width: 1100px) {
  .navigation_sp {
    display: block;
    position: fixed;
    top: 22px;
    right: 0;
    width: 20%;
    z-index: 999;
  }
  .navigation_sp.visible {
    width: 100vw;
    top: 0;
  }
  .navigation_sp .nav_flex {
    background: #fafafa;
    gap: 0;
  }
  .navigation_sp .nav_flex > li {
    width: 100%;
  }
  .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.1rem;
    font-weight: 600;
  }
  .navigation_sp .nav_flex > li .link_txt i {
    font-size: 2rem;
    margin-bottom: 3px;
    color: #b1597c;
  }
  .navigation_sp .nav_flex > li .link_txt i.home_icon {
    height: 18px;
    font-size: unset;
    margin-bottom: 6px;
  }
  .navigation_sp .nav_flex > li .link_txt i.home_icon img {
    height: 18px;
    width: auto;
  }
  .navigation_sp .nav_flex .menu_btn {
    height: 60px;
    text-align: center;
  }
  .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: #b1597c;
    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 20px 100px;
  }
  .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: 600;
  }
  .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: #b1597c;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list.menu_list_hall {
    margin-bottom: 5px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list.menu_list_hall .link_btn a {
    background: transparent;
    border: none;
    padding: 0;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a {
    background: #fff;
    border: 1px solid #ccc;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    text-align: left;
    font-weight: 600;
  }
  .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: 15px;
    transform: translateY(-50%);
    top: 50%;
    color: #b1597c;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a.with_thm {
    padding: 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%;
    object-fit: cover;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a .icon {
    width: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a i {
    color: #b1597c;
    font-size: 2rem;
    width: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a i.icon-beginner {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 20px;
    vertical-align: middle;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a i.icon-beginner::before, .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a i.icon-beginner::after {
    position: absolute;
    top: 0;
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    border: 1px solid #4c4e4e;
    border-bottom-width: 0.15em;
    box-sizing: border-box;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a i.icon-beginner::before {
    left: 0;
    background: #fff;
    transform: skewY(45deg);
    border-radius: 0.3em 0 0 0.1em;
    border-right: none;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a i.icon-beginner::after {
    right: 0;
    background: #b1597c;
    transform: skewY(-45deg);
    border-radius: 0 0.3em 0.1em 0;
    border-left: none;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .menu_list .link_btn a.outside_link::after {
    content: url(../img/common/outside.svg);
    margin-left: 5px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .area_list_sp {
    margin-bottom: 30px;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .area_list_sp ul {
    flex-wrap: wrap;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .area_list_sp ul li {
    width: calc(50% - 10px);
    border-bottom: 1px solid #ccc;
    position: relative;
    text-align: left;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .area_list_sp ul li a {
    display: block;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .area_list_sp ul li:after {
    content: "\f105";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    position: absolute;
    right: 5px;
    transform: translateY(-50%);
    top: 50%;
  }
  .navigation_sp .nav_flex .menu_btn .menu_box .search_box {
    background: unset;
    margin: 0 auto 30px;
    padding: 0;
  }
  .navigation_sp .nav_flex .menu_btn.firstnone {
    display: none;
  }
  .navigation_sp .nav_flex .menu_btn.firstnone.visible {
    display: block;
  }
  .navigation_sp .nav_flex .menu_btn.hurry {
    background: #e5071b;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .sub_title {
    text-align: center;
    line-height: 1.4;
    font-size: 2.2rem;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .sub_title .color {
    color: #e5071b;
  }
  .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 .hurry_point {
    text-align: left;
    margin-bottom: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .hurry_point li {
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    font-size: 1.5rem;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .hurry_point li:before {
    content: "\f058";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    line-height: 1;
    color: #e5071b;
    margin-right: 5px;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box a {
    display: block;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .tel_point_flex {
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .tel_point_flex li {
    width: calc(50% - 0px);
    border: 1px solid #b1597c;
    background: #b1597c;
    font-weight: 600;
    font-size: 1.7rem;
    border-radius: 50px;
    white-space: nowrap;
    padding: 3px 5px;
    color: #fff;
  }
  .navigation_sp .nav_flex .menu_btn.hurry .menu_box .hurry_function {
    font-size: 2rem;
    font-weight: 600;
  }
}

@media screen and (max-width: 1100px) {
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 900;
    background: #4c4e4e;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
  .black_bg.open {
    opacity: 0.8;
    visibility: visible;
  }
}
@media only screen and (min-width: 1101px) {
  .nav {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
  }
  .nav .nav_list {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  .nav .nav_list .nav_item {
    width: 16.6666666667%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav .nav_list .nav_item:first-child {
    width: 80px;
  }
  .nav .nav_list .nav_item.pulldown a {
    position: relative;
  }
  .nav .nav_list .nav_item.pulldown a::after {
    content: "\f107";
    font-family: "Font Awesome 6 free";
    font-weight: 700;
    position: absolute;
    right: 10px;
    color: #443327;
    transition: all 0.3s;
    font-size: 1.5rem;
  }
  .nav .nav_list .nav_item a {
    font-weight: 600;
    padding: 15px 0;
    display: block;
    width: 100%;
    font-size: 1.7rem;
    text-align: center;
    position: relative;
  }
  .nav .nav_list .nav_item a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: #f7eef2;
  }
  .nav .nav_list .nav_item a span {
    display: block;
    font-size: 1rem;
    color: #6d6060;
  }
  .nav .nav_list .nav_item:last-child a::before {
    display: none;
  }
  .nav .nav_list .nav_item .tgl_menu {
    display: none;
    position: absolute;
    left: 0;
    top: 58px;
    z-index: 100;
    width: 100%;
    padding: 15px 0;
    background: #f1ede2;
  }
  .nav .nav_list .nav_item .tgl_menu:after {
    content: "";
    border: none;
  }
  .nav .nav_list .nav_item .tgl_menu .area_link_list {
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
  }
  .nav .nav_list .nav_item .tgl_menu .area_link_list .parent_link {
    border-right: solid 1px #b1597c;
    padding-right: 30px;
  }
  .nav .nav_list .nav_item .tgl_menu .area_link_list .hall_tgl_menu {
    gap: 0;
  }
  .nav .nav_list .nav_item .tgl_menu .area_link_list .hall_tgl_menu a {
    padding: 0;
    line-height: 1.4;
  }
  .nav .nav_list .nav_item .tgl_menu ul {
    flex-wrap: wrap;
  }
  .nav .nav_list .nav_item .tgl_menu ul li {
    width: 30%;
    border: none;
  }
  .nav .nav_list .nav_item .tgl_menu ul li a {
    display: block;
    font-size: 1.2rem;
    text-align: center;
    min-width: 100px;
    white-space: nowrap;
    line-height: 30px;
    color: #4c4e4e;
  }
  .nav .nav_list .nav_item .tgl_menu ul li a.area_link_btn {
    font-size: 1.7rem;
  }
  .nav .nav_list .nav_item .tgl_menu ul li a p {
    font-size: 1.5rem;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
  }
  .nav .nav_list .nav_item .tgl_menu ul li a p:before {
    content: "\f138";
    font-family: "Font Awesome 6 free";
    color: #b1597c;
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1;
    margin-right: 5px;
  }
  .nav .nav_list .nav_item .tgl_menu ul li a p span {
    display: inline-block;
    display: block;
  }
  .nav .nav_list .nav_item .tgl_menu ul li a p span img {
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    margin-top: -5px;
  }
  .nav .nav_list .nav_item .tgl_menu ul.area_link_list {
    justify-content: flex-start;
  }
  .nav .nav_list .nav_item .tgl_menu ul.area_link_list li {
    width: auto;
  }
  .nav .nav_list .nav_item .tgl_menu ul.area_link_list li a::before, .nav .nav_list .nav_item .tgl_menu ul.area_link_list li a::after {
    display: none;
  }
  .nav .nav_list .nav_item .dwn_hall li {
    width: 23%;
  }
  .nav .nav_list .nav_item .dwn_plan li a::before, .nav .nav_list .nav_item .dwn_plan li a::after {
    display: none;
  }
  .nav .nav_list .nav_item .dwn_plan li img {
    object-fit: cover;
    width: 100%;
    height: 190px;
    display: block;
  }
  .nav .nav_list .nav_item.home a {
    line-height: 1;
  }
  .nav .nav_list .nav_item.hurry a {
    color: #fff;
    line-height: 1.4;
    background: #e5071b;
    border-radius: 6px;
  }
  .nav .nav_list .nav_item.hurry a span {
    line-height: 1;
    font-size: 1.7rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
  }
  .nav .nav_list .nav_item.hurry a span::before {
    content: url(../img/common/icon_hurry.svg);
  }
  .nav .nav_list .nav_item .pulldown ul:after {
    border: none;
  }
  .hamburger_text {
    display: none;
  }
  #gnav.fixed {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000;
  }
}
/*----------------------------------------------------
	バナー
----------------------------------------------------*/
/*お急ぎの方への開閉ボタン*/
.hurry_box {
  display: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .hurry_box {
    display: inline-block;
    width: 100%;
    padding: 0 15px;
  }
  .hurry_box .time_text {
    font-weight: 600;
    margin-bottom: -40px;
    text-align: center;
    font-size: 3rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) and (max-width: 820px) {
  .hurry_box .time_text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .hurry_box .time_text {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .hurry_box .time_text small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .hurry_box .time_text .small {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .hurry_box .time_text .small {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .hurry_box .time_text .catch_color {
    color: #e5071b;
  }
  .hurry_box .time_text .line {
    border-bottom: solid 1px #e5071b;
    margin: 0 5px;
  }
  .hurry_box .time_text strong {
    font-size: 120%;
    font-weight: normal;
    font-weight: 600;
  }
  .hurry_box .open_btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
    background: #e5071b;
    text-align: center;
    border-radius: 100px;
    box-shadow: 0 5px 0 #ad392a;
    border: 0;
    line-height: 1.4;
    position: relative;
  }
  .hurry_box .open_btn::after {
    content: "\f107";
    font-family: "Font Awesome 6 free";
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 0.3s;
    font-size: 2rem;
  }
  .hurry_box .open_btn.active {
    margin-bottom: 20px;
  }
  .hurry_box .open_btn.active::after {
    content: "\f106";
  }
  .hurry_box .open_btn i {
    margin-right: 10px;
  }
  .hurry_box .title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    padding-right: 20px;
  }
  .hurry_box .hurry_detail {
    display: none;
    background: #f5f5f5;
    padding: 15px;
    position: relative;
    border-radius: 10px;
    border: 1px solid #eee;
  }
  .hurry_box .hurry_detail::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 20px 15px;
    border-color: transparent transparent #f5f5f5 transparent;
  }
  .hurry_box .reminder {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
  }
  .hurry_box .reminder li {
    background: #fff;
    border: solid 1px #e5071b;
    color: #e5071b;
    padding: 5px 10px;
    line-height: 1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hurry_box .reminder li .num {
    font-size: 125%;
  }
  .hurry_box .text {
    font-size: 2.2rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .hurry_box .text--dial {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .hurry_box .color {
    color: #e5071b;
  }
  .hurry_box .marker {
    background: linear-gradient(transparent 70%, #fff000 0%);
  }
  .hurry_box .hurry_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .hurry_box .hurry_list li {
    display: flex;
  }
  .hurry_box .hurry_list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 free";
    font-weight: 700;
    color: #b1597c;
    margin-right: 5px;
  }
}

.column_banner {
  overflow: unset;
}
.column_banner .fukidashi_title {
  margin-bottom: 0;
}
.column_banner.banner_top {
  padding-top: 60px;
}
.column_banner a:hover {
  opacity: 1;
}
.column_banner .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.column_banner .inner .w50 {
  width: calc(50% - 5px);
}
@media screen and (max-width: 767px) {
  .column_banner .inner .w50 {
    width: 100%;
  }
}
.column_banner .time_text {
  font-weight: 600;
  margin-bottom: -40px;
  text-align: center;
  font-size: 3rem;
  line-height: 1.2;
}
@media screen and (max-width: 820px) {
  .column_banner .time_text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .column_banner .time_text {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .column_banner .time_text small {
    font-size: 1.6rem;
  }
}
.column_banner .time_text .small {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .column_banner .time_text .small {
    font-size: 2rem;
  }
}
.column_banner .time_text .catch_color {
  color: #e5071b;
}
.column_banner .time_text .line {
  border-bottom: solid 1px #e5071b;
  margin: 0 5px;
}
.column_banner .time_text strong {
  font-size: 120%;
  font-weight: normal;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_banner .top_text {
    font-size: 2.2rem;
    text-align: center;
    font-weight: 600;
  }
  .column_banner--top {
    padding: 0 15px;
  }
  .column_banner--top .inner {
    background: #f1ede2;
    padding: 15px;
    border-radius: 10px;
  }
}
.column_banner .bnr_member {
  margin-bottom: 40px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .column_banner .bnr_member {
    margin-bottom: 0;
  }
}

.banner_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.banner_box li {
  width: auto;
}
@media screen and (max-width: 1100px) {
  .banner_box li {
    width: 49%;
    padding: 5px 0;
  }
}
@media screen and (max-width: 820px) {
  .banner_box li {
    width: 100%;
    text-align: center;
  }
}
.banner_box li img {
  filter: drop-shadow(0 0 5px #ccc);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.banner_box .w100 {
  width: 100%;
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .banner_box .w100 {
    margin: 0;
  }
}

/*----------------------------------------------------
	記事一覧
----------------------------------------------------*/
.column_voice {
  background-color: #f1ede2;
  padding: 100px 0;
  background-image: url(../img/common/voice_code_left.png);
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1100px) {
  .column_voice {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .column_voice {
    padding: 30px 0;
    background-size: cover;
  }
}
.column_voice .sec_title {
  margin-bottom: 20px;
}
.column_voice .sec_label {
  margin-bottom: 30px;
}
.column_voice .sec_label .text {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_voice .sec_label .text {
    font-size: 1.6rem;
    font-weight: 500;
  }
}
.column_voice .voice_list {
  margin-bottom: 50px;
  overflow: visible !important;
}
@media screen and (max-width: 767px) {
  .column_voice .voice_list {
    margin-bottom: 20px;
  }
}
.column_voice .voice_slide {
  box-shadow: 0 0 20px #dcd9cf;
  background: #fff;
  padding: 30px 20px 20px 15px;
  border-radius: 0px 26px 10px 0px;
  border-left: 6px solid #b1597c;
}
.column_voice .voice_slide .rbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.column_voice .voice_slide .title {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
}
.column_voice .voice_slide .single_star {
  background: #f7f7f7;
  padding: 5px;
  color: #eb9b1d;
}
.column_voice .voice_slide .single_star .icon {
  font-style: normal;
}
.column_voice .voice_slide .single_star .title {
  color: #4c4e4e;
  font-size: 1.5rem;
  margin-right: 10px;
  font-weight: normal;
}
.column_voice .voice_slide .plan_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: dashed 2px #e2ded8;
  padding-bottom: 10px;
}
.column_voice .voice_slide .plan_wrap .plan_label {
  background: #b1597c1a;
  padding: 10px 5px;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 2px 12px 2px 2px;
  font-weight: 600;
  white-space: nowrap;
}
.column_voice .voice_slide .plan_wrap .plan_name {
  line-height: 1.2;
}
.column_voice .voice_slide dl {
  font-size: 1.5rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.column_voice .voice_slide dl dt {
  font-weight: 600;
  margin-bottom: 5px;
}
.column_voice .voice_slide dl dd {
  background: #b1597c1a;
  padding: 5px;
}
.column_voice .voice_slide--simple {
  border-color: #4b922c;
}
.column_voice .voice_slide--simple .plan_wrap .plan_label {
  background: #4b922c1a;
}
.column_voice .voice_slide--simple dl dd {
  background: #4b922c1a;
}
.column_voice .voice_slide--irodori {
  border-color: #452c7a;
}
.column_voice .voice_slide--irodori .plan_wrap .plan_label {
  background: #452c7a1a;
}
.column_voice .voice_slide--irodori dl dd {
  background: #452c7a1a;
}
.column_voice .voice_slide--standard {
  border-color: #a93260;
}
.column_voice .voice_slide--standard .plan_wrap .plan_label {
  background: #a932601a;
}
.column_voice .voice_slide--standard dl dd {
  background: #a932601a;
}
.column_voice .voice_slide--general {
  border-color: #3c268f;
}
.column_voice .voice_slide--general .plan_wrap .plan_label {
  background: #3c268f1a;
}
.column_voice .voice_slide--general dl dd {
  background: #3c268f1a;
}
.column_voice .splide .splide__arrow {
  width: 56px;
  height: 56px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .column_voice .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.column_voice .splide .splide__arrow:hover {
  opacity: 0.7;
}
.column_voice .splide .splide__arrow--prev {
  background: url(../img/common/voice_arrow_prev.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1100px) {
  .column_voice .splide .splide__arrow--prev {
    left: 0;
  }
}
.column_voice .splide .splide__arrow--next {
  background: url(../img/common/voice_arrow_next.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1100px) {
  .column_voice .splide .splide__arrow--next {
    right: 0;
  }
}

.column_info {
  overflow: unset;
  padding-top: 20px;
}
.column_info.column--bg {
  padding-top: 60px;
}
@media screen and (max-width: 1100px) {
  .column_info.column--bg {
    padding-top: 30px;
  }
}
.column_info .sec_title {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .column_info .sec_title {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
  }
}
.column_info .sec_title .sub_title {
  color: #b1597c;
  font-size: 1.8rem;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 767px) {
  .column_info .sec_title .sub_title {
    font-size: 1.6rem;
  }
}
.column_info #event_slider {
  position: relative;
}
.column_info .splide__track {
  margin-bottom: 50px;
}
.column_info .splide__track a {
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .column_info .splide__track {
    margin-bottom: 20px;
  }
}
.column_info .splide__arrows {
  position: absolute;
  top: -50px;
  right: 60px;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .column_info .splide__arrows {
    right: 40px;
  }
}
.column_info .splide__arrows .splide__arrow--prev {
  left: auto;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .column_info .splide__arrows .splide__arrow--prev {
    right: 10px;
  }
}
.column_info .splide__arrows .splide__arrow--next {
  right: auto;
}
.column_info .splide__slide {
  background: #fff;
  box-shadow: 0 0 5px #b499a5;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px 15px;
  margin: 10px 0;
  border: solid 1px #b1597c;
}
.column_info .splide__slide img {
  border-radius: 16px;
  margin-bottom: 10px;
}
.column_info .splide__slide .date {
  color: #555;
  font-size: 1.5rem;
}
.column_info .splide__slide .title {
  font-size: 1.8rem;
  font-weight: 600;
  white-space: nowrap; /* 折り返し無しにする */
  overflow: hidden; /* はみ出た部分を非表示 */
  text-overflow: ellipsis; /* 語尾を3点リーダーに */
}
.column_info .splide__slide .text {
  font-size: 1.5rem;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 3; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
@media screen and (max-width: 820px) {
  .column_info .splide__list {
    overflow: visible !important;
  }
}

/*----------------------------------------------------
	INDEX PAGE
----------------------------------------------------*/
/*------スライドショー------------------------------*/
.splide .splide__arrow {
  background: #b1597cF2;
  width: 60px;
  height: 60px;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.splide .splide__arrow--next svg, .splide .splide__arrow--prev svg {
  display: none;
}
.splide .splide__arrow--next {
  background: url(../img/common/arrow_next.png) no-repeat;
}
@media screen and (max-width: 767px) {
  .splide .splide__arrow--next {
    background-size: contain;
  }
}
.splide .splide__arrow--prev {
  background: url(../img/common/arrow_prev.png) no-repeat;
}
@media screen and (max-width: 767px) {
  .splide .splide__arrow--prev {
    background-size: contain;
  }
}
.splide__news .splide__arrow--next {
  right: -40px;
}
@media screen and (max-width: 820px) {
  .splide__news .splide__arrow--next {
    right: 0;
  }
}
.splide__news .splide__arrow--prev {
  left: -40px;
}
@media screen and (max-width: 820px) {
  .splide__news .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .splide__track.newslist a {
    margin: 0 20px;
    display: block;
  }
}
.splide__slide.thum {
  opacity: 0.3;
  transition: all 0.3s;
}
.splide__slide.thum.is-active {
  opacity: 1;
  border: 0 !important;
}
.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide__slide__arrow--next {
  right: 7%;
}
.splide__pagination {
  bottom: 15px;
}
.splide__pagination__page {
  border: 1px solid #ccc;
}
.splide__pagination__page.is-active {
  border: 1px solid #b1597c;
  background: #b1597c !important;
}

.slide_wrap {
  position: relative;
}

#main_slider {
  background-color: #efe2e8;
  background-image: url(../img/common/top_mv_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px;
  z-index: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #main_slider {
    display: none;
  }
}
#main_slider .splide__slide {
  border-radius: 30px;
  overflow: hidden;
}
#main_slider .splide__pagination {
  bottom: 30px;
}
#main_slider .splide__pagination__page {
  background: #fff;
  border: none;
}

#main_slider_sp {
  display: none;
}
@media screen and (max-width: 820px) {
  #main_slider_sp {
    display: block;
    margin-bottom: 40px;
  }
  #main_slider_sp .splide__pagination {
    bottom: -20px;
  }
}

/*------エリアトップMV------------------------------*/
.column_area_mv .area_mv {
  margin-bottom: 20px;
  position: relative;
}
.column_area_mv .area_mv .text_wrap {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-10%, -50%);
}
@media screen and (max-width: 820px) {
  .column_area_mv .area_mv .text_wrap {
    left: 5%;
    transform: translate(-5%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .text_wrap {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.column_area_mv .area_mv .text_wrap img {
  max-width: 391px;
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 1100px) {
  .column_area_mv .area_mv .text_wrap img {
    max-width: 330px;
  }
}
@media screen and (max-width: 820px) {
  .column_area_mv .area_mv .text_wrap img {
    max-width: 280px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .text_wrap img {
    max-width: 70%;
  }
}
.column_area_mv .area_mv .area_mv_title {
  font-weight: 600;
  color: #fff;
  font-size: 3rem;
  line-height: 1.6;
}
@media screen and (max-width: 1100px) {
  .column_area_mv .area_mv .area_mv_title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 820px) {
  .column_area_mv .area_mv .area_mv_title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .area_mv_title {
    font-size: 2rem;
    text-align: center;
    line-height: 1.7;
  }
}
.column_area_mv .area_mv .area_mv_title .area_name {
  font-size: 2.8rem;
  color: #de5d11;
  background: #fff;
  padding: 10px 20px;
  line-height: 1;
  border-radius: 30px;
  margin-right: 5px;
}
@media screen and (max-width: 1100px) {
  .column_area_mv .area_mv .area_mv_title .area_name {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 820px) {
  .column_area_mv .area_mv .area_mv_title .area_name {
    padding: 7px 10px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .area_mv_title .area_name {
    font-size: 1.8rem;
  }
  .column_area_mv .area_mv .area_mv_title .area_name span {
    font-size: 70%;
  }
}
.column_area_mv .area_mv .area_mv_title .color {
  font-size: 4.2rem;
  color: #fff600;
}
@media screen and (max-width: 1100px) {
  .column_area_mv .area_mv .area_mv_title .color {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 820px) {
  .column_area_mv .area_mv .area_mv_title .color {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .area_mv_title .color {
    font-size: 2.6rem;
  }
  .column_area_mv .area_mv .area_mv_title .color span {
    position: relative;
  }
  .column_area_mv .area_mv .area_mv_title .color span::before {
    content: "ゆい";
    white-space: nowrap;
    position: absolute;
    top: -1.2rem;
    font-size: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.column_area_mv .area_mv .area_mv_title .color small {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .area_mv_title .color small {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .column_area_mv .area_mv .cost_wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .cost_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 5px;
  }
}
.column_area_mv .area_mv .area_mv_cost {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media screen and (max-width: 1100px) {
  .column_area_mv .area_mv .area_mv_cost {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  .column_area_mv .area_mv .area_mv_cost br {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .column_area_mv .area_mv .area_mv_cost {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .column_area_mv .area_mv .area_mv_cost br {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .area_mv_cost {
    font-size: 1.4rem;
  }
  .column_area_mv .area_mv .area_mv_cost br {
    display: none;
  }
}
.column_area_mv .area_mv .area_mv_plan {
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  font-size: 1.7rem;
  padding: 10px;
  border: solid 2px #fff;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1100px) {
  .column_area_mv .area_mv .area_mv_plan {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 820px) {
  .column_area_mv .area_mv .area_mv_plan {
    font-size: 1.4rem;
    margin-bottom: 5px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .area_mv_plan {
    font-size: 1.3rem;
    padding: 3px 5px;
    margin-bottom: 3px;
    text-align: center;
    display: block;
  }
}
.column_area_mv .area_mv .area_mv_note {
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  font-size: 1.4rem;
  margin-left: 10px;
}
@media screen and (max-width: 820px) {
  .column_area_mv .area_mv .area_mv_note {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .column_area_mv .area_mv .area_mv_note {
    font-size: 1rem;
  }
}
.column_area_mv .area_seo {
  position: relative;
}
.column_area_mv .area_seo .text {
  max-height: 70px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 1.3rem;
}
.column_area_mv .area_seo .gradation_wrap {
  background: linear-gradient(to top, #fff 60%, rgba(255, 255, 255, 0));
  padding: 10px;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.column_area_mv .area_seo .more_btn {
  border: none;
  background: none;
  text-decoration: underline;
}

.column_area_menu .area_menu_title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
@media screen and (max-width: 767px) {
  .column_area_menu .area_menu_title {
    margin-bottom: 20px;
  }
}
.column_area_menu .area_menu_list {
  flex-wrap: wrap;
  justify-content: center;
}
.column_area_menu .area_menu_item {
  width: calc(33.3333333333% - 15px);
}
@media screen and (max-width: 820px) {
  .column_area_menu .area_menu_item {
    width: calc(33.3333333333% - 7px);
  }
}
@media screen and (max-width: 767px) {
  .column_area_menu .area_menu_item {
    width: calc(50% - 5px);
  }
}
.column_area_menu .area_menu_item .btn {
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px 10px 20px;
}
@media screen and (max-width: 767px) {
  .column_area_menu .area_menu_item .btn {
    flex-direction: column;
    padding: 10px 10px 20px;
    gap: 5px;
  }
}
.column_area_menu .area_menu_item .btn .icon {
  background: #f7eef2;
  max-width: 60px;
  max-height: 60px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  display: block;
}
.column_area_menu .area_menu_item .btn .icon img {
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .column_area_menu .area_menu_item .btn .icon {
    display: none;
  }
}
.column_area_menu .area_menu_item .btn .text {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_area_menu .area_menu_item .btn .text {
    flex-grow: 1;
    display: flex;
    align-items: center;
  }
}
.column_area_menu .area_menu_item .btn::after {
  content: "\f107";
}
@media screen and (max-width: 767px) {
  .column_area_menu .area_menu_item .btn::after {
    top: auto;
    right: auto;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.column_area_faq .area_faq_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.column_area_faq .area_faq_item {
  border: solid 1px #7e8080;
  overflow: hidden;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}
.column_area_faq .area_faq_item dt, .column_area_faq .area_faq_item dd {
  padding: 20px;
}
.column_area_faq .area_faq_item dt {
  background: #f1ede2;
  font-weight: 600;
  font-size: 1.8rem;
}

/*------トップバナー------------------------------*/
.column_banner_top {
  padding-bottom: 50px;
}

.category .column_banner_top {
  padding-bottom: 100px;
}

/*------特徴コーナー------------------------------*/
.column_feature {
  background-color: #efe2e8;
  background-image: url(../img/common/bg_top.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 120px 0;
}
@media screen and (max-width: 1100px) {
  .column_feature {
    padding: 60px 0 30px;
  }
}
.column_feature .sec_title .read_title {
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
.column_feature .sec_title .read_title strong {
  font-size: 6.2rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .column_feature .sec_title .read_title strong {
    font-size: 150%;
  }
}
.column_feature .sec_title .read_title small {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .column_feature .sec_title .read_title small {
    font-size: 80%;
  }
}
.column_feature .feature_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.column_feature .feature_item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .column_feature .feature_item {
    flex-direction: column;
    gap: 0;
    border-radius: 7px;
    overflow: hidden;
  }
}
.column_feature .feature_item .photo {
  width: 45%;
  position: relative;
  left: 60px;
  top: 0;
  border-radius: 20px;
}
@media screen and (max-width: 820px) {
  .column_feature .feature_item .photo {
    width: 100%;
    left: 0;
    border-radius: 0;
  }
}
.column_feature .feature_item .photo--line {
  border: solid 1px #ccc;
}
@media screen and (max-width: 820px) {
  .column_feature .feature_item .photo--line {
    border: none;
    border-bottom: solid 1px #ccc;
  }
}
.column_feature .feature_item .text_wrap {
  box-shadow: 0 2px 5px #b499a5;
  width: 60%;
  padding: 50px 60px 50px 70px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1100px) {
  .column_feature .feature_item .text_wrap {
    padding: 30px 40px 30px 50px;
  }
}
@media screen and (max-width: 820px) {
  .column_feature .feature_item .text_wrap {
    width: 100%;
    border-radius: 0;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .column_feature .feature_item .text_wrap {
    padding: 15px;
  }
}
.column_feature .feature_item .text_wrap .icon {
  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
  color: #b1597c;
  display: block;
  position: relative;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .column_feature .feature_item .text_wrap .icon {
    text-align: center;
  }
}
.column_feature .feature_item .text_wrap .icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/common/feature_title.svg) no-repeat;
  width: 114px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .column_feature .feature_item .text_wrap .icon::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.column_feature .feature_item .text_wrap .icon .num {
  font-size: 3.2rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .column_feature .feature_item .text_wrap .icon {
    margin-bottom: 10px;
  }
}
.column_feature .feature_item .text_wrap .btn {
  margin: 0 0 0 auto;
  max-width: 300px;
  padding: 15px 10px;
}
@media screen and (max-width: 767px) {
  .column_feature .feature_item .text_wrap .btn {
    margin: 0 auto;
  }
}
.column_feature .feature_item .text_wrap .title {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #b1597c;
}
@media screen and (max-width: 767px) {
  .column_feature .feature_item .text_wrap .title {
    margin-bottom: 10px;
    font-size: 2.2rem;
    text-align: center;
  }
}
.column_feature .feature_item .text_wrap .text {
  margin-bottom: 20px;
}
.column_feature .feature_item .text_wrap small {
  line-height: 1.4;
  display: inline-block;
}
.column_feature .feature_item:nth-child(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 820px) {
  .column_feature .feature_item:nth-child(2) {
    flex-direction: column;
  }
}
.column_feature .feature_item:nth-child(2) .photo {
  left: auto;
  right: 60px;
}
@media screen and (max-width: 820px) {
  .column_feature .feature_item:nth-child(2) .photo {
    right: 0;
  }
}
.column_feature .feature_item:nth-child(2) .text_wrap {
  padding: 50px 70px 50px 60px;
}
@media screen and (max-width: 1100px) {
  .column_feature .feature_item:nth-child(2) .text_wrap {
    padding: 30px 50px 30px 40px;
  }
}
@media screen and (max-width: 820px) {
  .column_feature .feature_item:nth-child(2) .text_wrap {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .column_feature .feature_item:nth-child(2) .text_wrap {
    padding: 15px;
  }
}

/*----------------------------------------------------
	プラン一覧
----------------------------------------------------*/
.column_plan_list {
  background: #f7eef2;
  padding: 120px 0 90px;
}
@media screen and (max-width: 1100px) {
  .column_plan_list {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .column_plan_list {
    padding: 30px 0;
  }
}

.plan_box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.plan_box li {
  box-shadow: 0 3px 10px #b499a5;
  width: calc(33.3333333333% - 15px);
  text-align: center;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s all;
}
@media screen and (max-width: 820px) {
  .plan_box li {
    width: calc(33.3333333333% - 7px);
  }
}
@media screen and (max-width: 767px) {
  .plan_box li {
    width: 100%;
    background: none;
    border-radius: 8px;
  }
}
.plan_box li.plan_simple {
  border: 1px solid #4b922c;
}
@media screen and (max-width: 767px) {
  .plan_box li.plan_simple {
    border: none;
  }
}
.plan_box li.plan_simple .plan_box_name {
  background: #4b922c;
}
.plan_box li.plan_simple .flow.in {
  background: #4b922c;
}
.plan_box li.plan_irodori {
  border: 1px solid #452c7a;
}
@media screen and (max-width: 767px) {
  .plan_box li.plan_irodori {
    border: none;
  }
}
.plan_box li.plan_irodori .plan_box_name {
  background: #452c7a;
}
.plan_box li.plan_irodori .flow.in {
  background: #452c7a;
}
.plan_box li.plan_standard {
  border: 1px solid #a93260;
}
@media screen and (max-width: 767px) {
  .plan_box li.plan_standard {
    border: none;
  }
}
.plan_box li.plan_standard .plan_box_name {
  background: #a93260;
}
.plan_box li.plan_standard .flow.in {
  background: #a93260;
}
.plan_box li.plan_general {
  border: 1px solid #3c268f;
}
@media screen and (max-width: 767px) {
  .plan_box li.plan_general {
    border: none;
  }
}
.plan_box li.plan_general .plan_box_name {
  background: #3c268f;
}
.plan_box li.plan_general .flow.in {
  background: #3c268f;
}
.plan_box li.show {
  position: relative;
}
@media screen and (max-width: 767px) {
  .plan_box li.show {
    margin-top: 50px;
  }
}
.plan_box li.show::before, .plan_box li.show::after {
  content: "";
  animation: updown1 3s ease-in-out 0s infinite;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.plan_box li.show::before {
  content: "閲覧中のプラン";
  top: -40px;
  background: #e5071b;
  color: #fff;
  padding: 5px 30px;
  line-height: 1;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}
.plan_box li.show::after {
  top: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e5071b transparent transparent transparent;
}
.plan_box li.plan_standard .plan_photo {
  position: relative;
}
.plan_box li.plan_standard .plan_photo::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 10px;
  background: url(../img/plan/point_icon.png);
  width: 80px;
  height: 80px;
  background-size: cover;
}
.plan_box .plan_box_name {
  color: #fff;
  padding: 13px 5px;
  line-height: 1.2;
  position: relative;
  border-radius: 7px 7px 0 0;
}
.plan_box .plan_box_name::after {
  content: "\f0a9";
  font-weight: 900;
  font-family: "Font Awesome 6 free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 2.1rem;
}
.plan_box .plan_box_catch {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.plan_box .plan_box_title {
  font-size: 3.6rem;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .plan_box .plan_box_title {
    font-size: 3rem;
  }
}
.plan_box .plan_box_title small {
  font-size: 2.8rem;
}
@media screen and (max-width: 820px) {
  .plan_box .plan_box_title small {
    font-size: 2.2rem;
  }
}
.plan_box .plan_box_title small.half_size {
  font-size: 2.1rem;
}
@media screen and (max-width: 820px) {
  .plan_box .plan_box_title small.half_size {
    font-size: 1.8rem;
  }
}
.plan_box .plan_box_img {
  width: 100%;
  aspect-ratio: 173/73;
  border-radius: 10px;
  object-fit: cover;
}
.plan_box .plan_box_img_sub {
  margin: 10px 0 0;
}
.plan_box .plan_box_info_wrap {
  padding: 10px;
}
.plan_box .plan_box_flow {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 15px 0 7px;
}
.plan_box .flow {
  width: calc(33.3333333333% - 3px);
  color: #fff;
  border-radius: 4px;
  background: #ccc;
  padding: 8px 5px;
}
.plan_box .plan_box_discount {
  background: #f8f6e6;
  border: solid 1px #e8e7db;
  font-size: 1.7rem;
  text-align: center;
  padding: 9px 5px;
  border-radius: 6px;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
  font-weight: 600;
}
.plan_box .plan_box_discount::before, .plan_box .plan_box_discount::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
}
.plan_box .plan_box_discount::before {
  bottom: -8px;
  border-color: #E8E7DB transparent transparent transparent;
}
.plan_box .plan_box_discount::after {
  bottom: -6px;
  border-color: #F8F6E6 transparent transparent transparent;
}
.plan_box .plan_box_discount .color {
  color: #e5071b;
}
.plan_box .plan_box_discount .num {
  font-size: 1.9rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
.plan_box .plan_box_discount .tani {
  font-size: 1.8rem;
}
.plan_box .plan_box_discount small {
  font-size: 1.3rem;
}
.plan_box .ippan {
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}
.plan_box .ippan::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-60%);
  width: 100%;
  height: 1px;
  background: #4c4e4e;
}
.plan_box .ippan .num {
  font-size: 1.9rem;
  font-family: "Oswald", sans-serif;
}
.plan_box .ippan .tani {
  font-size: 1.2rem;
}
.plan_box .plan_box_price {
  display: flex;
  flex-direction: column;
}
.plan_box .plan_box_price .discount {
  margin-bottom: 5px;
  display: flex;
  gap: 5px;
  justify-content: center;
  color: #e5071b;
  font-size: 5.6rem;
  font-family: "Oswald", sans-serif;
  position: relative;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .plan_box .plan_box_price .discount {
    font-size: 4rem;
  }
}
.plan_box .plan_box_price .discount .num {
  position: relative;
  padding-top: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.2rem;
}
.plan_box .plan_box_price .discount .num::after {
  content: "会員価格";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  font-weight: normal;
  color: #4c4e4e;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
.plan_box .plan_box_price .discount .tani {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.plan_box .plan_box_price .discount .yen {
  font-size: 2.6rem;
  font-weight: 600;
}
.plan_box .plan_box_price .discount .tax {
  font-size: 1.2rem;
}
.plan_box .plan_box_price .taxin {
  display: flex;
  align-items: end;
  justify-content: center;
  font-size: 1.8rem;
  color: #222;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.plan_box .plan_box_price .taxin .taxin_laber {
  display: block;
  font-size: 1.2rem;
  margin-right: 5px;
  margin-top: 10px;
}
.plan_box .plan_box_price .taxin .taxin_yen {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .plan_box_sp {
    border-radius: 5px;
  }
  .plan_box_sp__wrap {
    padding: 5px;
    gap: 10px;
    align-items: center;
  }
  .plan_box_sp__wrap .info {
    flex: 1;
  }
  .plan_box_sp__wrap .info .feature {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .plan_box_sp__wrap .info .plan_name {
    font-size: 2.4rem;
    font-weight: 600;
  }
  .plan_box_sp__wrap .img {
    width: 40%;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 10px;
  }
  .plan_box_sp__wrap .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .plan_box_sp__price {
    padding: 5px 10px;
    background: #f7eef2;
    gap: 5px;
    align-items: center;
  }
  .plan_box_sp__price .num {
    font-family: "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;
  }
  .plan_box_sp__price .discount .discount_price {
    color: #fff;
    background: #e5071b;
    font-weight: 600;
  }
  .plan_box_sp__price .discount .discount_price .num {
    font-size: 1.3em;
    font-weight: 400;
  }
  .plan_box_sp__price .discount .ippan {
    font-size: 1.3rem;
  }
  .plan_box_sp__price .club {
    font-size: 1.5rem;
    text-align: right;
  }
  .plan_box_sp__price .club .club_untax {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #e5071b;
    white-space: nowrap;
  }
  .plan_box_sp__price .club .club_untax .num {
    font-size: 1.8em;
    letter-spacing: 0;
  }
  .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.plan_simple {
    border-color: #4b922c;
  }
  .plan_box_sp.plan_simple .plan_box_sp__wrap .info .plan_name {
    color: #4b922c;
  }
  .plan_box_sp.plan_simple .plan_box_sp__price {
    background: rgb(246, 249.55, 244.45);
  }
  .plan_box_sp.plan_irodori {
    border-color: #452c7a;
  }
  .plan_box_sp.plan_irodori .plan_box_sp__wrap .info .plan_name {
    color: #452c7a;
  }
  .plan_box_sp.plan_irodori .plan_box_sp__price {
    background: rgb(245.7, 244.45, 248.35);
  }
  .plan_box_sp.plan_standard {
    border-color: #a93260;
  }
  .plan_box_sp.plan_standard .plan_box_sp__wrap .info .plan_name {
    color: #a93260;
  }
  .plan_box_sp.plan_standard .plan_box_sp__price {
    background: rgb(250.7, 244.75, 247.05);
  }
  .plan_box_sp.plan_general {
    border-color: #3c268f;
  }
  .plan_box_sp.plan_general .plan_box_sp__wrap .info .plan_name {
    color: #3c268f;
  }
  .plan_box_sp.plan_general .plan_box_sp__price {
    background: rgb(245.25, 244.15, 249.4);
  }
}
/*----------------------------------------------------
	斎場一覧　簡易版
----------------------------------------------------*/
.column_hall_list {
  background-color: #f7eef2;
  background-image: url(../img/common/bg_top.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 130px 0;
}
@media screen and (max-width: 1100px) {
  .column_hall_list {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .column_hall_list {
    padding: 40px 0 30px;
  }
}
.column_hall_list .catch {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  .column_hall_list .catch {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .column_hall_list .catch {
    margin-bottom: 20px;
  }
}
.column_hall_list .hall_list_title {
  text-align: left;
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  margin-bottom: 20px;
}
.column_hall_list .hall_list_title:before {
  content: "";
  background-image: url(../img/top/friends.jpg);
  width: 43px;
  height: 49px;
  background-size: cover;
  display: inline-block;
  position: relative;
  top: 15px;
}
.column_hall_list .area_hall_links {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .column_hall_list .area_hall_links {
    justify-content: space-between;
  }
}
.column_hall_list .area_hall_links li {
  width: calc(20% - 8px);
  text-align: center;
  border-radius: 50px;
}
@media screen and (max-width: 820px) {
  .column_hall_list .area_hall_links li {
    width: calc(50% - 5px);
  }
}
.column_hall_list .area_hall_links li:nth-child(1) .btn::before {
  color: #a0201b;
}
.column_hall_list .area_hall_links li:nth-child(2) .btn::before {
  color: #fe9d35;
}
.column_hall_list .area_hall_links li:nth-child(3) .btn::before {
  color: #006634;
}
.column_hall_list .area_hall_links li:nth-child(4) .btn::before {
  color: #007ec7;
}
.column_hall_list .area_hall_links li:nth-child(5) .btn::before {
  color: #9523a3;
}
.column_hall_list .area_hall_links li a {
  width: 100%;
  border-radius: 8px;
  padding: 15px 0;
  display: block;
  color: #fff;
}
.column_hall_list .area_hall_links li a::after {
  content: "\f107";
  right: 10px;
}
.column_hall_list .area_hall_links li a::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  left: 10px;
  transform: translateY(-50%);
  top: 50%;
  -webkit-text-stroke: 1px #FFF;
  text-stroke: 1px #FFF;
  font-size: 2rem;
}
.column_hall_list .area_list_wrap .area_list {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .column_hall_list .area_list_wrap .area_list {
    gap: 10px 0;
  }
}
.column_hall_list .area_list_wrap .area_list li {
  width: calc(33.3333333333% - 15px);
  border-radius: 0 0 5px 5px;
}
@media screen and (max-width: 767px) {
  .column_hall_list .area_list_wrap .area_list li {
    width: 100%;
  }
}
.column_hall_list .area_list_wrap .area_list li a:hover {
  opacity: 1;
}
.column_hall_list .area_list_wrap .area_list li .txt_wrap {
  display: flex;
  justify-content: space-between;
}
.column_hall_list .area_list_wrap .area_list li .txt_wrap .area_name {
  color: #fff;
  font-size: 2rem;
  padding: 10px 0 10px 30px;
}
.column_hall_list .area_list_wrap .area_list li .txt_wrap .area_num {
  background: #fff;
  font-size: 1.8rem;
  padding: 15px 15px 15px 0;
  position: relative;
  font-weight: 700;
  border-radius: 0 0 4px 0;
}
.column_hall_list .area_list_wrap .area_list li .txt_wrap .area_num:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 100%;
  top: 0;
  left: -20px;
  border-radius: 100% 0 0 100%/50%;
  background: #fff;
  position: absolute;
}
.column_hall_list .part_hall_links {
  margin-bottom: 60px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .column_hall_list .part_hall_links {
    gap: 10px;
  }
}
.column_hall_list .part_hall_links li {
  width: calc(25% - 23px);
  text-align: center;
  border: 1px solid #b1597c;
  border-radius: 50px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .column_hall_list .part_hall_links li {
    width: calc(50% - 5px);
  }
}
.column_hall_list .part_hall_links li:nth-child(even) {
  border: 1px solid #6dc4bc;
}
.column_hall_list .part_hall_links li:nth-child(even) a {
  color: #6dc4bc;
}
.column_hall_list .part_hall_links li a {
  padding: 5px 0;
  display: block;
  color: #b1597c;
}
.column_hall_list .part_hall_name {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.column_hall_list .part_hall_name .color {
  color: #b1597c;
}
.column_hall_list .area_wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 820px) {
  .column_hall_list .area_wrap {
    gap: 40px;
  }
}
.column_hall_list .hall_list {
  justify-content: center;
  display: flex;
  gap: 60px 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .column_hall_list .hall_list {
    gap: 15px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .column_hall_list .hall_list {
    flex-direction: column;
  }
}
.column_hall_list .hall_list li {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  position: relative;
  width: calc(33.3333333333% - 20px);
  box-shadow: 0 0 10px #b499a5;
  transition: 0.3s all;
}
.column_hall_list .hall_list li:hover {
  box-shadow: 0 2px 8px #ccc;
}
@media screen and (max-width: 820px) {
  .column_hall_list .hall_list li {
    width: calc(50% - 8px);
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .column_hall_list .hall_list li {
    width: 100%;
    padding-bottom: 10px;
  }
}
.column_hall_list .hall_list li a {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
}
.column_hall_list .hall_list li.chuo {
  border: 1px solid #3981d9;
}
.column_hall_list .hall_list li.chiyoda {
  border: 1px solid #4370a8;
}
.column_hall_list .hall_list li.kouto {
  border: 1px solid #77abea;
}
.column_hall_list .hall_list li.minato {
  border: 1px solid #0858b9;
}
.column_hall_list .hall_list li .hall_title, .column_hall_list .hall_list li .btns {
  padding: 0 30px;
}
@media screen and (max-width: 1100px) {
  .column_hall_list .hall_list li .hall_title, .column_hall_list .hall_list li .btns {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .column_hall_list .hall_list li .hall_title, .column_hall_list .hall_list li .btns {
    padding: 0 10px;
  }
}
.column_hall_list .hall_list li .hall_title {
  flex-grow: 1;
}
.column_hall_list .hall_list li .hall_title .hall_name {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: dashed 2px #e2ded8;
  padding-bottom: 20px;
}
@media screen and (max-width: 820px) {
  .column_hall_list .hall_list li .hall_title .hall_name {
    font-size: 2.2rem;
  }
}
.column_hall_list .hall_list li .hall_title .hall_name .color {
  color: #b1597c;
}
.column_hall_list .hall_list li .hall_title .add, .column_hall_list .hall_list li .hall_title .access_detail {
  text-align: left;
  display: flex;
  align-items: baseline;
}
.column_hall_list .hall_list li .hall_title .add i, .column_hall_list .hall_list li .hall_title .access_detail i {
  color: #b1597c;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.column_hall_list .hall_list li .hall_title .add span, .column_hall_list .hall_list li .hall_title .access_detail span {
  width: calc(100% - 25px);
}
@media screen and (max-width: 767px) {
  .column_hall_list .hall_list li .btns {
    display: flex;
    gap: 7px;
  }
}
.column_hall_list .hall_list li .btn {
  width: auto;
  margin: 0 30px;
  padding: 15px 10px;
  border-bottom: solid 3px #9b2e5a;
}
@media screen and (max-width: 767px) {
  .column_hall_list .hall_list li .btn {
    width: 50%;
    border-radius: 6px;
    font-weight: 600;
    padding: 15px 5px;
    margin: 0;
  }
  .column_hall_list .hall_list li .btn::after {
    display: none;
  }
  .column_hall_list .hall_list li .btn--tel {
    background: #e5071b;
    border-color: #b62432;
    flex-direction: row;
    justify-content: center;
    gap: 3px;
  }
  .column_hall_list .hall_list li .btn--tel::after {
    display: none;
  }
  .column_hall_list .hall_list li .btn--tel .tel_anime {
    display: flex;
    align-items: center;
  }
  .column_hall_list .hall_list li .btn--tel .tel_anime svg {
    fill: #fff;
    width: 20px;
    height: 20px;
  }
}
.column_hall_list #hall_slider .splide__track {
  padding: 10px;
}
.column_hall_list .hall_slider_list li {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 5px #b499a5;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  padding-bottom: 20px;
}
.column_hall_list .hall_slider_list li .hall_title, .column_hall_list .hall_slider_list li .btns {
  padding: 0 30px;
}
@media screen and (max-width: 1100px) {
  .column_hall_list .hall_slider_list li .hall_title, .column_hall_list .hall_slider_list li .btns {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .column_hall_list .hall_slider_list li .hall_title, .column_hall_list .hall_slider_list li .btns {
    padding: 0 10px;
  }
}
.column_hall_list .hall_slider_list li .hall_title {
  flex-grow: 1;
}
.column_hall_list .hall_slider_list li .hall_title .hall_name {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: dashed 2px #e2ded8;
  padding-bottom: 20px;
}
@media screen and (max-width: 820px) {
  .column_hall_list .hall_slider_list li .hall_title .hall_name {
    font-size: 2.2rem;
  }
}
.column_hall_list .hall_slider_list li .hall_title .hall_name .color {
  color: #b1597c;
}
.column_hall_list .hall_slider_list li .hall_title .add, .column_hall_list .hall_slider_list li .hall_title .access_detail {
  text-align: left;
  display: flex;
  align-items: baseline;
}
.column_hall_list .hall_slider_list li .hall_title .add i, .column_hall_list .hall_slider_list li .hall_title .access_detail i {
  color: #b1597c;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.column_hall_list .hall_slider_list li .hall_title .add span, .column_hall_list .hall_slider_list li .hall_title .access_detail span {
  width: calc(100% - 25px);
}
@media screen and (max-width: 767px) {
  .column_hall_list .hall_slider_list li .btns {
    display: flex;
    gap: 10px;
  }
}
.column_hall_list .hall_slider_list li .btn {
  padding: 10px;
  border-bottom: solid 3px #9b2e5a;
}
@media screen and (max-width: 767px) {
  .column_hall_list .hall_slider_list li .btn {
    border-radius: 6px;
    text-align: left;
    font-weight: 600;
  }
  .column_hall_list .hall_slider_list li .btn--tel {
    background: #e5071b;
    border-color: #b62432;
    display: flex;
    flex-direction: row;
    gap: 5px;
  }
  .column_hall_list .hall_slider_list li .btn--tel::after {
    display: none;
  }
  .column_hall_list .hall_slider_list li .btn--tel .tel_anime {
    display: flex;
    align-items: center;
  }
  .column_hall_list .hall_slider_list li .btn--tel .tel_anime svg {
    fill: #fff;
    width: 20px;
    height: 20px;
  }
}
.column_hall_list .part_hall_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .column_hall_list .part_hall_wrap {
    padding-bottom: 0;
  }
}
.column_hall_list .part_hall_img {
  width: 100%;
  aspect-ratio: 190/107;
  overflow: hidden;
}
.column_hall_list .part_hall_img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.column_hall_list .area_laber {
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid;
  border-radius: 30px;
  display: inline-block;
  padding: 0 20px;
  text-align: center;
  width: 110px;
  margin: 10px auto;
}
.column_hall_list .area_laber.chuo {
  border-color: #3981d9;
  color: #3981d9;
}
.column_hall_list .area_laber.chiyoda {
  border-color: #4370a8;
  color: #4370a8;
}
.column_hall_list .area_laber.kouto {
  border-color: #77abea;
  color: #77abea;
}
.column_hall_list .area_laber.minato {
  border-color: #0858b9;
  color: #0858b9;
}
.column_hall_list .readmore {
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: right;
  font-weight: 600;
  padding: 0 5px 5px;
  margin-top: auto;
}
.column_hall_list .readmore::after {
  content: "\f105";
  font-family: "Font Awesome 6 free";
  padding-left: 10px;
}
.column_hall_list .tab_btn {
  background: #c4c4c4;
  border-bottom: none;
  font-weight: 600;
  color: #fff;
  width: auto;
  position: relative;
  padding: 20px 50px;
  line-height: 1.2;
}
@media screen and (max-width: 820px) {
  .column_hall_list .tab_btn {
    padding: 15px 5px;
    width: calc(50% - 5px);
  }
}
.column_hall_list .tab_btn .haii_name {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .column_hall_list .tab_btn .haii_name {
    font-size: 1.6rem;
  }
}
.column_hall_list .tab_btn.show {
  background: #fff;
  color: #4c4e4e;
}
.column_hall_list .tab_btn.show .haii_name {
  font-size: 2.7rem;
}
@media screen and (max-width: 767px) {
  .column_hall_list .tab_btn.show .haii_name {
    font-size: 1.7rem;
    line-height: 1.3;
  }
}
.column_hall_list .tab_btn.show .color {
  color: #b1597c;
}
@media screen and (max-width: 820px) {
  .column_hall_list .tab_btn.show {
    padding: 15px 5px;
    width: calc(50% - 5px);
  }
}
.column_hall_list .tab_btn.show::after {
  content: "";
  background: url(../img/common/title_deco.png);
  position: absolute;
  width: 48px;
  height: 8px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.column_hall_list .panel_area {
  padding: 60px;
  background: #fff;
  border-radius: 6px;
}
@media screen and (max-width: 1100px) {
  .column_hall_list .panel_area {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .column_hall_list .panel_area {
    padding: 15px;
    border-radius: 0 0 6px 6px;
  }
}

/*----------------------------------------------------
	お問い合わせコーナー
----------------------------------------------------*/
.column_contact .contact_wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: -70px;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .column_contact .contact_wrap {
    gap: 5px;
  }
}
@media screen and (max-width: 767px) {
  .column_contact .contact_wrap {
    margin-bottom: 0;
  }
}
.column_contact .text_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.column_contact .fukidashi_mizutama {
  font-weight: 600;
  position: relative;
  padding: 0 50px;
}
@media screen and (max-width: 820px) {
  .column_contact .fukidashi_mizutama {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .column_contact .fukidashi_mizutama {
    padding: 0 20px;
  }
}
.column_contact .fukidashi_mizutama::before, .column_contact .fukidashi_mizutama::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/common/fukidashi_mizutama.svg) no-repeat;
  background-size: contain;
  width: 34px;
  height: 88px;
}
@media screen and (max-width: 820px) {
  .column_contact .fukidashi_mizutama::before, .column_contact .fukidashi_mizutama::after {
    width: 23px;
    height: 60px;
  }
}
.column_contact .fukidashi_mizutama::before {
  transform: translateY(-50%) scale(-1, 1);
  left: 0;
}
.column_contact .fukidashi_mizutama::after {
  right: 0;
}
.column_contact .fukidashi_mizutama .text {
  text-align: center;
  font-size: 2.7rem;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  .column_contact .fukidashi_mizutama .text {
    font-size: 2.2rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .column_contact .fukidashi_mizutama .text {
    font-size: 1.9rem;
  }
}
.column_contact .contact_tel {
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 820px) {
  .column_contact .contact_tel {
    flex-direction: column;
  }
}
.column_contact .tel_wrap {
  align-items: end;
}
@media screen and (max-width: 767px) {
  .column_contact .tel_wrap {
    gap: 10px;
  }
}
.column_contact .tel_wrap .tel_anime svg {
  width: 60px;
  height: 60px;
  fill: #b1597c;
}
@media screen and (max-width: 1100px) {
  .column_contact .tel_wrap .tel_anime svg {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .column_contact .tel_wrap .tel_anime svg {
    width: 40px;
    height: 40px;
  }
}
.column_contact .tel_wrap .tel_num {
  font-family: "Oswald", sans-serif;
  font-size: 8.4rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1100px) {
  .column_contact .tel_wrap .tel_num {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .column_contact .tel_wrap .tel_num {
    font-size: 4.8rem;
  }
}
.column_contact .tel_note {
  padding-top: 10px;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .column_contact .tel_note {
    padding-top: 0;
  }
  .column_contact .tel_note br {
    display: none;
  }
}
.column_contact .tel_note li {
  font-weight: 600;
  color: #af5277;
  padding: 10px;
  border-radius: 6px;
  line-height: 1.2;
  border: solid 1px #af5277;
  text-align: left;
}
.column_contact .contact_btn {
  box-shadow: 0 2px 5px #800080;
  background: #fff;
  border: solid 3px #b1597c;
  border-radius: 12px;
  position: relative;
  padding: 10px 70px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .column_contact .contact_btn {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .column_contact .contact_btn {
    padding: 5px 10px;
    border-radius: 4px;
    border: solid 2px #b1597c;
    border-bottom: solid 5px #b1597c;
    font-size: 2.4rem;
    width: 100%;
    margin-bottom: 10px;
    box-shadow: none;
    color: #b1597c;
  }
  .column_contact .contact_btn .text_color {
    font-size: 1.6rem;
    color: #4c4e4e;
    font-weight: normal;
  }
  .column_contact .contact_btn .text_color strong {
    font-size: 2rem;
    font-weight: normal;
  }
}
.column_contact .contact_btn::after {
  content: "\f138";
  font-family: "Font Awesome 6 free";
  font-weight: 700;
  color: #b1597c;
  font-size: 2.4rem;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .column_contact .contact_btn::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    font-size: 2rem;
  }
}
.column_contact .contact_btn strong {
  font-size: 2.4rem;
}
.column_contact .contact_btns {
  background: url(../img/common/contact_bg.png);
  padding: 60px 30px;
  border-radius: 20px;
}
@media screen and (max-width: 820px) {
  .column_contact .contact_btns {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 767px) {
  .column_contact .contact_btns {
    padding: 0;
    background: none;
  }
}
.column_contact .contact_btns .flex {
  max-width: 1060px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .column_contact .contact_btns .flex {
    flex-direction: column;
    gap: 10px;
  }
}
.column_contact .contact_btns .flex a {
  box-shadow: 0 0 4px #4c4e4e;
  border-radius: 10px;
}
.column_contact--hurry {
  background: url(../img/common/contact_bg.png);
  padding-top: 30px;
}
.column_contact--hurry .contact_wrap {
  margin-bottom: 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .column_contact--hurry .contact_wrap {
    flex-direction: column;
  }
}
.column_contact--hurry .fukidashi_mizutama, .column_contact--hurry .fukidashi_mizutama .text_color {
  color: #fff;
}
.column_contact--hurry .fukidashi_mizutama::before, .column_contact--hurry .fukidashi_mizutama::after {
  background: url(../img/common/fukidashi_mizutama_wh.svg) no-repeat;
}
.column_contact--hurry .tel_wrap .tel_anime svg {
  fill: #fff;
}
.column_contact--hurry .tel_wrap .tel_num {
  color: #fff;
}
.column_contact--hurry .tel_note li {
  color: #4c4e4e;
  border-color: #4c4e4e;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .column_contact--hurry .contact_btn {
    margin-bottom: 30px;
  }
}

/*----------------------------------------------------
	FOOTER
----------------------------------------------------*/
#footer {
  background: #f9f8f1;
  color: #fff;
  font-size: 1.5rem;
  padding: 80px 0 93px;
}
@media screen and (max-width: 1100px) {
  #footer {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 30px 0 87px;
  }
}
#footer .footer_wrap {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1100px) {
  #footer .footer_wrap {
    padding: 0 15px;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  #footer .footer_wrap {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
#footer .footer_wrap .company_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 820px) {
  #footer .footer_wrap .company_info {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #footer .footer_wrap .company_info {
    margin-bottom: 0;
  }
}
#footer .footer_wrap .company_info_logo {
  display: block;
  max-width: 185px;
  width: 100%;
}
#footer .footer_wrap .company_info_add {
  color: #4c4e4e;
  font-size: 1.6rem;
}
#footer .footer_wrap .footer_btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  #footer .footer_wrap .footer_btns {
    width: 80%;
  }
}
#footer .footer_wrap .footer_menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-left: 200px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1100px) {
  #footer .footer_wrap .footer_menu {
    margin-left: 5%;
  }
}
@media screen and (max-width: 820px) {
  #footer .footer_wrap .footer_menu {
    width: 100%;
    flex-wrap: wrap;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  #footer .footer_wrap .footer_menu {
    justify-content: flex-start;
  }
}
#footer .footer_wrap .footer_menu .menu_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#footer .footer_wrap .footer_menu .menu_item, #footer .footer_wrap .footer_menu .point_icon {
  position: relative;
  padding-left: 1.2rem;
}
@media screen and (max-width: 767px) {
  #footer .footer_wrap .footer_menu .menu_item, #footer .footer_wrap .footer_menu .point_icon {
    padding-left: 1.3rem;
  }
}
#footer .footer_wrap .footer_menu .menu_item::before, #footer .footer_wrap .footer_menu .point_icon::before {
  content: "●";
  color: #b1597c;
  font-size: 0.8rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#footer .footer_wrap .footer_menu .menu_item--none, #footer .footer_wrap .footer_menu .point_icon--none {
  padding-left: 0;
}
#footer .footer_wrap .footer_menu .menu_item--none::before, #footer .footer_wrap .footer_menu .point_icon--none::before {
  display: none;
}
#footer .footer_wrap .footer_menu .child_link_plan {
  margin-left: 25px;
}
#footer .footer_wrap .footer_menu .grand_child_list {
  margin-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#footer .footer_outside {
  background: #fff;
  padding: 15px;
}
#footer .footer_outside .outside_list {
  display: flex;
  gap: 30px;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  #footer .footer_outside .outside_list {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    justify-content: flex-start;
  }
}
#footer .footer_outside .outside_link {
  display: flex;
  align-items: center;
  line-height: 1;
}
#footer .footer_outside .outside_link::after {
  content: url(../img/common/outside.svg);
  margin-left: 5px;
}
#footer .copy {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  background: #4c4e4e;
  padding: 10px 0;
  color: #fff;
}

/*----------------------------------------------------
	よくある質問
----------------------------------------------------*/
.column_faq {
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .column_faq {
    padding-top: 20px;
  }
}
.column_faq .sec_title--icon::after {
  top: -70px;
}
@media screen and (max-width: 767px) {
  .column_faq .sec_title--icon::after {
    width: 430px;
    height: 100px;
    top: -20px;
  }
}
.column_faq .faq_wrap {
  border: solid 1px #7e8080;
  overflow: hidden;
  max-width: 1020px;
  margin: 0 auto 20px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .column_faq .faq_wrap {
    border: solid 1px #dbdbdb;
  }
}
.column_faq .faq_wrap .question, .column_faq .faq_wrap .answer {
  padding: 20px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .column_faq .faq_wrap .question, .column_faq .faq_wrap .answer {
    border-radius: 7px;
    padding: 15px;
  }
}
.column_faq .faq_wrap .question {
  position: relative;
  background: #f7eef2;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .column_faq .faq_wrap .question {
    border-radius: 7px 7px 0 0;
  }
}
.column_faq .faq_wrap .answer {
  background: #fff;
  position: relative;
}
.column_faq .faq_wrap .question_mark, .column_faq .faq_wrap .answer_mark {
  font-family: "Poppins", sans-serif;
  color: #b1597c;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: normal;
  white-space: nowrap;
}
.column_faq .faq_wrap .title {
  margin-bottom: 20px;
}
.column_faq .faq_wrap a {
  display: inline-block;
  color: #e5071b;
  text-decoration: underline;
}
.column_faq .faq_wrap a[href^="tel:"]:before {
  content: "\f095";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  margin-right: 3px;
}
.column_faq .faq_wrap:last-child {
  margin-bottom: 0;
}

.accordion .open_btn {
  position: relative;
  cursor: pointer;
  border: unset;
  width: 100%;
  padding: 20px 40px 20px 20px;
  text-align: left;
  background: unset;
  color: #4c4e4e;
}
@media screen and (max-width: 767px) {
  .accordion .open_btn {
    padding: 10px 40px 10px 10px;
  }
}
.accordion .open_btn:before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  width: 24px;
  height: 2px;
  background: #b1597c;
  z-index: 2;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .accordion .open_btn:before {
    width: 20px;
  }
}
.accordion .open_btn:after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 31px;
  transition: all 0.3s;
  width: 2px;
  height: 24px;
  background: #b1597c;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .accordion .open_btn:after {
    height: 20px;
    right: 29px;
  }
}
.accordion .open_btn.open::after {
  transform: rotate(270deg);
  opacity: 0;
}

.fukidashi, .fukidashi_bnr {
  text-align: center;
}
.fukidashi .text, .fukidashi_bnr .text {
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  padding: 0 45px;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .fukidashi .text, .fukidashi_bnr .text {
    padding: 0 20px;
  }
}
.fukidashi .text::before, .fukidashi .text::after, .fukidashi_bnr .text::before, .fukidashi_bnr .text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/common/fukidashi_mizutama.svg) no-repeat;
  background-size: contain;
  width: 23px;
  height: 60px;
}
.fukidashi .text::before, .fukidashi_bnr .text::before {
  transform: translateY(-50%) scale(-1, 1);
  left: 0;
}
@media screen and (max-width: 767px) {
  .fukidashi .text::before, .fukidashi_bnr .text::before {
    left: -10px;
  }
}
.fukidashi .text::after, .fukidashi_bnr .text::after {
  right: 0;
}
@media screen and (max-width: 767px) {
  .fukidashi .text::after, .fukidashi_bnr .text::after {
    right: -10px;
  }
}
.fukidashi--mgb10, .fukidashi_bnr--mgb10 {
  margin-bottom: 10px;
}

/*----------------------------------------------------
	#pageTop
----------------------------------------------------*/
#pagetop {
  position: fixed;
  z-index: 100;
  bottom: 120px;
  right: 30px;
}
@media screen and (max-width: 1100px) {
  #pagetop {
    bottom: 100px;
  }
}
#pagetop a {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  display: block;
  width: 50px;
  height: 50px;
  background: #b1597c;
  border-radius: 50%;
}
#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 {
    right: 10px;
    bottom: 90px;
  }
  #pagetop a {
    width: 48px;
    height: 48px;
  }
  #pagetop a:after {
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -5px;
  }
}
/*----------------------------------------------------
	改行
----------------------------------------------------*/
@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) {
  .smart_hide,
  .sp_hide {
    display: none !important;
  }
}
/*----------------------------------------------------
	電話アニメーション
----------------------------------------------------*/
.tel_anime svg {
  width: 40px;
  height: 40px;
  fill: #e5071b;
}
.tel_anime svg .line1 {
  animation: fillAnimation1 infinite ease 1.5s;
}
.tel_anime svg .line2 {
  animation: fillAnimation2 infinite ease 1.5s;
}
.tel_anime svg .line3 {
  animation: fillAnimation3 infinite ease 1.5s;
}
@keyframes fillAnimation1 {
  30%, 60% {
    fill-opacity: 0;
  }
  80% {
    fill-opacity: 1;
  }
}
@keyframes fillAnimation2 {
  40%, 70% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
@keyframes fillAnimation3 {
  50%, 80% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}

/*----------------------------------------------------
	360°バーチャルツアー
----------------------------------------------------*/
.column_virtual {
  background: url(../img/common/virtual_left.png) no-repeat left 10% center, url(../img/common/virtual_right.png) no-repeat right 10% center;
  background-size: contain;
  text-align: center;
}
@media (max-width: 1400px) {
  .column_virtual {
    background-size: 25%;
    background-position: left 0 center, right 0 center;
  }
}
@media screen and (max-width: 1100px) {
  .column_virtual {
    background: none;
  }
}
.column_virtual .inner {
  padding: 40px 0;
}
@media screen and (max-width: 1100px) {
  .column_virtual .inner {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 767px) {
  .column_virtual .inner {
    padding: 0 15px;
  }
}
.column_virtual .label {
  background: #fff;
  border: dashed 2px #b1597c;
  padding: 10px;
  font-size: 2rem;
  color: #b1597c;
  display: inline-block;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .column_virtual .label {
    font-size: 1.6rem;
    padding: 5px 10px;
    margin-bottom: 20px;
  }
}
.column_virtual .label i {
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  .column_virtual .catch {
    background: rgba(255, 255, 255, 0.9019607843);
    border-radius: 10px;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .column_virtual .catch {
    padding: 0;
    background: none;
  }
}
@media screen and (max-width: 820px) {
  .column_virtual .sec_title {
    -webkit-text-stroke: 5px #fff;
    text-stroke: 5px #fff;
    paint-order: stroke;
  }
}

.virtual_area {
  text-align: center;
}
.virtual_area .label {
  background: #fff;
  border: dashed 2px #b1597c;
  padding: 10px;
  font-size: 2rem;
  color: #b1597c;
  display: inline-block;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .virtual_area .label {
    font-size: 1.6rem;
    padding: 5px 10px;
    margin-bottom: 20px;
  }
}
.virtual_area .label i {
  margin-right: 10px;
}

.hall_matterport_title {
  font-size: clamp(2rem, 4vw, 2.4rem);
  margin-bottom: 10px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .hall_matterport_list {
    flex-direction: column;
    gap: 30px;
  }
}

.hall_matterport_item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .hall_matterport_item {
    width: 100%;
  }
}
.hall_matterport_item .matterport_vr {
  max-width: 1000px;
  margin: 0 auto 30px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hall_matterport_item .matterport_vr {
    margin-bottom: 20px;
  }
}
.hall_matterport_item .hall_matterport_vr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------
	top個別
----------------------------------------------------*/
body.home .column_hall_list {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  body.home .column_hall_list {
    margin-bottom: 30px;
  }
}

/*----------------------------------------------------
	ブランド名とは
----------------------------------------------------*/
.column_brand {
  text-align: center;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .column_brand {
    padding-top: 20px;
  }
}
.column_brand .sec_title {
  font-size: 4.2rem;
  font-weight: 600;
}
.column_brand .sec_title .title {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_brand .sec_title .title {
    font-size: 3rem;
  }
}
.column_brand .sec_title small {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .column_brand .sec_title small {
    font-size: 2.1rem;
  }
}
.column_brand .sec_title small.sub {
  font-size: 2.7rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_brand .sec_title small.sub {
    font-size: 1.9rem;
  }
}
.column_brand .sec_title--icon::after {
  width: 1056px;
  height: 256px;
}
@media screen and (max-width: 767px) {
  .column_brand .sec_title--icon::after {
    width: 430px;
    height: 100px;
    top: -20px;
  }
}
.column_brand .read_title {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .column_brand .read_title {
    margin-bottom: 20px;
  }
}
.column_brand .sec_label {
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .column_brand .sec_label {
    margin-bottom: 0;
  }
}
.column_brand .sec_label .text {
  font-size: 2.4rem;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #b1597c;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_brand .sec_label .text {
    font-size: 1.6rem;
  }
}
.column_brand .brand_splide {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .column_brand .brand_splide {
    margin-bottom: 30px;
  }
}
.column_brand .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .column_brand .splide__slide {
    width: 50%;
  }
}
.column_brand .splide__slide img {
  width: auto;
  height: auto;
  border-radius: 20px;
}
.column_brand .brand_wrap {
  background: url(../img/common/deco_l.png) no-repeat left top, url(../img/common/deco_r.png) no-repeat right top;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .column_brand .brand_wrap {
    background: none;
  }
}
.column_brand .brand_wrap .read_title {
  letter-spacing: 0.5rem;
}
.column_brand .brand_wrap .catch .text_color {
  font-weight: 600;
}
.column_brand .brand_wrap .catch {
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .column_brand .brand_wrap .catch {
    text-align: center;
  }
}
.column_brand .read_title {
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .column_brand .read_title {
    font-size: 2.2rem;
  }
}
.column_brand--first {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 110px;
  background: url(../img/common/first_deco_l.png) no-repeat left top, url(../img/common/first_deco_r.png) no-repeat right top;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .column_brand--first {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .column_brand--first {
    padding: 0 0 10px;
    background: none;
  }
}
.column_brand--first .read_title {
  padding-bottom: 30px;
  font-size: 2.7rem;
  line-height: 1.7;
  margin-bottom: 40px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .column_brand--first .read_title {
    margin-bottom: 20px;
    font-size: 1.9rem;
    letter-spacing: 0.1rem;
  }
}
.column_brand--first .catch {
  font-weight: 600;
  line-height: 1.8;
}

/*----------------------------------------------------
	こんな方におすすめ
----------------------------------------------------*/
.column_suggest {
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .column_suggest .suggest_list br {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .column_suggest .suggest_list {
    flex-wrap: wrap;
  }
  .column_suggest .suggest_list br {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .column_suggest .suggest_list {
    gap: 10px;
    flex-direction: column;
  }
}
.column_suggest .ribbon {
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  height: 44px;
  line-height: 44px;
  text-align: center;
  padding: 0 60px;
  font-size: 2.6rem;
  background: #529895;
  color: #FFF;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .column_suggest .ribbon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.column_suggest .ribbon::before, .column_suggest .ribbon::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}
.column_suggest .ribbon::before {
  top: 0;
  left: 0;
  border-width: 22px 0px 22px 7px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.column_suggest .ribbon::after {
  top: 0;
  right: 0;
  border-width: 22px 7px 22px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.column_suggest .suggest_item {
  width: calc(25% - 15px);
  border: solid 1px #7e8080;
  border-radius: 20px;
  padding: 20px;
}
@media screen and (max-width: 820px) {
  .column_suggest .suggest_item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .column_suggest .suggest_item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: solid 1px #eaeaea;
    border-radius: 7px;
    background: #f9f9f9;
  }
}
.column_suggest .suggest_item img {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .column_suggest .suggest_item img {
    width: 30%;
    margin-bottom: 0;
  }
}
.column_suggest .suggest_item .text {
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .column_suggest .suggest_item .text {
    width: 70%;
    font-size: 1.4rem;
  }
}

/*----------------------------------------------------
	事前相談
----------------------------------------------------*/
.column_consultation {
  background: #f9f8f1;
  padding: 100px 0;
}
@media screen and (max-width: 1100px) {
  .column_consultation {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .column_consultation {
    padding: 30px 0;
  }
}
.column_consultation .consultation_wrap {
  align-items: center;
  margin-bottom: 50px;
  padding-top: 25px;
}
@media screen and (max-width: 820px) {
  .column_consultation .consultation_wrap {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.column_consultation .consultation_wrap img, .column_consultation .consultation_wrap .text_wrap {
  width: calc(50% - 15px);
}
@media screen and (max-width: 820px) {
  .column_consultation .consultation_wrap img, .column_consultation .consultation_wrap .text_wrap {
    width: 100%;
  }
}
.column_consultation .consultation_wrap img {
  border-radius: 20px;
}
.column_consultation .consultation_wrap .text_wrap .title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.7;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_consultation .consultation_wrap .text_wrap .title {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
.column_consultation .worries {
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  .column_consultation .worries {
    margin-bottom: 15px;
  }
}
.column_consultation .worries .title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .column_consultation .worries .title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
.column_consultation .worries .worries_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .column_consultation .worries .worries_list {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .column_consultation .worries .worries_list {
    flex-direction: column;
    gap: 10px;
  }
}
.column_consultation .worries .worries_text {
  width: calc(50% - 15px);
  border-radius: 10px;
  background: #fff;
  padding: 15px;
  position: relative;
  border: solid 2px #b1597c;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_consultation .worries .worries_text {
    width: 100%;
    border-radius: 5px;
    border: solid 1px #b1597c;
  }
}
.column_consultation .worries .worries_text::before {
  content: url(../img/common/icon_check.svg);
  width: 22px;
  height: 22px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .column_consultation .worries .worries_text::before {
    width: 18px;
    height: 18px;
  }
}
.column_consultation .worries .worries_text span {
  line-height: 1.2;
  width: calc(100% - 22px);
}
@media screen and (max-width: 767px) {
  .column_consultation .worries .worries_text span {
    width: calc(100% - 18px);
  }
}
.column_consultation .fukidasi_btn {
  text-align: center;
}
.column_consultation .fukidasi_btn .fukidasi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_consultation .fukidasi_btn .fukidasi {
    padding: 12px 16px 3px 12px;
  }
}
.column_consultation .fukidasi_btn .fukidasi::before {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(60deg);
  box-sizing: border-box;
  background-color: #4c4e4e;
}
.column_consultation .fukidasi_btn .fukidasi::after {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(-60deg);
  box-sizing: border-box;
  background-color: #4c4e4e;
}

/*----------------------------------------------------
	安心サポート体制
----------------------------------------------------*/
.support_list {
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 15px 10px;
}
@media screen and (max-width: 767px) {
  .support_list {
    gap: 10px;
  }
}

.support_item {
  width: calc(33.3333333333% - 15px);
  border-radius: 16px;
  padding: 15px 15px 30px;
  border: solid 1px #7e8080;
  text-align: center;
  line-height: 1.2;
  font-weight: 600;
  font-size: 2.2rem;
}
@media screen and (max-width: 820px) {
  .support_item {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .support_item {
    width: calc(50% - 5px);
    padding: 10px;
    font-size: 1.5rem;
    border-radius: 7px;
  }
}
.support_item img {
  border-radius: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .support_item img {
    border-radius: 5px;
    margin-bottom: 10px;
  }
}

/*----------------------------------------------------
	会員制度
----------------------------------------------------*/
.column_member {
  padding: 80px 0 120px;
  background: url(../img/common/member_code_t.png) no-repeat top left, url(../img/common/member_code_b.png) no-repeat bottom right, #f7eef2;
}
@media screen and (max-width: 1100px) {
  .column_member {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .column_member {
    padding: 30px 0;
    background-size: 50%;
  }
}
.column_member .sec_title .sub_title {
  position: relative;
}
.column_member .sec_title .sub_title::before, .column_member .sec_title .sub_title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 1px;
  background: #4c4e4e;
}
.column_member .sec_title .sub_title::before {
  left: -115px;
}
.column_member .sec_title .sub_title::after {
  right: -115px;
}
.column_member .sec_title--icon-only {
  padding-top: 85px;
}
@media screen and (max-width: 767px) {
  .column_member .sec_title--icon-only {
    padding-top: 40px;
  }
}
.column_member .member_wrap {
  margin-bottom: 50px;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .column_member .member_wrap {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.column_member .member_wrap img, .column_member .member_wrap .privilege_list {
  width: calc(50% - 15px);
}
@media screen and (max-width: 820px) {
  .column_member .member_wrap img, .column_member .member_wrap .privilege_list {
    width: 100%;
  }
}
.column_member .member_wrap .privilege_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.column_member .member_wrap .privilege_item {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 0px 20px 6px 0px;
  padding: 10px 20px 10px 40px;
  border-left: 6px solid #b1597c;
  box-shadow: 0 2px 5px #b499a5;
}
@media screen and (max-width: 767px) {
  .column_member .member_wrap .privilege_item {
    padding: 10px;
  }
}
.column_member .member_wrap .privilege_item .icon {
  background: #f7eef2;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 33px;
}
.column_member .member_wrap .privilege_item .icon img {
  width: 46px;
  height: auto;
}
.column_member .member_wrap .privilege_item .text {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column_member .member_wrap .privilege_item .text {
    font-size: 1.6rem;
  }
}
.column_member .member_wrap .privilege_item .text .num {
  font-size: 2.8rem;
  margin-left: 10px;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
.column_member .member_wrap .member_photo {
  border-radius: 20px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .column_member .member_wrap .member_photo {
    aspect-ratio: 3/1;
    border-radius: 6px;
  }
}
.column_member .btn {
  background: #3b3b3b;
  border-color: #070707;
}

.flow_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.flow_item {
  gap: 0;
  border: solid 1px #b1597c;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow_item {
    flex-direction: column;
  }
}
.flow_item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50px 0 50px;
  border-color: #b1597c transparent transparent transparent;
}
.flow_item:last-child::after {
  display: none;
}

.flow_wrap {
  background: #fff;
  border-radius: 9px;
  width: 100%;
}
.flow_wrap .title {
  position: relative;
  color: #b1597c;
  border-radius: 9px 9px 0 0;
  font-size: 2.4rem;
  padding: 20px 40px 20px 45px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .flow_wrap .title {
    font-size: 2rem;
  }
}
.flow_wrap .title .num {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 60px;
  display: flex;
  padding-left: 5px;
  align-items: center;
  background: #b1597c;
  border-radius: 0 30px 30px 0;
  color: #fff;
}
.flow_wrap .flow_data {
  padding: 10px 30px 30px;
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .flow_wrap .flow_data {
    padding: 20px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flow_wrap .flow_data {
    padding: 15px;
    gap: 15px;
    flex-direction: column;
  }
}
.flow_wrap .flow_data .photo {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .flow_wrap .flow_data .photo {
    width: 100%;
  }
}
.flow_wrap .flow_data .photo img {
  border-radius: 9px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flow_wrap .flow_data .text {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .flow_wrap .flow_data .text {
    width: 100%;
  }
}

.yui_point {
  margin-bottom: 45px;
}
@media screen and (max-width: 820px) {
  .yui_point {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .yui_point small {
    text-align: left;
    display: inline-block;
  }
}
.yui_point .yui_point_list {
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .yui_point .yui_point_list {
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .yui_point .yui_point_list .yui_point_item {
    width: calc(50% - 8px);
  }
  .yui_point .yui_point_list .yui_point_item img {
    aspect-ratio: 217/110;
    object-fit: contain;
  }
}