@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
  overflow-x: hidden;
  touch-action: pan-x pan-y;
}

html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  color: #333;
  background: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}
body.modal-open {
  overflow: hidden;
}
body .b-fixed {
  position: fixed;
  width: 100%;
}

/* 通常コンテンツ */
header {
  order: 1;
}

main {
  order: 2;
}

/* h1を footer 直前に */
body > h1 {
  order: 3;
}

/* footer を必ず一番下に */
footer {
  order: 4;
}

h1 {
  font-size: 1.2rem;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  text-align: left;
  margin-bottom: 8px;
  font-weight: 200;
  color: #555;
}
@media (max-width: 699px) {
  h1 {
    padding: 0 15px;
  }
}
ol,
li {
  list-style: none;
}

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

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (min-width: 1024px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/*----------------------------------------------------
	LAYOUT
----------------------------------------------------*/
.column {
  padding: 0 0 100px 0;
  margin: 0;
  position: relative;
}
@media (max-width: 1100px) {
  .column {
    padding: 0 0 40px 0;
  }
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1230px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
  .inner.column {
    padding-bottom: 40px;
  }
}

.sec_title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
  position: relative;
}
.sec_title .city_mini {
  font-size: 0.8em;
}
.sec_title .wrap {
  background: #fff;
  padding: 0 0.5em;
  z-index: 2;
  position: relative;
  display: inline-block;
}
.sec_title:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #888;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media (max-width: 1100px) {
  .sec_title {
    margin-bottom: 20px;
  }
}
@media (max-width: 699px) {
  .sec_title {
    margin-bottom: 14px;
  }
}
.sec_title .color {
  color: #7a3796;
  font-size: 1.2em;
}
@media (max-width: 699px) {
  .sec_title .color {
    font-size: 1.1em;
  }
}
.sec_title .medi {
  font-size: 0.8em;
}
.sec_title .mini {
  font-size: 2rem;
  font-weight: normal;
}
.sec_title .fuki {
  position: relative;
  display: inline-block;
}
.sec_title .fuki:before,
.sec_title .fuki:after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 2px;
  border-radius: 5px;
  height: 40px;
  background: #333;
}
@media (max-width: 699px) {
  .sec_title .fuki:before,
  .sec_title .fuki:after {
    bottom: 0;
  }
}
.sec_title .fuki:before {
  transform: rotate(-30deg);
  left: -30px;
}
.sec_title .fuki:after {
  transform: rotate(30deg);
  right: -30px;
}

.sec_catch {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
}
@media (max-width: 820px) {
  .sec_catch {
    font-size: 1.8rem;
  }
}
@media (max-width: 699px) {
  .sec_catch {
    text-align: left;
    margin-bottom: 10px;
  }
}
.sec_catch .red {
  color: #ed0000;
}
.sec_catch .color {
  color: #7a3796;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.mt60 {
  margin-top: 60px;
}
@media (max-width: 820px) {
  .mt60 {
    margin-top: 30px;
  }
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}
@media (max-width: 820px) {
  .mb20 {
    margin-bottom: 10px;
  }
}

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

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

