/* Main Visual
    --------------------------------------------------------*/

.p-mv {
  padding-top: 20px;
  margin-bottom: 140px;
}

@media screen and (max-width: 767px) {
  .p-mv {
    padding-top: 40px;
    margin-bottom: 55px;
  }
}

.p-mv_logo {
  width: 300px;
  /* aspect-ratio: 133 / 129; */
  display: block;
  margin: -17px auto 66px;
}

@media screen and (max-width: 980px) {
  .p-mv_logo {
    /* width: 110px; */
    width: 200px;
    margin: -45px auto 76px;
  }
}

.p-mv_content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  /* top: 182px; */
  top: 250px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-mv_content {
    top: 155px;
  }
}

@media screen and (max-width: 767px) {
  .p-mv_title {
    font-size: 48px;
  }
}

.p-mv_ribbon {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.36em;
  position: relative;
  z-index: 1;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .p-mv_ribbon {
    font-size: 10px;
    margin-top: 10px;
  }
}

.p-mv_ribbon::before {
  content: "";
  width: 407px;
  height: 60px;
  background: url("../img/ribbon.svg") center/cover no-repeat;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-mv_ribbon::before {
    width: 216px;
    height: 32px;
  }
}

@media screen and (max-width: 767px) {
  .p-mv_slider {
    margin-bottom: 38px;
  }
}

.p-mv_slide {
    aspect-ratio: 1456 / 650;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
.p-mv_slide img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
  .p-mv_slide {
    aspect-ratio: 350 / 280;
    border-radius: 30px;
  }
}

.p-mv_slide::after {
  content: "";
  width: 304px;
  height: 192px;
  background: url("../img/weber_pc.png") center/cover no-repeat;
  position: absolute;
  right: 37px;
  bottom: 35px;
}

@media screen and (max-width: 767px) {
  .p-mv_slide::after {
    display: none;
  }
}

.p-mv_weber {
  width: 350px;
  height: 87px;
  margin: 0 auto;
}

/* News
    --------------------------------------------------------*/

.p-news {
  position: relative;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .p-news {
    margin-bottom: 60px;
  }
}

.p-news_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  position: absolute;
  top: 0;
  left: 28px;
}

@media screen and (max-width: 767px) {
  .p-news_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    position: relative;
    top: initial;
    left: initial;
    margin: 0 0 24px 3%;
  }
}

.p-news_subtitle {
  font-size: 16px;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .p-news_subtitle {
    font-size: 12px;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
    text-orientation: initial;
    margin-left: 0;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
}

.p-news_title {
  font: 700 73px "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@media screen and (max-width: 767px) {
  .p-news_title {
    font-size: 38px;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
    text-orientation: initial;
  }
}

.p-news_slider {
  padding-left: 275px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .p-news_slider {
    padding-left: 0;
    margin-bottom: 30px;
  }
}

.p-news_slide {
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .p-news_slide {
    width: 300px;
    gap: 8px;
  }
}

.p-news_slide:hover .p-news_img > img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.p-news_slide:hover .p-news_desc {
  color: var(--color-green);
}

.p-news_img {
  width: 100%;
  height: 260px;
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-news_img {
    height: 186px;
    border-radius: 30px;
  }
}

.p-news_img > img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.p-news_date{
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-news_date{
    font-size: 12px;
    margin-top: 8px;
  }
}
.p-news_desc {
  font-size: 18px;
  line-height: 1.5em;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .p-news_desc {
    font-size: 14px;
    line-height: 1.9285714286em;
  }
}
.p-news_no-posts {
  display: flex;
  align-items: center;
  width: 100%;
  height: 334px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-news_no-posts {
    height: 250px;
    transform: translateX(-45%);
  }
}
/* Concept
    --------------------------------------------------------*/

.p-concept {
  width: 100%;
  background: url("../img/bg_concept_pc.png") top right/cover no-repeat;
  border-bottom-right-radius: 180px;
  position: relative;
  padding-block: 360px 219px;
  margin-bottom: 154px;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-concept {
    background-image: url("../img/bg_concept_sp.png");
    border-bottom-right-radius: 30px;
    padding-block: 150px 80px;
    margin-bottom: 84px;
  }
}

.p-concept_title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 255px;
  left: -50px;
}

@media screen and (max-width: 767px) {
  .p-concept_title {
    top: 140px;
    left: -20px;
  }
}

.p-concept_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 113px;
}

@media screen and (max-width: 767px) {
  .p-concept_row {
    max-width: 310px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 40px auto;
  }
}

.p-concept_quote {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-concept_quote {
    margin: 0 auto 35px 0;
  }
}

.p-concept_quote::before,
.p-concept_quote::after {
  content: "";
  width: 47px;
  height: 34px;
  background: url("../img/ico_quote.svg") center/cover no-repeat;
  position: absolute;
}

@media screen and (max-width: 1200px) {
  .p-concept_quote::before,
  .p-concept_quote::after {
    width: 29px;
    height: 21px;
  }
}

.p-concept_quote::before {
  top: -15px;
  left: -70px;
}
@media screen and (max-width: 1200px) {
  .p-concept_quote::before {
    left: -34px;
  }
}

.p-concept_quote::after {
  right: -20px;
  bottom: -10px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .p-concept_quote::after {
    right: 0;
    bottom: -5px;
  }
}

.p-concept_quote > .fs32,
.p-concept_quote > .fs48 {
  color: var(--color-green);
  letter-spacing: 0.05em;
}

.p-concept_quote > .fs32 {
  font-size: 32px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-concept_quote > .fs32 {
    font-size: 16px;
  }
}

.p-concept_quote > .fs48 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.5em;
  display: inline-block;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .p-concept_quote > .fs48 {
    font-size: 24px;
    line-height: 1.5em;
    margin-top: 10px;
  }
}

.p-concept_desc {
  letter-spacing: 0.06em;
  color: #3B4043;
}

@media screen and (max-width: 767px) {
  .p-concept_desc {
    width: 100%;
    max-width: 310px;
  }
}

.p-concept_wrap {
  position: relative;
}
/* 
.p-concept_wrap::after {
  content: "";
  width: 278px;
  height: 248px;
  background: url("../img/family.svg") center/cover no-repeat;
  position: absolute;
  left: -90px;
  bottom: -100px;
}
@media screen and (max-width: 1024px) {
  .p-concept_wrap::after {
    left: -20px;
  }
}
@media screen and (max-width: 600px) {
  .p-concept_wrap::after {
    width: 122px;
    height: 110px;
    left: 2px;
    bottom: -44px;
  }
} */

