@charset "UTF-8";
:root {
  --color-darkpink: #D77A90;
  --color-pailpink: rgba(212,62,104,0.05);
  --color-white: #fff;
  --color-black: #564F5C;
  --color-blue: #92CEF0;
  --color-gray: rgba(86,79,92,0.7);
}

@keyframes textline {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes Spin {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes rotate_center {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes fuyofuyo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
body {
  font-family: YakuHanJP, "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  color: var(--color-black);
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.l-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg/bg_pc.jpg) no-repeat center center;
  background-size: cover;
  transform: scale(1.1);
}
.is-load .l-bg::before {
  transform: scale(1);
  transition: transform 10s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .l-bg::before {
    background: url(../img/bg/bg_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}

.l-wrap {
  position: relative;
}
@media screen and (max-width: 899px) {
  .l-wrap {
    overflow: hidden;
  }
}

.l-content {
  opacity: 0;
}
.is-load .l-content {
  opacity: 1;
}

.l-header {
  position: relative;
  z-index: 2;
}
.l-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .l-header__content {
    min-height: 140px;
  }
}
@media screen and (max-width: 899px) {
  .l-header__content {
    margin-top: 15px;
    flex-direction: row-reverse;
  }
}
.l-header__inner {
  padding: 0 40px;
}
@media screen and (max-width: 899px) {
  .l-header__inner {
    padding: 15px 20px 23px;
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .l-header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 29%;
    max-width: 400px;
  }
}
@media screen and (max-width: 1030px) {
  .l-header__logo {
    left: 45%;
  }
}
@media screen and (max-width: 899px) {
  .l-header__logo {
    width: min(250px, 66.6666666667vw);
    margin: 0 auto;
  }
}
.l-header__logo a {
  display: block;
}
@media (hover: hover) {
  .l-header__logo a:hover img {
    transform: scale(0.97);
  }
}
.l-header__logo img {
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.l-header__sns {
  display: flex;
}
.l-header__sns-item {
  width: 20px;
}
@media screen and (max-width: 899px) {
  .l-header__sns-item {
    width: min(16px, 4.2666666667vw);
  }
}
.l-header__sns-item + .l-header__sns-item {
  margin-left: 20px;
}
@media screen and (max-width: 899px) {
  .l-header__sns-item + .l-header__sns-item {
    margin-left: min(24px, 6.4vw);
  }
}
.l-header__sns-item a {
  display: block;
  position: relative;
}
.l-header__sns-item a svg {
  fill: var(--color-darkpink);
}
@media (hover: hover) {
  .l-header__sns-item a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.l-header__sns-item a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-darkpink);
  position: absolute;
  bottom: -3px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-header__menu {
	display: flex;
	align-items: center;
    justify-content: right;
}
.l-header__menu-item {
  position: relative;
  padding-right: 23px;
  transform: translateY(25px);
  opacity: 0;
}
.is-load .l-header__menu-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .l-header__menu-item:nth-child(1) {
  transition-delay: 0.4s;
}
.is-load .l-header__menu-item:nth-child(2) {
  transition-delay: 0.54s;
}
.is-load .l-header__menu-item:nth-child(3) {
  transition-delay: 0.68s;
}
.is-load .l-header__menu-item:nth-child(4) {
  transition-delay: 0.82s;
}
.is-load .l-header__menu-item:nth-child(5) {
  transition-delay: 0.96s;
}
@media screen and (max-width: 899px) {
  .l-header__menu-item {
    padding-right: min(16px, 4.2666666667vw);
  }
}
.l-header__menu-item + .l-header__menu-item {
  margin-left: 30px;
}
@media screen and (max-width: 899px) {
  .l-header__menu-item + .l-header__menu-item {
    margin-left: min(16px, 8.5333333333vw);
  }
}
.l-header__menu-item::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  -webkit-mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
 background-color: var(--color-darkpink);
}

@media screen and (max-width: 899px) {
.l-header__menu-item::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  -webkit-mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
/*  mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;*/
  -webkit-mask-size: contain;
  mask-size: contain;
/*  background-color: var(--color-darkpink);*/
	}
}

@media screen and (max-width: 899px) {
  .l-header__menu-item::before {
    width: min(8px, 2.1333333333vw);
    height: min(8px, 2.1333333333vw);
  }
}
.l-header__menu-item a {
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  display: block;
  letter-spacing: 0.5px;
  color: var(--color-darkpink);
  font-size: min(16px, 4.2666666667vw);
  position: relative;
}
@media screen and (max-width: 899px) {
  .l-header__menu-item a {
    font-size: min(12px, 3.2vw);
  }
}
@media (hover: hover) {
  .l-header__menu-item a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.l-header__menu-item a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-darkpink);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-section {
  padding-top: 70px;
}
@media screen and (max-width: 899px) {
  .l-section {
    padding-top: 40px;
  }
}
.is-load .l-section:nth-child(2n) .l-section__line-box {
  animation: textline 60s linear infinite forwards reverse;
}
.l-section__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  padding-bottom: 60px;
}
@media screen and (max-width: 899px) {
  .l-section__inner {
    padding-bottom: 50px;
  }
}
.l-section__ttl {
  text-align: center;
}
.l-section__ttl h2 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 70px;
  color: var(--color-darkpink);
  transform: translateY(25px);
  opacity: 0;
}
.l-section.is-active .l-section__ttl h2 {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .l-section__ttl h2 {
    font-size: 45px;
  }
}
.l-section__ttl-sub {
  font-weight: 500;
  font-size: 15px;
  color: var(--color-darkpink);
  position: relative;
  margin-top: -1px;
  transform: translateY(25px);
  opacity: 0;
}
.l-section.is-active .l-section__ttl-sub {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}
@media screen and (max-width: 899px) {
  .l-section__ttl-sub {
    font-size: 13px;
    margin-top: 0px;
  }
}
.l-section__line {
  overflow: hidden;
  display: flex;
}
.l-in .l-section__line {
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-section__line-box {
  display: flex;
  white-space: nowrap;
}
.is-load .l-section__line-box {
  animation: textline 60s linear infinite forwards;
}
.l-section__line-item {
  flex-shrink: 0;
  width: 1800px;
}
@media screen and (max-width: 899px) {
  .l-section__line-item {
    width: 880px;
  }
}

.l-footer {
  overflow: hidden;
}
.l-footer__content {
  position: relative;
  padding: 80px 30px;
}
@media screen and (max-width: 899px) {
  .l-footer__content {
    padding: 60px 20px 50px;
  }
}
.l-footer__bnr {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
}
@media screen and (max-width: 899px) {
  .l-footer__bnr {
    width: 100%;
    justify-content: center;
  }
}
.l-footer__bnr-item {
  width: 32%;
}
@media screen and (min-width: 900px) {
  .l-footer__bnr-item {
    margin-right: 2%;
  }
  .l-footer__bnr-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .l-footer__bnr-item {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .l-footer__bnr-item:nth-child(2n) {
    margin-right: 0;
  }
}
.l-footer__bnr-item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.l-footer__bnr-item a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(212, 62, 104, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
  .l-footer__bnr-item a:hover::after {
    opacity: 1;
  }
  .l-footer__bnr-item a:hover img {
    transform: scale(1.05);
  }
}
.l-footer__bnr-item a img {
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.l-footer__copy {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}
@media screen and (max-width: 899px) {
  .l-footer__copy {
    font-size: 10px;
    margin-top: 31px;
  }
}
.l-footer__pagetop {
  position: absolute;
  bottom: 12%;
  right: 2%;
  width: 8.5%;
  max-width: 120px;
}
@media (hover: hover) {
  .l-footer__pagetop {
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .l-footer__pagetop:hover {
    transform: scale(1.1);
  }
  .l-footer__pagetop:hover .l-footer__pagetop-arrow {
    transform: scale(0.85);
  }
}
@media screen and (max-width: 899px) {
  .l-footer__pagetop {
    position: relative;
    margin: 0 auto;
    margin-top: 30px;
    bottom: 0;
    right: 0;
    width: 20.5%;
    margin-top: 40px;
  }
}
.is-load .l-footer__pagetop-base img {
  animation: rotate_loop 8s linear infinite forwards;
}
.l-footer__pagetop-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.l-in {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 118px 5%;
}
@media screen and (max-width: 899px) {
  .l-in {
    padding: 58px 5% 38px;
  }
}
.l-in__head {
  text-align: center;
  color: var(--color-darkpink);
  margin-bottom: 77px;
}
@media screen and (max-width: 899px) {
  .l-in__head {
    margin-bottom: 30px;
  }
}
.l-in__head h1 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 70px;
  transform: translateY(25px);
  opacity: 0;
}
.is-load .l-in__head h1 {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .l-in__head h1 {
    font-size: 45px;
  }
}
.l-in__head-sub {
  font-size: 15px;
  transform: translateY(25px);
  opacity: 0;
  font-weight: 500;
}
.is-load .l-in__head-sub {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}
@media screen and (max-width: 899px) {
  .l-in__head-sub {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 1px;
  }
}
.l-in__content {
  position: relative;
  padding-bottom: 42px;
  transform: translateY(25px);
  opacity: 0;
}
.is-load .l-in__content {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.35s;
}

@media screen and (max-height: 800px) {
  html body .m-modal .m-modal__content {
    max-width: 1000px;
  }
}
@media screen and (max-width: 899px) {
  html body .m-modal .m-modal__content {
    width: 100%;
  }
}
html body .m-modal .m-modal__bg {
  background-color: rgba(212, 62, 104, 0.4);
}
html body .m-modal .m-modal__close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 899px) {
  html body .m-modal .m-modal__close-btn {
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
  }
}
@media (hover: hover) {
  html body .m-modal .m-modal__close-btn {
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  }
  html body .m-modal .m-modal__close-btn:hover {
    transform: scale(1.1);
  }
}
html body .m-modal .m-modal__close-btn::before {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  left: 0;
  background-color: transparent;
  background: url(../img/common/btn_close_txt.png) no-repeat center center;
  background-size: contain;
}
html body .m-modal .m-modal__close-btn::after {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  left: 0;
  background-color: transparent;
  background: url(../img/common/btn_close_icon.png) no-repeat center center;
  background-size: contain;
}

html body .m-modal.is-open .m-modal__close-btn::before {
  animation: rotate_loop 8s linear infinite;
}

html body .m-modal.is-close .m-modal__close-btn::before {
  animation: rotate_loop 8s linear infinite;
}

.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.is-load .l-loading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.l-loading__loader {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--color-darkpink) 94%, rgba(0, 0, 0, 0)) top/6px 6px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, var(--color-darkpink));
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 6px), #000 0);
  animation: Spin 1s infinite linear;
}
@media screen and (max-width: 899px) {
  .l-loading__loader {
    width: 50px;
    height: 50px;
    background: radial-gradient(farthest-side, var(--color-darkpink) 94%, rgba(0, 0, 0, 0)) top/4px 4px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, var(--color-darkpink));
    -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 4px), #000 0);
  }
}