.mb80 {
  margin-bottom: 80px;
}
@media (max-width: 820px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.mb100 {
  margin-bottom: 100px;
}
@media (max-width: 820px) {
  .mb100 {
    margin-bottom: 50px;
  }
}

.mb120 {
  margin-bottom: 120px;
}
@media (max-width: 820px) {
  .mb120 {
    margin-bottom: 50px;
  }
}

.pt80 {
  padding-top: 80px;
}
@media (max-width: 820px) {
  .pt80 {
    padding-top: 40px;
  }
}

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

.pt40 {
  padding-top: 40px;
}
@media (max-width: 820px) {
  .pt40 {
    padding-top: 20px;
  }
}

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

.pb0 {
  padding-bottom: 0px !important;
}

.pb20 {
  padding-bottom: 20px;
}
@media (max-width: 820px) {
  .pb20 {
    padding-bottom: 10px !important;
  }
}

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

.pb60 {
  padding-bottom: 60px;
}
@media (max-width: 820px) {
  .pb60 {
    padding-bottom: 30px;
  }
}

.pb100 {
  padding-bottom: 100px;
}
@media (max-width: 820px) {
  .pb100 {
    padding-bottom: 50px;
  }
}

.pb120 {
  padding-bottom: 120px;
}
@media (max-width: 820px) {
  .pb120 {
    padding-bottom: 60px;
  }
}

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

/*----------------------------------------------------
	タブ機能
----------------------------------------------------*/
.tab_nav {
  margin-bottom: 30px;
}

.tab_list {
  display: flex;
  list-style: none;
  padding: 0 50px;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto;
  border-bottom: 6px solid #7a3796;
}
@media (max-width: 1100px) {
  .tab_list {
    gap: 10px;
  }
}
@media (max-width: 699px) {
  .tab_list {
    gap: 0;
    padding: 0;
    justify-content: flex-start;
  }
}

.tab_item {
  flex: 1;
  position: relative;
}
.tab_item a {
  text-align: center;
}
.tab_btn {
  width: 100%;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #7a3796;
  border-bottom: 0;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.065em;
  padding: 12px 4px;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 4px 4px 0 0;
  line-height: 1.1;
}
@media (max-width: 820px) {
  .tab_btn {
    font-size: 2.4rem;
  }
}
@media (max-width: 699px) {
  .tab_btn {
    font-size: 2rem;
    padding: 8px 2px;
  }
}
.tab_btn:hover {
  opacity: 0.8;
}

.tab_item.active .tab_btn {
  background: #7a3796;
  font-weight: 600;
  color: #fff;
}

.tab_content {
  position: relative;
  min-height: 400px;
}

.tab_panel {
  display: none;
  opacity: 0;
}

.tab_panel.active {
  display: block;
  opacity: 1;
}

.plan_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.plan_list .item {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

/*----------------------------------------------------
	CTA / モーダルウィンドウ
----------------------------------------------------*/
.cta {
  position: relative;
}
.cta .label {
  color: #fff;
  text-shadow: 0 2px 2px #320042;
  font-weight: bold;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 auto 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: relative;
  line-height: 1.2;
  letter-spacing: 0;
  padding: 10px 50px;
  color: #bc0d00;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 699px) {
  .cta .label {
    padding: 10px;
  }
}
.cta .label .color {
  color: #fffb88;
}
.cta .inner {
  max-width: 1000px;
  border-radius: 10px;
}
@media (max-width: 1100px) {
  .cta .inner {
    max-width: 900px;
  }
}
@media (max-width: 699px) {
  .cta .inner {
    background: unset;
    box-shadow: unset;
    border: unset;
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }
}
.cta .inner .cta_lady {
  position: absolute;
  width: 150px;
  right: 3%;
  bottom: 0;
}
@media (max-width: 1100px) {
  .cta .inner .cta_lady {
    width: 120px;
  }
}
@media (max-width: 820px) {
  .cta .inner .cta_lady {
    bottom: 0;
    height: 130px;
    width: auto;
  }
}
@media (max-width: 699px) {
  .cta .inner .cta_lady {
    display: none;
  }
}
.cta .inner .tel_box {
  text-align: left;
}
@media (max-width: 699px) {
  .cta .inner .tel_box {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .cta .inner .tel_box .cta_title .day {
    display: none;
  }
}
.cta .inner .tel_box .cta_title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-align: center;
  margin: 0 auto 20px;
  line-height: 1.2;
}
@media (max-width: 820px) {
  .cta .inner .tel_box .cta_title {
    margin-bottom: 30px;
  }
}
@media (max-width: 699px) {
  .cta .inner .tel_box .cta_title {
    margin-bottom: 10px;
  }
}
.cta .inner .tel_box .cta_title .color {
  color: #e32020;
  padding-right: 8px;
}
@media (max-width: 699px) {
  .cta .inner .tel_box .cta_title .color {
    font-size: 2rem;
    padding-right: 8px;
  }
}
.cta .inner .tel_box .cta_title .color .day {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
.cta .inner .tel_box .cta_title .color .day span {
  font-size: clamp(3rem, 4vw, 4rem);
}
.cta .inner .tel_box .cta_title .color .time {
  font-size: clamp(3.2rem, 4vw, 5rem);
  letter-spacing: -0.08rem;
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
.cta .inner .tel_box .cta_title .color .time span {
  font-size: 0.8em;
}
.cta .inner .tel_box .cta_title .mark {
  background: linear-gradient(0deg, #ffec50 0%, #ffec50 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
  letter-spacing: -0.08rem;
}
.cta .inner .tel_box .time_label {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.1;
  display: flex;
  align-items: center;
  color: #fff;
  background: #ec2e21;
  border-radius: 4px 0 0 4px;
  text-align: center;
  padding: 30px;
  position: relative;
  margin-right: 30px;
}
@media (max-width: 1100px) {
  .cta .inner .tel_box .time_label {
    font-size: 2.6rem;
    padding: 20px 30px;
  }
}
@media (max-width: 820px) {
  .cta .inner .tel_box .time_label {
    padding: 20px;
  }
  .cta .inner .tel_box .cta_title .color .time span {
    font-size: 0.6em;
  }
}
.cta .inner .tel_box .time_label:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 30px solid #ec2e21;
  border-right: 0;
}
.cta .inner .tel_box .flex {
  background: #fff;
  color: #ec2e21;
  border: 2px solid;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-radius: 10px;
  margin: 0 auto;
}
@media (max-width: 699px) {
  .cta .inner .tel_box .flex {
    justify-content: center;
    gap: 4px;
    padding: 4px 5px 10px;
    flex-wrap: wrap;
    background: #ec2e21;
    color: #fff;
  }
}
.cta .inner .tel_box .flex .tel_anime {
  width: 60px;
  height: 60px;
}
@media (max-width: 699px) {
  .cta .inner .tel_box .flex .tel_anime {
    width: 30px;
    height: 30px;
  }
}
.cta .inner .tel_box .flex .tel_anime svg {
  fill: #ec2e21;
}
@media (max-width: 699px) {
  .cta .inner .tel_box .flex .tel_anime svg {
    fill: #fff;
  }
}
.cta .inner .tel_box .flex .num {
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 9rem;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .cta .inner .tel_box .flex .num {
    font-size: 7.3rem;
  }
}
@media (max-width: 820px) {
  .cta .inner .tel_box .flex .num {
    font-size: 6.5rem;
  }
}
@media (max-width: 699px) {
  .cta .inner .tel_box .flex .num {
    font-family: YakuHanJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
  }
  .cta .inner .tel_box .flex .num .tel-icon-rady {
    width: 17%;
  }
}
.cta .inner .tel_box .flex .num .mini {
  font-size: 0.8em;
}
@media (max-width: 699px) {
  .cta .inner .tel_box .flex .free {
    font-size: 1.5rem;
    font-weight: bold;
    border: 1px solid;
    line-height: 1.1;
    display: block;
    text-align: center;
    padding: 1% 5%;
    border-radius: 50px;
    color: #fff;
    width: 80%;
  }
  .cta .inner .tel_box .flex img.tel-icon-rady {
    width: 14%;
  }
}

.cta .tel_merit.four li {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  padding: 0 20px 0 40px;
  background: #fff;
  border-radius: 50px;
  color: #723576;
}
.cta .tel_merit.four li:before {
  left: 10px;
  line-height: 1;
  font-size: 0.9em;
}

@media screen and (max-width: 767px) {
  .cta .tel_merit.four li {
    width: auto;
    padding: 0 10px 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .cta .tel_merit.four {
    flex-direction: unset;
    flex-wrap: wrap;
  }
  .cta .tel_merit.four li:before {
    left: 6px;
  }
}
.popup-btn {
  display: block;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  padding: 60px 50px;
  width: 90%;
  max-width: 1200px;
  overflow-y: scroll;
  position: relative;
  border-radius: 10px;
  z-index: 10000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90vh;
  height: 90svh;
  margin: auto;
}
@media (max-width: 699px) {
  .modal-content {
    padding: 40px 15px 30px;
    width: 96%;
  }
}

.modal-close {
  position: absolute;
  line-height: 1;
  top: 1.5%;
  right: 1.5%;
  font-size: 30px;
  cursor: pointer;
  color: #666;
}
@media (max-width: 699px) {
  .modal-close {
    right: 3%;
  }
}

.expert {
  background: url(../img/expert.jpg);
  background-size: cover;
  padding: 40px 0;
}
@media (max-width: 699px) {
  .expert {
    padding: 20px 0;
  }
}
.expert .sec_title .wrap {
  background: url(../img/expert.jpg);
  background-size: cover;
}
.expert .center {
  margin: 0 auto 20px;
}
@media (max-width: 699px) {
  .expert .center img {
    width: 82%;
  }
}
.expert .flex {
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  gap: 0px;
}
@media (max-width: 820px) {
  .expert .flex {
    width: 90%;
  }
}
@media (max-width: 699px) {
  .expert .flex {
    flex-wrap: wrap;
  }
  .expert .flex figure {
    width: calc(50% - 20px);
    text-align: center;
  }
}
.expert .flex figure.medal {
  text-align: center;
}
.expert .flex figure.medal img {
  max-width: 80%;
}
@media (max-width: 699px) {
  .expert .flex figure.medal img {
    max-width: 95%;
  }
}

.cta_set {
  background: rgba(245, 240, 247, 0.7490196078);
  padding-bottom: 90px;
}
@media (max-width: 820px) {
  .cta_set {
    padding-bottom: 40px;
  }
}
.cta_set .label {
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.4;
  border-radius: 50px;
  margin: 0 auto 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
}
.cta_set .label .city_mini {
  font-size: 0.8em;
}
@media (max-width: 1100px) {
  .cta_set .label {
    margin-bottom: 20px;
    font-size: 2.6rem;
  }
}
@media (max-width: 699px) {
  .cta_set .label {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}
.cta_set .label .color {
  color: #7a3796;
  font-size: 1.3em;
}
.cta_set .label .medi {
  font-size: 0.8em;
}
.cta_set .label.fuki {
  margin-bottom: 30px;
  padding: 0 20px;
}
@media (max-width: 1100px) {
  .cta_set .label.fuki {
    margin-bottom: 20px;
  }
}
@media (max-width: 699px) {
  .cta_set .label.fuki {
    padding: 0 10px;
    margin-bottom: 10px;
  }
}
.cta_set .label.fuki:before,
.cta_set .label.fuki:after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 2px;
  border-radius: 5px;
  height: 30px;
  background: #333;
}
@media (max-width: 699px) {
  .cta_set .label.fuki:before,
  .cta_set .label.fuki:after {
    margin: auto;
  }
}
.cta_set .label.fuki:before {
  transform: rotate(-30deg);
  left: 0;
}
.cta_set .label.fuki:after {
  transform: rotate(30deg);
  right: 0;
}
@media (max-width: 820px) {
  .cta_set .cta_wrap {
    flex-direction: column;
    align-items: center;
  }
}
.cta_set .tel {
  position: relative;
  transform: translateZ(0);
}
.cta_set .tel .tel_anime {
  position: absolute;
  left: 27%;
  top: 38%;
  width: 45px;
  height: 45px;
}
@media (max-width: 699px) {
  .cta_set .tel .tel_anime {
    left: 10%;
    top: 21%;
  }
}

.footer_cta {
  opacity: 0;
  transform: translateY(12px); /* 少し下にずらす */
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.footer_cta.fixed {
  display: block;
  opacity: 1;
  transform: translateY(0);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: hsla(309deg, 9%, 16%, 0.8);
  z-index: 999;
}
@media (max-width: 699px) {
  .footer_cta.fixed {
    padding: 5px 0 10px;
  }
}
.footer_cta.fixed .inner .tel_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border: 2px solid #fff;
  line-height: 1.2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 64px;
  margin: 0 auto;
  line-height: 1;
  color: #fff;
  background: #d01a0e;
  border-radius: 5px;
  display: flex;
  padding: 0 15px 0 60px;
}
@media (max-width: 699px) {
  .footer_cta.fixed .inner .tel_btn {
    width: 100%;
    padding: 10px 5px;
    background: linear-gradient(180deg, #ed0000 0%, #ed0000 50%, #ba0000 50%, #ba0000 100%);
    box-shadow: 0 5px 0 #540000;
    border: 0;
    height: auto;
  }
  .footer_cta.fixed .inner .tel_btn .tel_anime {
    width: 32px;
    height: 32px;
    margin-right: 2px;
  }
  .footer_cta.fixed .inner .tel_btn .tel_anime svg {
    fill: #fff;
  }
}
.footer_cta.fixed .inner .tel_btn .tel_catch {
  color: #fffa70;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 699px) {
  .footer_cta.fixed .inner .tel_btn .tel_catch {
    font-size: 1.5rem;
  }
}
.footer_cta.fixed .inner .tel_btn .f_lady {
  position: absolute;
  bottom: -20%;
  left: -10%;
}
@media (max-width: 699px) {
  .footer_cta.fixed .inner .tel_btn .f_lady {
    display: none;
  }
}
.footer_cta.fixed .inner .tel_btn .num {
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
  font-size: clamp(3.4rem, 3vw, 4.6rem);
  white-space: nowrap;
}
@media (max-width: 699px) {
  .footer_cta.fixed .inner .tel_btn .num {
    font-size: 2.6rem;
    font-weight: bold;
  }
}
.footer_cta.fixed .inner .tel_btn .num:before {
  content: "";
  background: url(../img/free.svg);
  width: 40px;
  height: 38px;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 5px;
}
@media (max-width: 699px) {
  .footer_cta.fixed .inner .tel_btn .num:before {
    content: none;
  }
}
.footer_cta.fixed .inner .tel_btn .num .mini {
  font-size: 0.8em;
}
@media (max-width: 699px) {
  .footer_cta.fixed .inner .tel_btn .num {
    border: 0;
  }
}

/*----------------------------------------------------
	MV
----------------------------------------------------*/
.mv {
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 699px) {
  .mv {
    margin-bottom: 0;
  }
}
.mv .caution {
  display: none;
  font-size: 1.1rem;
  width: 90%;
  margin: -10px auto 20px;
}
@media (max-width: 699px) {
  .mv .caution {
    display: block;
    margin: -10px auto 10px;
  }
}
.mv img.bg_img {
  width: 100vw;
}
.mv .mv_title {
  position: absolute;
  left: 4%;
  top: 15%;
  letter-spacing: 1px;
  font-size: 3vw;
  line-height: 1.4;
  color: #7a3796;
  font-family: "YakuHanMincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-weight: bold;
  background: linear-gradient(90deg, #640087, #9201c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  padding: 0 2%;
}
.mv .mv_title .city_mini {
  font-size: 0.9em;
  display: inline;
  padding-right: 2%;
}
@media screen and (min-width: 1600px) {
  .mv .mv_title {
    font-size: 5.2rem;
  }
}
@media (max-width: 1100px) {
  .mv .mv_title {
    font-size: 3.5rem;
    top: 10%;
  }
}
@media (max-width: 820px) {
  .mv .mv_title {
    font-size: 3rem;
    top: 4%;
  }
}
@media (max-width: 699px) {
  .mv .mv_title {
    font-size: 3.3rem;
    left: 0;
    right: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: fit-content;
  }
}

.mv .result {
  position: absolute;
  left: 1%;
  bottom: 10%;
}
.mv .price_ex {
  position: absolute;
  right: 1%;
  bottom: 5%;
}
.mv .mv_btn {
  position: absolute;
  left: 9%;
  bottom: 11%;
  border: 0;
  background: #7a3796;
  color: #fff;
  font-size: 2.4rem;
  text-align: left;
  padding: 15px 50px 15px 110px;
  line-height: 1.2;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1400px) {
  .mv .mv_btn {
    bottom: 13%;
    left: 9%;
    font-size: 2.2rem;
    padding: 8px 30px 8px 80px;
  }
}
@media (max-width: 1100px) {
  .mv .mv_btn {
    font-size: 2rem;
    padding: 8px 30px 8px 50px;
    bottom: 14%;
    left: 10%;
  }
}
@media (max-width: 820px) {
  .mv .mv_btn {
    font-size: 1.7rem;
    left: 3%;
  }
}
@media (max-width: 699px) {
  .mv .mv_btn {
    position: relative;
    width: 95%;
    padding: 10px 20px 10px 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -20px;
    display: block;
  }
}
.mv .mv_btn:before {
  content: "\f071";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  color: #fff800;
  position: absolute;
  left: 20px;
  transform: translateY(-50%);
  top: 50%;
  font-size: 6.8rem;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .mv .mv_btn:before {
    font-size: 5rem;
  }
}
@media (max-width: 1100px) {
  .mv .mv_btn:before {
    font-size: 3rem;
    left: 10px;
  }
}
.mv .mv_btn:after {
  content: "\f054";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  color: #fff;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 10px;
  font-size: 2rem;
  line-height: 1;
}
@media (max-width: 1100px) {
  .mv .mv_btn:after {
    font-size: 1.6rem;
  }
}
.mv .mv_btn .mini {
  font-size: 0.65em;
  display: block;
}

/*----------------------------------------------------
	お葬式の流れ
----------------------------------------------------*/
.funeral_flow {
  counter-reset: flownum 0;
}
.funeral_flow .flow_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .funeral_flow .flow_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 699px) {
  .funeral_flow .flow_box {
    grid-template-columns: 1fr;
  }
}
.funeral_flow .flow_box:before {
  content: "";
  background: #7a3796;
  left: 10%;
  top: 0;
  opacity: 0.1;
  position: absolute;
}
@media (max-width: 699px) {
  .funeral_flow .flow_box:before {
    width: 30px;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.funeral_flow .flow_box .item {
  border: 1px solid #ccc;
  background: #fff;
  position: relative;
}
.funeral_flow .flow_box .item img {
  width: 100%;
  margin: 0 auto 10px;
  display: block;
}
@media (max-width: 699px) {
  .funeral_flow .flow_box .item img {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 699px) {
  .funeral_flow .flow_box .item .tel-icon-rady {
    padding: 0;
    margin: 0;
    width: 18%;
  }
}
.funeral_flow .flow_box .item .title {
  font-size: clamp(2.2rem, 4vw, 2.6rem);
  color: #7a3796;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 15px;
}
.funeral_flow .flow_box .item .title:before {
  counter-increment: flownum 1;
  content: counter(flownum) " ";
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.2em;
}
@media (max-width: 699px) {
  .funeral_flow .flow_box .item .title {
    text-align: center;
    padding: 0 20px 0;
  }
}
.funeral_flow .flow_box .item .title .mini {
  font-size: 0.7em;
  display: block;
}
.funeral_flow .flow_box .item .lead {
  font-size: 1.8rem;
  margin-bottom: 1em;
  padding: 0 20px;
}
@media (max-width: 699px) {
  .funeral_flow .flow_box .item .lead {
    text-align: center;
  }
}
.funeral_flow .flow_box .item .lead .num {
  color: #ed0000;
  font-weight: bold;
  font-size: 1.1em;
  white-space: nowrap;
}
@media (max-width: 699px) {
  .funeral_flow .flow_box .item .tel_num {
    gap: 0px 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    border-radius: 5px;
    background: #ec2e21;
    padding: 4px 0;
    margin: 0 auto 20px;
    box-shadow: 0 5px 0 #b10000;
    align-items: center;
  }
  .funeral_flow .flow_box .item .tel_num .num {
    font-weight: bold;
    font-size: 3rem;
    color: #ed0000;
    line-height: 1;
    color: #fff;
  }
  .funeral_flow .flow_box .item .tel_num .num .mini {
    font-size: 0.9em;
  }
  .funeral_flow .flow_box .item .tel_num .tel_anime {
    width: 30px;
    height: 30px;
  }
  .funeral_flow .flow_box .item .tel_num .tel_anime svg {
    fill: #fff;
  }
}
.funeral_flow .flow_box .item .point_list {
  position: relative;
  font-size: 2rem;
  padding: 0 20px 20px;
}
@media (max-width: 820px) {
  .funeral_flow .flow_box .item .point_list {
    font-size: 1.8rem;
  }
}
.funeral_flow .flow_box .item .point_list:before {
  content: "ポイント";
  display: block;
  background: #955fab;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px;
  border-radius: 50px;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
@media (max-width: 699px) {
  .funeral_flow .flow_box .item .point_list:before {
    margin: 0 0 5px;
  }
}
.funeral_flow .flow_box .item .point_list li {
  position: relative;
  padding-left: 1.5em;
  text-indent: -1em;
}
.funeral_flow .flow_box .item .point_list li:first-of-type {
  margin-bottom: 5px;
}
.funeral_flow .flow_box .item .point_list li:before {
  content: "\f058";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  font-weight: 500;
  color: #ed0000;
  position: relative;
  left: -8px;
  line-height: 1;
}
.funeral_flow .flow_box .item .point_list li .bold {
  font-weight: bold;
}

/*----------------------------------------------------
	ティアとは
----------------------------------------------------*/
.about {
  background: #f9f9f9;
}
.about .sec_title {
  margin-bottom: 10px;
}
.about .sec_title .wrap {
  background: #f9f9f9;
}
.about .sec_catch {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: bold;
}
.about .features {
  border-top: 2px solid #bd9bcb;
  border-bottom: 2px solid #bd9bcb;
  padding: 15px 0;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}
@media (max-width: 699px) {
  .about .features {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
.about .features .f_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0;
}
.about .features .f_item img {
  width: 30px;
  -o-object-fit: contain;
  object-fit: contain;
}

/*----------------------------------------------------
	式場一覧
----------------------------------------------------*/
.halls {
  background: #f9f9f9;
}
.halls .sec_catch {
  font-weight: bold;
}
.halls .about_img {
  margin: 0 auto 60px;
}
@media (max-width: 699px) {
  .halls .about_img {
    margin-bottom: 30px;
  }
}
.halls .halls_accordion {
  margin-bottom: 24px;
}
.halls .halls_accordion_btn {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  overflow: hidden;
  margin: 0 auto 30px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px #7a3796;
  border: 1px solid #7a3796;
  transition: all 0.2s;
  width: 100%;
  max-width: 540px;
  display: block;
  font-weight: 700;
  color: #333;
}
.halls .halls_accordion_btn .area {
  color: #7a3796;
  font-size: 1.1em;
}
.halls .halls_accordion_btn::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: 3rem;
  z-index: 2;
  transition: 0.3s ease;
  cursor: pointer;
  line-height: 32px;
  border-radius: 5px;
}
@media (max-width: 699px) {
  .halls .halls_accordion_btn {
    text-align: left;
  }
}

.halls .halls_accordion_btn.open::after {
  content: "×";
  background: #333;
  color: #fff;
  box-shadow: 0 0 0 1px #333;
}
.halls .halls_accordion_btn.open {
  background: #f8f5fa;
}
.halls .halls_accordion_panel {
  display: none;
  padding-top: 14px;
}
@media (max-width: 699px) {
  .halls .tab_list {
    flex-wrap: wrap;
    gap: 5px;
    border-bottom: 0;
  }
}
.halls .tab_item .tab_btn {
  border-radius: 5px 5px 0 0;
  font-size: clamp(2rem, 4vw, 2.4rem);
  color: #7a3796;
}
@media (max-width: 699px) {
  .halls .tab_item .tab_btn {
    border: 1px solid;
    border-radius: 4px;
  }
}
.halls .tab_item.active .tab_btn {
  font-size: clamp(2.2rem, 4vw, 2.6rem);
  color: #fff;
}
@media (max-width: 699px) {
  .halls .tab_nav {
    margin-bottom: 10px;
  }
  .halls .tab_nav .tab_list .tab_item {
    width: calc(33.3333333333% - 4px);
    flex: unset;
  }
}
.halls .tab_item a {
  border: 1px solid;
  border-radius: 4px 4px 0 0;
  padding: 8px 2px;
  font-weight: 600;
  white-space: nowrap;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #7a3796;
  display: block;
}

.halls .sec_title .wrap {
  background: #f9f9f9;
}
.halls .hall_list {
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.halls .hall_list .item {
  width: calc(50% - 10px);
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 5px;
}
@media (max-width: 820px) {
  .halls .hall_list .item {
    width: 100%;
    padding: 15px;
  }
}
.halls .hall_list .item .name_wrap {
  align-items: center;
  margin-bottom: 10px;
  white-space: nowrap;
}
@media (max-width: 699px) {
  .halls .tab_item a {
    border-radius: 4px;
  }
  .halls .hall_list .item .name_wrap {
    gap: 10px;
  }
}
.halls .hall_list .item .name_wrap .hall_name {
  color: #640087;
  font-size: clamp(2.2rem, 4vw, 3rem);
}
.halls .hall_list .item .name_wrap .label {
  font-size: 1.3rem;
  line-height: 1;
  background: #755c29;
  color: #fff;
  padding: 1% 3%;
  border-radius: 4px;
}
.halls .hall_list .item .name_wrap .label.mine {
  background: #8f379c;
}
.halls .hall_list .item .hall_info {
  align-items: flex-start;
}
@media (max-width: 699px) {
  .halls .hall_list .item .hall_info {
    gap: 10px;
  }
}
.halls .hall_list .item .hall_info > img {
  width: 38%;
  aspect-ratio: 4/3;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 699px) {
  .halls .hall_list .item .hall_info > img {
    margin: 0 auto;
  }
}
.halls .hall_list .item .hall_info .info {
  flex: 1;
}
.halls .hall_list .item .hall_info .info .title {
  color: #8f379c;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
.halls .hall_list .item .hall_info .info .title:before {
  content: "";
  width: 8px;
  height: 1em;
  background: #8f379c;
  display: inline-block;
}
.halls .hall_list .item .hall_info .info .detail {
  margin-bottom: 10px;
}
.halls .hall_list .item .hall_info .info .detail a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid;
  color: #7a3796;
  font-size: 1.5rem;
  padding: 3px 6px;
  line-height: 1;
  border-radius: 4px;
  background: #f7f7f7;
}
.halls .hall_list .item .hall_info .info .detail a:after {
  content: "\f35d";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  padding-left: 4px;
  font-size: 0.9em;
}
.halls .hall_list .item .features {
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: auto;
}
@media (max-width: 699px) {
  .halls .hall_list .item .features {
    width: 100%;
  }
}
.halls .hall_list .item .features .f_item {
  width: calc(33.3333333333% - 4px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-size: 1.4rem;
  border: 1px solid #999;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  padding: 2px;
  letter-spacing: 0;
}
@media (max-width: 699px) {
  .halls .hall_list .item .features .f_item {
    flex: unset;
    width: calc(33.3333333333% - 4px);
    white-space: nowrap;
  }
}
.halls .hall_list .item .features .f_item img {
  width: 15px;
}
.halls .hall_list .item .features .f_item br {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .halls .hall_list .item .features .f_item br {
    display: block;
  }
}
.halls .catch {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  border-top: 2px solid #7a3796;
  border-bottom: 2px solid #7a3796;
  padding: 20px 40px;
  margin: 0 auto;
  font-weight: bold;
  color: #7a3796;
  background: #fff;
}
@media (max-width: 699px) {
  .halls .catch {
    padding: 20px 10px;
    width: 100%;
  }
}

/*----------------------------------------------------
	選ばれる理由
----------------------------------------------------*/
.feature .most {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 60px;
}
@media (max-width: 820px) {
  .feature .most {
    margin-bottom: 30px;
  }
}
.feature .most .catch {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #4562b0;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  padding: 8px 30px;
  position: relative;
  margin: 0 auto 20px;
  font-weight: bold;
  line-height: 1;
  border-radius: 10px;
}
.feature .most .catch:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 15px solid #4562b0;
  border-bottom: 0;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -14px;
}
.feature .most .lead {
  margin: 0 auto 10px;
  font-weight: bold;
  line-height: 1.4;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  background: linear-gradient(0deg, #fffb88 0%, #fffb88 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 699px) {
  .feature .most .lead {
    display: inline;
  }
}
.feature .most .caution {
  font-size: 1.4rem;
  color: #444;
}
@media (max-width: 699px) {
  .feature .most .caution {
    text-align: left;
  }
}
.feature .plan_inset {
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
  gap: 20px;
}
@media (max-width: 699px) {
  .feature .plan_inset {
    flex-direction: column;
    gap: 30px;
  }
}
.feature .plan_inset .item {
  width: calc(33.3333333333% - 15px);
  max-width: 330px;
  position: relative;
  background: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #eee;
  border-top-width: 2px;
  border-top-color: #7a3796;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 699px) {
  .feature .plan_inset .item {
    width: 100%;
    margin: 0 auto;
  }
}
.feature .plan_inset .item .title {
  background: #7a3796;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 4px;
  position: relative;
  width: 80%;
  margin-top: -10px;
  margin: -30px auto 10px;
}
.feature .plan_inset .item .catch {
  font-weight: bold;
  margin-bottom: 10px;
  flex: 1;
}
.feature .plan_inset .item img {
  width: 70%;
  border-radius: 5px;
  overflow: hidden;
}
.feature .cash_catch {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.4rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  font-weight: bold;
}
.feature .cash_list {
  justify-content: center;
  background: #f2ebf5;
  padding: 20px 30px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  gap: 60px;
}
@media (max-width: 820px) {
  .feature .cash_list {
    gap: 20px;
    padding: 20px 40px 20px 20px;
  }
}
@media (max-width: 699px) {
  .feature .cash_list {
    flex-direction: column;
  }
}
.feature .cash_list .item {
  width: calc(33.3333333333% - 13px);
  text-align: center;
  background: #fff;
  padding: 10px 25px;
  border-radius: 10px;
  position: relative;
  font-weight: bold;
}
.feature .cash_list .item:after {
  content: "OK";
  position: absolute;
  color: #fff;
  background: #f02626;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 2rem;
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  left: -5px;
  border-radius: 50px;
  top: -10px;
}
@media (max-width: 699px) {
  .feature .cash_list .item:after {
    left: 20px;
  }
}
@media (max-width: 699px) {
  .feature .cash_list .item {
    width: 100%;
  }
}
.feature .cash_list .item .icon {
  position: absolute;
  right: -25px;
  top: 20%;
  height: 50px;
}

/*----------------------------------------------------
	プラン一覧
----------------------------------------------------*/
.plan {
  background: #f9f9f9;
  padding: 40px 0;
}
@media (max-width: 699px) {
  .plan {
    padding: 20px 0;
  }
}
.plan .sec_title {
  border-top: 2px solid #7a3796;
  border-bottom: 1px dashed #7a3796;
  padding: 20px 0;
  margin-bottom: 40px;
}
.plan .sec_title:before {
  content: none;
}
@media (max-width: 699px) {
  .plan .sec_title {
    margin-bottom: 30px;
    white-space: nowrap;
  }
}
.plan .plan_list {
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 10px;
}
@media (max-width: 1100px) {
  .plan .plan_list {
    margin-bottom: 15px;
  }
}
.plan .plan_list .item {
  width: calc(33.3333333333% - 7px);
}
@media (max-width: 1100px) {
  .plan .plan_list .item {
    width: calc(50% - 7px);
  }
}
@media (max-width: 820px) {
  .plan .plan_list .item {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 699px) {
  .plan .plan_list .item {
    width: 100%;
  }
}
.plan .plan_list .item .popup-btn {
  padding-top: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.0901960784);
  position: relative;
}
.plan .plan_list .item .title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 10px;
  position: relative;
}
@media (max-width: 1100px) {
  .plan .plan_list .item .title {
    font-size: 2.8rem;
  }
}
.plan .plan_list .item .title.link:after {
  content: "\f138";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: 3%;
  font-size: 0.8em;
  line-height: 1;
  transform: translateY(-50%);
  top: 50%;
}
.plan .plan_list .item .main_img {
  margin: 0 auto 10px;
  display: block;
  width: 100%;
}
.plan .plan_list .item span.saidan_atd {
  color: #fff;
  text-shadow: 0 0 4px #000;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  display: block;
  left: 0;
  right: 0;
  margin-top: -27px;
  position: absolute;
}
.plan .plan_list .item .discount {
  width: 94%;
  text-align: center;
  background: #fff;
  padding: 5px;
  position: relative;
  margin: 0 auto;
  line-height: 1;
  letter-spacing: 0;
  font-size: 1.8rem;
  border-top: 2px solid #3d2646;
  border-bottom: 2px solid #3d2646;
}
@media (max-width: 699px) {
  .plan .plan_list .item .discount {
    width: 100%;
    padding: 5px 0;
  }
}
.plan .plan_list .item .discount .color {
  color: #ed0000;
  display: block;
  font-weight: bold;
}
@media (max-width: 699px) {
  .plan .plan_list .item .discount .color {
    display: inline-block;
  }
}
.plan .plan_list .item .discount .big {
  font-size: 1.6em;
}
.plan .plan_list .item .price_flex {
  flex-direction: column;
  gap: 5px;
  width: 96%;
  margin: 0 auto 15px;
}
@media (max-width: 699px) {
  .plan .plan_list .item .price_flex {
    flex-direction: column;
  }
}
.plan .plan_list .item .price_flex .price {
  flex: auto;
  text-align: center;
  gap: 5px;
}
@media (max-width: 699px) {
  .plan .plan_list .item .price_flex .price {
    width: 100%;
  }
}
.plan .plan_list .item .price_flex .price .label {
  display: block;
  font-size: 2rem;
  text-align: center;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.plan .plan_list .item .price_flex .price .label.mini {
  font-size: 0.8em;
}
.plan .plan_list .item .price_flex .price.ippan {
  font-size: 1.6rem;
  position: relative;
  letter-spacing: 0;
  color: #888;
  margin-bottom: 10px;
}
.plan .plan_list .item .price_flex .price.ippan:after {
  content: "\f0d7";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -25px;
  margin: auto;
  color: #ed0000;
  font-size: 2em;
  line-height: 1;
}
.plan .plan_list .item .price_flex .price.ippan .label {
  display: inline-block;
}
@media (max-width: 699px) {
  .plan .plan_list .item .price_flex .price.ippan {
    width: 100%;
  }
}
.plan .plan_list .item .price_flex .price.ippan .num {
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.plan .plan_list .item .price_flex .price.ippan .mini {
  font-size: 1.7rem;
}
.plan .plan_list .item .price_flex .price.ippan .yen {
  font-size: 1.5rem;
}
.plan .plan_list .item .price_flex .price.club {
  align-items: flex-end;
  justify-content: center;
  white-space: nowrap;
}
.plan .plan_list .item .price_flex .price.club .t {
  width: 60px;
  margin-bottom: 6px;
  margin-right: 3px;
}
.plan .plan_list .item .price_flex .price.club .label {
  position: relative;
  font-weight: bold;
  letter-spacing: 0;
  font-size: clamp(1.5rem, 4vw, 1.7rem);
  line-height: 1.2;
  margin: 0;
  color: #ed0000;
  border: 1px solid;
  padding: 5px;
  border-radius: 10px;
}
.plan .plan_list .item .price_flex .price.club .num {
  font-size: 9rem;
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
  color: #ed0000;
  line-height: 1;
  letter-spacing: -3px;
}
@media (max-width: 699px) {
  .plan .plan_list .item .price_flex .price.club .num {
    font-size: 7rem;
  }
}
.plan .plan_list .item .price_flex .price.club .num .mini {
  font-size: 0.6em;
}
.plan .plan_list .item .price_flex .price.club .num .yen {
  font-size: 0.3em;
  position: relative;
  font-weight: bold;
  padding-left: 2px;
}
.plan .plan_list .item .price_flex .price.club .num .yen .tax {
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 1.5rem;
  letter-spacing: normal;
  white-space: nowrap;
}
@media (max-width: 699px) {
  .plan .plan_list .item .price_flex .price.club .num .yen .tax {
    top: -12px;
    right: -5px;
  }
}
.plan .plan_list .item .flow_list {
  gap: 3px;
  width: 90%;
  margin: 0 auto 15px;
}
.plan .plan_list .item .flow_list .f_item {
  flex: 1;
  text-align: center;
  font-size: 1.5rem;
  background: #eee;
  color: #fff;
  letter-spacing: 0;
}
.plan .plan_list .item .btn {
  font-size: 1.6rem;
  text-align: center;
  position: relative;
  border: 1px solid;
  width: 90%;
  padding: 2px;
  border-radius: 5px;
  margin: 0 auto 20px;
}
.plan .plan_list .item .btn:after {
  content: "\f138";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  transform: translateY(-50%);
  top: 50%;
  font-size: 1.4rem;
  position: absolute;
  right: 5px;
}
.plan .plan_list .item:first-of-type .popup-btn {
  border-color: #8b6500;
  border-top: 6px solid #8b6500;
}
.plan .plan_list .item:first-of-type .title {
  color: #8b6500;
}
.plan .plan_list .item:first-of-type .f_item.in {
  background: #777;
}
.plan .plan_list .item:nth-child(2) .popup-btn {
  border-color: #e63c60;
  border-top: 6px solid #e63c60;
}
.plan .plan_list .item:nth-child(2) .title {
  color: #e63c60;
}
.plan .plan_list .item:nth-child(2) .f_item.in {
  background: #777;
}
.plan .plan_list .item:nth-child(3) .popup-btn {
  border-color: #0d6795;
  border-top: 6px solid #0d6795;
}
.plan .plan_list .item:nth-child(3) .title {
  color: #0d6795;
}
.plan .plan_list .item:nth-child(3) .f_item.in {
  background: #777;
}
.plan .plan_list .modal-content .plan_info {
  margin-bottom: 20px;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info {
    flex-direction: column;
  }
}
.plan .plan_list .modal-content .plan_info .text {
  width: 50%;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info .text {
    width: 100%;
  }
}
.plan .plan_list .modal-content .plan_info .text .title {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}
.plan .plan_list .modal-content .plan_info .text > .flex {
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
}
.plan .plan_list .modal-content .plan_info .text .mark {
  width: 80px;
  height: 80px;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info .text .mark {
    width: 60px;
    height: 60px;
  }
}
.plan .plan_list .modal-content .plan_info .text .club_label {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: bold;
  position: relative;
  padding-left: 10%;
  line-height: 1.2;
  color: #eb3535;
  border: 1px solid;
  padding: 5px;
  border-radius: 10px;
}
.plan .plan_list .modal-content .plan_info .text .discount_red {
  width: auto;
  background: #ed0000;
  color: #fffa70;
  border: unset;
  margin: 0 0 0 5px;
  padding: 1% 4%;
  position: relative;
  font-weight: bold;
  line-height: 1;
  border-radius: 5px;
  text-align: center;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info .text .discount_red {
    padding: 1% 2%;
    font-size: 1.5rem;
  }
}
.plan .plan_list .modal-content .plan_info .text .discount_red:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #ed0000;
  border-bottom: 0;
  position: absolute;
  bottom: -10px;
  right: 0;
  left: 0;
  margin: auto;
}
.plan .plan_list .modal-content .plan_info .text .discount_red .big {
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(1.3em, 4vw, 1.8em);
}
.plan .plan_list .modal-content .plan_info .text .price.club {
  font-weight: bold;
  color: #ed0000;
  line-height: 1;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-align: center;
}
.plan .plan_list .modal-content .plan_info .text .price.club .num {
  font-size: 9rem;
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
  letter-spacing: -0.1rem;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info .text .price.club .num {
    font-size: 6.5rem;
  }
}
.plan .plan_list .modal-content .plan_info .text .price.club .yen {
  font-size: clamp(4rem, 4vw, 5rem);
  position: relative;
}
.plan .plan_list .modal-content .plan_info .text .price.club .yen .tax {
  position: absolute;
  bottom: 50px;
  right: 4px;
  font-size: 1.5rem;
  white-space: nowrap;
  color: #333;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info .text .price.club .yen .tax {
    bottom: 45px;
    right: 0;
  }
}
.plan .plan_list .modal-content .plan_info .text .price.ippan {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.plan .plan_list .modal-content .plan_info .text .price.ippan .num {
  font-size: 1.1em;
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
.plan .plan_list .modal-content .plan_info .text .kasou_caution {
  text-align: center;
  padding-top: 5px;
  font-weight: bold;
  font-size: clamp(1.6rem, 4vw, 1.7rem);
  padding-left: 1.1em;
  text-indent: -1.1em;
}
@media (max-width: 699px) {
  .plan .plan_list .modal-content .plan_info .text .kasou_caution {
    text-align: left;
  }
}
.plan .plan_list .modal-content .plan_info .text .kasou_caution:before {
  content: "※";
}
.plan .plan_list .modal-content .plan_info .plan_img {
  width: 50%;
  position: relative;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info .plan_img {
    width: 100%;
  }
}
.plan .plan_list .modal-content .plan_info .plan_img figcaption {
  position: absolute;
  color: #fff;
  font-size: 1.5rem;
  bottom: 5px;
  left: 10px;
  text-shadow: 0 0 5px #000;
}
.plan .plan_list .modal-content .plan_info .plan_img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.plan .plan_list .modal-content .plan_info .gold_wrap > .flex {
  justify-content: center;
  align-items: center;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info .gold_wrap > .flex {
    gap: 10px;
  }
}
.plan .plan_list .modal-content .plan_info .bronz_wrap {
  border-bottom: 1px solid #ccc;
  margin: 0;
}
.plan .plan_list .modal-content .plan_info .bronz_wrap .mark {
  width: 60px;
  height: 60px;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info .bronz_wrap .mark {
    width: 50px;
    height: 50px;
  }
}
.plan .plan_list .modal-content .plan_info .bronz_wrap .price_wrap .label {
  font-weight: bold;
  white-space: nowrap;
}
.plan .plan_list .modal-content .plan_info .bronz_wrap .price_wrap .price.club {
  color: #876628;
  border-bottom: 0;
  padding-bottom: 0;
}
.plan .plan_list .modal-content .plan_info .bronz_wrap .price_wrap .price.club .num {
  font-size: clamp(5rem, 4vw, 7rem);
}
.plan .plan_list .modal-content .plan_info .bronz_wrap .price_wrap .price.club .yen {
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.plan .plan_list .modal-content .plan_info .bronz_wrap .price_wrap .price.club .yen .tax {
  font-size: 1.4rem;
  bottom: 40px;
  right: -1px;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .plan_info .bronz_wrap .price_wrap .price.club .yen .tax {
    bottom: 32px;
    right: -8px;
    font-size: 1.3rem;
  }
}
.plan .plan_list .modal-content .plan_info .bronz_wrap .discount_red {
  background: #876628;
  padding: 5px 8px 7px;
  text-align: center;
  color: #fff;
}
@media (max-width: 699px) {
  .plan .plan_list .modal-content .plan_info .bronz_wrap .discount_red {
    padding: 5px 0 7px;
    white-space: nowrap;
  }
}
.plan .plan_list .modal-content .plan_info .bronz_wrap .discount_red:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #876628;
  border-left: 0;
  right: unset;
  left: -10px;
  transform: translateY(-50%);
  top: 50%;
  bottom: unset;
}
.plan .plan_list .modal-content .plan_info .bronz_wrap .discount_red .big {
  font-weight: 400;
}
.plan .plan_list .modal-content .set_list_title {
  text-align: center;
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.plan .plan_list .modal-content .set_list_box {
  background: #fdf9f3;
  padding: 20px;
  margin-bottom: 20px;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .set_list_box {
    padding: 10px;
  }
}
.plan .plan_list .modal-content .set_list {
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .set_list {
    gap: 4px;
  }
}
.plan .plan_list .modal-content .set_list .s_item {
  width: calc(20% - 8px);
  background: #fff;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
@media (max-width: 1100px) {
  .plan .plan_list .modal-content .set_list .s_item {
    font-size: 1.5rem;
    flex-direction: column;
  }
}
@media (max-width: 699px) {
  .plan .plan_list .modal-content .set_list .s_item {
    width: calc(33.3333333333% - 3px);
  }
}
.plan .plan_list .modal-content .set_list .s_item img {
  width: 85px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .set_list .s_item img {
    width: 100%;
    height: 70px;
  }
}
.plan .plan_list .modal-content .set_list .s_item .name {
  padding: 5px;
  display: flex;
  align-items: center;
  line-height: 1.2;
}
@media (max-width: 699px) {
  .plan .plan_list .modal-content .set_list .s_item .name {
    padding: 5px 3px;
  }
}
.plan .plan_list .modal-content .note_list {
  padding-left: 3%;
}
.plan .plan_list .modal-content .note_list li {
  font-size: clamp(1.5rem, 4vw, 1.7rem);
  padding-left: -1.3em;
  text-indent: -1.3em;
  margin-bottom: 5px;
  color: #737373;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .note_list li {
    margin-left: 15px;
  }
}
.plan .plan_list .modal-content .note_list li:before {
  content: "※";
}
.plan .plan_list .modal-content .note_list li.bold {
  font-weight: bold;
  color: #222;
}
.plan .plan_list .modal-content .move_box {
  justify-content: center;
}
@media (max-width: 820px) {
  .plan .plan_list .modal-content .move_box {
    flex-direction: column;
  }
}
.plan .plan_list .modal-content .move_box button {
  font-size: 2rem;
  color: #555;
  cursor: pointer;
  padding: 5px 20px;
  box-shadow: 0 5px #d1d1d1;
  border-radius: 5px;
  border: 1px solid #d1d1d1;
  background: #f3f3f3;
  font-weight: bold;
}
.plan .function {
  text-align: center;
}
.plan .function .color {
  font-weight: 700;
  color: #ed0000;
}
.plan .kasou .modal-content .plan_info .plan_img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.plan .kasou .modal-content .plan_info .plan_img img {
  -o-object-fit: contain;
  object-fit: contain;
}

/*----------------------------------------------------
	葬儀の流れ
----------------------------------------------------*/
.support .support_box {
  position: relative;
}
.support .support_box .sec_title .sub {
  color: #7a3796;
}
.support .support_box .sec_title .dot {
  font-size: 1.2em;
  background-image: radial-gradient(circle at center, orange 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.3em;
}
@media (max-width: 699px) {
  .support .support_box .sec_title {
    line-height: 1.7;
  }
  .support .support_box .sec_title .dot {
    font-size: 1.1em;
  }
}
.support .support_box .sec_catch {
  font-weight: bold;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.support .features {
  justify-content: center;
  gap: 50px;
  text-align: center;
}
@media (max-width: 820px) {
  .support .features {
    gap: 20px;
  }
}
@media (max-width: 699px) {
  .support .features {
    flex-wrap: wrap;
    gap: 15px 10px;
  }
}
.support .features li {
  width: auto;
}
@media (max-width: 699px) {
  .support .features li {
    width: calc(50% - 5px);
  }
}
.support .features li img {
  max-width: 150px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.support .features .title {
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: bold;
  background: #7a3796;
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
}
@media (max-width: 699px) {
  .support .features .title {
    padding: 2px;
  }
}
.support .features img {
  margin-bottom: 10px;
}

/*----------------------------------------------------
	よくある質問
----------------------------------------------------*/
.faq .sec_title {
  border-bottom: 2px solid #7a3796;
  padding-bottom: 10px;
}
.faq .sec_title:before {
  content: none;
}
.faq .faq_box .question {
  cursor: pointer;
  position: relative;
  padding: 15px 30px 15px 40px;
  border: 1px solid #bbb;
  font-weight: bold;
  font-size: clamp(1.8rem, 4vw, 2rem);
  line-height: 1.4;
  margin-bottom: -1px;
}
@media (max-width: 699px) {
  .faq .faq_box .question {
    padding: 4% 8% 4% 10%;
  }
}
.faq .faq_box .question:before {
  content: "Q";
  position: absolute;
  left: 1.5%;
  transform: translateY(-50%);
  top: 50%;
  font-size: 2.4rem;
  color: #7a3796;
}
.faq .faq_box .question .cross {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
}
.faq .faq_box .question .cross:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: #7a3796;
}
@media (max-width: 820px) {
  .faq .faq_box .question .cross:before {
    width: 18px;
    right: 3px;
  }
}
.faq .faq_box .question .cross:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 2px;
  height: 24px;
  background: #7a3796;
}
@media (max-width: 820px) {
  .faq .faq_box .question .cross:after {
    height: 18px;
    right: 11px;
  }
}
.faq .faq_box .question.open .cross:after {
  transform: rotate(270deg);
  opacity: 0;
}
.faq .faq_box .answer {
  position: relative;
  padding: 10px 0 10px 40px;
  line-height: 2;
}
@media (max-width: 699px) {
  .faq .faq_box .answer {
    padding: 5% 5% 2% 10%;
  }
}
.faq .faq_box .answer:before {
  content: "A";
  position: absolute;
  left: 1.5%;
  top: 20px;
  color: #a273b6;
  font-size: 2.4rem;
  line-height: 1;
}
@media (max-width: 699px) {
  .faq .faq_box .answer:before {
    top: 5%;
  }
}
.faq .faq_box .answer a {
  text-decoration: underline;
  color: #ff527d;
}
.faq .faq_box .answer span {
  font-weight: bold;
}

.point {
  background: #fffcf6;
}
.point .sec_title .wrap {
  background: #fffcf6;
}
.point .sec_catch .bold {
  font-weight: bold;
  font-size: 1.2em;
}
.point .sec_catch i {
  color: #7a3796;
}
.point .point_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px 0 0;
  border-radius: 20px;
}
@media (max-width: 820px) {
  .point .point_wrap {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
}
@media (max-width: 699px) {
  .point .point_wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.point .point_box {
  background: #fff;
  padding: 20px 30px;
  box-shadow: 4px 4px 5px #f4efea;
  border-radius: 10px;
  position: relative;
  height: 100%;
}
.point .point_box:nth-child(3) {
  margin-bottom: 50px;
}
@media (max-width: 699px) {
  .point .point_box:nth-child(3) {
    margin-bottom: 0;
  }
}
@media (max-width: 1100px) {
  .point .point_box {
    padding: 20px;
  }
}
@media (max-width: 699px) {
  .point .point_box {
    margin-bottom: 40px;
    height: auto;
  }
}
@media (max-width: 699px) and (max-width: 699px) {
  .point .point_box {
    margin-bottom: 0;
  }
}
.point .point_box .num {
  position: absolute;
  left: 0px;
  top: -20px;
  background: #f2ebf5;
  border-radius: 50%;
  aspect-ratio: 1/1;
  line-height: 1;
  width: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  z-index: 4;
}
@media (max-width: 1100px) {
  .point .point_box .num {
    left: 10px;
  }
}
@media (max-width: 699px) {
  .point .point_box .num {
    width: 50px;
    left: 0;
    margin: auto;
    top: -2%;
    z-index: 10;
  }
}
.point .point_box img {
  width: 100%;
  margin-bottom: 15px;
}
.point .point_box .title {
  font-size: clamp(2rem, 4vw, 2.2rem);
  line-height: 1.4;
  margin-bottom: 10px;
  color: #7a3796;
}
@media (max-width: 699px) {
  .point .point_box .title {
    text-align: center;
  }
}
.point .point_box .catch {
  border: 1px solid;
  border-radius: 50px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.6rem;
  padding: 1% 2%;
}
@media (max-width: 699px) {
  .point .point_box .catch {
    width: 100%;
    padding: 0;
  }
}
.point .point_box .lead {
  text-align: justify;
}

.satisfaction {
  background: linear-gradient(180deg, #faf5f9 0%, #fff 25%, #fff);
}
.satisfaction .inner {
  max-width: 960px;
}
@media (max-width: 699px) {
  .satisfaction .inner {
    width: 94%;
    padding: 0 20px 10px 20px;
    margin-bottom: 30px;
  }
}
.satisfaction .inner .family {
  position: absolute;
  top: 2%;
  right: 6%;
  margin: auto;
  z-index: 2;
  width: 300px;
}
@media (max-width: 1100px) {
  .satisfaction .inner .family {
    max-width: 200px;
    top: unset;
    bottom: 0;
  }
}
@media (max-width: 699px) {
  .satisfaction .inner .family {
    max-width: unset;
    top: unset;
    bottom: 15px;
  }
}
.satisfaction .title_wrap {
  position: relative;
  padding-bottom: 20px;
}
.satisfaction .title_wrap .title {
  text-align: center;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  color: #b632a5;
  position: relative;
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 1100px) {
  .satisfaction .title_wrap .title {
    text-align: center;
    padding: 0;
  }
}
.satisfaction .title_wrap .title:after {
  content: "(とても満足+満足)";
  font-size: 0.5em;
  white-space: nowrap;
}
@media (max-width: 699px) {
  .satisfaction .title_wrap .title:after {
    position: relative;
    top: -10px;
    right: 10px;
    text-align: right;
    width: 100%;
    display: block;
  }
}
.satisfaction .title_wrap .title .medi {
  font-size: 0.8em;
  display: block;
  color: #444;
}
.satisfaction .title_wrap .title .num {
  font-size: 1.8em;
  line-height: 1;
}
.satisfaction .title_wrap .date {
  padding-left: 35px;
  font-size: 1.4rem;
}
.satisfaction .graf_flex {
  background: #fff;
  padding: 20px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 1100px) {
  .satisfaction .title_wrap .date {
    text-align: center;
  }
}
@media (max-width: 699px) {
  .satisfaction .graf_flex {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
}
.satisfaction .graf_flex .lead_wrap .lead {
  line-height: 2;
}
.satisfaction .graf_flex img {
  max-width: 250px;
}
@media (max-width: 699px) {
  .satisfaction .graf_flex img {
    max-width: 100%;
  }
}

.voice {
  overflow: hidden;
}
@media (max-width: 699px) {
  .voice {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
  }
}
@media (max-width: 699px) {
  .voice .inner {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
  }
}
.voice .sec_title .color {
  color: #b632a5;
}
.voice .splide__track {
  padding-bottom: 10px !important;
  overflow: visible;
}
.voice .splide__arrow {
  right: 12%;
  width: 80px;
  height: 80px;
}
@media (max-width: 699px) {
  .voice .splide__arrow {
    right: -5%;
    width: 40px;
    height: 40px;
  }
}
.voice .splide__arrow--prev {
  left: 12%;
}
@media (max-width: 699px) {
  .voice .splide__arrow--prev {
    left: -5%;
  }
}
.voice .voice_list .item {
  border: 1px solid #eee;
  background: #fff;
  padding: 20px 40px;
  box-shadow: 0 0.3rem 0.3rem rgba(70, 31, 11, 0.16);
  border-radius: 4px;
}
@media (max-width: 699px) {
  .voice .voice_list .item {
    padding: 20px 15px;
  }
}
.voice .voice_list .item .voice_info {
  border-bottom: 1px solid #666;
  padding-bottom: 20px;
  margin-bottom: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.voice .voice_list .item .voice_info .icon {
  width: 90px;
}
@media (max-width: 699px) {
  .voice .voice_list .item .voice_info .icon {
    width: 80px;
  }
}
.voice .voice_list .item .voice_info .info .area span {
  background: #737373;
  color: #fff;
  padding: 0 10px;
  border-radius: 5px;
  margin-right: 10px;
  display: inline-block;
  font-size: 1.5rem;
}
@media (max-width: 699px) {
  .voice .voice_list .item .voice_info .info .area span {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.voice .voice_list .item .voice_info .info .star {
  color: #ff7e00;
}
.voice .voice_list .item .voice_info .info .star .label {
  font-weight: bold;
  color: #333;
  margin-right: 10px;
}
.voice .voice_list .item .voice_info .info .star .num {
  font-size: 1.3em;
  color: #e63c60;
  font-weight: bold;
}
.voice .voice_list .item .date {
  text-align: right;
  font-size: 1.5rem;
}
.voice .splide__track--fade > .splide__list > .splide__slide {
  height: 0 !important;
}
.voice .splide__track--fade > .splide__list > .splide__slide.is-active {
  height: auto !important;
}

.club_mv {
  text-align: center;
  padding-bottom: 40px;
}
.club_mv img {
  border: 1px solid #eee;
  box-shadow: 0 3px 5px #eee;
  border-radius: 5px;
  max-width: 900px;
  width: 100%;
}

/*----------------------------------------------------
	お問い合わせフォーム
----------------------------------------------------*/
.inquiry_btn {
  display: block;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.inquiry_btn img {
  display: block;
  width: 100%;
  height: auto;
}

.cf .sec_title {
  position: relative;
}
.cf .sec_title:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #7a3796;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.cf .sec_title .color {
  display: inline-block;
  background: #fff;
  padding: 0 30px;
  z-index: 2;
  position: relative;
}
.cf .cf_cta {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 699px) {
  .cf .cf_cta .panf {
    display: none;
  }
}
.cf .cf_cta .cta_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.cf .cf_cta .cta_title .wrap {
  position: relative;
  margin-bottom: 5px;
  line-height: 1.2;
  justify-content: center;
  gap: 10px;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: bold;
  align-items: center;
}
.cf .cf_cta .cta_title .wrap:before,
.cf .cf_cta .cta_title .wrap:after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 2px;
  border-radius: 5px;
  height: 30px;
  background: #333;
}
@media (max-width: 699px) {
  .cf .cf_cta .cta_title .wrap:before,
  .cf .cf_cta .cta_title .wrap:after {
    bottom: 0;
  }
}
.cf .cf_cta .cta_title .wrap:before {
  transform: rotate(-30deg);
  left: -25px;
}
@media (max-width: 699px) {
  .cf .cf_cta .cta_title .wrap:before {
    left: -20px;
  }
}
.cf .cf_cta .cta_title .wrap:after {
  transform: rotate(30deg);
  right: -25px;
}
@media (max-width: 699px) {
  .cf .cf_cta .cta_title .wrap:after {
    right: -20px;
  }
}
.cf .cf_cta .cta_title .wrap .medi {
  font-size: 0.8em;
}
.cf .cf_cta .cta_title .wrap .mark {
  background: linear-gradient(0deg, #fffb88 0%, #fffb88 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
}
.cf .cf_cta .time_label {
  border: 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.6rem;
  padding: 0 20px;
  border-radius: 50px;
  background: #ec2e21;
  color: #fff;
}
@media (max-width: 699px) {
  .cf .cf_cta .time_label {
    width: 100%;
    line-height: 1.2;
    padding: 5px 0;
    white-space: nowrap;
  }
}
.cf .cf_cta .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec2e21;
  font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: bold;
  font-size: clamp(3.4rem, 4vw, 4.8rem);
  line-height: 1;
  gap: 10px;
}
@media (max-width: 699px) {
  .cf .cf_cta .tel {
    margin-bottom: 5px;
  }
}
.cf .cf_cta .tel:before {
  content: "";
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url(../img/free.svg);
  mask-image: url(../img/free.svg);
  background: #ed0000;
  width: 60px;
  height: 60px;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
}

.tel_num {
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .tel_num p {
    position: absolute;
    top: 10%;
    left: 30%;
    white-space: nowrap;
    font-size: 5.2rem;
    font-family: "Oswald", "Helvetica Neue", Helvetica, "Arial", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    color: #d01a0d;
    padding-top: 20px;
    font-weight: 600;
    letter-spacing: -0.08rem;
  }
}
@media (max-width: 699px) {
  .cf .cf_cta .tel:before {
    content: none;
  }
}
.cf .cf_cta .tel .medi {
  font-size: 0.8em;
}

.form_table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  border-bottom: 1px solid #ccc;
}
.form_table th,
.form_table td {
  border-top: 1px solid #ccc;
  text-align: left;
  padding: 1em;
}
@media (max-width: 699px) {
  .form_table th,
  .form_table td {
    padding: 1em 0.5em;
  }
}
.form_table th .flex,
.form_table td .flex {
  justify-content: flex-start;
}
@media (max-width: 699px) {
  .form_table th .flex.place,
  .form_table td .flex.place {
    flex-direction: column;
  }
}
.form_table th .flex.postal_wrap,
.form_table td .flex.postal_wrap {
  gap: 5px;
}
.form_table th .flex.postal_wrap .wrap,
.form_table td .flex.postal_wrap .wrap {
  white-space: nowrap;
  width: 30%;
}
@media (max-width: 699px) {
  .form_table th .flex.postal_wrap .wrap,
  .form_table td .flex.postal_wrap .wrap {
    width: 40%;
  }
}
.form_table th .flex.postal_wrap .w100,
.form_table td .flex.postal_wrap .w100 {
  width: calc(100% - 1.5em);
}
.form_table th .w50,
.form_table td .w50 {
  width: 50%;
}
.form_table th .w100,
.form_table td .w100 {
  width: 100%;
}
.form_table th input,
.form_table th select,
.form_table td input,
.form_table td select {
  padding: 0.5em;
  border: 1px solid #a8439f;
  border-radius: 6px;
  background: #f8eff7;
}
.form_table th .caution,
.form_table td .caution {
  font-size: 1.5rem;
  color: #666;
}
.form_table th .caution.red,
.form_table td .caution.red {
  color: #ed0000;
}
.form_table th .bg,
.form_table td .bg {
  background: #fff;
  padding: 0.5em;
  border: 1px solid #eee;
  border-radius: 5px;
}
@media (max-width: 699px) {
  .form_table th .bg,
  .form_table td .bg {
    display: block;
  }
}
.form_table th {
  width: 30%;
  font-size: 1.8rem;
}
@media (max-width: 699px) {
  .form_table th {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
}
.form_table td {
  width: 70%;
}
@media (max-width: 699px) {
  .form_table td {
    display: block;
    width: 100%;
    border-top: 0;
  }
}
.form_table.gray {
  background: #f8f8f8;
  padding: 40px 20px;
  border: 0;
}
@media (max-width: 699px) {
  .form_table.gray {
    padding: 20px 10px 10px;
  }
}
.form_table.gray tr:first-of-type th,
.form_table.gray tr:first-of-type td {
  border: 0;
}

.hissu,
.nini {
  position: relative;
}
.hissu:after,
.nini:after {
  background: #7a3796;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  padding: 5px;
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
}
@media (max-width: 699px) {
  .hissu:after,
  .nini:after {
    position: unset;
    margin-left: 8px;
  }
}

.hissu:after {
  content: "必須";
}

.nini:after {
  content: "任意";
  background: #666;
}

.error-message {
  color: #ed0000;
  font-weight: bold;
}

.submit {
  background: #ed0000;
  color: #fff;
  text-align: center;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 0 6px 0 #870000;
  border: 0;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
  line-height: 1.2;
}
.pp_agree {
  margin-bottom: 20px;
  text-align: center;
}

.pp_agree a {
  color: rgb(122, 55, 150);
  text-decoration: underline;
}

.footer {
  background: #f9f9f9;
  padding-bottom: 110px;
}
.footer .inner.flex {
  font-size: 1.6rem;
  align-items: flex-end;
}
@media (max-width: 699px) {
  .footer .inner.flex {
    flex-direction: column;
  }
}
.footer .logo {
  width: 150px;
  margin-bottom: 30px;
}
.footer .logo img {
  width: 100%;
  height: auto;
}
.footer .area_group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 699px) {
  .footer .area_group {
    display: block;
  }
}
.footer .area_group .area_name {
  border-left: 6px solid #7a3796;
  padding: 2px 10px;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  min-width: 80px;
}
.footer .area_group .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 0 10px;
}
@media (max-width: 699px) {
  .footer .area_group .wrap {
    grid-template-columns: 1fr;
  }
}
.footer .area_group .wrap dt {
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.4rem);
}
.footer .area_group .wrap dt:before {
  content: "\f054";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  font-size: 0.9em;
  padding-right: 5px;
  color: #7a3796;
}
.footer .area_group .wrap dd {
  font-size: clamp(1.3rem, 3vw, 1.4rem);
}
.footer .mark {
  text-align: right;
  margin-bottom: 20px;
}
.footer .copy {
  text-align: center;
  font-size: 1rem;
}
@media (max-width: 699px) {
  .footer .mark {
    text-align: center;
  }
}
/*----------------------------------------------------
	電話アニメーション
----------------------------------------------------*/
.tel_anime {
  width: 40px;
  height: 40px;
  transform: none !important;
  will-change: auto;
}

.tel_anime svg {
  width: 90%;
  height: 90%;
  fill: #d01a0c;
  transform: none !important;
}
.tel_anime svg .line1 {
  -webkit-animation: fillAnimation1 infinite ease 1.5s;
  animation: fillAnimation1 infinite ease 1.5s;
}
.tel_anime svg .line2 {
  -webkit-animation: fillAnimation2 infinite ease 1.5s;
  animation: fillAnimation2 infinite ease 1.5s;
}
.tel_anime svg .line3 {
  -webkit-animation: fillAnimation3 infinite ease 1.5s;
  animation: fillAnimation3 infinite ease 1.5s;
}
@-webkit-keyframes fillAnimation1 {
  30%,
  60% {
    fill-opacity: 0;
  }
  80% {
    fill-opacity: 1;
  }
}
@keyframes fillAnimation1 {
  30%,
  60% {
    fill-opacity: 0;
  }
  80% {
    fill-opacity: 1;
  }
}
@-webkit-keyframes fillAnimation2 {
  40%,
  70% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
@keyframes fillAnimation2 {
  40%,
  70% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
@-webkit-keyframes fillAnimation3 {
  50%,
  80% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
@keyframes fillAnimation3 {
  50%,
  80% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
@media (min-width: 769px) {
  .tel_num .tel_anime {
    display: none;
  }
}
@media (max-width: 768px) {
  .tel .tel_num p {
    display: none;
  }
}
/*----------------------------------------------------
	確認完了画面
----------------------------------------------------*/
.mail_btn {
  flex: 1;
  border-radius: 5px;
  border: 0;
  padding: 15px;
  color: #fff;
  background: linear-gradient(to right, #640087 0%, #a8439f 100%);
  position: relative;
  cursor: pointer;
}
.mail_btn:after {
  content: "\f058";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  transform: translateY(-50%);
  top: 50%;
}
.mail_btn.back {
  background: #9597a5;
}

/*----------------------------------------------------
	改行
----------------------------------------------------*/
@media (min-width: 1100px) {
  .pc_hide {
    display: none !important;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .tab_hide {
    display: none !important;
  }
}
@media (max-width: 699px) {
  .sp_hide {
    display: none !important;
  }
}
@media print and (min-width: 1100px) {
  .pc_hide {
    display: none !important;
  }
}
@media print and (min-width: 768px) and (max-width: 1100px) {
  .tab_hide {
    display: none !important;
  }
}
@media print and (max-width: 699px) {
  .sp_hide {
    display: none !important;
  }
}
@media print {
  .footer_cta.fixed {
    display: none;
  }
  .cta .inner .tel_box .tel_num .num,
  .cta_set .tel_box .tel_num .num {
    font-size: 6rem;
    white-space: nowrap;
  }
  .cta_set .cta_wrap {
    flex-direction: column;
    align-items: center;
  }
}
.cta_set .cta_left {
  width: 100%;
  max-width: 720px;
}

/* 右から出現/退場の基本 */
#spJumpNav {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 999;
  /* 非表示状態 */
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  will-change: opacity, transform;
}

#spJumpNav.is-show {
  transform: translateX(0) !important;
  opacity: 1 !important;
  pointer-events: auto;
}

.sp_jumpnav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 65px;
  height: 65px;
  margin-bottom: 4px;
  border-radius: 50%;
  border: 4px solid #fff;
  background-color: #e7d6ee;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.sp_jumpnav__btn img {
  display: block;
  max-width: 100%;
}
.sp_jumpnav__btn:active {
  transform: translateY(1px);
}

.other_company__content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #f6eff8;
  padding: 0 40px 24px;
}

.other_company__body {
  padding: 20px 6px 0;
}

/* ===== content ===== */
/* ===== 吹き出し本体（白・上付き） ===== */
.other_company__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  width: 80%;
  margin: auto;
  text-align: center;
  z-index: 1;
  font-size: 3.2rem;
  background: #ffffffd9;
  border-radius: 140px;
}
@media (max-width: 699px) {
  .other_company__title {
    width: 100%;
  }
}
/* 強調文字 */
.other_company__title.balloon-top .is-red {
  color: #ed0000;
}

.other_company__title.balloon-top::after {
  content: "";
  position: absolute;
  left: 23%;
  bottom: -8px;
  width: 22px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}

.other_company__title .balloon-tail {
  position: absolute;
  left: 22%;
  bottom: -16px;
  width: 12px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}

.other_company__intro {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: center;
  background: #f4eef7;
  border-radius: 14px;
  padding: 0;
  width: 64%;
  margin: 0 auto;
}

.other_company__illust img {
  width: 84%;
  height: auto;
  display: block;
}

.other_company__lead {
  margin: 0 0 6px;
  color: #640087;
  font-size: 2.4rem;
}

.other_company__desc {
  margin: 0;
  line-height: 1.8;
  font-size: 1.6rem;
}

.other_company__redbar {
  background: #7a3796;
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 12px 0px 0;
  border-radius: 10px;
  margin: 0 auto;
  width: 80%;
}
.other_company__redbar p {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 10px;
  padding: 0;
  line-height: 1.4;
}

.other_company__notes {
  list-style: none;
  margin: 0 0 16px;
  background: #fff;
  color: #333;
  padding: 2% 6%;
  text-align: left;
}
@media (max-width: 699px) {
  .other_company__redbar {
    width: 100%;
  }
  .other_company__body {
    padding: 0px 6px 0;
  }
  .other_company__title {
    background: none;
  }
  .other_company__notes {
    padding: 2% 4%;
  }
}

.other_company__notes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 4px;
  font-size: clamp(1.7rem, 3vw, 1.9rem);
  line-height: 1.6;
}
@media (max-width: 699px) {
  .other_company__notes li {
    display: block;
  }
}

.other_company__notesSub {
  font-size: 12px;
  opacity: 0.8;
  padding-left: 54px !important;
}
@media (max-width: 699px) {
  .other_company__notesSub {
    padding-left: 0px !important;
  }
}

.tag {
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  white-space: nowrap;
  flex: 0 0 auto;
}
.tag i {
  margin-right: 4px;
}

.tag--warn {
  background: #d60000;
}

.tag--ok {
  background: #d60000;
} /* 同色にしたいなら同じでOK */
/* ===== table wrapper ===== */
.other_company__tableWrap {
  width: 100%;
  margin-top: 16px;
}

/* アイコン系を最前面に */
.other_company .js-scrollable .scroll-hint-icon-wrap,
.other_company .js-scrollable .scroll-hint-icon,
.scroll-hint-icon:after {
  z-index: 9999;
  pointer-events: none;
  opacity: 0.8 !important;
}

/* 指をセンター基準で左右にふわっと */
.other_company .js-scrollable .scroll-hint-icon::before {
  -webkit-animation: scrollHintSwing 3.4s ease-in-out infinite !important;
  animation: scrollHintSwing 3.4s ease-in-out infinite !important;
  will-change: transform;
}

@-webkit-keyframes scrollHintSwing {
  0% {
    transform: translateX(-60%);
    opacity: 0.6;
  }
  35% {
    transform: translateX(60%);
    opacity: 1;
  }
  65% {
    transform: translateX(60%);
    opacity: 1;
  }
  100% {
    transform: translateX(-60%);
    opacity: 0.6;
  }
}

@keyframes scrollHintSwing {
  0% {
    transform: translateX(-60%);
    opacity: 0.6;
  }
  35% {
    transform: translateX(60%);
    opacity: 1;
  }
  65% {
    transform: translateX(60%);
    opacity: 1;
  }
  100% {
    transform: translateX(-60%);
    opacity: 0.6;
  }
}
.scroll-hint-text {
  white-space: nowrap;
}

/* ===== table ===== */
.other_company__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #e6d6ee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  font-size: clamp(1.7rem, 3vw, 1.8rem);
}

.other_company__table th,
.other_company__table td {
  padding: 8px;
  border-right: 2px solid #e6d6ee;
  border-bottom: 2px solid #e6d6ee;
  vertical-align: middle;
  text-align: center;
}

.other_company__table th:last-child,
.other_company__table td:last-child {
  border-right: none;
}

.other_company__table tr:last-child td {
  border-bottom: none;
}

/* 見出し */
.other_company__table th {
  background: #726073;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

/* 紫セル */
.other_company__table .is-purple {
  background: #a497a5;
  color: #fff;
}

/* 文章セル */
.other_company__table .is-text {
  text-align: left;
  line-height: 1.7;
  font-size: clamp(1.5rem, 3vw, 1.6rem);
}

/* ===== SP：横スワイプ ===== */
@media (max-width: 767px) {
  .other_company__tableWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .other_company__table {
    min-width: 720px; /* ←ここが重要：横スクロールを発生させる */
  }
}
@media (max-width: 767px) {
  .other_company__title {
    position: relative;
    display: block;
    text-align: center;
    min-height: 120px;
    padding: 30px 0 0;
    line-height: 1.3;
    z-index: 1;
    font-size: 2.5rem;
  }
  /* 下円弧（そのまま） */
  .other_company__title.balloon-top::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 110vw;
    height: 120px;
    background: #fff;
    border-radius: 0 0 120% 120%;
    z-index: -1;
  }
  /* しっぽ（そのまま） */
  .other_company__title.balloon-top::after {
    content: "";
    position: absolute;
    left: 20%;
    bottom: -11px;
    width: 22px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
  }
  .other_company__title .balloon-tail {
    position: absolute;
    left: 17%;
    bottom: -20px;
    width: 12px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
  }
}
/* ===== responsive ===== */
@media (max-width: 640px) {
  .other_company__content {
    padding: 0 12px 18px;
  }
  .other_company__intro {
    grid-template-columns: 110px 1fr;
    padding: 12px;
    display: block;
    width: 90%;
  }
  .other_company__grid {
    grid-template-columns: 1fr; /* SPは縦積みにする例（必要なら維持でもOK） */
  }
  .gridHead,
  .gridCell {
    border-right: 0;
  }
  .gridHead {
    display: none; /* SP縦積みなら見出しは別設計が楽 */
  }
  .other_company__lead {
    line-height: 1.4;
    font-size: 2.2rem;
    margin-left: 80px;
    line-height: 1.3;
  }
  .other_company__illust img {
    position: absolute;
    width: 25%;
    top: -20px;
    z-index: 99;
    left: 0;
  }
  .other_company__desc {
    margin: 20px 0 0;
  }
}
/*# sourceMappingURL=common.css.map */