.p-concept_img {
  width: 100%;
  aspect-ratio: 1060 /  818;
  border-radius: 80px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-concept_img {
    max-width: 350px;
    border-radius: 30px;
    margin: 0 auto;
  }
}

/* Select Menu
    --------------------------------------------------------*/

.p-select {
  margin-bottom: 240px;
}

@media screen and (max-width: 767px) {
  .p-select {
    margin-bottom: 140px;
  }
}

.p-select_title {
  margin-right: 4%;
}

.p-select_images {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-select_images {
    height: 238px;
  }
}

.p-select_img {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.p-select_img.is_active {
  opacity: 1;
  visibility: visible;
}

.p-select_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 527px;
  padding-left: 70px;
  padding-right: 15px;
}

@media screen and (max-width: 1024px) {
  .p-select_list {
    margin: 15px 0 0;
    gap: 0 34px;
    padding-inline: 4%;
    max-width: initial;
  }
}

.p-select_item {
  width: 100%;
  display: block;
  padding-block: 22px 13px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-select_item {
    width: calc(50% - 17px);
    padding-block: 20px 19px;
  }
}

.p-select_item:first-child {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .p-select_item:first-child {
    padding-top: 20px;
  }
}

.p-select_item::before,
.p-select_item::after {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-select_item::before {
  content: "";
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-green);
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 13px;
}

@media screen and (max-width: 767px) {
  .p-select_item::before {
    width: 24px;
    height: 24px;
  }
}

.p-select_item::after {
  content: "";
  width: 15px;
  height: 13px;
  background: url("../img/ico_arrow_blue.svg") center/cover no-repeat;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  right: 14px;
  bottom: 27px;
}

@media screen and (max-width: 767px) {
  .p-select_item::after {
    width: 9px;
    height: 8px;
    right: 9px;
    bottom: 23px;
  }
}

.p-select_item:hover::before {
  background-color: var(--color-green);
}

.p-select_item:hover::after {
  background-image: url("../img/ico_arrow_white.svg");
}

.p-select_en,
.p-select_jp {
  letter-spacing: 0.05em;
}

.p-select_en {
  font: 700 20px "Josefin Sans", sans-serif;
  color: var(--color-green);
  display: block;
  margin-bottom: 3px;
}

