@charset "UTF-8";

/* p-fv */

.p-fv {
  position: relative;
  width: 100%;
  height: 100svh; /* 最初は画面いっぱい確保 */
  overflow: hidden;
  background: #C9B79D;
  z-index: 1;
}

.p-fv-txt {
  position: absolute;
  z-index: 3;
  left: 70px;
  bottom: 70px;
}

.p-fv-txt .ttl {
  width: 193px;
}

.p-fv::before {
  position: absolute;
  content: "";
  z-index: 5;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: solid 10px #C9B79D;
  border-bottom: none;
  box-sizing: border-box;
}

.p-fv-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-fv-img {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: 193px;
  height: 271px;
  overflow: hidden;
  border: solid 1px #FFFFFF;
  box-sizing: border-box;
}

.p-fv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.p-fv-logo {
  position: absolute;
  width: 220px;
  bottom: 50%;       /* 好きな位置 */
  left: 50%;
  margin-bottom: -11px;
  transform: translateX(-50%);
  opacity: 0;          /* 初期非表示 */
}



@media screen and (min-width: 768px){


}
@media screen and (max-width: 767px){
  .p-fv-img {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .p-fv-logo {
    width: 180px;
    margin-bottom: -8px;
  }

  .p-fv-txt {
    left: 0;
    bottom: 40px;
    width: 100%;
    text-align: center;
  }

  .p-fv-txt .ttl {
    margin: 0 auto;
  }

}
/* p-about */


.p-about {
  position: relative;
  padding: 80px 30px;
  background: url("../../images/top/bg_about_pc.png") no-repeat center top;
  background-size: cover;
}


.p-about-content {
  position: relative;
  z-index: 2; /* 背景の上にコンテンツを置く */
    background: #fff;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 45px;
}

.p-about-content .pic {
    max-width: 340px;
    margin: 0 auto 40px;
}

.p-about-content .lead {
    font-size: 1.3rem;
    line-height: 2;
    max-width: 340px;
    margin: 0 auto;
}

.p-about-content .lead p + p {
    padding: 20px 0 0;
}

.p-about-content .logo {
    margin: 60px auto 0;
    width: 180px;
    text-align: center;
}

@media screen and (min-width: 768px){
  .p-about {
      background-attachment: fixed;
      background-position: center top;
      background-size: cover;
    }
}


@media screen and (max-width: 767px){
  .p-about {
    padding: 60px 30px;
    background: url("../../images/top/bg_about_sp.png")no-repeat;
    background-position: center;
    background-size: cover;
  }

  .p-about-content {
      border-radius: 5px;
      padding: 40px 20px;
      background: rgb(255 255 255 / 80%);
  }



  .p-about-content .pic {
    margin: 0 auto 30px;
    max-width: 295px;
  }

  .p-about-content .lead {
      font-size: 1.2rem;
      letter-spacing:0;
      font-weight: 500;
  }

  .p-about-content .logo {
      width: 150px;
      margin: 40px auto 0;
  }

}

/* p-feature */

/* セクション全体 */

.p-feature {
  position: relative;
  background: #F9F7F3;
}

/* Swiper */
.p-feature-swiper {
  height: 100%;
}

/* スライド */
.p-feature-swiper .swiper-slide {
  width: 100vw;
  height: 100vh;
  background: #F9F7F3;
}

.p-feature-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.p-feature-map {
    max-width: 253px;
    width: 25%;
}

.p-feature-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1220px;
    padding: 0 30px;
}


.p-feature-block .detail {
    font-weight: 500;
    font-size: 1.3rem;
}

.p-feature-block .detail p {
    line-height: 2;
}

.p-feature-block .detail .ttl {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 30px;
}

.p-feature-block .detail .number {
    color: #C9B79D;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 30px;
}

.p-feature-block .detail .number span {
  display: inline-block;
  vertical-align: middle;
}

.p-feature-block .detail .number span + span {
  padding-left: 20px;
}

