@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;
  padding-top: 180px;
}
@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;
    position: fixed;
    top: 39px;
    left: 0;
    width: 100%;
}




.l-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    background: url(../img/bg/bg_sp.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: calc(100% + 40px);
}


@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;
  position:relative;
  z-index:10;
}
@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;
}


@media screen and (max-width: 899px) {
.l-header__menu {
  justify-content: unset;
}
}


.l-header__menu li{
width:auto;
  align-items: center;
}


.l-header__menu-item {
    position: relative;
    padding-right: 0px;
    transform: translateY(25px);
    opacity: 0;
}

@media screen and (max-width: 899px) {
    .l-header__menu-item {
		 padding-right: min(5px, 4.2666666667vw);
    }
}

.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;
 /* width:25%; */
}



.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, 3.5vw);
  }
}
.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(32px, 0vw);
  }
}
.l-header__menu-item::before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 40%;
    right: -13px;
    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);
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 40% 4.8px;
    right: -6px;
    transform: translateY(-50%);
    
    -webkit-mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
    mask: unset;
    -webkit-mask-size: contain;
    /* mask-size: contain; */
    
    background-color: unset;
  }
}
.l-header__menu-item a {
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    display: block;
    letter-spacing: 2px;
    color: var(--color-darkpink);
    font-size: min(14px, 1vw);
    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);
  }
}

.l-header__logo {
  pointer-events: none;
}

.l-content {
  position: relative;
  width: 100%;
}
.l-content__deco {
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  top: 0%;
  left: 0;
  transform: translateY(-44%);
  opacity: 0;
  width: 40%;
}
@media screen and (min-width: 900px) {
  .l-content__deco {
    min-width: 500px;
  }
}

/* 修正 */
.l-content__deco.is-active {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
  /* 修正 */
  display:none;
}
@media screen and (max-width: 899px) {
  .l-content__deco {
    width: 100%;
    transform: translateY(-61%);
  }
}
.l-content__deco-item {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .l-content__deco-item {
    width: 72%;
    transform: translateX(-19%);
  }
}
.is-load .l-content__deco img {
  animation: fuyofuyo 6s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards 0.2s;
}

.p-hero {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
  opacity: 0;
}
.is-load .p-hero {
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-hero {
    margin-bottom: 39px;
  }
}

.p-hero__topNews {
    /* position: relative; */
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
}

/* 修正 */
.p-hero__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  transform: translateY(-50%);
  pointer-events: none;
	/* 修正 */
  display:none;
}
@media screen and (min-width: 900px) {
  .p-hero__deco {
    min-width: 430px;
  display:none;
    
  }
}
@media screen and (max-width: 899px) {
  .p-hero__deco {
    width: 62%;
    right: -19%;
    transform: translateY(-108%);
  display:none;
  }
}
.is-load .p-hero__deco img {
    /*animation: fuyofuyo 5s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards; */
}