@media screen and (max-width: 767px) {
  .p-select_en {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

.p-select_jp {
  font-size: 24px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-select_jp {
    font-size: 14px;
  }
}

/* Point
    --------------------------------------------------------*/

.p-point {
  width: 95%;
  background: linear-gradient(-30deg, rgb(223, 214, 199) 0%, rgb(248, 243, 234) 50%, rgb(235, 227, 215) 100%);
  border-radius: 40px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-point {
    border-radius: 30px;
  }
}

.p-point::before {
  content: "";
  width: 259px;
  height: 177px;
  background: url("../img/deco.svg") center/cover no-repeat;
  position: absolute;
  top: -40px;
  right: 65px;
}

@media screen and (max-width: 1024px) {
  .p-point::before {
    width: 105px;
    height: 72px;
    top: -45px;
    right: 15px;
  }
}

.p-point::after {
  content: "";
  width: 194px;
  height: 223px;
  background: url("../img/sky.svg") center/cover no-repeat;
  position: absolute;
  left: 138px;
  bottom: -167px;
}

@media screen and (max-width: 1024px) {
  .p-point::after {
    width: 87px;
    height: 100px;
    left: 10px;
    bottom: -78px;
  }
}

.p-point_container {
  position: relative;
  padding-block: 200px 100px;
}

@media screen and (max-width: 767px) {
  .p-point_container {
    padding: 170px 9% 34px;
  }
}

.p-point_wrap {
  position: absolute;
  top: -65px;
  font-size: clamp(50px, -20.755px + 11.792vw, 100px);
  top: -0.7em;
  left: -58px;
}

@media (max-width: 1600px) {
  .p-point_wrap {
    left: 0;
  }
}
@media (max-width: 1380px) {
  .p-point_wrap {
    left: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-point_wrap {
    top: -60px;
    left: 3%;
  }
}

@media screen and (max-width: 600px) {
  .p-point_title::after {
    right: 40px;
  }
}

.p-point_intro {
  font-size: 20px;
  font-weight: 700;
  z-index: 1;
  -webkit-transform: translate(5px, -8px);
  transform: translate(5px, -8px);
}

@media screen and (max-width: 767px) {
  .p-point_intro {
    font-size: 16px;
    margin: 20px 0 0 14px;
  }
}

.p-point_intro > .num {
  font-size: 40px;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-point_intro > .num {
    font-size: 26px;
    margin: 5px 0 0 10px;
  }
}

.p-point_intro > .num::before {
  content: "";
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.62;
}

@media screen and (max-width: 767px) {
  .p-point_intro > .num::before {
    width: 36px;
    height: 36px;
  }
}

.p-point_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 140px 45px;
  padding-bottom: 83px;
}

@media screen and (max-width: 1024px) {
  .p-point_list {
    gap: 60px 0;
    padding-bottom: 0;
  }
}

.p-point_item {
  width: calc(50% - 22.5px);
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-point_item {
    width: 100%;
  }
}

.p-point_item:nth-child(even) {
  -webkit-transform: translateY(83px);
  transform: translateY(83px);
}

@media screen and (max-width: 1024px) {
  .p-point_item:nth-child(even) {
    -webkit-transform: initial;
    transform: initial;
  }
}

@media screen and (max-width: 1024px) {
  .p-point_item:nth-child(02) .p-point_content {
    margin-top: 40px;
  }
}

.p-point_num {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  width: 111px;
  height: 95px;
  position: absolute;
  top: -38px;
  right: -45px;
}

@media screen and (max-width: 1024px) {
  .p-point_num {
    width: 72px;
    height: 61px;
    top: -21px;
    right: -20px;
  }
}

.p-point_img {
  width: 100%;
  height: auto;
  aspect-ratio: 554/360;
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .p-point_img {
    border-radius: 30px;
  }
}

.p-point_content {
  width: calc(100% - 40px);
  margin: 45px auto 0;
}

@media screen and (max-width: 1024px) {
  .p-point_content {
    width: 100%;
    margin-top: 26px;
  }
}

.p-point_heading {
  width: 100%;
  height: 61px;
  background-color: rgb(255 255 255 / 62%);
  border-radius: 30px;
  margin-bottom: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-point_heading {
    height: 47px;
    margin-bottom: 20px;
  }
}

.p-point_subhead,
.p-point_head {
  font-weight: 700;
  color: var(--color-green);
}

.p-point_subhead {
  font-size: 16px;
  white-space: nowrap;
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-point_subhead {
    font-size: 12px;
    top: -10px;
  }
}

.p-point_head {
  font-size: 24px;
}

@media screen and (max-width: 1024px) {
  .p-point_head {
    font-size: 16px;
  }
}

.p-point_note {
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.p-point_btn {
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-point_btn {
    margin-top: 15px;
  }
}

/* Starry Sky
    --------------------------------------------------------*/

.p-sky {
  width: 100%;
  padding-block: 170px 22px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-sky {
    padding-block: 70px 35px;
  }
}
.p-sky::before {
  content: "";
  width: 100%;
  aspect-ratio: 1536 / 3000;
  max-height: 80%;
  background: url("../img/bg_starry-sky.png") center/cover no-repeat;
  position: absolute;
  top: 200px;
  left: 0;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}
.p-sky::after {
  content: "";
  width: 100%;
  height: 110%;
  /* background: url("../img/bg_stars.png") center/cover no-repeat; */
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(248, 243, 234, 1) 10%, rgba(90, 112, 148, 1) 30%, rgba(22, 59, 106, 1) 85%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

/* @media screen and (max-width: 767px) {
    .p-sky::after {
    height: 1792px;
    top: -156px;
    }
    } */

.p-sky_side {
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 232px;
  right: -12px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-sky_side {
    display: none;
  }
}

.p-sky_container {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-sky_container {
    padding-inline: 0;
  }
}

.p-sky_container::after {
  content: "";
  width: 139px;
  height: 139px;
  background: url("../img/sky_label.png") center/cover no-repeat;
  position: absolute;
  top: -115px;
  right: 0;
  -webkit-transform: rotate(6deg);
  transform: rotate(6deg);
}

@media screen and (max-width: 767px) {
  .p-sky_container::after {
    /* display: none; */
  }
}

.p-sky_title {
  display: block;
  margin: 0 auto 33px;
}

@media screen and (max-width: 767px) {
  .p-sky_title {
    text-align: right;
  }

}

.p-sky_heading {
  margin: 30px 5% 5%;
}

.p-sky_subhead,
.p-sky_head {
  display: block;
  font-weight: 700;
  text-align: center;
}

.p-sky_subhead {
  font-size: 18px;
  margin-bottom: 10px;
}
.p-sky_subhead > span{
  display: inline-block;
}
.p-sky_head {
  font-size: 38px;
}
@media screen and (max-width: 767px) {
  .p-sky_head {
    font-size: 26px;
  }
}
.p-sky_quote {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  max-width: 95%;
  width: fit-content;
  font-size: 32px;
  margin: 32px auto;
  padding: 0 60px;
}

@media screen and (max-width: 767px) {
  .p-sky_quote {
    font-size: 18px;
    font-size: 4.3vw;
    padding: 0 40px;
  }
}

.p-sky_quote::before,
.p-sky_quote::after {
  content: "";
  width: 47px;
  height: 34px;
  -webkit-mask-image: url('../img/ico_quote.svg');
  mask-image: url('../img/ico_quote.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: currentColor ;
  position: absolute;
}

@media screen and (max-width: 1200px) {
  .p-sky_quote::before,
  .p-sky_quote::after {
    width: 29px;
    height: 21px;
  }
}

.p-sky_quote::before {
  top: 0px;
  left: 0px;
}

.p-sky_quote::after {
  right: 0px;
  bottom: 0px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.p-sky_intro {
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-sky_intro {
    width: 95%;
  }
}
.p-sky_intro_title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 0;
  margin-bottom: 32px;

}
@media screen and (max-width: 767px) {
  .p-sky_intro_title {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.p-sky_intro_desc{
  max-width: 865px;
  margin-left: auto;
  margin-right: auto;
}
.p-sky_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-sky_row {
    flex-direction: column;
    margin-top: 35px;
    gap: 20px;
  }
}

.p-sky_row-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  row-gap: 70px;
}

@media screen and (max-width: 767px) {
  .p-sky_row-col {
    row-gap: 40px;
    width: 100%;
  }
}

.p-sky_row:not(:last-child) {
  margin-bottom: 70px;
}

.p-sky_col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-sky_col {
    width: 100%;
  }  
}
.p-sky_col-pl23 {
  padding-left: 23px;
}

.p-sky_col-full {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-sky_col-scroll {
    overflow-x: scroll;
  }
}

.p-sky_desc {
  max-width: 860px;
  margin: 30px auto 0;
}

.p-sky-evscope{
  margin-top: 80px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-sky-evscope{
    max-width: 95%;
    width: 100%;
    margin: 35px auto 0;
  }

}/*END SP以下 表示*/
.p-sky-evscope_img{
  position: relative;
  z-index: 2;
}
.p-sky-evscope_img img{
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .p-sky-evscope_img{
    position: relative;
    z-index: 2;
    transform: translateX(2.5%);
  }
  .p-sky-evscope_img img{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.p-sky-evscope_content{
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}
@media screen and (max-width: 767px) {
  .p-sky-evscope_content{
    padding: 30px 20px;
  }
}
.p-sky-evscope_content::before{
  content:"";
  width: 120%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -10%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-sky-evscope_content::before{
    width: 100%;
    left: 0;
  }
}
.p-sky-evscope_title{
  font-size: 20px;
  margin: 0 0 32px;
}
@media screen and (max-width: 767px) {
  .p-sky-evscope_title{
    font-size: 18px;
  }
}
  .p-sky-evscope_desc{
  width: 100%;
}
.p-sky_use {
  border: 1px solid #fff;
  border-radius: 40px;
  padding: 60px 50px;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .p-sky_use {
    width: 95%;
    padding: 40px 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}

.p-sky_use-title {
  font: 700 32px "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-bottom: 20px;
  background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 5px, transparent 5px, transparent 10px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .p-sky_use-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
}
.p-sky_use-title span{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-sky_use-title span{
    font-size: 14px;
  }
}
.p-sky_use_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-sky_use_row {
    flex-direction: column;
    margin-top: 35px;
    gap: 20px;
  }
}

.p-sky_use-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  row-gap: 70px;
}

@media screen and (max-width: 767px) {
  .p-sky_use-col {
    row-gap: 40px;
    width: 100%;
  }
}

.p-sky_use_row:not(:last-child) {
  margin-bottom: 70px;
}

.p-sky_use_col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-sky_use_col {
    width: 100%;
  }  
}
.p-sky_use_intro{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 2;
  margin-top: 0;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-sky_use_intro{
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.p-sky_use-list {
  padding: 40px;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.2);
}

.p-sky_use-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.p-sky_use-item:not(:last-child) {
  margin-bottom: 20px;
}

.p-sky_use-num {
  flex-shrink: 0;
  width: 36px;
  aspect-ratio: 1;
  /* height: 36px; */
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font: 700 18px "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-sky_use-desc {
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  .p-sky_content {
    padding-inline: 4%;
  }
}
.p-sky_figure {
  overflow-x: auto;
  padding: 0 15px;
}
.p-sky_figure figure {
  text-align: center;
  padding: 34px 50px;
  background-color: rgba(255, 255, 255, 0.63);
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-sky_figure {
    padding-bottom: 8px;
  }
  .p-sky_figure figure {
    padding: 20px;
    width: 855px;
    /* height: 446px; */
  }
}
.p-sky_figure_caption{
  margin-top: 10px;
  text-align: center;
  font-size: 10px;
  color: #fff;
}
.p-sky_note {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 2;
  color: #fff;
  margin-top: 0.5em;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .p-sky_note {
    font-size: 10px;
  }
}
.p-sky_list {
  margin-top: 52px;
  padding: 60px;
  border-radius: 40px;
  background: rgb(91, 157, 197);
  background: linear-gradient(0deg, rgba(217, 226, 226, 1) 0%, rgba(179, 189, 204, 1) 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-sky_list {
    padding: 20px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
} /*END SP以下 表示*/
.p-sky_list dl {
  display: flex;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  background-image: repeating-linear-gradient(90deg, #005181, #005181 5px, transparent 5px, transparent 10px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .p-sky_list dl {
    flex-direction: column;
  }
}
.p-sky_list dl dt {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #005181;
}
@media screen and (min-width: 768px) {
  .p-sky_list dl dt {
    width: 220px;
  }
}
.p-sky_list dl dd {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 2;
  color: #005181;
}
@media screen and (max-width: 767px) {
  .p-sky_list dl dd {
    font-size: 12px;
  }
}

.p-sky_list dl dt img {
  flex-shrink: 0;
}
/* BBQ Menu
    --------------------------------------------------------*/

.p-menu {
  background-color: #f8f3ea;
  border-radius: 0 0 140px 140px;
  padding-block: 74px 160px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-menu {
    border-radius: 0 0 30px 30px;
    padding-block: 25px 60px;
  }
}
.p-menu_wrap {
  display: flex;
  flex-direction: column;
}
.p-menu_wrapper:not(:last-child) {
  margin-bottom: 140px;
}

@media screen and (max-width: 767px) {
  .p-menu_wrapper:not(:last-child) {
    margin-bottom: 0;
  }
}

.p-menu_subtitle,
.p-menu_title {
  font-weight: 700;
  color: var( --color-red);
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.p-menu_subtitle {
  font-size: 24px;
  padding-inline: 16px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-menu_subtitle {
    font-size: 16px;
    padding-inline: 7px;
  }
}

.p-menu_subtitle::before,
.p-menu_subtitle::after {
  content: "";
  width: 1px;
  height: 30px;
  background-color: var( --color-red);
  position: absolute;
  top: 50%;
}

@media screen and (max-width: 767px) {
  .p-menu_subtitle::before,
  .p-menu_subtitle::after {
    height: 18px;
  }
}

.p-menu_subtitle::before {
  left: -6px;
  -webkit-transform: translateY(-50%) rotate(-25deg);
  transform: translateY(-50%) rotate(-25deg);
}

.p-menu_subtitle::after {
  right: -6px;
  -webkit-transform: translateY(-50%) rotate(25deg);
  transform: translateY(-50%) rotate(25deg);
}

.p-menu_title {
  font-size: 38px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .p-menu_title {
    font-size: 24px;
  }
}

.p-menu_intro {
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .p-menu_intro {
    font-size: 14px !important;
    margin-top: 25px;
  }
}

.p-menu_note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin-block: 70px 60px;
}

@media screen and (max-width: 767px) {
  .p-menu_note {
    gap: 30px 10px;
    margin-block: 50px 25px;
  }
}

.p-menu_note-item {
  width: 280px;
  height: 60px;
  background-color: var(--color-green);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-menu_note-item {
    width: 160px;
    height: 50px;
    font-size: 12px;
    border-radius: 25px;
  }
}

.p-menu_note-icon {
  position: absolute;
  left: 50%;
  bottom: 85%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px 40px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-menu_list {
    gap: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .p-menu_list-01 {
    padding-bottom: 106px;
  }
}

.p-menu_list-01::after {
  content: "";
  width: 212px;
  height: 189px;
  background: url("../img/vector_01.svg") center/cover no-repeat;
  position: absolute;
  left: -70px;
  bottom: -124px;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

@media screen and (max-width: 1024px) {
  .p-menu_list-01::after {
    width: 119px;
    height: 106px;
    left: 20px;
    bottom: -50px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-menu_list-01::after {
    bottom: 20px;
  }
}
.p-menu_list-02 {
  margin-bottom: 125px;
}

@media screen and (max-width: 1024px) {
  .p-menu_list-02 {
    margin-bottom: 62px;
  }
}

.p-menu_list-02::after {
  content: "";
  width: 135px;
  height: 108px;
  background: url("../img/vector_02.svg") center/cover no-repeat;
  position: absolute;
  right: -70px;
  bottom: -78px;
  -webkit-transform: rotate(7deg);
  transform: rotate(7deg);
}

@media screen and (max-width: 1024px) {
  .p-menu_list-02::after {
    width: 82px;
    height: 66px;
    right: 20px;
    bottom: -46px;
  }
}

.p-menu_item {
  width: calc(50% - 20px);
  min-height: 612px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  background-color: #ebe3d7;
  border-radius: 40px;
  padding: 40px;
}

@media screen and (max-width: 1024px) {
  .p-menu_item {
    width: 100%;
    min-height: auto;
    padding: 33px 31px;
    gap: 15px;
  }
}

.p-menu_item-full {
  width: 100%;
  min-height: 380px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (max-width: 1024px) {
  .p-menu_item-full {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-menu_item-full .p-menu_img {
  width: 480px;
  height: 300px;
  aspect-ratio: 480/300;
}

@media screen and (max-width: 1024px) {
  .p-menu_item-full .p-menu_img {
    width: 100%;
    height: auto;
  }
}

.p-menu_item-full .p-menu_label {
  top: -28px;
  right: -8px;
}

@media screen and (max-width: 1024px) {
  .p-menu_item-full .p-menu_label {
    top: -10px;
    right: -17px;
  }
}

.p-menu_item-full .p-menu_content {
  width: calc(100% - 500px);
}

@media screen and (max-width: 1024px) {
  .p-menu_item-full .p-menu_content {
    width: 100%;
  }
}

/* .p-menu_item-full .p-menu_wrap {
    margin-bottom: 17px;
    } */

.p-menu_item-mh570 {
  min-height: 570px;
}

@media screen and (max-width: 1024px) {
  .p-menu_item-mh570 {
    min-height: auto;
  }
}

.p-menu_img {
  width: 100%;
  height: auto;
  aspect-ratio: 430/224;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.p-menu_list-01 .p-menu_img {
  aspect-ratio: 430 / 268;
}

.p-menu_prep {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-green);
  text-align: center;
  min-width: 110px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 2px 20px;
  position: absolute;
  right: 16px;
  bottom: 12px;
}

@media screen and (max-width: 1024px) {
  .p-menu_prep {
    font-size: 12px;
    min-width: 80px;
    bottom: 14px;
  }
}

.p-menu_wrap {
  min-height: 240px;
  background-color: rgba(255, 255, 255, 0.48);
  border-radius: 30px;
  padding: 20px 30px;
  margin-bottom: 15px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-menu_wrap {
    min-height: auto;
    padding-inline: 20px;
  }
}

.p-menu_wrap-mh200 {
  min-height: 230px;
}

.p-menu_label {
  width: 92px;
  height: 92px;
  position: absolute;
  top: -15px;
  right: -20px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

@media screen and (max-width: 1024px) {
  .p-menu_label {
    width: 77px;
    height: 77px;
    top: -19px;
    right: -16px;
  }
}

.p-menu_heading {
  border-bottom: 1px dashed #c6c6c6;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: var(--color-green);
}

.p-menu_subhead,
.p-menu_head,
.p-menu_price {
  font-weight: 700;
  display: block;
}

.p-menu_subhead {
  font-size: 12px;
  /* margin-bottom: 6px; */
}

.p-menu_head > .fs14 {
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
  opacity: 0.5;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
  .p-menu_head > .fs14 {
    font-size: 10px;
  }
}
.p-menu_head{
  font-size: 28px;
  line-height: 1.5;
}
.p-menu_head > .fs20 {
  font-size: 20px;
}
.p-menu_price {
  font-size: 20px;
}

@media screen and (max-width: 1024px) {
  .p-menu_head {
    font-size: 22px;
  }
  .p-menu_head > .fs20{
    font-size: 18px;
  }
  .p-menu_price {
    font-size: 18px;
  }
}

.p-menu_desc {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .p-menu_desc {
    font-size: 12px;
    line-height: 1.5em;
  }
}
.p-menu_desc li {
  display: inline;
}
.p-menu_desc li::after {
  content: "/";
  display: inline-block;
  margin: 0 5px;
}
.p-menu_desc li:last-child::after {
  content: none;
}
.p-menu_price {
  color: var(--color-green);
  /* position: absolute;
    bottom: 20px; */
  margin-top: auto;
}

@media screen and (max-width: 1024px) {
  .p-menu_price {
    position: relative;
    bottom: initial;
  }
}

.p-menu_price > .fs12 {
  font-size: 12px;
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

@media screen and (max-width: 1024px) {
  .p-menu_price > .fs12 {
    display: block;
    margin-left: 0;
    -webkit-transform: initial;
    transform: initial;
  }
}

@media screen and (max-width: 1024px) {
  .p-menu_btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-menu_drink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px 60px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .p-menu_drink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-menu_drink::before {
  content: "";
  width: calc(100% - 150px);
  height: 438px;
  background-color: #fff;
  border-radius: 40px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .p-menu_drink::before {
    width: 100%;
    height: 552px;
    border-radius: 30px;
    top: auto;
    left: 50%;
    right: auto;
    bottom: -30px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0.61;
  }
}

.p-menu_drink-img {
  width: 406px;
  height: 320px;
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .p-menu_drink-img {
    width: 300px;
    height: 180px;
    border-radius: 30px;
  }
}

.p-menu_drink-content {
  width: 512px;
}

@media screen and (max-width: 1024px) {
  .p-menu_drink-content {
    width: 90%;
    min-width: 300px;
  }
}

.p-menu_drink-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px 20px;
  padding-block: 21px 17px;
  border-bottom: 1px dashed #c6c6c6;
}

@media screen and (max-width: 1024px) {
  .p-menu_drink-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-block: 25px 20px;
    row-gap: 5px;
  }
}

.p-menu_drink-item:first-child {
  padding-top: 0;
}

.p-menu_drink-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  min-width: 132px;
  background-color: var(--color-green);
  border-radius: 20px;
  padding: 8px;
}

@media screen and (max-width: 1024px) {
  .p-menu_drink-label {
    font-size: 12px;
    min-width: auto;
    padding: 4px 20px;
  }
}

.p-menu_drink-wrap {
  margin-top: 5px;
}

@media screen and (max-width: 1024px) {
  .p-menu_drink-wrap {
    width: 100%;
  }
}

.p-menu_drink-info {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green);
}

@media screen and (max-width: 1024px) {
  .p-menu_drink-info {
    font-size: 14px;
  }
}

.p-menu_drink-desc {
  font-size: 14px;
  font-weight: 600;
  line-height: 2em;
  margin-block: 12px 10px;
}

.p-menu_drink-btn {
  margin-top: 20px;
}

.p-menu_drink-note {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-green);
  text-align: right;
  margin-top: 45px;
}

@media screen and (max-width: 1024px) {
  .p-menu_drink-note {
    font-size: 12px;
    margin-top: 40px;
  }
}

/* Plan
    --------------------------------------------------------*/

.p-plan {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(43, 127, 191)), color-stop(35%, rgba(39, 115, 172, 0.74)), to(rgba(203, 222, 232, 0)));
  background: linear-gradient(180deg, rgb(43, 127, 191) 0%, rgba(39, 115, 172, 0.74) 35%, rgba(203, 222, 232, 0) 100%);
  padding-block: 180px 110px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-plan {
    padding-block: 74px 60px;
  }
}

.p-plan::before {
  content: "";
  width: 100%;
  height: 140px;
  background-color: #2b7fbf;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: -1;
}

.p-plan::after {
  content: "";
  max-width: 1619px;
  width: 100%;
  background: url("../img/clouds_pc.svg") no-repeat center/ contain;
  position: absolute;
  top: 130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-plan::after {
    aspect-ratio: 1619 / 1418;
  }
}
@media (max-width: 1619px) and (min-width: 768px) {
  .p-plan::after {
    background-size: 105% 100%;
    left: unset;
    right: 0;
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .p-plan::after {
    width: 404px;
    height: 152px;
    background-image: url("../img/clouds_sp.svg");
    background-size: cover;
    top: 18px;
  }
}

@media screen and (max-width: 767px) {
  .p-plan_intro {
    display: none;
  }
}

.p-plan_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 80px 150px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-plan_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-block: 50px 60px;
  }
}

.p-plan_row::after {
  pointer-events: none;
  content: "";
  width: 345px;
  height: 286px;
  background: url("../img/illus.svg") center/cover no-repeat;
  position: absolute;
  right: -46px;
  bottom: -145px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-plan_row::after {
    display: none;
  }
}

.p-plan_images,
.p-plan_content {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-plan_images,
  .p-plan_content {
    width: 100%;
  }
}

.p-plan_main {
  width: 100%;
  aspect-ratio: 600/415;
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-plan_main {
    border-radius: 30px;
  }
}

.p-plan_img-row {
  width: 100%;
  height: 353px;
  position: relative;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-plan_img-row {
    height: unset;
    min-height: 213px;
    margin-top: 27px;
  }
}

.p-plan_img-row::after {
  content: "";
  width: 134px;
  height: 111px;
  background: url("../img/illus.svg") center/cover no-repeat;
  position: absolute;
  right: 0;
  bottom: -25px;
  display: none;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-plan_img-row::after {
    display: block;
    z-index: 3;
  }
}

.p-plan_img {
  border-radius: 40px;
  overflow: hidden;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .p-plan_img {
    border-radius: 30px;
  }
}

.p-plan_img-01 {
  width: 329px;
  /* height: 228px; */
  aspect-ratio: 329 / 228;
  left: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-plan_img-01 {
    width: 53%;
    /* height: auto; */
    top: 84px;
    bottom: initial;
  }
}

.p-plan_img-02 {
  width: 363px;
  aspect-ratio: 363 / 251;
  /* height: 251px; */
  top: 0;
  right: -40px;
  z-index: 2;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-plan_img-02 {
    width: 59%;
    /* height: auto; */
    right: 0;
  }
}

.p-plan_content {
  max-width: 500px;
  margin: 65px 0 0 auto;
  padding-left: 60px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .p-plan_content {
    width: 100%;
    padding-left: 0;
  }
}

.p-plan_btn {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .p-plan_btn {
    margin: 34px auto 0;
  }
}

/* Voice
    --------------------------------------------------------*/

.p-voice_slider {
  margin-top: 60px;
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .p-voice_slider {
    margin-top: 40px;
    padding-bottom: 60px;
  }
}

.p-voice_item {
  background-color: #f8f3ea;
  border-radius: 40px;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .p-voice_item {
    border-radius: 30px;
    padding: 30px 20px;
  }
}

.p-voice_heading {
  border-bottom: 1px dashed #c6c6c6;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .p-voice_heading {
    margin-bottom: 14px;
  }
}

.p-voice_title,
.p-voice_course {
  font-weight: 700;
  color: var(--color-green);
}

.p-voice_title {
  font-size: 20px;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-voice_title {
    font-size: 16px;
  }
}

.p-voice_course {
  font-size: 14px;
  text-align: center;
  background-color: #fff;
  border-radius: 17px;
  display: inline-block;
  min-width: 188px;
  padding: 7px 10px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .p-voice_course {
    font-size: 12px;
    min-width: 154px;
    padding: 3px 10px 5px;
  }
}

/* Access
    --------------------------------------------------------*/

.p-access {
  margin-bottom: 175px;
}

@media screen and (max-width: 767px) {
  .p-access {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .p-access_intro {
    font-size: 14px !important;
    margin-top: 28px;
  }
}

.p-access_note {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: block;
  margin: 40px auto;
  width: 100%;
  max-width: 630px;
  background-color: var(--color-green);
  border-radius: 35px;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-access_note {
    font-size: 12px;
    max-width: 280px;
    padding: 8px 20px;
    margin-block: 30px 40px;
  }
}

.p-access_note::before {
  content: "";
  width: 77px;
  height: 93px;
  background: url("../img/bbq.svg") center/cover no-repeat;
  position: absolute;
  right: -20px;
  bottom: 20px;
}

@media screen and (max-width: 767px) {
  .p-access_note::before {
    width: 52px;
    height: 63px;
    right: 5px;
    bottom: 8px;
  }
}

.p-access_map {
  width: 100%;
  height: 544px;
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-access_map {
    height: 240px;
    aspect-ratio: 348/240;
    border-radius: 30px;
  }
}

.p-access_map > iframe {
  width: 100%;
  height: 100%;
}

.p-access_wrapper {
  margin-top: 64px;
}

.p-access_wrap:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .p-access_wrap:not(:last-child) {
    margin-bottom: 40px;
  }
}

.p-access_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .p-access_heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}

.p-access_icon {
  width: 89px;
  height: 84px;
}

@media screen and (max-width: 767px) {
  .p-access_icon {
    width: 51px;
    height: 48px;
  }
}

.p-access_head {
  font: 700 48px "Josefin Sans", sans-serif;
  color: var(--color-green);
  letter-spacing: 0.1em;
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

@media screen and (max-width: 767px) {
  .p-access_head {
    font-size: 24px;
    text-align: center;
    -webkit-transform: initial;
    transform: initial;
  }
}

.p-access_head > .fs24 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-left: 30px;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

@media screen and (max-width: 767px) {
  .p-access_head > .fs24 {
    font-size: 12px;
    display: block;
    margin: 5px 0 0;
    -webkit-transform: initial;
    transform: initial;
  }
}

.p-access_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
}

.p-access_row-g16 {
  gap: 16px;
}

.p-access_row-05 {
  gap: 20px;
}

.p-access_row-05 .bbq__access-item {
  width: 20%;
}

.p-access_col-left {
  width: calc(100% - 310px);
}

.p-access_col-right {
  width: 287px;
}

@media screen and (max-width: 767px) {
  .p-access_block:not(:last-child) {
    margin-bottom: 20px;
  }
}

.p-access_item-wrap {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  -webkit-transition: opacity 0.5s, padding 0.5s, line-height 0.3s, height 0.5s;
  transition: opacity 0.5s, padding 0.5s, line-height 0.3s, height 0.5s;
}

.p-access_item {
  width: 100%;
}

.p-access_item-half {
  width: calc(50% - 8px);
}

.p-access_item.is_active .p-access_title-icon span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
  transition: all 0.5s linear;
}

.p-access_item.is_active ~ .p-access_item-wrap {
  opacity: 1;
  opacity: 1;
  height: auto; /* calc-size()未対応のブラウザのためのフォールバック */
  height: calc-size(auto, size);
  padding-bottom: 20px;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  -webkit-transition: opacity 0.5s, padding 0.5s, line-height 0.3s, height 0.5s;
  transition: opacity 0.5s, padding 0.5s, line-height 0.3s, height 0.5s;

}

.p-access_title {
  height: 69px;
  background-color: #f8f3ea;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green);
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-access_title {
    font-size: 14px;
    height: 52px;
  }
}

.p-access_title-blue {
  background-color: var(--color-green);
  color: #fff;
}

.p-access_title-mh79 {
  min-height: 79px;
}

.p-access_title-icon {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-access_title-icon > span {
  width: 12px;
  height: 2px;
  background-color: var(--color-green);
  border-radius: 1px;
  display: inline-block;
}

.p-access_title-icon > span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 1;
  transition: all 0.5s linear;
}

.p-access_content {
  height: 104px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding-block: 32px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-access_content {
    height: 100px;
  }
}

.p-access_content-h280 {
  height: 280px;
}

.p-access_content::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--color-green);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.p-access_inner {
  background-color: #fff;
  padding-block: 10px 9px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-access_inner .highlight {
  text-decoration: underline;
  white-space: nowrap;
}

.p-access_notes {
  font-size: 12px;
  font-weight: 600;
  margin-top: 18px;
}

.p-access_notes > p:first-child {
  margin-bottom: 7px;
}

.p-access_car {
  width: 100%;
  min-height: 348px;
  background-color: #f8f3ea;
  border-radius: 40px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px 42px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-access_car {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 35px 25px;
  }
}

.p-access_car::after {
  content: "";
  width: 151px;
  height: 73px;
  background: url("../img/illus_car.svg") center/cover no-repeat;
  position: absolute;
  top: -40px;
  right: -20px;
}

@media screen and (max-width: 767px) {
  .p-access_car::after {
    width: 88px;
    height: 42px;
    top: -13px;
    right: 12px;
  }
}

.p-access_car-img {
  width: 384px;
  aspect-ratio: 384 / 242;
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-access_car-img {
    width: 100%;
    max-width: 350px;
    border-radius: 30px;
  }
}

.p-access_car-caption {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-green);
  text-align: center;
  display: block;
  margin: 8px auto 0;
}

@media screen and (max-width: 767px) {
  .p-access_car-caption {
    font-size: 10px;
  }
}

/* Question
    --------------------------------------------------------*/
.p-faq-info_wrap {
  position: relative;
  width: 100%;
}
.p-faq-info_wrap::before {
  content: "";
  width: 100%;
  height: 110%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgb(167, 207, 213);
  background: linear-gradient(0deg, rgba(167, 207, 213, 1) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}
.p-faq {
  position: relative;
  margin-bottom: 180px;
}

@media screen and (max-width: 767px) {
  .p-faq {
    margin-bottom: 80px;
  }
}

.p-faq_title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 87px;
  left: -50px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-faq_title {
    display: none;
  }
}

.p-faq_list {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .p-faq_list {
    margin-top: 32px;
  }
}

.p-faq_item:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .p-faq_item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.p-faq_item.is_active .p-faq_ans {
  opacity: 1;
  height: auto; /* calc-size()未対応のブラウザのためのフォールバック */
  height: calc-size(auto, size);
  line-height: 2;
  padding-top: 20px;
  -webkit-transition: opacity 0.5s, padding 0.5s, line-height 0.3s, height 0.5s;
  transition: opacity 0.5s, padding 0.5s, line-height 0.3s, height 0.5s;
}

.p-faq_item.is_active .p-faq_icon span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-faq_ques,
.p-faq_ans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-faq_ques {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 5px, transparent 5px, transparent 10px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  padding-bottom: 20px;
  position: relative;
  cursor: pointer;
}

.p-faq_ans {
  overflow: hidden;
  height: 0;
  line-height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  -webkit-transition: opacity 0.5s, padding 0.5s, line-height 0.3s, height 0.5s;
  transition: opacity 0.5s, padding 0.5s, line-height 0.3s, height 0.5s;
}

.p-faq_label {
  font: 700 30px "Josefin Sans", sans-serif;
  color: var(--color-green);
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 30px;
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-faq_label {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 15px;
  }
}

.p-faq_text {
  font-size: 20px;
  font-weight: 600;
  line-height: 2em;
  width: 82%;
}

@media screen and (max-width: 767px) {
  .p-faq_text {
    font-size: 14px;
    width: 78%;
  }
}

.p-faq_icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 40%;
  right: 0;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-faq_icon {
    width: 15px;
    height: 15px;
  }
}

.p-faq_icon > span {
  width: 20px;
  height: 3px;
  background-color: var(--color-green);
  border-radius: 1.5px;
}

@media screen and (max-width: 767px) {
  .p-faq_icon > span {
    width: 15px;
    height: 2px;
  }
}

.p-faq_icon > span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p-faq_btn{
  margin-top:40px;
}

/* Information
    --------------------------------------------------------*/

.p-info {
  padding-bottom: 160px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-info {
    padding-bottom: 75px;
  }
}

.p-info_title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: -127px;
  right: -12px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-info_title {
    display: none;
  }
}

.p-info_list {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .p-info_list {
    margin-top: 18px;
  }
}

.p-info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px dashed #fff;
  padding-block: 20px;
}

@media screen and (max-width: 767px) {
  .p-info_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-info_label {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-green);
  min-width: 240px;
}

@media screen and (max-width: 767px) {
  .p-info_label {
    font-size: 16px;
    min-width: 100%;
  }
}

.p-info_content {
  width: calc(100% - 240px);
}

@media screen and (max-width: 767px) {
  .p-info_content {
    width: 100%;
    margin-top: 20px;
  }
}

/* 250307 */
.p-sky_heading figure {
  width: 58%;
  margin: auto;
}
.p-sky_container::after {
  top: -40px;
  right: 161px;
}
.map_illus {
  width: 95%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-info_content {
    width: 100%;
    margin-top: 20px;
  }
  .p-sky_heading figure {
    width: 85%;
  }
  .p-sky_container::after {
    top: -90px;
        width: 100px;
        height: 100px;
        right: 20px;
  }
  .p-sky_heading {
    margin: 15% 5% 5%;
  }
}

/* 250324_認定 */
.p-sky.certification {
  background-color: #f8f3ea;
  padding-block: 70px 22px;
}
.p-sky.certification::before,
.p-sky.certification::after {
  display: none;
}

.p-sky.certification .p-sky_use {
  border: 2px solid #005181;
  padding: 60px 50px 30px;
}

.p-sky.certification .p-sky_use-title {
  font: 700 18px "Noto Sans JP", sans-serif;
  background-image: repeating-linear-gradient(90deg, #005181, #005181 5px, transparent 5px, transparent 10px);
  color: #005181;
  line-height: 190%;
  max-width: 729.55px;
  width: 80%;
}

.p-sky.certification .p-sky_container::after {
  background: url(../img/certification.png) center / cover no-repeat;
    transform: rotate(0deg);
    max-width: 207.98px;
    max-height: 207.98px;
    top: -29px;
    right: 109px;
    width: 21.8vw;
    height: 21.8vw;
}

.p-sky.certification .p-sky_certification {
  color: #005181;
    font-size: 14px;
}

.p-sky.certification .p-sky_certification strong {
  display: block;
    background-color: #005181;
    color: #fff;
    padding: 10px 40px;
    border-radius: 50px;
    max-width: fit-content;
    margin-bottom: 20px;
}

.p-sky.certification .p-sky_certification ul {
  display: flex;
  gap: 30px;
  margin: 22px 0 20px;
}



.p-sky.certification .p-sky_certification ul li {
  padding-bottom: 10px;
  background-image: repeating-linear-gradient(90deg, #005181, #005181 5px, transparent 5px, transparent 10px);
  background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
}

.p-sky.certification .p-sky_certification ul li:last-child {
  background-image: none;
}

.p-sky.certification .p-sky_certification small {
  font-size: 12px;
  margin-top: 10px;
  display: block;
}

.p-sky.certification .c-btn_link {
  justify-content: flex-end;
  color: #005181;
}

.p-sky.certification .c-btn_link-arrow {
  background: #005181 url(../img/ico_arrow_white.svg) center / 16px 13px no-repeat;
    border: 2px solid #005181;
    transform: rotate(315deg);
}

.p-sky.certification .c-btn_link:hover .c-btn_link-arrow {
  background: #fff url(../img/ico_arrow_blue02.svg) center / 16px 13px no-repeat;
}

.p-sky_container.no_ico::after {
  background: none;
}

.p-sky_heading.big_img figure {
  width: 72.5%;
}

@media screen and (max-width: 767px) {
  .p-sky.certification {
    padding-block: 40px 22px;
  }

  .p-sky.certification .p-sky_use {
    padding: 7%;
}

.p-sky.certification .p-sky_use-title {
  font: 700 3.7vw "Noto Sans JP", sans-serif;
  background-image: repeating-linear-gradient(90deg, #005181, #005181 5px, transparent 5px, transparent 10px);
  width: 100%;
  padding-right: 30%;
}

.p-sky.certification .p-sky_certification {
  font-size: 12px;
}

.p-sky.certification .p-sky_container::after {
  max-width: 100%;
  max-height: 100%;
  top: 4vw;
  right: 6vw;
  width: 26vw;
  height: 26vw;
}

.p-sky.certification .p-sky_certification strong {
  padding: 2% 5%;
  margin-bottom: 15px;
  font-size: 3.2vw;
}

.p-sky.certification .p-sky_certification ul {
  flex-wrap: wrap;
  gap: 8px;
}

.p-sky.certification .p-sky_certification ul li {
  background-image: none;
  padding-bottom: 0;
}

.p-sky.certification .p-sky_certification small {
  margin: 10px 0 30px;
}

.p-sky.certification .c-btn_link {
  justify-content: center;
}

.p-sky_heading.big_img figure {
  width: 85%;
}
}


/* 250424 追記 */
.top-reservation-btn a {
  text-align: center;
  margin: 10px auto;
}

.reservation-btn {
  background-color: #DF5050;
    border: 2px solid #DF5050;
}

.reservation-btn_arrow {
  background: url(../img/ico_arrow_pink.svg) center center / 14px 11px no-repeat rgb(255, 255, 255);
}

.reservation-btn:hover {
  color: #DF5050;
  background-color: #fff;
}

.reservation-btn:hover>.reservation-btn_arrow {
  background-color: #DF5050;
  background-image: url("../img/ico_arrow_white.svg");
}

/* Movie追加 */
/*
video#main_video {
  width: 80%;
  margin: 4% auto;
  display: block;
}

@media screen and (max-width: 767px) {
  video#main_video {
    width: 100%;
    margin: 4% auto;
  }
}
*/
section.movie {
/*  margin: 8% 12.5% 0 12.5%;
  width: 75%;*/
  margin: 0% 2.5% 8% 2.5%;
  width: 95%;
}
.movie_frame {
  /*display: flex;*/
  /*justify-content: center;*/
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.movie_frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(1.001);
  transform-origin: center center;
}

@media screen and (max-width: 767px) {
  section.movie {
/*    margin: 4% 3% 0 3%;
    width: 94%;*/
    margin: 0% 3% 4% 3%;
    width: 94%;
}
}

/* 250324_夏のBBQコース */
.p-menu_item.summer_course{
  background: url("../img/menu_bg.jpg") center/cover no-repeat;
}
.p-menu_item.summer_course .p-menu_wrap{
  background-color: rgba(255, 255, 255, 0.75);
}
.p-menu_item.summer_course .p-menu_bbqset{
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2em;
  background-color: #C05A00;
  color: #FFF;
  padding: 0.2em 0.5em;
  display: inline-block;
  width: fit-content;
  border-radius: 10px;
}
.p-menu_item.summer_course .p-menu_heading,
.p-menu_item.summer_course .p-menu_price{
  color: #C05A00;
}
.p-menu_item.summer_course .p-menu_subhead .sum{
  font-size: 160%;
}
.p-menu_list-01 .p-menu_item.summer_course .p-menu_img {
  aspect-ratio: 430 / 330;
}
.p-menu_item.summer_course.p-menu_item-full .p-menu_img{
  height: 348px;
}

@media screen and (max-width: 1024px) {
  .p-menu_list-01 .p-menu_item.summer_course .p-menu_img {
    aspect-ratio: 430 / 268;
  } 
  .p-menu_item.summer_course.p-menu_item-full .p-menu_img{
  height: auto;
}
}


@media screen and (max-width: 480px) {
  .p-menu_item.summer_course .p-menu_head {
    font-size: 5.3vw;
    margin-right: -1em;
  }
  .p-menu_item.summer_course .p-menu_subhead .sum{
    font-size: 140%;
  }  
}

@media screen and (max-width: 767px) {
  .p-mv_slide {
    aspect-ratio: auto;
  }
}