@media screen and (min-width: 768px){
  /* 見出しは上に被せる */
  .p-feature-head {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
  }

  .p-feature {
    height: 500vh; /* ← 3枚 × 100vh */
  }

  .p-feature-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }

  .p-feature-block {
    position: relative;
      width: 70%;
      max-width: 760px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
  }

  .p-feature-block::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    bottom: -60px;
    height: 1px;
    background: #DDDDDD;
    z-index: 1;
  }


  .p-feature-block.is-f01::after {
    position: absolute;
    content: "";
    width: calc(100% / 5);
    left: 0;
    bottom: -60px;
    height: 2px;
    background: #C9B79D;
    z-index: 2;
  }

  .p-feature-block.is-f02::after {
    position: absolute;
    content: "";
    width: calc(100% / 5);
    left: calc(100% / 5 * 1);
    bottom: -60px;
    height: 2px;
    background: #C9B79D;
    z-index: 2;
  }

  .p-feature-block.is-f03::after {
    position: absolute;
    content: "";
    width: calc(100% / 5);
    left: calc(100% / 5 * 2);
    bottom: -60px;
    height: 2px;
    background: #C9B79D;
    z-index: 2;
  }

  .p-feature-block.is-f04::after {
    position: absolute;
    content: "";
    width: calc(100% / 5);
    left: calc(100% / 5 * 3);
    bottom: -60px;
    height: 2px;
    background: #C9B79D;
    z-index: 2;
  }

  .p-feature-block.is-f05::after {
    position: absolute;
    content: "";
    width: calc(100% / 5);
    right: 0;
    bottom: -60px;
    height: 2px;
    background: #C9B79D;
    z-index: 2;
  }

  .p-feature-block .pic {
      max-width: 280px;
      width: 40%;
  }

  .p-feature-block .detail {
      max-width: 400px;
      width: 55%;
  }

  .p-feature-sp {
    display: none;
  }

  /* 矢印 */
  .swiper-button-prev,
  .swiper-button-next {
    position: absolute;
    top: 50%!important;
    width: 35px!important;
    z-index: 10;
    transform: translateY(-50%);
  }

  .swiper-button-prev {
    left: inherit!important;
    right: 40px!important;
    margin: -50px 0 0!important;
  }

  .swiper-button-next {
    right: 40px!important;
    margin: 0 0 -50px!important;
  }

  .swiper-button-prev img,
  .swiper-button-next img {
    width: 100%;
    height: auto;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    display: none;
  }


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

  .p-feature {
    padding: 60px 0 100px;
  }

    .p-feature-pc {
      display: none;
    }

    .p-feature-sp {
      padding: 0;
    }

    .p-feature-block .pic {
    margin: 0 auto 60px;
    }

    .p-feature-block .detail .number {
        margin: 0 0 30px;
    }

    /* スライダー全体 */
    .p-feature-sp-swiper {
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    /* スライド */
    .p-feature-sp-swiper .swiper-slide {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
    }

    /* スライド全体を画面幅いっぱいに */
    .p-feature-sp-swiper .swiper-slide {
      width: 100%;       /* 画面幅いっぱい */
      box-sizing: border-box; /* パディング込みで計算 */
      padding: 0 20px;   /* 両端に余白を入れる場合は調整 */
    }

    /* スライド内の画像も幅100% */
    .p-feature-block .pic img {
      width: 100%;
      height: auto;
      display: block;
    }

    .p-feature-block .detail .ttl {
        margin: 0 0 20px;
    }

    .p-feature-block .detail p {
      font-size: 1.2rem;
    }

    .p-feature-sp-swiper {
      position: relative;
    }

    .p-feature-pagination {
      position: absolute;
      left: 0!important;
      bottom: inherit!important;
      transform: translateX(-50%);
      top: 275px!important; /* ← picの高さに合わせる */
    }



  .swiper-pagination-bullet {
    background: #C9B79D!important;
    height: 5px!important;
    width: 5px!important;
    opacity: 1!important;
  }

  .swiper-pagination-bullet-active {
    background: #fff!important;
    border: solid 1px #C9B79D;
    box-sizing: border-box;
  }
}

