@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #444444;
  line-height: 1.5;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 25px;
    max-width: 1140px;
  }
}

.c-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.c-title__main {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #F472B6;
  position: relative;
  display: inline-block;
  background-color: #fff;
  font-size: 1.5rem;
  padding: 0.25rem 0;
}
@media screen and (min-width: 768px) {
  .c-title__main {
    font-size: 2rem;
    padding: 0.5rem 0;
  }
}
.c-title__main::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  background: url("../images/top/title-deco.png") repeat-x left center/contain;
  top: -0.25rem;
  height: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-title__main::before {
    top: -0.5rem;
    height: 0.5rem;
  }
}
.c-title__main::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  background: url("../images/top/title-deco.png") repeat-x left center/contain;
  bottom: -0.25rem;
  height: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-title__main::after {
    bottom: -0.5rem;
    height: 0.5rem;
  }
}

.c-title__sub {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-title__sub {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
}

.c-title__text {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-title__text {
    margin-top: 2.875rem;
    max-width: 41.9375rem;
  }
}

.p-404 {
  text-align: center;
  margin-top: 3.75rem;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-404 {
    margin-top: 5.625rem;
    padding: 80px 0;
  }
}

.p-404__title {
  font-weight: bold;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 1.5rem;
  }
}

.p-404__btnWrap {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404__btnWrap {
    margin-top: 3.9375rem;
  }
}

.p-404__btn {
  display: inline-block;
  font-weight: 500;
  color: #F472B6;
  background-color: #fff;
  border-radius: 3.125rem;
  box-shadow: 0.0625rem 0.125rem 0.125rem rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.625rem 2.5rem;
  font-size: 0.875rem;
  border: 1px solid #F472B6;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    border: 0.125rem solid #F472B6;
    padding: 0.625rem 3rem;
    font-size: 1rem;
  }
}
.p-404__btn:hover {
  opacity: 1;
  background-color: #F472B6;
  color: #fff;
  box-shadow: 0 0.375rem 0.75rem rgba(244, 114, 182, 0.4);
}

.p-contact {
  margin-top: 3.75rem;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact {
    margin-top: 5.625rem;
    padding: 5.625rem 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__deco {
    padding: 5rem 1.875rem;
    background: url("../images/contact/bg.png") no-repeat center center/contain;
  }
}

.p-contact__inner.l-inner {
  max-width: 47.0625rem;
}

.p-contact__title {
  font-weight: bold;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 1.5rem;
  }
}

.p-contact__form {
  margin: 2.25rem auto;
  max-width: 56.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin: 3rem auto;
  }
}
.p-contact__form::-moz-placeholder {
  color: #ccc;
}
.p-contact__form::placeholder {
  color: #ccc;
}

.p-contact__form-wrap + .p-contact__form-wrap {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-wrap + .p-contact__form-wrap {
    margin-top: 1.875rem;
  }
}

.p-contact__form-label {
  line-height: 1;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-label {
    font-size: 1.125rem;
  }
}

.p-contact__form-label span {
  margin-left: 0.1875rem;
  display: inline-block;
  color: #FF3F02;
}

.p-contact__form-input {
  margin-top: 0.625rem;
}

.p-contact__form-input input {
  padding: 0.625rem;
  width: 100%;
  line-height: 1;
  border-radius: 0.3125rem;
  border: 0.125rem solid #CDCED4;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-input input {
    font-size: 1rem;
  }
}

.p-contact__form-input input:focus {
  outline: none;
}

.p-contact__form-input input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact__form-input input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact__form-textarea {
  margin-top: 0.625rem;
}

.p-contact__form-textarea textarea {
  padding: 0.625rem;
  width: 100%;
  height: 14.375rem;
  border-radius: 0.3125rem;
  border: 0.125rem solid #CDCED4;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  resize: none;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-textarea textarea {
    font-size: 1rem;
  }
}

.p-contact__form-textarea textarea:focus {
  box-shadow: none;
  outline: none;
}

.p-contact__form-textarea textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact__form-textarea textarea::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact__form-submitWrap {
  margin-top: 2.5rem;
  text-align: center;
}

.p-contact__form-submit {
  display: inline-block;
  position: relative;
}
.p-contact__form-submit .p-contact__form-icon {
  margin-top: 0.0625rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/top/icon-mail.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 1.6875rem;
  z-index: 10;
  pointer-events: none;
  transform: translateY(-50%);
}

