@charset "UTF-8";
/**---------------------------------------------
 * 画像処理
  <figure class="image-1by1">
    <img src="/assets/image/600x600.webp">
  </figure>

**-----------------------------------------------*/
.image-1by1,
.image-1by2,
.image-2by3,
.image-3by4 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.image-1by1 img,
.image-1by2 img,
.image-2by3 img,
.image-3by4 img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}

.image-1by1::before {
  padding-top: 100%;
  /* 1:1 aspect ratio (height / width * 100%) ...1/1*100=100  */
  content: "";
  display: block;
}

.image-1by2::before {
  padding-top: 50%;
  /* 1:2 aspect ratio (height / width * 100%) ...1/2*100=0.5  */
  content: "";
  display: block;
}

.image-2by3::before {
  padding-top: 66.66%;
  /* 2:3 aspect ratio (height / width * 100%) ...66.666/100*100=66.66666  */
  content: "";
  display: block;
}

.image-3by4::before {
  padding-top: 75%;
  /* 2:3 aspect ratio (height / width * 100%) ...75/100*100=75  */
  content: "";
  display: block;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2列のグリッドを作成 */
}

form .field-body {
  display: flex;
  flex-direction: column !important;
}

.radio + .radio {
  margin-inline-start: 1.5em;
}

.accordion .accordion-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion .accordion-toggle::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 12px;
  height: 12px;
  background-image: url("/assets/image/caret-down.svg"); /* 画像のパスを更新 */
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.accordion li.is-active .accordion-toggle::after {
  transform: rotate(180deg);
}
.accordion div.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion.news a.accordion-toggle {
  color: hsl(221, 14%, 29%);
  line-height: 3.2;
  border-bottom: 1px solid hsl(221, 14%, 86%);
}

/* フェードインのアニメーション */
@keyframes fadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 背景色のトランジション */
.page-transition {
  animation: fadeIn 0.3s ease-in-out forwards;
  animation-delay: 0.5s; /* 2秒のディレイを追加 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(232, 232, 232); /* ここで背景色を指定 */
  opacity: 1;
  pointer-events: none;
  z-index: 9999;
}

/* フェードアウトのアニメーション */
@keyframes fadeOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 背景色のトランジション */
.page-transition-fade-out {
  animation: fadeOut 0.4s ease-in-out forwards;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(232, 232, 232); /* ここで背景色を指定 */
  opacity: 1;
  pointer-events: none;
  z-index: 9999;
}

/**---------------------------------------------
 * ローディング画面
**-----------------------------------------------*/
#modal-loading .ph.ph-circle-notch {
  color: hsl(42, 100%, 53%);
  font-size: 3rem;
  z-index: 41;
  animation: rotate 1s linear infinite;
  display: inline-block;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal-content main {
  width: initial;
  float: initial;
  text-align: initial;
}

.is-size-7 {
  font-size: 0.8rem;
}

.has-font-weight-bold {
  font-weight: bold;
}

.top_side_plan_banner {
  width: 100%;
  height: 126px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  border: 5px solid rgb(90, 12, 35);
  margin-bottom: 5px;
}
.top_side_plan_banner img.back-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: scale(1.6);
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.top_side_plan_banner .textbox {
  position: absolute;
  right: 0;
  text-align: right;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 0.5em;
  text-shadow: #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px -2px 2px, #fff -2px 0px 2px, #fff 2px 2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff -2px -2px 2px, #fff 1px 2px 2px, #fff -1px 2px 2px;
  line-height: 1.6;
}
.top_side_plan_banner .textbox .title,
.top_side_plan_banner .textbox .subtitle {
  font-family: "Noto Serif JP", serif;
  color: #000;
}
.top_side_plan_banner .textbox .title {
  font-size: 32px;
  font-weight: bold;
}
.top_side_plan_banner .textbox .subtitle {
  font-size: 14px;
  font-weight: normal;
}
.top_side_plan_banner .textbox .price {
  font-size: 26px;
  color: rgb(90, 12, 35);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top_side_plan_banner .textbox .price .tax-inc {
  box-sizing: border-box;
  border: 1px solid rgb(90, 12, 35);
  border-radius: 3px;
  margin-left: 0.2rem;
  padding-left: 2px;
  padding-right: 2px;
}

.is-serif {
  font-family: "Noto Serif JP", serif;
}

/**---------------------------------------------
 * プランコンセプト
**-----------------------------------------------*/
.container-concept {
  position: relative;
}
.container-concept img {
  position: absolute;
  width: 100%;
  height: auto;
}
.container-concept .concept_inner h3 {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
}
.container-concept .concept_inner h3,
.container-concept .concept_inner p {
  text-shadow: #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px -2px 2px, #fff -2px 0px 2px, #fff 2px 2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff -2px -2px 2px, #fff 1px 2px 2px, #fff -1px 2px 2px;
}
.container-concept.flower .element_container, .container-concept.message .element_container, .container-concept.oneday .element_container {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
}
@media screen and (max-width: calc(769px - 1px)) {
  .container-concept.flower .element_container, .container-concept.message .element_container, .container-concept.oneday .element_container {
    bottom: 1rem;
    left: 2rem;
  }
}
.container-concept.family .element_container {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
}
@media screen and (max-width: calc(769px - 1px)) {
  .container-concept.family .element_container {
    top: 1rem;
    left: 2rem;
  }
}

.container-plan {
  margin-bottom: 3rem;
}
.container-plan .contain_btn {
  cursor: pointer;
  padding: 8px 0;
  font-family: serif;
  font-size: 24px;
  text-align: center;
  color: #ffffff;
  background-color: rgb(90, 12, 35);
}
.container-plan .contain_box {
  display: none;
}
.container-plan .contain_list {
  display: flex;
  margin-top: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.container-plan .contain_list li {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.container-plan .contain_list li img {
  margin-bottom: 0.5em;
}
.container-plan .contain_list li.x1 {
  width: 200px;
}
.container-plan .contain_other {
  padding: 5px;
  margin-bottom: 0.7em;
  font-family: serif;
  font-size: 20px;
  text-align: center;
  color: #ffffff;
  background-color: #1e3274;
}
.container-plan .flower-feature {
  background-color: #fff;
  padding: 0.2rem 0.4rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
}
.container-plan .flower-feature div.feature-comment {
  white-space: nowrap;
  font-size: 0.8rem !important;
  line-height: 1.4;
  text-align: center;
}
.container-plan .flower-feature div:last-child {
  width: 6rem;
}
.container-plan .under-flower {
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(rgba(0, 0, 0, 0) 65%, #d6d1c5 65%);
}
.container-plan .under-message {
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(rgba(0, 0, 0, 0) 65%, #d6d1c5 65%);
}
.container-plan .under-oneday {
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(rgba(0, 0, 0, 0) 65%, #d9f7cd 65%);
}
.container-plan .under-family {
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(rgba(0, 0, 0, 0) 65%, #f7eacd 65%);
}

/**---------------------------------------------
 * 電話ボタン
**-----------------------------------------------*/
.btnPhone01 {
  margin: 0 auto;
  width: 280px;
}
.btnPhone01 .tag {
  background-color: #fff;
  border: 1px solid rgb(90, 12, 35);
  color: rgb(90, 12, 35);
  font-size: 1rem;
  width: 136px;
}
.btnPhone01 .tag p {
  margin: 0;
  font-weight: 600;
}
@media screen and (max-width: calc(769px - 1px)) {
  .btnPhone01 .phone-number {
    white-space: nowrap;
  }
}

.tag.is-primary.has-text-white {
  padding-top: 3px !important;
}
/*# sourceMappingURL=style.css.map */