/* p-space */

.p-space {
    background: #DBD5CD;
    padding: 120px 0;
}

.p-space-content {
    margin: 0 auto 135px;
}

.p-space-detail .ttl {
    font-size: 1.8rem;
    font-weight: 700;
    color: #777777;
    margin: 0 0 50px;
}

.p-space-detail p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
}

.p-space-detail p + p {
    padding: 30px 0 0;
}

.p-space-pic img {
  width: 100%;
  display: block;
}

/* ドット調整（任意） */
.p-space-pic-wrap {
  width: 100%;
}

.p-space-pic img {
  width: 100%;
  display: block;
}

/* Space slider 専用 pagination */
.p-space-pagination {
  position: static !important;
  margin-top: 2px;
  width: 100%;
  text-align: right!important;
}

/* ドットデザイン */
.p-space-pagination .swiper-pagination-bullet {
  background: #C9B79D;
  opacity: 1;
  width: 6px;
  height: 6px;
}

.p-space-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}


.p-floor {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 1060px;
}

.p-space-block {
    margin: 80px auto 0;
    background: #DBD5CD;
    padding: 40px;
    border: solid 1px #000;
    max-width: 860px;
}

.p-space-block .ttl {
    display: inline-block;
    border-bottom: solid 1px #2A2A2A;
    padding: 0 0 10px;
    font-size: 1.2rem;
    margin: 0 0 40px;
}

.p-space-block .list {
    font-size: 1.3rem;
    line-height: 2.3;
}

.p-space-block .list li {
  position: relative;
  padding-left: 20px;
}


.p-space-block .list li::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  left: 0;
  top: 8px;
  border: solid 1px #2A2A2A;
  box-sizing: border-box;
}

.p-space-inner dt {
  font-size: 1.4rem;
  font-weight: 700;
}

.p-gallery {
  margin: 0 auto 80px;
  max-width: 1140px;
  padding: 0 30px;
}

.p-gallery-main {
  width: 100%;
  margin: 0 auto 40px;
}


.p-gallery-main .swiper-slide {
  width: 100%;
  height: 540px;          /* 枠を固定 */
  background: #fff;      /* 余白を白に */
  display: flex;         /* 中央寄せ用 */
  align-items: center;
  justify-content: center;
}

.p-gallery-main img {
  height: 100%;          /* 高さ基準 */
  width: 100%;           /* 横は等倍 */
  object-fit: cover;   /* 枠内に収める */
  display: block;
}


.gallery-category {
  font-size: 1.3rem;
  padding: 0 0 5px;
}

.p-gallery-thumb {
  width: 100%;
  overflow: hidden; /* 念のため */
  margin-bottom: 20px;
}

.p-gallery-thumb .swiper-wrapper {
  display: flex;        /* ← これが重要 */
}

.p-gallery-thumb .swiper-slide {
  width: 200px !important;
  height: 125px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden; /* ← 超重要 */
}

.p-gallery-thumb .swiper-slide img {
  width: 100%;
  height: 100%;      /* ← 高さを明示 */
  object-fit: cover; /* 枠いっぱいにトリミング */
  display: block;
}


.p-gallery-thumb .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 50%);
  z-index: 1;
}

.p-gallery-thumb .swiper-slide-thumb-active::before {
  display: none;
}


.p-gallery .caption {
    position: absolute;
    z-index: 1;
    right: 10px;
    bottom: 12px;
    color: #fff;
    background: rgb(69 69 69 / 90%);
    padding: 5px 10px;
    font-size: 1.2rem;
    line-height: 1;
}