.p-contact__form-submit input {
  box-shadow: 0.0625rem 0.125rem 0.125rem rgba(0, 0, 0, 0.25);
  border-radius: 3.125rem;
  border: 1px solid #F472B6;
  cursor: pointer;
  background-color: #F472B6;
  display: inline-block;
  padding: 0.75rem 1.5rem 0.75rem 3.75rem;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-contact__form-submit input {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__form-submit input:hover {
    background-color: #F472B6;
  }
}

.p-contact__form-submit input:hover,
.p-contact__form-submit input:focus {
  outline: none;
}

@media screen and (min-width: 768px) {
  .p-contact__form-submit input:hover {
    opacity: 0.7;
  }
}

.p-contact__form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.wpcf7-spinner {
  display: none !important;
}

.p-footer {
  padding: 2.5rem 0 0.625rem;
  background: linear-gradient(180deg, #FDF2F8 0%, #FEFCE8 100%);
}

@media screen and (min-width: 768px) {
  .p-footer__inner.l-inner {
    max-width: 83.125rem;
  }
}

.p-footer__body {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__body {
    gap: 0;
    flex-direction: row;
  }
}

.p-footer__logo {
  max-width: 7.5rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 9.8125rem;
  }
}

.p-footer__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-footer__logo-boxImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-footer__logo-boxImg:nth-child(1) {
  max-width: 2.5rem;
}
.p-footer__logo-boxImg:nth-child(1) img {
  aspect-ratio: 40/40;
}
.p-footer__logo-boxImg:nth-child(2) {
  max-width: 7.3125rem;
}
.p-footer__logo-boxImg:nth-child(2) img {
  aspect-ratio: 117/28;
}

.p-footer__brand-text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__brand-text {
    text-align: center;
  }
}

.p-footer__heading {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-footer__heading {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__col--other {
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__col--sns {
    margin-top: 3.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__shop-list {
    margin-top: 1.25rem;
  }
}

.p-footer__shop-row {
  display: flex;
  gap: 1.75rem;
}

.p-footer__shop-row + .p-footer__shop-row {
  margin-top: 0.25rem;
}

.p-footer__shop-term {
  min-width: 5.875rem;
  font-weight: 700;
  letter-spacing: 1em;
}
.p-footer__shop-term.p-footer__shop-term--narrow {
  letter-spacing: -0.1875rem;
}

.p-footer__shop-desc span {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__shop-desc span {
    font-size: 0.9375rem;
  }
}

.p-footer__other-title {
  font-weight: 700;
}

.p-footer__other-link {
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-top: 0.3125rem;
}

.p-footer__sns-list {
  display: flex;
  gap: 1rem;
}

.p-footer__sns-item {
  max-width: 2.5rem;
  width: 100%;
}
.p-footer__sns-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 40/40;
}

.p-footer__copyright {
  margin-top: 4.0625rem;
  text-align: center;
  font-size: 0.75rem;
}

.p-header {
  height: 3.75rem;
  background-color: #fff;
  padding-bottom: 0.5625rem;
}
.p-header::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5625rem;
  background: url("../images/top/dot.png") repeat-x center center/contain;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 5.625rem;
  }
}

.p-header__inner.l-inner {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__inner.l-inner {
    max-width: 86.375rem;
  }
}

.p-header__body {
  height: inherit;
  display: flex;
  justify-content: space-between;
}

.p-header__logo {
  max-width: 7.5rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 9.8125rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo-boxImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-header__logo-boxImg:nth-child(1) {
  max-width: 2.5rem;
}
.p-header__logo-boxImg:nth-child(1) img {
  aspect-ratio: 40/40;
}
.p-header__logo-boxImg:nth-child(2) {
  max-width: 7.3125rem;
}
.p-header__logo-boxImg:nth-child(2) img {
  aspect-ratio: 117/28;
}

.p-header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    max-width: 31.4375rem;
    width: 100%;
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
  justify-content: space-between;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #444444;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #F472B6;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding: 14.25rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(240, 253, 249, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.p-header__drawer.is-open {
  right: 0;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #F472B6;
  text-align: center;
  text-transform: uppercase;
}

.p-hero {
  margin-top: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-hero {
    margin-top: 5.625rem;
  }
}
.p-hero::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 23.125rem;
  bottom: 0;
  left: 0;
  background: url("../images/top/top-bg.png") right center/cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-hero::before {
    width: 50%;
    height: 100%;
    bottom: auto;
    top: -3.75rem;
    left: 0;
  }
}
.p-hero::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../images/top/top-bg.png") left center/cover;
  z-index: -1;
  display: none;
}
@media screen and (min-width: 1441px) {
  .p-hero::after {
    display: block;
  }
}

.p-hero__inner.l-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-hero__inner.l-inner {
    margin-right: 0;
    padding: 0 0 0 25px;
    max-width: 86.375rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-hero__inner.l-inner {
    margin-right: auto;
  }
}

.p-hero__body {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-hero__body {
    gap: 0;
    justify-content: space-between;
    flex-direction: row;
  }
}

.p-hero__content {
  text-align: center;
  max-width: 17.125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-hero__content {
    max-width: 100%;
    width: 41.8%;
    margin-top: -3.125rem;
  }
}

.p-hero__catch {
  max-width: 15.4375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-hero__catch {
    max-width: 36.125rem;
  }
}
.p-hero__catch img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 247/32;
}
@media screen and (min-width: 768px) {
  .p-hero__catch img {
    aspect-ratio: 578/75;
  }
}

.p-hero__subtitle {
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-top: 2.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-hero__subtitle {
    margin-top: 4.625rem;
    font-size: 1.5rem;
  }
}