.p-hero__slider {
  position: relative;
  padding: 5px 0;
  transform: translateY(25px);
  opacity: 0;
}
.is-load .p-hero__slider {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__slider::before {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  top: -5px;
  left: 0;
  background: url(../img/common/doubleline_white.png) repeat-x 0 bottom;
  background-size: 6px;
}
@media screen and (min-width: 900px) {
  .p-hero__slider::before {
    height: 16px;
    background-size: 12px;
    top: -10px;
  }
}
.p-hero__slider::after {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background: url(../img/common/doubleline_white.png) repeat-x 0 bottom;
  background-size: 6px;
  transform: scaleY(-1);
}
@media screen and (min-width: 900px) {
  .p-hero__slider::after {
    height: 16px;
    background-size: 12px;
    bottom: -10px;
  }
}
@media screen and (max-width: 899px) {
  .p-hero__slider {
    padding: 3px 0;
  }
}
.p-hero__btns {
  display: flex;
  margin: 0 auto;
  margin-top: 60px;
  width: 90%;
  max-width: 620px;
}
@media screen and (max-width: 899px) {
  .p-hero__btns {
    width: 66%;
    display: block;
    margin-top: 39px;
  }
}
.p-hero__btns-item {
  width: 48%;
  background-color: var(--color-white);
  border-radius: 100px;
  text-align: center;
  overflow: hidden;
  transform: translateY(25px);
  opacity: 0;
}
.p-hero__btns.is-active .p-hero__btns-item {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__btns.is-active .p-hero__btns-item:nth-child(1) {
  transition-delay: 0s;
}
.p-hero__btns.is-active .p-hero__btns-item:nth-child(2) {
  transition-delay: 0.14s;
}
@media screen and (max-width: 899px) {
  .p-hero__btns-item {
    width: 100%;
  }
}
.p-hero__btns-item.-x a::before {
  -webkit-mask: url(../img/common/sns_x.svg) no-repeat center center;
  mask: url(../img/common/sns_x.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.p-hero__btns-item.-insta a::before {
  -webkit-mask: url(../img/common/sns_ig.svg) no-repeat center center;
  mask: url(../img/common/sns_ig.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.p-hero__btns-item a {
  display: block;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  color: var(--color-blue);
  padding: 29px 19% 25px;
  position: relative;
  transition: background 0.65s cubic-bezier(0.37, 0, 0.63, 1), color 0.65s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .p-hero__btns-item a {
    font-size: 13px;
    padding: 20px 19% 17px;
  }
}
@media (hover: hover) {
  .p-hero__btns-item a:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
  }
  .p-hero__btns-item a:hover::before {
    background-color: var(--color-white);
  }
}
.p-hero__btns-item a::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  background-color: var(--color-blue);
  transition: background 0.65s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .p-hero__btns-item a::before {
    left: 23px;
  }
}
.p-hero__btns-item + .p-hero__btns-item {
  margin-left: 4%;
}
@media screen and (max-width: 899px) {
  .p-hero__btns-item + .p-hero__btns-item {
    margin-left: 0;
    margin-top: 10px;
  }
}

.hero_swiper {
  overflow: hidden;
  width: 100%;
}
.hero_swiper .swiper-slide {
  width: 100%;
  border-right: 1px solid var(--color-white);
}
.hero_swiper .swiper-slide a {
  display: block;
  position: relative;
  padding-top: 64.5%;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .hero_swiper .swiper-slide a {
    padding-top: 63%;
  }
}
@media (hover: hover) {
  .hero_swiper .swiper-slide a:hover img {
    transform: scale(1.05);
  }
}
.hero_swiper .swiper-slide a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.topNews_swiper {
  background-color: rgba(212, 62, 104, 0.4);
  overflow: hidden;
}
.topNews_swiper__inner {
  text-decoration: none;
  display: block;
  color: var(--color-white);
  text-align: center;
  padding: 11px 20px;
  font-weight: 500;
  font-size: 17px;
}
@media screen and (max-width: 899px) {
  .topNews_swiper__inner {
    font-size: 13px;
  }
}
.topNews_swiper a {
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .topNews_swiper a:hover {
    opacity: 0.7;
  }
}
.topNews_swiper__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
}
.topNews_swiper .swiper-slide {
  width: auto;
}
.no-slide .topNews_swiper .swiper-slide {
  width: 100%;
}
.topNews_swiper .swiper-wrapper {
  transition: transform linear;
}

.p-movie {
  padding-bottom: 48px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-movie {
    padding-bottom: 38px;
  }
}
.p-movie::before {
  content: "";
  width: 100%;
  padding-top: min(28.6%, 330px);
  background-color: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 899px) {
  .p-movie::before {
    padding-top: 39%;
  }
}
.p-movie__wrap {
  position: relative;
  border: 1px solid var(--color-darkpink);
  padding: 5px;
  border-radius: 1000px;
  margin: 0 auto;
  width: 80%;
  max-width: 1000px;
  transform: scale(0.85);
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .p-movie.is-active .p-movie__wrap {
    opacity: 1;
    transform: scale(1);
    transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  }
}
@media screen and (max-width: 899px) {
  .p-movie__wrap {
    width: 90%;
  }
  .is-load .p-movie__wrap {
    opacity: 1;
    transform: scale(1);
    transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.8s;
  }
}
.p-movie__content {
  border-radius: 1000px;
  overflow: hidden;
}
.p-movie__box {
  padding-top: 56%;
  position: relative;
  cursor: pointer;
}
@media (hover: hover) {
  .p-movie__box:hover .p-movie__thumb {
    transform: scale(1.05);
    filter: blur(2px);
  }
  .p-movie__box:hover .p-movie__play-inner {
    transform: scale(1.1);
  }
  .p-movie__box:hover .p-movie__play-icon img {
    transform: scale(0.85);
  }
}
.p-movie__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-movie__thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(212, 62, 104, 0.4);
}
.p-movie__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14%;
}
@media screen and (max-width: 899px) {
  .p-movie__play {
    width: 22%;
  }
}
.p-movie__play-inner {
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-load .p-movie__play-base img {
  animation: rotate_loop 8s linear infinite;
}
.p-movie__play-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-movie__play-icon img {
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p-news {
  margin-bottom: 48px;
  background-color: var(--color-white);
}
@media screen and (max-width: 899px) {
  .p-news {
    margin-bottom: 38px;
  }
}
.p-news .l-section__inner {
  margin: 0;
  margin-left: auto;
  max-width: none;
  width: 93%;
}
@media screen and (min-width: 1300px) {
  .p-news .l-section__inner {
    width: 100%;
    padding-left: calc((100% - 1200px) / 2);
  }
}
@media screen and (max-width: 899px) {
  .p-news .l-section__inner {
    width: 94%;
  }
}
.p-news .l-section__content {
  flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .p-news__ttl {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    height: 100%;
    padding-top: 30px;
    margin-top: -30px;
    flex-shrink: 0;
    width: 240px;
    text-align: left;
  }
}
@media screen and (max-width: 899px) {
  .p-news__ttl {
    margin-bottom: 49px;
  }
}
@media screen and (min-width: 900px) {
  .p-news .l-section__inner {
    display: flex;
  }
}
.p-news__list {
  transform: translateY(25px);
  opacity: 0;
}
.l-section.is-active .p-news__list {
  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.2s;
}
.p-news__list-item {
  position: relative;
}
.p-news__list-item + .p-news__list-item {
  margin-top: 9px;
}
@media screen and (max-width: 899px) {
  .p-news__list-item + .p-news__list-item {
    margin-top: 11px;
  }
}
@media (hover: hover) {
  .p-news__list-item:hover::before {
    background-color: #EDF8FF;
  }
}
.p-news__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-pailpink);
  border-radius: 100px 0 0 100px;
  transition: background 0.65s cubic-bezier(0.37, 0, 0.63, 1);
}
.p-news__list-inner {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 30px 30px;
}
@media screen and (max-width: 899px) {
  .p-news__list-inner {
    padding: 14px 18px;
  }
}
.p-news__list-date {
  background-color: var(--color-white);
  flex-shrink: 0;
  margin-right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  color: var(--color-blue);
}
@media screen and (max-width: 899px) {
  .p-news__list-date {
    width: 50px;
    height: 50px;
    margin-right: 11px;
  }
}
.p-news__list-date .p-in_year {
  font-size: 12px;
}
@media screen and (max-width: 899px) {
  .p-news__list-date .p-in_year {
    font-size: 8px;
  }
}
.p-news__list-date .p-in_date {
  font-size: 18px;
  margin-top: 4px;
}
@media screen and (max-width: 899px) {
  .p-news__list-date .p-in_date {
    font-size: 13px;
    margin-top: 0px;
  }
}
.p-news__list-text {
  line-height: 1.5;
  color: var(--color-black);
  font-weight: 500;
  letter-spacing: 1px;
}
@media screen and (max-width: 899px) {
  .p-news__list-text {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 2px;
  }
}
.p-news__list-label {
  color: var(--color-gray);
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
@media screen and (max-width: 899px) {
  .p-news__list-label {
    font-size: 12px;
  }
}

.p-pickup {
  overflow: hidden;
}
.p-pickup .l-section__ttl {
  margin-bottom: 75px;
}
@media screen and (max-width: 899px) {
  .p-pickup .l-section__ttl {
    margin-bottom: 47px;
  }
}
.p-pickup .l-section__inner {
  max-width: none;
  width: 100%;
}
.p-pickup__block {
  position: relative;
}
.p-pickup__block + .p-pickup__block {
  margin-top: 78px;
}
@media screen and (max-width: 899px) {
  .p-pickup__block + .p-pickup__block {
    margin-top: 47px;
  }
}
.p-pickup__block-header {
  max-width: 1200px;
  margin: 0 auto 31px;
  width: 90%;
  display: flex;
  position: relative;
  transform: translateY(25px);
  opacity: 0;
}
.p-pickup__block.is-active .p-pickup__block-header {
  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) {
  .p-pickup__block-header {
    width: 87%;
    margin: 0 auto 17px;
  }
}
.p-pickup__block-header-ttl {
  text-align: center;
  color: var(--color-darkpink);
  font-weight: 500;
  font-size: 33px;
  flex-grow: 1;
}
@media screen and (max-width: 899px) {
  .p-pickup__block-header-ttl {
    font-size: 22px;
  }
}
.p-pickup__block-controller {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.is-no-slide .p-pickup__block-controller {
  display: none;
}
.p-pickup__block-controller-item {
  cursor: pointer;
  width: 22px;
}
@media (hover: hover) {
  .p-pickup__block-controller-item {
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-pickup__block-controller-item:hover {
    opacity: 0.6;
  }
}
.p-pickup__block-controller-item + .p-pickup__block-controller-item {
  margin-left: 19px;
}
@media screen and (max-width: 899px) {
  .p-pickup__block-controller-item + .p-pickup__block-controller-item {
    margin-left: 14px;
  }
}
.p-pickup__block-controller-item.-prev {
  transform: scaleX(-1);
}
.p-pickup__block-controller-item svg {
  fill: var(--color-darkpink);
}
.p-pickup__block-slider {
  position: relative;
  padding: 5px 0;
  transform: translateY(25px);
  opacity: 0;
}
.p-pickup__block.is-active .p-pickup__block-slider {
  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.2s;
}
@media screen and (max-width: 899px) {
  .p-pickup__block-slider {
    padding: 3px 0;
  }
}
.p-pickup__block-slider::before {
  content: "";
  width: 100%;
  height: 6px;
  position: absolute;
  top: -3px;
  left: 0;
  background: url(../img/common/doubleline_white.png) repeat-x 0 bottom;
  background-size: 6px;
}
@media screen and (min-width: 900px) {
  .p-pickup__block-slider::before {
    height: 7px;
    background-size: 7px;
    top: -2px;
  }
}
.p-pickup__block-slider::after {
  content: "";
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: url(../img/common/doubleline_white.png) repeat-x 0 bottom;
  background-size: 6px;
  transform: scaleY(-1);
}
@media screen and (min-width: 900px) {
  .p-pickup__block-slider::after {
    height: 7px;
    background-size: 7px;
    bottom: -2px;
  }
}
.p-pickup__block-slider-content {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
  padding: 0;
}
@media screen and (max-width: 899px) {
  .p-pickup__block-slider-content {
    padding: 0 7%;
  }
}
.p-pickup__block-slider-inner {
  text-decoration: none;
}
.p-pickup__block-slider-text {
  margin-top: 15px;
  line-height: 1.5;
}
.p-pickup__block-slider-store {
  color: var(--color-gray);
  font-size: 15px;
}
@media screen and (max-width: 899px) {
  .p-pickup__block-slider-store {
    font-size: 11px;
  }
}
.p-pickup__block-slider-lead {
  color: var(--color-white);
  margin-top: 1px;
  letter-spacing: 1px;
}
@media screen and (max-width: 899px) {
  .p-pickup__block-slider-lead {
    font-size: 12px;
  }
}
.p-pickup__block-slider-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background-color: var(--color-pailpink);
}
.p-pickup__block-slider-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__block-slider-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__block-slider-thumb.lazyloaded::after {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-pickup__block-slider-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);
}
@media screen and (min-width: 900px) {
  .p-pickup__block-more {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 899px) {
  .p-pickup__block-more {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0;
    transform: translateY(25px);
    opacity: 0;
  }
  .p-pickup__block.is-active .p-pickup__block-more {
    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.4s;
  }
}

.pickup_swiper {
  position: relative;
}
.pickup_swiper::before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(212, 62, 104, 0.4);
}
.pickup_swiper .swiper-slide {
  height: auto;
  width: 33.33%;
  border-right: 1px solid var(--color-white);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 899px) {
  .pickup_swiper .swiper-slide {
    width: 49%;
  }
}
.pickup_swiper .swiper-slide a {
  display: block;
  padding: min(30px, 2.7272727273vw) min(30px, 2.7272727273vw) min(45px, 4.0909090909vw);
  flex-grow: 1;
}
@media screen and (max-width: 899px) {
  .pickup_swiper .swiper-slide a {
    padding: 20px 5% 16px;
  }
}
@media (hover: hover) {
  .pickup_swiper .swiper-slide a:hover .p-pickup__block-slider-thumb img {
    transform: scale(1.1);
  }
}
.is-no-slide .pickup_swiper .swiper-slide {
  width: 33.33%;
}
@media screen and (max-width: 899px) {
  .is-no-slide .pickup_swiper .swiper-slide {
    width: 49%;
  }
}
.is-no-slide .pickup_swiper .swiper-slide:nth-child(1) {
  border-left: 1px solid var(--color-white);
}

.p-access {
  background-color: var(--color-white);
  padding-top: 118px;
}
@media screen and (max-width: 899px) {
  .p-access {
    padding-top: 80px;
  }
}
@media screen and (min-width: 900px) {
  .p-access .l-section__content {
    display: flex;
  }
}
.p-access .l-section__ttl {
  margin-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .p-access__links {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    height: 100%;
    padding: 60px 0 0;
    flex-shrink: 0;
    width: 140px;
    width: min(140px, 12.7272727273vw);
  }
}
@media screen and (max-width: 899px) {
  .p-access__links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 49px;
  }
}
.p-access__links-item {
  font-size: 15px;
  font-size: min(15px, 1.3636363636vw);
  transform: translateY(25px);
  opacity: 0;
}
.l-section.is-active .p-access__links-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);
}
.l-section.is-active .p-access__links-item:nth-child(1) {
  transition-delay: 0s;
}
.l-section.is-active .p-access__links-item:nth-child(2) {
  transition-delay: 0.13s;
}
.l-section.is-active .p-access__links-item:nth-child(3) {
  transition-delay: 0.26s;
}
.l-section.is-active .p-access__links-item:nth-child(4) {
  transition-delay: 0.39s;
}
@media screen and (max-width: 899px) {
  .p-access__links-item {
    width: 48.5%;
    text-align: center;
    background-color: var(--color-blue);
    border-radius: 100px;
    margin-bottom: 10px;
  }
  .p-access__links-item:nth-child(2n) {
    margin-left: 3%;
  }
}
.p-access__links-item + .p-access__links-item {
  margin-top: 17px;
}
@media screen and (max-width: 899px) {
  .p-access__links-item + .p-access__links-item {
    margin-top: 0;
  }
}
.p-access__links-item a {
  text-decoration: none;
  color: var(--color-black);
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}
@media (hover: hover) {
  .p-access__links-item a {
    transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-access__links-item a:hover {
    color: var(--color-blue);
  }
}
@media screen and (max-width: 899px) {
  .p-access__links-item a {
    display: block;
    padding: 11px 23px 10px;
  }
  .p-access__links-item a::after {
    content: "";
    width: 9px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 16px;
    -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-white);
    transform: rotate(90deg);
  }
}
.p-access__links-text {
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 900px) {
  .is-current .p-access__links-text {
    color: var(--color-blue);
  }
}
@media screen and (max-width: 899px) {
  .p-access__links-text {
    font-size: 13px;
    color: var(--color-white);
  }
}
.p-access__contents {
  flex-grow: 1;
  padding: 10px 0 0;
}
@media screen and (max-width: 899px) {
  .p-access__contents {
    padding: 5px 0 0;
  }
}
.p-access__block {
  padding-top: 43px;
  transform: translateY(28px);
  opacity: 0;
}
.p-access__block.is-active {
  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) {
  .p-access__block {
    padding-top: 30px;
  }
}
.p-access__block-ttl {
  padding-bottom: 19px;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 899px) {
  .p-access__block-ttl {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}
.p-access__block-ttl::before {
  content: "";
  width: 100%;
  height: 7px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: url(../img/common/doubleline_pink.png) repeat-x 0 top;
  background-size: 6px;
}
@media screen and (max-width: 899px) {
  .p-access__block-ttl::before {
    height: 4px;
    background-size: 4px;
  }
}
.p-access__block-ttl-text {
  color: var(--color-darkpink);
  font-size: 25px;
  font-weight: 500;
}
@media screen and (max-width: 899px) {
  .p-access__block-ttl-text {
    font-size: 17px;
    letter-spacing: 1px;
  }
}
.p-access__block-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 899px) {
  .p-access__block-list {
    display: block;
  }
}
.p-access__block-list-item {
  background-color: var(--color-pailpink);
  padding: min(40px, 3.6363636364vw) min(40px, 3.6363636364vw) min(65px, 5.9090909091vw);
  width: 49%;
  margin-bottom: 3%;
}
@media screen and (min-width: 900px) {
  .p-access__block-list-item:nth-child(2n) {
    margin-left: 2%;
  }
}
@media screen and (max-width: 899px) {
  .p-access__block-list-item {
    padding: 20px 20px 20px;
    width: 100%;
    margin-bottom: 5%;
  }
  .js-ac .p-access__block-list-item {
    margin-bottom: 0;
  }
  .js-ac .p-access__block-list-item + .p-access__block-list-item {
    margin-top: 5%;
  }
}
.p-access__block-ac {
  border: 1px solid var(--color-darkpink);
}
.p-access__block-ac-head {
  padding: 21px 29px;
  position: relative;
}
@media (hover: hover) {
  .p-access__block-ac-head:hover .p-access__block-ac-head-ttl {
    color: var(--color-blue);
  }
  .p-access__block-ac-head:hover .p-access__block-ac-head-icon::before, .p-access__block-ac-head:hover .p-access__block-ac-head-icon::after {
    background-color: var(--color-blue);
  }
}
@media screen and (max-width: 899px) {
  .p-access__block-ac-head {
    padding: 18px 21px;
  }
}
.p-access__block-ac-head-ttl {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-darkpink);
  letter-spacing: 1px;
  padding-right: 30px;
  transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .p-access__block-ac-head-ttl {
    font-size: 13.5px;
  }
}
.p-access__block-ac-head-icon {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .p-access__block-ac-head-icon {
    right: 17px;
    transform: translateY(-50%) rotate(45deg);
    width: 15px;
    height: 15px;
  }
}
.is-ac-open .p-access__block-ac-head-icon {
  transform: translateY(-50%) rotate(0);
}
.p-access__block-ac-head-icon::before, .p-access__block-ac-head-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-darkpink);
  height: 1px;
  width: 90%;
  transition: background 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-access__block-ac-head-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-access__block-ac-head-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-access__block-ac-content-inner {
  padding: 0 29px;
}
@media screen and (max-width: 899px) {
  .p-access__block-ac-content-inner {
    padding: 0 20px 24px;
  }
}
.p-access__block-online {
  background-color: var(--color-pailpink);
  padding: 10px 0 40px;
}
@media screen and (max-width: 899px) {
  .p-access__block-online {
    padding: 18px 0 40px;
  }
}
.p-access__block-online-logo {
  margin: 0 auto 10px;
  width: 47%;
}
@media screen and (max-width: 899px) {
  .p-access__block-online-logo {
    width: 75%;
  }
}
.p-access__block-online-link {
  margin: 0 auto;
  width: 400px;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .p-access__block-online-link {
    width: 75%;
  }
}