@media screen and (min-width: 768px){
  .p-space-content {
      display: flex;
      justify-content: space-between;
      flex-direction: row-reverse;
      align-items: center;
  }

  .p-space-slider {
      width: 50%;
      max-width: 480px;
  }



  .p-space-detail {
      width: 45%;
      max-width: 340px;
  }

  .p-space-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .p-space-inner dt {
    width: 50%;
  }

  .p-space-inner dd {
    width: 50%;
  }

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

  .p-space-slider {
      margin: 0 auto 60px;
  }

  .p-space-detail {
    padding: 0 25px;
  }

  .p-space-detail p {
    line-height: 2.3;
  }

  .p-space-pagination {
    text-align: center!important;
  }

  .p-space-detail .ttl {
      margin: 0 0 30px;
      text-align: center;
      font-size: 1.6rem;
  }

  .p-space-content {
      margin: 0 auto 60px;
  }

  .p-floor {
    text-align: center;
    margin: 0 auto 60px;
  }

  .p-space-block {
      margin: 40px auto 0;
      padding: 40px 15px;
      text-align: center;
  }

  .p-space-inner dt {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }


  .p-space-block .list {
      text-align: left;
      font-size: 1.1rem;
  }

  .p-space-block .list li {
      padding-left: 15px;
  }

  .p-space-block .list li::before {
      width: 10px;
      height: 10px;
  }

  .p-gallery {
    margin: 0 auto 60px;
    padding: 0;
  }

  .p-gallery-main {
    width: calc(100% - 40px);
  }

  .p-gallery-main .swiper-slide {
    height: 210px;          /* 枠を固定 */
  }

  .p-gallery-thumb {
    padding: 0 20px!important;
  }

  .p-gallery-thumb .swiper-slide {
    width: 120px !important;
    height: 75px;
  }

  .gallery-category {
    font-size: 1rem;
  }

  .gallery-category {
    padding: 0 20px 5px;
  }


}


/* p-plan */

.p-plan {
  background: #F9F7F3;
  padding: 80px 0 120px;
}

.p-plan-container {
  padding: 0 30px;
  margin: 120px auto 80px;
  max-width: 1060px;
}

.p-plan-container .copy {
  font-size: 2.2rem;
  font-weight: 700;
}

.p-plan-container p {
  font-size: 1.3rem;
  line-height: 2.3;
  font-weight: 500;
}


.p-plan-content {
    max-width: 880px;
    margin: 0 auto;
}

.p-plan-accordion .title {
    padding: 30px 20px;
    font-size: 1.6rem;
    border-bottom: solid 1px #DDDDDD;
    background: url("../../images/common/ico_plus.svg")no-repeat;
  background-size: 20px;
  background-position: right 40px center;
  cursor: pointer;
  line-height: 1;
}

.p-plan-accordion.is-open .title {
  background: url("../../images/common/ico_minus.svg")no-repeat,#DBD5CD;
  background-size: 20px;
  background-position: right 40px center;
  border: none;
}

.p-plan-inner {
  display: none;
  margin: 0 0 60px;
}


.p-plan-block {
    margin: 80px auto 0;
    background: #fff;
    padding: 40px;
    border: solid 1px #DDDDDD;
    max-width: 860px;
    width: calc(100% - 40px);
}

.p-plan-block .ttl {
    display: inline-block;
    border-bottom: solid 1px #2A2A2A;
    padding: 0 0 10px;
    font-size: 1.2rem;
    margin: 0 0 40px;
}

.p-plan-block .list {
    font-size: 1.3rem;
    line-height: 2.3;
}

.p-plan-block .list li {
  position: relative;
  padding-left: 20px;
}


.p-plan-block .list li::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  left: 0;
  top: 8px;
  border: solid 1px #2A2A2A;
  box-sizing: border-box;
}

.p-plan-box {
  background: #FFFFFF;
  border: solid 1px #DBD5CD;
  max-width: 280px;
  padding: 60px 15px;
  position: relative;
}

.p-plan-box .number {
  color: #F9F7F3;
  font-size: 9rem;
  position: absolute;
  top: 20px;
  right: 20px;
  font-weight: bold;
  pointer-events: none;
  line-height: 1;
}

.p-plan-box .price {
  position: relative;
  font-size: 1rem;
  z-index: 2;
  padding-bottom: 25px;
}