.p-hero__brand {
  display: inline-block;
  max-width: 7.25rem;
}
@media screen and (min-width: 768px) {
  .p-hero__brand {
    max-width: 14.5625rem;
  }
}

.p-hero__desc {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-hero__desc {
    font-size: 1.3125rem;
    line-height: 1.2857142857;
    margin-top: 1.625rem;
  }
}

.p-hero__buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-direction: column;
  align-items: center;
  max-width: 28.125rem;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-hero__buttons {
    flex-direction: row;
    margin-top: 6.25rem;
    justify-content: space-between;
  }
}

.p-hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.375rem;
  max-width: 8.125rem;
  font-size: 0.75rem;
  width: 100%;
  border-radius: 3.125rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-hero__btn {
    padding: 0.625rem 0.9375rem;
    max-width: 11.875rem;
    font-size: 1rem;
  }
}
.p-hero__btn--youtube {
  color: #fff;
  background-color: #F472B6;
  border: 1px solid #F472B6;
}
.p-hero__btn--instagram {
  color: #F472B6;
  border: 1px solid #F472B6;
}
.p-hero__btn--instagram .p-hero__btn-img img {
  aspect-ratio: 15/15;
}

.p-hero__btn-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-hero__btn-img {
    max-width: 0.9375rem;
  }
}
.p-hero__btn-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-hero__btn-img img {
    aspect-ratio: 15/11;
  }
}

.p-instagram {
  padding-top: 7.5rem;
  background-image: url("../images/top/instagram-bg.png");
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center top; /* 横方向, 縦方向 */
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-instagram {
    padding-bottom: 17.25rem;
    margin-top: -11.875rem;
    background-position: left top; /* 横方向, 縦方向 */
  }
}
.p-instagram::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F0FDF9;
  z-index: -1;
}

.p-instagram__list {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__list {
    margin-top: 5rem;
  }
}

.p-instagram__btnWrap {
  margin-top: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__btnWrap {
    margin-top: 5rem;
  }
}

.p-instagram__deco-left,
.p-instagram__deco-right {
  width: 100%;
  max-width: 15.9375rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__deco-left,
  .p-instagram__deco-right {
    max-width: 22.1875rem;
  }
}
.p-instagram__deco-left img,
.p-instagram__deco-right img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 355/175;
}

.p-instagram__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.375rem;
  max-width: 8.125rem;
  font-size: 0.75rem;
  width: 100%;
  border-radius: 3.125rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  gap: 0.5rem;
  color: #F472B6;
  border: 1px solid #F472B6;
}
.p-instagram__btn .p-instagram__btn-img img {
  aspect-ratio: 15/15;
}
@media screen and (min-width: 768px) {
  .p-instagram__btn {
    padding: 1rem;
    max-width: 11.875rem;
    font-size: 1rem;
  }
}

.p-instagram__btn-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__btn-img {
    max-width: 0.9375rem;
  }
}
.p-instagram__btn-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-instagram__btn-img img {
    aspect-ratio: 15/11;
  }
}

.p-news {
  padding-top: 7.5rem;
  background-image: url("../images/top/news-bg.png");
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center top; /* 横方向, 縦方向 */
}
@media screen and (min-width: 768px) {
  .p-news {
    margin-top: -11.875rem;
    background-position: left top; /* 横方向, 縦方向 */
  }
}

.p-news-list {
  max-width: 58.125rem;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-news-list {
    margin: 4.5rem auto 0;
  }
}

.p-news__link {
  display: block;
  border-left: 0.25rem solid #F472B6;
  border-radius: 0.5rem;
  font-family: "Roboto", sans-serif;
  box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.05);
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news__link {
    padding: 1.5rem;
  }
}

.p-news__item:not(:nth-child(1)) .p-news__link {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news__item:not(:nth-child(1)) .p-news__link {
    margin-top: 3.375rem;
  }
}
.p-news__item:nth-child(odd) .p-news__link {
  background: linear-gradient(90deg, #FDF2F8 0%, #FEFCE8 100%);
}
.p-news__item:nth-child(even) .p-news__link {
  background: linear-gradient(90deg, #EFF6FF 0%, #FAF5FF 100%);
  border-color: #3B82F6;
}

.p-news__date {
  font-size: 0.75rem;
  color: #6B7280;
}
@media screen and (min-width: 768px) {
  .p-news__date {
    font-size: 0.875rem;
  }
}

.p-news__title {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5555555556;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 1.125rem;
  }
}

.p-news__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-news__text {
    font-size: 1rem;
  }
}

.p-news__btnWrap {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__btnWrap {
    margin-top: 3.9375rem;
  }
}