.p-access_data__head {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 28px;
}
@media screen and (max-width: 899px) {
  .p-access_data__head {
    flex-wrap: wrap;
    padding-bottom: 15px;
  }
}
.p-access_data__head-icon {
  flex-shrink: 0;
  width: 32%;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 3.5%;
}
@media screen and (max-width: 899px) {
  .p-access_data__head-icon {
    width: 30%;
    margin-right: 4.5%;
  }
  .js-ac .p-access_data__head-icon {
    width: 35%;
  }
}
.p-access_data__head-text {
  line-height: 1.3;
}
.p-access_data__head-store {
  color: var(--color-darkpink);
  font-weight: 500;
  font-size: min(20px, 1.8181818182vw);
  letter-spacing: 1px;
  margin-bottom: 6px;
  line-height: 1.3;
}
@media screen and (max-width: 899px) {
  .p-access_data__head-store {
    width: 65%;
    word-break: break-all;
    font-size: 14px;
    margin-bottom: 0;
    letter-spacing: 1.5px;
  }
  .js-ac .p-access_data__head-store {
    width: 60%;
  }
}
.p-access_data__head-lead {
  font-size: min(15px, 1.3636363636vw);
}
@media screen and (max-width: 899px) {
  .p-access_data__head-lead {
    font-size: 13px;
    margin-top: 17px;
  }
}
.p-access_data__detail {
  margin-top: 26px;
}
@media screen and (max-width: 899px) {
  .p-access_data__detail {
    margin-top: 18px;
  }
}
.p-access_data__detail-ttl {
  color: var(--color-darkpink);
  font-size: min(14px, 1.2727272727vw);
  font-weight: 500;
  flex-shrink: 0;
  padding-right: 10px;
  width: min(80px, 7.2727272727vw);
}
@media screen and (max-width: 899px) {
  .p-access_data__detail-ttl {
    font-size: min(12px, 3.2vw);
    width: min(67px, 17.8666666667vw);
  }
}
.p-access_data__detail-box {
  display: flex;
}
.p-access_data__detail-box + .p-access_data__detail-box {
  margin-top: 17px;
}
@media screen and (max-width: 899px) {
  .p-access_data__detail-box + .p-access_data__detail-box {
    margin-top: 18px;
  }
}
.p-access_data__detail-text {
  position: relative;
  margin-top: -2px;
  font-size: 14px;
  line-height: 1.4;
  flex-grow: 1;
}
@media screen and (max-width: 899px) {
  .p-access_data__detail-text {
    font-size: 12px;
  }
}
.p-access_data__detail-text .is-large {
  font-size: 17px;
}
@media screen and (max-width: 899px) {
  .p-access_data__detail-text .is-large {
    font-size: 14px;
  }
}
.p-access_data__detail-text .is-small {
  font-size: 12px;
  margin-top: 5px;
}
@media screen and (max-width: 899px) {
  .p-access_data__detail-text .is-small {
    font-size: 11px;
    margin-top: 1px;
  }
}
.p-access_data__detail-btn {
  background-color: var(--color-white);
  margin-top: 6px;
  text-align: center;
  width: min(160px, 14.5454545455vw);
  border-radius: 100px;
  transition: background 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media (hover: hover) {
  .p-access_data__detail-btn:hover {
    background-color: var(--color-blue);
  }
  .p-access_data__detail-btn:hover a::before {
    background-color: var(--color-white);
  }
  .p-access_data__detail-btn:hover .p-access_data__detail-btn-text {
    color: var(--color-white);
  }
}
@media screen and (max-width: 899px) {
  .p-access_data__detail-btn {
    width: 150px;
  }
}
.p-access_data__detail-btn a {
  display: block;
  text-decoration: none;
  padding: 7px 33px 3px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-access_data__detail-btn a {
    padding: 11px 28px 8px;
  }
}
.p-access_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-access_data__detail-btn a::before {
    left: 14px;
  }
}
.p-access_data__detail-btn-text {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  color: var(--color-blue);
  transition: color 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .p-access_data__detail-btn-text {
    font-size: 11px;
  }
}

.js-ac-btn {
  cursor: pointer;
}
.js-ac-body {
  overflow: hidden;
}