@charset "UTF-8";
/* CSS Document */
.plan-firstview {
  margin-bottom: 120px;
}
.plan-firstview img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.for-pc {
  display: block;
}
.for-sp {
  display: none;
}
@media only screen and (max-width : 767px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: block;
  }
  .header {
    margin-bottom: 0;
  }
}
/*////////マヨルカ冒頭文//////////////*/
.header-explanation {
  text-align: center;
  margin-bottom: 120px;
  padding: 0 2%;
}
.header-explanation__title,
.header-explanation__body {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
}
.header-explanation__title {
  margin: 0 auto;
  color: #5a4e3d;
  font-size: 32px;
  line-height: 1.59;
  letter-spacing: 0.09em;
}
.header-explanation__body {
  margin: 16px auto 0;
  color: #767373;
  font-size: 13px;
  line-height: 2.22;
  letter-spacing: 0.09em;
  max-width: 450px;
}
.header-explanation__gold {
  color: #9b7c46;
  font-size: 32px;
  font-weight: 600;
}
.header-explanation__pink {
  color: #c48a8b;
  font-size: 32px;
  font-weight: 600;
}
.sp-only { 
  display: none;
}
@media only screen and (max-width: 767px) {
  .plan-firstview {
    margin-bottom: 90px;
  }
  .header-explanation__title {
    max-width: none;
    font-size: clamp(16.5px, 5.2239vw, 21px);
    line-height: 1.63;
    letter-spacing: 0.09em;
  }
  .header-explanation__title .header-explanation__line {
    white-space: nowrap;
  }
  .header-explanation__body {
    line-height: 2.22;
    letter-spacing: 0.09em;
  }
  .header-explanation__gold {
  font-size: 21px;
}
.header-explanation__pink {
  font-size: 21px;
}
  .sp-only {
    display: inline;
  }
}

/*////////ふたりの一日を彩るロケーション//////////////*/

.scenes_of_mallorca_title--pc {
  display: block;
}

.scenes_of_mallorca_title--sp {
  display: none;
}


.scenes_of_mallorca_title {
  width: min(70%, 1000px);
  margin: 0 auto 120px;
  text-align: center;
}

.scenes_of_mallorca_title img {
  display: block;
  width:70%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .scenes_of_mallorca_title--pc {
    display: none;
  }

  .scenes_of_mallorca_title--sp {
    display: block;
  }
  .scenes_of_mallorca_title img {
    width: 100%;
}
}

/* ロケーション一覧 */

.mallorca-locations {
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
}

.mallorca-location {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 620px);
  align-items: center;
  justify-content: space-between;
  column-gap: clamp(56px, 7vw, 120px);
  margin-bottom: 110px;
}

.mallorca-location:last-child {
  margin-bottom: 0;
}

.mallorca-location--image-left {
  grid-template-columns: minmax(0, 620px) minmax(180px, 220px);
}

/* テキスト */
.mallorca-location__text {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 220px;
  padding: 34px 4px 30px;
  box-sizing: border-box;
  background: none;
}

.mallorca-location__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -36px;
  width: calc(100% + 72px);
  height: 132px;
  background: #fafafa;
  z-index: -1;
}

.mallorca-location--image-right .mallorca-location__text {
  justify-self: end;
}

.mallorca-location--image-left .mallorca-location__text {
  justify-self: start;
}

.mallorca-location__en {
  margin: 0 0 10px;
  color: #b99a6b;
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.24em;
}

.mallorca-location__title {
  margin: 0 0 18px;
  color: #6e604e;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: left;
}

.mallorca-location__description {
  margin: 0;
  color: #767373;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  line-height: 2.0;
  letter-spacing: 0.06em;
}

/* 写真 */
.mallorca-location__image {
  width: 100%;
  margin: 0;
}

.mallorca-location__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* tablet */
@media only screen and (max-width: 900px) {
  .mallorca-location {
    grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
    column-gap: 44px;
  }

  .mallorca-location--image-left {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 210px);
  }

  .mallorca-location__text {
    max-width: 210px;
    padding: 30px 24px 26px;
  }

  .mallorca-location__text::before {
    left: -24px;
    width: calc(100% + 48px);
    height: 124px;
  }
}