.p-plan-box .price span {
  display: inline-block;
  vertical-align: pre;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0 10px 0 0;
}

.p-plan-box .list {
  position: relative;
  z-index: 2;
  letter-spacing: 0;
}

.p-plan-box .list + .list {
  margin-top: 30px;
}

.p-plan-box .list dt {
  line-height: 1;
  font-size: 1rem;
  padding: 0 0 10px;
}

.p-plan-box .list dt span {
  display: inline-block;
  padding: 0 0 5px;
  position: relative;
}

.p-plan-box .list dt span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #2A2A2A;
  left: 0;
  bottom: 0;
}

.p-plan-box .list dd {
  font-size: 1.2rem;
  line-height: 2;
}

.p-plan-box .list dd li {
    text-indent: -1em;
    padding-left: 1em;
}

.p-plan-pic {
  margin: 10px auto 20px;
}

@media screen and (min-width: 768px){


  /* PC */
    .p-plan-slider {
      width: 100%;
    }

    .p-plan-slider .swiper-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* ドット非表示 */
    .p-plan-pagination {
      display: none;
    }


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

  .p-plan-container {
      padding: 0;
      text-align: center;
      margin: 60px;
  }

  .p-plan-container .copy {
      font-size: 1.8rem;
      margin: 0 0 25px;
  }

  .p-plan-container p {
      font-size: 1.2rem;
  }

  .p-plan-pic {
    width: calc(100% - 40px);
    margin: 20px auto;
  }

  .p-plan-accordion .title {
      padding: 20px;
      font-size: 1.4rem;
      background: url("../../images/common/ico_plus.svg")no-repeat;
      background-size: 16px;
      background-position: right 20px center;
      width: calc(100% - 40px);
      margin: 0 auto;
  }

  .p-plan-accordion.is-open .title {
    background: url("../../images/common/ico_minus.svg")no-repeat,#DBD5CD;
    background-size: 16px;
    background-position: right 20px center;
    border: none;
  }


  .p-plan-block {
      margin: 40px auto 0;
      padding: 40px 15px;
      text-align: center;
  }

  .p-plan-block .list {
      text-align: left;
      font-size: 1.1rem;
  }

  .p-plan-block .list li {
      padding-left: 15px;
  }

  .p-plan-block .list li::before {
      width: 10px;
      height: 10px;
  }

  .p-plan-slider {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .p-plan-wrap {
    position: relative;
    padding: 0 0 20px;
  }

  .p-plan-pagination {
    position: absolute;
    margin: 0!important;
    text-align: center;
    top: inherit!important;
    left: 0!important;
    bottom: 0!important;
  }

  .swiper-pagination-bullet {
    background: #C9B79D!important;
    height: 5px!important;
    width: 5px!important;
    opacity: 1!important;
  }

  .swiper-pagination-bullet-active {
    background: #fff!important;
    border: solid 1px #C9B79D;
    box-sizing: border-box;
  }

  .p-plan-slider {
    padding-left: 20px;   /* ← 左の余白 */
  }

  .p-plan-box.swiper-slide {
    width: 85%;
  }

  .p-plan-box {
    height: auto; /* 初期化 */
  }
}


/* p-access */

.p-access {
    background: #F9F7F3;
    padding: 80px 0 120px;
}

.p-access-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.p-access-map {
  width: 100%;
  height: 380px;
}

.p-access-map iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.p-access-block .name {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 20px;
}

.p-access-block address {
  font-size: 1.3rem;
  line-height: 2.3;
  font-weight: 500;
  margin-bottom: 20px;
}

.p-access-block address .zip {
  display: inline-block;
  padding: 0 10px 0 0;
}

.p-access-block .link {
  font-size: 1.4rem;
}

.p-access-block .link a {
  text-decoration: underline;
}

@media screen and (min-width: 768px){

  .p-access-block {
      width: 30%;
  }

  .p-access-map {
    max-width: 726px;
    width: 70%;
  }

  .p-access-block .link a:hover {
    text-decoration: none;
  }


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

  .p-access {
    padding: 60px 0 100px;
  }

  .p-access-block {
    text-align: center;
    margin: 0 auto 45px;
  }

  .p-access-block .name {
      font-size: 1.4rem;
      margin: 0 0 10px;
  }

  .p-access-block address {
      font-size: 1.2rem;
      margin: 0 0 10px;
  }

  .p-access-block address .zip {
    display: block;
    font-size: 1rem;
  }

  .p-access-block .link {
      font-size: 1.2rem;
  }

}

/* p-image */

.p-image-pin {
  position: relative;   /* フロー維持 */
  height: 800px; /* 指定サイズ */
  z-index: 2;
  overflow: hidden;
}

.p-image-pin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media screen and (min-width: 768px){


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

  .p-image-pin {
    height: 500px; /* 指定サイズ */
  }

}

/* p-faq */

.p-faq {
  padding: 80px 0 120px;
  position: relative;
  z-index: 5;
  background: #F9F7F3; /* 被さってる感を出す */
}

.p-faq-accordion {
  padding: 0 60px;
  border-bottom: solid 1px #DDDDDD;
}

.p-faq-accordion.is-open {
  background: #fff;
}

.p-faq-accordion dt {
  padding: 30px 0;
  cursor: pointer;
}

.p-faq-accordion .title {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  background: url("../../images/common/ico_plus.svg")no-repeat;
  background-size: 18px;
  background-position: right center;
}

.p-faq-accordion.is-open .title {
  background: url("../../images/common/ico_minus.svg")no-repeat;
  background-size: 18px;
  background-position: right center;
}

.p-faq-accordion dd {
  display: none;
  font-size: 1.2rem;
  line-height: 1.7;
  padding: 0 10px 30px;
}

.p-faq-accordion dd p + p {
  padding-top: 20px;
}

@media screen and (min-width: 768px){


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

  .p-faq {
    padding: 60px 0 100px;
  }

  .p-faq-accordion {
      padding: 0 15px;
  }

  .p-faq-accordion .title {
      padding: 0 30px 0 0;
      font-size: 1.3rem;
      background-size: 15px;
  }

  .p-faq-accordion.is-open .title {
    background-size: 15px;
  }

  .p-faq-accordion dd {
      padding: 0 0 30px;
      font-size: 1.1rem;
  }

}


/* p-news */

.p-news {
  position: relative;
  z-index: 5;
  padding: 80px 0 120px;
    background: #FAFAFA;
}

.p-news-accordion {
    padding: 10px 60px;
    border-bottom: solid 1px #DDDDDD;
}

.p-news-accordion.is-open {
  background: #fff;
}

.p-news-accordion__title {
    padding: 20px 0;
    font-size: 1.4rem;
    line-height: 1.5;
    transition: .3s;
    cursor: pointer;
    position: relative;

}

.p-news-accordion__title::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../../images/common/ico_news_close.svg")no-repeat;
  background-size: 12px;
  background-position: center;
  right: 0;
  top: 50%;
  margin-top: -6px;
  transition: .3s;
}

.p-news-accordion.is-open .p-news-accordion__title::before {
  transform: rotate(180deg);
}

.p-news-accordion__title .date {
  font-size: 1rem;
  display: block;
  color: #777777;
  line-height: 1;
  font-weight: bold;
  padding: 0 0 15px;
}

.p-news-accordion__title .title {
  font-size: 1.4rem;
  font-weight: 500;
}

.p-news-accordion__body {
  display: none;
    padding: 0 0 20px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.p-news-accordion__body p + p {
  padding-top: 20px;
}

@media screen and (min-width: 768px){



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

  .p-news {
      padding: 60px 0 100px;
  }

  .p-news-accordion {
    padding: 10px 15px;
  }

  .p-news-accordion__title .title {
      font-size: 1.3rem;
  }

  .p-news-accordion__title::before {
      bottom: 30px;
      top: inherit;
      margin: inherit;
  }

  .p-news-accordion__body {
    font-size: 1.1rem;
  }

}