.p-news__btn {
  display: inline-block;
  font-weight: 500;
  color: #F472B6;
  background-color: #fff;
  border-radius: 3.125rem;
  box-shadow: 0.0625rem 0.125rem 0.125rem rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.625rem 2.5rem;
  font-size: 0.875rem;
  border: 1px solid #F472B6;
}
@media screen and (min-width: 768px) {
  .p-news__btn {
    border: 0.125rem solid #F472B6;
    padding: 0.625rem 3rem;
    font-size: 1rem;
  }
}
.p-news__btn:hover {
  opacity: 1;
  background-color: #F472B6;
  color: #fff;
  box-shadow: 0 0.375rem 0.75rem rgba(244, 114, 182, 0.4);
}

.p-news__decoWrap {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-news__decoWrap {
    padding: 0 25px;
    max-width: 87.5rem;
  }
}

.p-news__deco {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 1.25rem 0 0 auto;
  max-width: 20.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__deco {
    margin: -3.75rem 0 0 auto;
    max-width: 26.5rem;
  }
}
.p-news__deco img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 424/276;
}

.p-pagination {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-pagination {
    margin-top: 3.75rem;
  }
}
.p-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-pagination .page-numbers {
    gap: 0.75rem;
  }
}
.p-pagination .page-numbers li {
  list-style: none;
}
.p-pagination a.page-numbers,
.p-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  font-weight: 500;
  color: #F472B6;
  background-color: #fff;
  border-radius: 3.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.625rem;
  font-size: 0.875rem;
  border: 1px solid #F472B6;
}
@media screen and (min-width: 768px) {
  .p-pagination a.page-numbers,
  .p-pagination span.page-numbers {
    min-width: 3rem;
    height: 3rem;
    border: 0.125rem solid #F472B6;
    font-size: 1rem;
  }
}
.p-pagination a.next,
.p-pagination a.prev {
  padding: 0.625rem 1.25rem;
}
.p-pagination a.page-numbers:hover {
  opacity: 1;
  background-color: #F472B6;
  color: #fff;
}
.p-pagination span.page-numbers.current {
  background-color: #F472B6;
  color: #fff;
}
.p-pagination .dots {
  color: #F472B6;
  padding: 0 0.25rem;
}

.p-privacy {
  margin-top: 3.75rem;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    margin-top: 5.625rem;
    padding: 5.625rem 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-privacy__deco {
    padding: 5rem 1.875rem;
    background: url("../images/privacy-policy/bg.png") no-repeat center center/contain;
  }
}

.p-privacy__inner.l-inner {
  max-width: 47.0625rem;
}

.p-privacy__title {
  font-weight: bold;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__title {
    font-size: 1.5rem;
  }
}

.p-privacy__lead {
  margin-top: 1.25rem;
  text-align: center;
  margin-top: 2.1875rem;
}

.p-privacy__content {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__content {
    margin-top: 6.25rem;
  }
}

.p-privacy__heading {
  margin-top: 1.25rem;
}
.p-privacy__heading span {
  font-weight: bold;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading span {
    font-size: 1.125rem;
  }
}

.p-privacy__list {
  padding-left: 1.5em;
}

.p-privacy__list-item {
  padding-left: 1em;
  position: relative;
}
.p-privacy__list-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #000;
}
.p-privacy__list-item:not(:first-child) {
  margin-top: 3px;
}

.p-privacy__text {
  margin-top: 0.625rem;
  padding-left: 1.5em;
}

.p-privacy__list {
  margin-top: 0.625rem;
}

.p-single-newsWrap {
  background: url("../images/top/single-news-bg.png") no-repeat center center/cover;
}

.p-single-news {
  margin-top: 3.75rem;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-single-news {
    margin-top: 5.625rem;
    padding: 5.625rem 1.875rem;
  }
}

.p-single-news__inner.l-inner {
  max-width: 47.0625rem;
}

.p-single-news__title {
  font-weight: bold;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-news__title {
    font-size: 1.5rem;
  }
}

.p-single-news__content {
  margin-top: 3.75rem;
}
.p-single-news__content p {
  margin-top: 2.5rem;
}
.p-single-news__content .wp-block-image {
  margin-top: 2.5rem;
}
.p-single-news__content img {
  margin: 0 auto;
}

.p-top-mv-splide {
  width: 100%;
  border-top-left-radius: 6.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-mv-splide {
    max-height: 51.25rem;
    width: 52.1%;
  }
}

#mv_slider .splide__track,
#mv_slider .splide__slide {
  overflow: hidden;
}

#mv_slider .splide__slide img {
  display: block;
  width: 120% !important;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: -5%;
  transform-origin: center center;
}

.splide__pagination {
  display: none;
}

.p-transfer {
  overflow: hidden;
  padding-top: 7.5rem;
  background-image: url("../images/top/transfer-bg.png");
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center top; /* 横方向, 縦方向 */
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-transfer {
    margin-top: -11.875rem;
    background-position: left top; /* 横方向, 縦方向 */
  }
}
.p-transfer::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 13.125rem;
  height: 15.625rem;
  background: url("../images/top/path-img.png") no-repeat bottom center/contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-transfer::after {
    width: clamp(28.125rem, 16.725rem + 16vw, 31.375rem);
    height: 35.25rem;
  }
}
.p-transfer::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  background: url("../images/top/flower-img.png") repeat-x center center/contain;
  z-index: 3;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-transfer::before {
    height: 6.25rem;
  }
}