/* sp */
@media only screen and (max-width: 767px) {
  .scenes_of_mallorca {
    margin-bottom: 120px;
  }

  .scenes_of_mallorca_title {
    width: calc(100% - 40px);
    margin: 0 auto 56px;
  }

  .mallorca-locations {
    width: 100%;
  }

  .mallorca-location,
  .mallorca-location--image-left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 90px;
    gap: 0;
  }
    .mallorca-location--image-right {
    flex-direction: column-reverse;
  }


  /* スマホでは全て 写真 → テキスト */
  .mallorca-location__image {
    width: calc(100% - 32px);
  }

  .mallorca-location--image-right .mallorca-location__image {
    margin-left: auto;
    margin-right: 0;
  }

  .mallorca-location--image-left .mallorca-location__image {
    margin-left: 0;
    margin-right: auto;
  }

  .mallorca-location__image img {
    aspect-ratio: 4 / 3;
  }

  .mallorca-location__text {
    width: 100%;
    max-width: none;
    padding: 30px 0 0;
    margin-top: -6px;
  }

  /* 2枚目のような見え方にするため背景を独立配置 */
  .mallorca-location__text::before {
    top: 0;
    left: 0;
    width: min(310px, calc(100vw - 56px));
    height: 120px;
    background: #fbfaf8;
  }

  .mallorca-location--image-right .mallorca-location__text {
    align-self: flex-start;
    padding-left: 32px;
  }

  .mallorca-location--image-left .mallorca-location__text {
    align-self: flex-start;
    padding-left: 30px;
  }

  .mallorca-location__en {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .mallorca-location__title {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .mallorca-location__description {
    font-size: 12px;
    line-height: 1.95;
  }
}

/*////////撮影エリアの一例//////////////*/

.mallorca-area {
  width: min(100% - 48px, 760px);
  margin: 110px auto 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

.mallorca-area__label {
  margin: 0 0 16px;
  color: #6e604e;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.mallorca-area__map {
  width: min(100%, 440px);
  margin: 0 auto;
}

.mallorca-area__map img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.mallorca-area__text {
  margin-top: 36px;
  color: #6e604e;
  font-size: 12px;
  line-height: 2.15;
  letter-spacing: 0.08em;
}

.mallorca-area__text p {
  line-height:2.9rem ;
}

.mallorca-area__note {
  margin-top: 26px !important;
  font-size: 16px;
}

.mallorca-area__sp-br {
  display: none;
}

@media only screen and (max-width: 767px) {

  .mallorca-area {
    width: calc(100% - 40px);
    margin-top: 90px;
  }

  .mallorca-area__label {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .mallorca-area__map {
    width: 100%;
    max-width: 350px;
  }

  .mallorca-area__text {
    margin-top: 28px;
  }
  .mallorca-area__text p {
    font-size: 14px;
    line-height: 2.9rem;
}

  .mallorca-area__note {
    margin-top: 22px !important;
    font-size: 10px;
    line-height: 2;
  }

  .mallorca-area__sp-br {
    display: block;
  }
}





/*////////マヨルカ島フォトプラン//////////////*/

.mallorca-photo-plan {
  width: min(100% - 48px, 960px);
  margin: 150px auto 160px;
  font-family: "Noto Serif JP", serif;
}

.mallorca-photo-plan__title {
  margin: 0 0 70px;
  color: #6e604e;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
}

.mallorca-photo-plan__title-en,
.mallorca-photo-plan__title-ja {
  display: inline;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 500;
}

/* PC：上3枚、下2枚 */
.mallorca-photo-plan__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 54px 32px;
}

.mallorca-photo-plan__card {
  grid-column: span 2;
  min-height: 315px;
  padding: 38px 30px 28px;
  border: 1px solid #b8925f;
  border-radius: 7px;
  box-sizing: border-box;
  text-align: center;
}

/* 4枚目を下段の中央寄りに配置 */
.mallorca-photo-plan__card:nth-child(4) {
  grid-column: 2 / span 2;
}

/* 5枚目 */
.mallorca-photo-plan__card:nth-child(5) {
  grid-column: 4 / span 2;
}

.mallorca-photo-plan__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  margin-bottom: 14px;
}

.mallorca-photo-plan__icon img {
  display: block;
  width: 58px;
  max-height: 70px;
  object-fit: contain;
}

.mallorca-photo-plan__heading {
  margin: 0;
  color: #6e604e;
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.mallorca-photo-plan__line {
  display: block;
  width: 104px;
  height: 1px;
  margin: 20px auto 18px;
  background-color: #e1d5c6;
}

.mallorca-photo-plan__text {
  margin: 0;
  color: #514c47;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 2.25;
  letter-spacing: 0.04em;
  text-align: left;
}
@media only screen and (max-width: 767px) {

  .mallorca-photo-plan {
    width: calc(100% - 36px);
    margin: 100px auto;
  }

  .mallorca-photo-plan__title {
    margin-bottom: 34px;
    line-height: 1.65;
  }

  .mallorca-photo-plan__title-en,
  .mallorca-photo-plan__title-ja {
    display: block;
    font-size: 20px;
  }

  .mallorca-photo-plan__list {
    display: block;
  }

  .mallorca-photo-plan__card,
  .mallorca-photo-plan__card:nth-child(4),
  .mallorca-photo-plan__card:nth-child(5) {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    margin-bottom: 24px;
    padding: 24px 20px;
    border-radius: 7px;
    text-align: left;
  }

  .mallorca-photo-plan__card:last-child {
    margin-bottom: 0;
  }

  .mallorca-photo-plan__icon {
    height: auto;
    min-height: 120px;
    margin: 0;
    padding-right: 18px;
    border-right: 1px solid #e1d5c6;
    box-sizing: border-box;
  }

  .mallorca-photo-plan__icon img {
    width: 44px;
    max-height: 62px;
  }

  .mallorca-photo-plan__content {
    padding-left: 20px;
  }

  .mallorca-photo-plan__heading {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
  }

  /* スマホでは見出し下の横線を消す */
  .mallorca-photo-plan__line {
    display: none;
  }

  .mallorca-photo-plan__text {
    font-size: 11px;
    line-height: 2.05;
  }
}

/*////////マヨルカ島フォトプラン料金//////////////*/

.mallorca-plan-price {
  width: min(100% - 48px, 720px);
  margin: 110px auto 60px;
  font-family: "Noto Serif JP", serif;
}

/* 料金画像 */
.mallorca-plan-price__image {
  width: 100%;
  margin: 0;
}

.mallorca-plan-price__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* 挙式相談 */
.mallorca-wedding-consultation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 70px;
  padding: 14px 34px;
  border-top: 1px solid #d8bd7d;
  border-bottom: 1px solid #d8bd7d;
  box-sizing: border-box;
}

.mallorca-wedding-consultation__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 72px;
  padding-right: 28px;
  border-right: 1px solid #d8bd7d;
  box-sizing: border-box;
}