.p-news_detail {
  background-color: var(--color-pailpink);
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  padding: 54px 4.7% 60px;
  margin-bottom: 80px;
}
@media screen and (max-width: 899px) {
  .p-news_detail {
    padding: 15px 4.7% 40px;
    margin-bottom: 40px;
  }
}
.p-news_detail__head {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 32px;
  margin-bottom: 48px;
}
@media screen and (max-width: 899px) {
  .p-news_detail__head {
    padding-bottom: 20px;
    margin-bottom: 29px;
  }
}
.p-news_detail__head-date {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  color: var(--color-blue);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  border-radius: 50%;
  margin-right: 17px;
}
@media screen and (max-width: 899px) {
  .p-news_detail__head-date {
    width: 50px;
    height: 50px;
    margin-right: 11px;
  }
}
.p-news_detail__head-date .p-in_year {
  font-size: 12px;
}
@media screen and (max-width: 899px) {
  .p-news_detail__head-date .p-in_year {
    font-size: 9px;
  }
}
.p-news_detail__head-date .p-in_date {
  font-size: 18px;
  margin-top: 3px;
}
@media screen and (max-width: 899px) {
  .p-news_detail__head-date .p-in_date {
    margin-top: 0px;
    font-size: 13px;
  }
}
.p-news_detail__head-text {
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 899px) {
  .p-news_detail__head-text {
    line-height: 1.4;
  }
}
.p-news_detail__head-store {
  font-size: 15px;
  color: var(--color-gray);
}
@media screen and (max-width: 899px) {
  .p-news_detail__head-store {
    font-size: min(13px, 3.4666666667vw);
    letter-spacing: 0.5px;
  }
}
.p-news_detail__head-ttl {
  font-size: 19px;
  margin-top: 3px;
}
@media screen and (max-width: 899px) {
  .p-news_detail__head-ttl {
    font-size: min(15px, 4vw);
    margin-top: 0px;
  }
}
.p-news_detail__text {
  line-height: 1.65;
}
@media screen and (max-width: 899px) {
  .p-news_detail__text {
    line-height: 1.6;
    font-size: 13px;
  }
}
.p-news_detail__text h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (max-width: 899px) {
  .p-news_detail__text h2 {
    line-height: 1.4;
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.p-news_detail__text h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (max-width: 899px) {
  .p-news_detail__text h3 {
    line-height: 1.4;
    margin-bottom: 15px;
    font-size: 15px;
  }
}
.p-news_detail__text h4 {
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 500;
}
@media screen and (max-width: 899px) {
  .p-news_detail__text h4 {
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.p-news_detail__text a {
  color: var(--color-darkpink);
  vertical-align: baseline;
}
@media (hover: hover) {
  .p-news_detail__text a:hover {
    text-decoration: none;
  }
}
.p-news_detail__text span {
  vertical-align: baseline;
}
.p-news_detail__text ul li {
  text-indent: -1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 899px) {
  .p-news_detail__text ul li {
    text-indent: -0.5rem;
    padding-left: 0.5rem;
  }
}
.p-news_detail__text ul li + li {
  margin-top: 20px;
}
@media screen and (max-width: 899px) {
  .p-news_detail__text ul li + li {
    margin-top: 11px;
  }
}
.p-news_detail__text img {
  width: auto;
 height:auto;
 margin:0 auto;
}
.p-news_detail__text iframe {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 900px) {
  .p-news_detail__text iframe {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 899px) {
  .p-news_detail__text iframe {
    height: 51.73vw !important;
  }
}
.p-news_detail__block {
  margin-top: 30px;
}
@media screen and (max-width: 899px) {
  .p-news_detail__block {
    margin-top: 40px;
  }
}

.p-news_detail_data {
  position: relative;
  padding: 40px 0 45px;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data {
    padding: 17px 0 21px;
  }
}
.p-news_detail_data::before, .p-news_detail_data::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  background: url(../img/common/doubleline_pink.png) repeat-x 0 bottom;
  background-size: 5px;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data::before, .p-news_detail_data::after {
    height: 3px;
    background-size: 3px;
  }
}
.p-news_detail_data::before {
  top: 0;
  transform: scaleY(-1);
}
.p-news_detail_data::after {
  bottom: 0;
}
.p-news_detail_data__head {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 29px;
  margin-bottom: 23px;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__head {
    flex-wrap: wrap;
    padding-bottom: 15px;
    margin-bottom: 13px;
  }
}
.p-news_detail_data__head-store {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-darkpink);
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__head-store {
    font-size: 14px;
    width: 66%;
  }
}
.p-news_detail_data__head-lead {
  font-size: 15px;
  line-height: 1.35;
  margin-top: 2px;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__head-lead {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 16px;
  }
}
.p-news_detail_data__head-icon {
  position: relative;
  flex-shrink: 0;
  width: 16%;
  padding-top: 16%;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 15px;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__head-icon {
    width: 30%;
    padding-top: 30%;
    margin-right: 9px;
  }
}
.p-news_detail_data__head-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-news_detail_data__detail-btn {
  background-color: var(--color-white);
  margin-top: 6px;
  text-align: center;
  width: 160px;
  border-radius: 100px;
  transition: background 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__detail-btn {
    width: 150px;
  }
}
@media (hover: hover) {
  .p-news_detail_data__detail-btn:hover {
    background-color: var(--color-blue);
  }
  .p-news_detail_data__detail-btn:hover a::before {
    background-color: var(--color-white);
  }
  .p-news_detail_data__detail-btn:hover .p-news_detail_data__detail-btn-text {
    color: var(--color-white);
  }
}
.p-news_detail_data__detail-btn a {
  display: block;
  text-decoration: none;
  padding: 7px 33px 3px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__detail-btn a {
    padding: 11px 28px 8px;
  }
}
.p-news_detail_data__detail-btn a::before {
  content: "";
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 20px;
  -webkit-mask: url(../img/common/icon_access.svg) no-repeat center center;
  mask: url(../img/common/icon_access.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-blue);
  transition: background 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__detail-btn a::before {
    left: 14px;
  }
}
.p-news_detail_data__detail-btn-text {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: var(--color-blue);
  transition: color 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__detail-btn-text {
    font-size: 11px;
  }
}
.p-news_detail_data__detail-box {
  display: flex;
}
.p-news_detail_data__detail-box + .p-news_detail_data__detail-box {
  margin-top: 12px;
}
.p-news_detail_data__detail-ttl {
  flex-shrink: 0;
  color: var(--color-darkpink);
  font-weight: 500;
  flex-shrink: 0;
  width: 80px;
  font-size: 14px;
  padding-right: 10px;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__detail-ttl {
    width: 65px;
    font-size: 12px;
  }
}
.p-news_detail_data__detail-text {
  line-height: 1.5;
  font-size: 14px;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__detail-text {
    font-size: 12px;
  }
}
.p-news_detail_data__detail-text .is-large {
  font-size: 18px;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__detail-text .is-large {
    font-size: 14px;
  }
}
.p-news_detail_data__detail-text .is-small {
  margin-top: 3px;
  font-size: 12px;
}
@media screen and (max-width: 899px) {
  .p-news_detail_data__detail-text .is-small {
    margin-top: 0px;
    font-size: 11px;
  }
}

.p-pickup__head {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: var(--color-darkpink);
  letter-spacing: 1px;
  margin-bottom: 38px;
}
@media screen and (max-width: 899px) {
  .p-pickup__head {
    font-size: 20px;
    margin-bottom: 39px;
  }
}
.p-pickup__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 51px;
  width: 100%;
  max-width: 1260px;
}
@media screen and (max-width: 899px) {
  .p-pickup__list {
    margin: 0 auto 26px;
  }
}
.p-pickup__list-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background-color: var(--color-pailpink);
}
.p-pickup__list-thumb::after {
  content: "";
  width: 15%;
  padding-top: 15%;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--color-white) 94%, rgba(0, 0, 0, 0)) top/6px 6px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, var(--color-white));
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 6px), #000 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate_center 1s linear infinite;
}
@media screen and (max-width: 899px) {
  .p-pickup__list-thumb::after {
    width: 30%;
    padding-top: 30%;
    background: radial-gradient(farthest-side, var(--color-white) 94%, rgba(0, 0, 0, 0)) top/4px 4px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, var(--color-white));
    -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 4px), #000 0);
  }
}
.p-pickup__list-thumb.lazyloaded::after {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-pickup__list-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-pickup__list-item {
  background-color: var(--color-pailpink);
  width: 31.8%;
  margin-right: 2.3%;
  margin-bottom: 2.3%;
  transition: background 0.65s cubic-bezier(0.37, 0, 0.63, 1);
}
@media (hover: hover) {
  .p-pickup__list-item:hover {
    background-color: #EDF8FF;
  }
  .p-pickup__list-item:hover .p-pickup__list-thumb img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 899px) {
  .p-pickup__list-item {
    width: 47.8%;
    margin-right: 4.3%;
    margin-bottom: 4.3%;
  }
  .p-pickup__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 900px) {
  .p-pickup__list-item:nth-child(3n) {
    margin-right: 0;
  }
}
.p-pickup__list-inner {
  display: block;
  padding: 30px 7% 35px;
  text-decoration: none;
  line-height: 1.4;
}
@media screen and (max-width: 899px) {
  .p-pickup__list-inner {
    padding: 14px 9.5% 16px;
  }
}
.p-pickup__list-content {
  margin-top: 15px;
  font-weight: 500;
}
@media screen and (max-width: 899px) {
  .p-pickup__list-content {
    margin-top: 16px;
  }
}
.p-pickup__list-store {
  font-size: 14px;
  color: var(--color-gray);
}
@media screen and (max-width: 899px) {
  .p-pickup__list-store {
    font-size: 11px;
  }
}
.p-pickup__list-text {
  margin-top: 4px;
  color: var(--color-black);
}
@media screen and (max-width: 899px) {
  .p-pickup__list-text {
    line-height: 1.4;
    font-size: 12px;
  }
}