.p-transfer .l-inner {
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-transfer .l-inner {
    padding-bottom: 11.6875rem;
  }
}
.p-transfer .l-inner::before {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: -7.5rem;
  background-color: #FBF3FB;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-transfer .l-inner::after {
    width: 24.25rem;
    height: 22.375rem;
    position: absolute;
    content: "";
    right: -6.25rem;
    top: -3.75rem;
    background: url("../images/top/cloud-img.png") no-repeat center center/contain;
  }
}

.p-transfer__listWrap {
  margin: 2.5rem auto 0;
  background: url("../images/top/sp/transfer-bg01.png") no-repeat center center/contain;
  padding: 3.75rem 3.125rem 1.875rem;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .p-transfer__listWrap {
    max-width: 56.5rem;
    margin-top: 0;
    background-image: url("../images/top/transfer-bg01.png");
    padding: 10.0625rem 5.9375rem 5rem 4.6875rem;
  }
}
@media (max-width: 413px) {
  .p-transfer__listWrap {
    padding: 4.375rem 1.875rem 3.125rem;
  }
}

.p-transfer__list {
  padding-left: 1.5625rem;
  list-style-type: decimal;
}

.p-transfer__item + .p-transfer__item {
  margin-top: 1.25rem;
}

.p-transfer__item-title {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-transfer__item-title {
    font-size: 1.125rem;
  }
}

.p-transfer__contact {
  max-width: 21.5rem;
  margin: 1.875rem auto 0;
}

.p-transfer__contact-title {
  max-width: 6.9375rem;
  width: 100%;
}
.p-transfer__contact-title img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 111/38;
}

.p-transfer__contact-row {
  display: flex;
  gap: 0.3125rem;
}
.p-transfer__contact-row:last-child dt {
  letter-spacing: -0.25rem;
}

.p-transfer__contact-term {
  width: 6.875rem;
  display: flex;
  justify-content: flex-end;
}

.p-transfer__contact-desc span {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-transfer__contact-desc span {
    font-size: 0.9375rem;
  }
}

.p-transfer__adoption {
  margin-top: 5rem;
}

.p-transfer__adoption-head {
  text-align: center;
  position: relative;
}
.p-transfer__adoption-head::after {
  position: absolute;
  content: "";
  background: url("../images/top/bird-img01.png") no-repeat center center/contain;
  width: 7.5rem;
  height: 10.6875rem;
  top: -7.8125rem;
  right: -1.25rem;
  animation: hoverBird 4s ease-in-out infinite;
}
@media screen and (min-width: 768px) {
  .p-transfer__adoption-head::after {
    right: clamp(-100px, -21.6667vw + 212px, -35px);
    top: -11.25rem;
    width: 13.8125rem;
  }
}
.p-transfer__adoption-head::before {
  position: absolute;
  content: "";
  background: url("../images/top/bird-img02.png") no-repeat center center/contain;
  top: -0.625rem;
  width: 6.25rem;
  height: 8.4375rem;
  left: -0.9375rem;
  animation: hoverBird2 4s ease-in-out infinite;
}
@media screen and (min-width: 768px) {
  .p-transfer__adoption-head::before {
    left: 6.25rem;
    width: 10.875rem;
    top: -4.0625rem;
  }
}

.p-transfer__adoption-headImg {
  display: inline-block;
  max-width: 13.4375rem;
  margin: 0 auto;
}
.p-transfer__adoption-headImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 215/70;
}

.p-transfer__adoption-lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 500;
  text-shadow: -1px -1px 0 #FCE9E7, 1px -1px 0 #FCE9E7, -1px 1px 0 #FCE9E7, 1px 1px 0 #FCE9E7; /* 右下 */
}
@media screen and (min-width: 768px) {
  .p-transfer__adoption-lead {
    font-size: 1.5rem;
  }
}

.p-transfer__adoption-block {
  margin: 1.875rem auto 0;
  max-width: 37rem;
}