.mallorca-wedding-consultation__icon img {
  display: block;
  width: 72px;
  height: auto;
}

.mallorca-wedding-consultation__text {
  margin: 0;
  padding-left: 42px;
  color: #9b7437;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {

  .mallorca-plan-price {
    width: calc(100% - 28px);
    margin: 80px auto 60px;
  }

  .mallorca-plan-price__image {
    width: 100%;
  }

  .mallorca-wedding-consultation {
    justify-content: flex-start;
    margin-top: 60px;
    padding: 14px 12px;
  }

  .mallorca-wedding-consultation__icon {
    flex: 0 0 70px;
    width: 70px;
    min-height: 72px;
    padding-right: 12px;
  }

  .mallorca-wedding-consultation__icon img {
    width: 48px;
  }

  .mallorca-wedding-consultation__text {
    padding-left: 22px;
    font-size: 11px;
    line-height: 1.9;
    letter-spacing: 0.06em;
  }
}

/*////////プランのポイント//////////////*/
.plan-point_icon_1 div, .plan-point_icon_2 div {
  text-align: center;
}
.plan-point_icon {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 60px 0;
}
.plan-point > .section-title {
  margin-bottom: 50px;
}
.plan-point {
  padding-bottom: 5%;
}
.plan-point_icon_1, .plan-point_icon_2 {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.plan-point_icon img {
  width: 120px;
  height: auto;
}
.plan-point h2 {
  padding-top: 0;
}
@media (max-width:768px) {
  .plan-point_icon {
    flex-direction: column;
    margin: 40px 0;
  }
  .plan-point h2 {
    padding-top: 30px;
    margin-bottom: 0;
  }
  .plan-point {
    margin-bottom: 90px;
  }
  .mimosa-only {
    flex-direction: column;
  }
  .plan-point_icon p {
    font-size: 1.4rem;
  }
  .none-br {
    display: none;
  }
  .hiedra-sample-movie {
    margin-bottom: 80px;
  }
  .hiedra-sample-movie_title {
    font-size: 2rem;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  .hiedra-sample-movie_placeholder p {
    font-size: 1.6rem;
  }
}
/*アコーディオン全体*/
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}
.toggle {
  display: none;
}
.Label { /*タイトル*/
  padding: 1em;
  display: block;
  color: #fff;
}
.lavel-gold {
  background-color: #CBA489;
}
.lavel-pink {
  background-color: #C48A8B;
}
.Label::before { /*タイトル横の矢印*/
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}
.Label, .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.content { /*本文*/
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.content_options {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}
.content a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 15px 0;
  background-color: #C48A8B;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  text-decoration: none;
}
.plan-included li.gap { margin: 10px 0; }
@media (max-width:768px) {
  .content_options img {
    width: 60%;
    padding-bottom: 30px;
  }
  .content_options {
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
  }
}
.toggle:checked + .Label + .content { /*開閉時*/
  height: auto;
  padding: 30px;
  transition: all .3s;
  background-color: #fff;
}
.toggle:checked + .Label::before {
  transform: rotate(-45deg) !important;
}
.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #6E604E;
}
.contact-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 60px;
  box-sizing: border-box;
}

.contact-button::before {
  content: none !important;
}

.contact-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  left: auto !important;

  width: 8px;
  height: 8px;

  background: none !important;
  border-top: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;

  transform: translateY(-50%) rotate(45deg);
}
@media (max-width:768px) {
.contact-button {
  font-size: 1.4rem;
  padding: 20px;
}
.contact {
  padding: 20px !important;
}
.contact-content {
  padding: 20px !important;
}
}
@media only screen and (max-width: 767px) {
  .contact-button {
    padding-right: 64px;
    padding-left: 24px;
    font-size: 13px;
  }

  .contact-button::after {
    right: 22px;
  }
}