.p-transfer__adoption-block--deco {
  position: relative;
}
.p-transfer__adoption-block--deco::after {
  position: absolute;
  content: "";
  background: url("../images/top/bird-img03.png") no-repeat center center/contain;
  height: 9.75rem;
  width: 6.875rem;
  right: -1.5625rem;
  top: -0.9375rem;
  animation: hoverBird 4s ease-in-out infinite;
}
@media screen and (min-width: 768px) {
  .p-transfer__adoption-block--deco::after {
    top: 0;
    width: 12.1875rem;
    right: -12.1875rem;
  }
}
.p-transfer__adoption-block--deco::before {
  position: absolute;
  content: "";
  background: url("../images/top/bird-img04.png") no-repeat center center/contain;
  animation: hoverBird2 4s ease-in-out infinite;
  height: 13.625rem;
  bottom: -10rem;
  width: 7.5rem;
  left: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-transfer__adoption-block--deco::before {
    bottom: -7.1875rem;
    width: 16.125rem;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .p-transfer__adoption-block--deco::before {
    left: clamp(-260px, -24.1935vw + 15.8065px, -170px);
  }
}
@media (min-width: 1140px) {
  .p-transfer__adoption-block--deco::before {
    left: clamp(-290px, -10vw - 146px, -260px);
  }
}

.p-transfer__adoption-title {
  display: inline-block;
  padding: 0.5rem;
  width: 8.4375rem;
  text-align: center;
  font-weight: 700;
  border-radius: 3.125rem;
  background-color: #fff;
  color: #F472B6;
  border: 1px solid;
}
.p-transfer__adoption-title.p-transfer__adoption-title--pink {
  background-color: #F472B6;
  color: #fff;
}

.p-transfer__adoption-content {
  margin-top: 1.25rem;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-transfer__adoption-content {
    padding-left: 2.625rem;
  }
}

.p-transfer__adoption-note {
  margin-top: 1.25rem;
}

.p-transfer__adoption-caution {
  margin-top: 2.1875rem;
  display: flex;
  gap: 0.3125rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-transfer__adoption-caution {
    flex-direction: row;
  }
}

.p-transfer__adoption-caution-title {
  letter-spacing: 1em;
  color: #EA0C0C;
  white-space: nowrap;
}

.p-transfer__adoption-caution-item {
  padding-left: 1.875rem;
  position: relative;
}
.p-transfer__adoption-caution-item::before {
  position: absolute;
  width: 1.5rem;
  height: 1.3125rem;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/top/hanamaru.png") no-repeat center center/contain;
}

.p-transfer__term {
  position: relative;
}
.p-transfer__term::before {
  position: absolute;
  content: "";
  background: url("../images/top/balloon-img02.png") no-repeat center center/contain;
  height: 16.25rem;
  width: 7.5rem;
  bottom: -11.875rem;
  left: -1.5625rem;
  animation: floatUpDown 5s ease-in-out infinite alternate;
}
@media screen and (min-width: 768px) {
  .p-transfer__term::before {
    left: -1.5625rem;
    bottom: -7.1875rem;
    width: 16rem;
  }
}

@keyframes floatUpDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-15px);
  }
}
.p-transfer__term-head {
  text-align: center;
  margin-top: 0.625rem;
  position: relative;
}
.p-transfer__term-head::after {
  position: absolute;
  content: "";
  background: url("../images/top/balloon-img01.png") no-repeat center center/contain;
  height: 16.25rem;
  top: -5rem;
  width: 6.25rem;
  right: -1.25rem;
  animation: floatUpDown 5s ease-in-out infinite alternate;
}
@media screen and (min-width: 768px) {
  .p-transfer__term-head::after {
    right: clamp(-100px, -21.6667vw + 212px, -35px);
    top: -5rem;
    width: 12.8125rem;
  }
}

.p-transfer__term-headImg {
  display: inline-block;
  max-width: 11.9375rem;
  margin: 0 auto;
}
.p-transfer__term-headImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 191/113;
}

.p-transfer__term-listWrap {
  max-width: 22.5rem;
  margin: 0.625rem auto;
  padding: 5.625rem 2.8125rem;
  background: url("../images/top/sp/transfer-bg02.png") no-repeat center center/contain;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-transfer__term-listWrap {
    background: url("../images/top/transfer-bg02.png") no-repeat center center/contain;
    max-width: 36.625rem;
    padding: 8.9375rem 8.25rem 7.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-transfer__term-listWrap::after {
    position: absolute;
    content: "";
    height: 11.875rem;
    background: url("../images/top/bird-img05.png") no-repeat center center/contain;
    width: 17.6875rem;
    right: -13.75rem;
    bottom: 6.875rem;
    animation: hoverBird 4s ease-in-out infinite;
    transform-origin: center;
  }
}

@keyframes hoverBird {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(1.5deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes hoverBird2 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(6px) rotate(1.5deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.p-transfer__term-item {
  padding-left: 1.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-transfer__term-item {
    padding-left: 3.125rem;
  }
}
.p-transfer__term-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.625rem;
  height: 1.3125rem;
  background: url("../images/top/transfer-term-num01.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-transfer__term-item::before {
    width: 2.1875rem;
    height: 1.75rem;
  }
}
.p-transfer__term-item:nth-child(2)::before {
  background-image: url("../images/top/transfer-term-num02.png");
}
.p-transfer__term-item:nth-child(3)::before {
  background-image: url("../images/top/transfer-term-num03.png");
}
.p-transfer__term-item:nth-child(4)::before {
  background-image: url("../images/top/transfer-term-num04.png");
}
.p-transfer__term-item:nth-child(5)::before {
  background-image: url("../images/top/transfer-term-num05.png");
}
.p-transfer__term-item:nth-child(6)::before {
  background-image: url("../images/top/transfer-term-num06.png");
}
.p-transfer__term-item:nth-child(7)::before {
  background-image: url("../images/top/transfer-term-num07.png");
}

.p-transfer__term-item + .p-transfer__term-item {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-transfer__term-item + .p-transfer__term-item {
    margin-top: 1.4375rem;
  }
}

.p-transfer__btnWrap {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-transfer__btnWrap {
    margin-top: 7.9375rem;
  }
}

.p-transfer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.375rem;
  max-width: 11.375rem;
  font-size: 0.75rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 3.125rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  background-color: #F472B6;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  gap: 0.5rem;
  color: #fff;
  border: 1px solid #F472B6;
}
.p-transfer__btn .p-transfer__btn-img img {
  aspect-ratio: 15/15;
}
@media screen and (min-width: 768px) {
  .p-transfer__btn {
    gap: 0.625rem;
    padding: 1rem;
    max-width: 14.25rem;
    font-size: 1rem;
  }
}

.p-transfer__btn-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-transfer__btn-img {
    max-width: 0.9375rem;
  }
}
.p-transfer__btn-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-transfer__btn-img img {
    aspect-ratio: 15/12;
  }
}

.p-youtube-membership__inner {
  max-width: 60.9375rem;
  padding: 0 20px;
  margin: 3.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__inner {
    padding: 0 25px;
  }
}

.p-youtube-membership__headerWrap {
  text-align: center;
}

.p-youtube-membership__header {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding: 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__header {
    padding: 0 2.625rem;
    gap: 0.8125rem;
    flex-direction: row;
  }
}
.p-youtube-membership__header::before {
  position: absolute;
  content: "";
  background: url("../images/top/membership-title-deco-left.png") no-repeat center center/contain;
  width: 2.625rem;
  height: 3.375rem;
  bottom: 0;
  left: 0rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__header::before {
    left: 0.75rem;
  }
}
.p-youtube-membership__header::after {
  position: absolute;
  content: "";
  background: url("../images/top/membership-title-deco-right.png") no-repeat center center/contain;
  width: 2.625rem;
  height: 3.375rem;
  bottom: 0;
  right: 0rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__header::after {
    right: 0.75rem;
  }
}

.p-youtube-membership__header-img {
  max-width: 8.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__header-img {
    max-width: 10.125rem;
  }
}
.p-youtube-membership__header-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 162/39;
}

.p-youtube-membership__title {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__title {
    font-size: 1.375rem;
    margin-top: 0.25rem;
  }
}

.p-youtube-membership__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__content {
    margin-top: 2.8125rem;
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-youtube-membership__left {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__left {
    max-width: 20.625rem;
  }
}

.p-youtube-membership__text {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__text {
    font-size: 1rem;
  }
}

.p-youtube-membership__benefit {
  max-width: 16.875rem;
  margin: 5.9375rem auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__benefit {
    max-width: 100%;
  }
}
.p-youtube-membership__benefit::before {
  position: absolute;
  content: "";
  pointer-events: none;
  background: url("../images/top/membership-privilege-bg.png") no-repeat center center/contain;
  top: -100%;
  left: -11%;
  width: 21.875rem;
  height: 21.875rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__benefit::before {
    top: -106%;
    left: -5%;
    width: 25rem;
    height: 25rem;
  }
}

.p-youtube-membership__benefit-title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.3125rem;
  line-height: 1;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__benefit-title {
    font-size: 1.125rem;
  }
}

.p-youtube-membership__benefit-titleImg {
  max-width: 1.625rem;
  width: 100%;
}
.p-youtube-membership__benefit-titleImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 26/31;
}

.p-youtube-membership__benefit-list {
  margin-top: 0.9375rem;
  margin-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__benefit-list {
    margin-left: 2.5rem;
  }
}

.p-youtube-membership__benefit-item {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  padding-left: 1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__benefit-item {
    font-size: 0.875rem;
  }
}
.p-youtube-membership__benefit-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.3em;
  height: 0.3em;
  background: #444444;
  border-radius: 50%;
}

.p-youtube-membership__right {
  flex: 1;
  position: relative;
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__right {
    margin-top: 1.375rem;
    max-width: 28.4375rem;
  }
}
.p-youtube-membership__right:before {
  position: absolute;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
  background: url("../images/top/membership-plan-deco.png") no-repeat center center/contain;
  left: 50%;
  top: -5rem;
  width: 23.4375rem;
  height: 6.75rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__right:before {
    left: 50%;
    top: -5rem;
    width: 27.6875rem;
    height: 6.75rem;
  }
}

.p-youtube-membership__tableWrap {
  border: 0.09375rem solid #F472B6;
  border-radius: 0.9375rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.p-youtube-membership__table {
  width: 100%;
  border-collapse: collapse;
}

.p-youtube-membership__table-row--head th {
  border-bottom: 1px solid #989595;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1em;
  line-height: 1.5;
  justify-content: center;
  padding: 0.75rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__table-row--head th {
    font-size: 0.9375rem;
    padding: 1.125rem 2.0625rem;
  }
}
.p-youtube-membership__table-row--head th:first-child {
  border-right: 1px solid #989595;
}
.p-youtube-membership__table-row--head th:last-child {
  background-color: #FBF3FB;
  text-align: center;
}

.p-youtube-membership__table tr {
  border-bottom: 1px solid #989595;
}

.p-youtube-membership__table tr:last-child {
  border-bottom: none;
}

.p-youtube-membership__table td {
  padding: 0.4375rem 0.75rem;
  vertical-align: middle;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__table td {
    font-size: 0.9375rem;
    padding: 0.5625rem 2.0625rem;
  }
}
.p-youtube-membership__table td:first-child {
  border-right: 1px solid #989595;
}
.p-youtube-membership__table td:last-child {
  background-color: #FBF3FB;
}

.p-youtube-membership__table-plan {
  display: flex;
  align-items: center;
}

.p-youtube-membership__table-planImg {
  position: relative;
  margin-right: 0.4375rem;
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__table-planImg {
    margin-right: 0.625rem;
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.p-youtube-membership__table-planImg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.p-youtube-membership__table-price {
  text-align: right;
}

.p-youtube-membership__btnWrap {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__btnWrap {
    margin-top: 4.375rem;
  }
}

.p-youtube-membership__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 500;
  background-color: #F472B6;
  color: #fff;
  border-radius: 3.125rem;
  box-shadow: 0.0625rem 0.125rem 0.125rem rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.625rem 2.5rem;
  font-size: 0.875rem;
  border: 1px solid #F472B6;
}
@media screen and (min-width: 768px) {
  .p-youtube-membership__btn {
    border: 0.125rem solid #F472B6;
    padding: 0.625rem 0.9375rem 0.625rem 2.125rem;
    font-size: 1rem;
  }
}
.p-youtube-membership__btn .p-youtube-membership__btn-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.0625rem;
  background: url("../images/top/icon-arrow-white.svg") no-repeat center center/contain;
  transition: all 0.3s ease;
}
.p-youtube-membership__btn:hover {
  opacity: 1;
  color: #F472B6;
  background-color: #fff;
  box-shadow: 0 0.375rem 0.75rem rgba(244, 114, 182, 0.4);
}
.p-youtube-membership__btn:hover .p-youtube-membership__btn-icon {
  transform: translateX(3px);
  background-image: url("../images/top/icon-arrow-pink.svg");
}

.p-youtube {
  padding-top: 7.5rem;
  background-image: url("../images/top/youtube-bg.png");
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center top; /* 横方向, 縦方向 */
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-youtube {
    margin-top: -11.875rem;
    background-position: left top; /* 横方向, 縦方向 */
  }
}
.p-youtube::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FBF3FB;
  z-index: -1;
}

.p-youtube__list {
  max-width: 82.5rem;
  padding: 0 20px;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-youtube__list {
    margin: 4.375rem auto 0;
    padding: 0 25px;
    gap: 2.5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-youtube__item a {
  display: block;
  height: 100%;
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.375rem -0.25rem rgba(0, 0, 0, 0.1);
}

.p-youtube__item-movie {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
}
.p-youtube__item-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.p-youtube__item-content {
  padding: 1rem;
}

.p-youtube__item-title {
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-youtube__item-title {
    font-size: 1rem;
  }
}

.p-youtube__btnWrap {
  text-align: center;
  margin-top: 2.5rem;
}

.p-youtube__btn {
  display: inline-flex;
  align-items: center;
  gap: 1.4375rem;
  font-weight: 500;
  color: #F472B6;
  background-color: #fff;
  border-radius: 3.125rem;
  box-shadow: 0.0625rem 0.125rem 0.125rem rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.625rem 2.5rem;
  font-size: 0.875rem;
  border: 1px solid #F472B6;
}
@media screen and (min-width: 768px) {
  .p-youtube__btn {
    border: 0.125rem solid #F472B6;
    padding: 0.625rem 1.4375rem 0.625rem 2.875rem;
    font-size: 1rem;
  }
}
.p-youtube__btn .p-youtube__btn-icon {
  margin-top: 0.0625rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/top/icon-arrow-pink.svg") no-repeat center center/contain;
  transition: all 0.3s ease;
}
.p-youtube__btn:hover {
  opacity: 1;
  background-color: #F472B6;
  color: #fff;
  box-shadow: 0 0.375rem 0.75rem rgba(244, 114, 182, 0.4);
}
.p-youtube__btn:hover .p-youtube__btn-icon {
  transform: translateX(3px);
  background-image: url("../images/top/icon-arrow-white.svg");
}

.p-youtube__decoWrap {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-youtube__decoWrap {
    padding: 0 25px;
    max-width: 87.5rem;
  }
}

.p-youtube__deco {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 1.25rem 0 0 auto;
  max-width: 20.25rem;
}
@media screen and (min-width: 768px) {
  .p-youtube__deco {
    margin: -8.75rem 0 0 auto;
    max-width: 18.25rem;
  }
}
.p-youtube__deco img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 292/327;
}

.u-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
