/* --- Base / Reset --- */
:root {
  --main-bg: #fefefe;
  --text-color: #000;
  --sub-text: #888888;
  --accent-color: #000;
  --section-padding: 120px 20px;
	--header-height: 60px;
}
@media (max-width: 768px) {
	:root {
		--section-padding: 80px 20px;
		--header-height: 70px;
	}
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: var(--text-color);
  background-color: var(--main-bg);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul {
  list-style: none;
}
main {
  margin-top: var(--header-height);
}
.container {
  max-width: 1010px;
  margin: 0 auto;
}
.section {
  padding: var(--section-padding);
  text-align: center;
}
.section__title {
  margin-bottom: 90px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
}
.section__text {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 1.5em;
}
.section__text:last-child {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.section__title {
		margin-bottom: 40px;
	}
	.section__title img {
    max-width: 100%;
    height: 40px;
	}
	.section__text {
		font-size: 14px;
	}
}

/* --- Display Utility --- */
.pc-only { display: flex; }
.sp-only { display: none; }
.pc-only-inline { display: inline; }
.sp-only-inline { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: flex; }
  .pc-only-inline { display: none; }
  .sp-only-inline { display: inline; }
}

/* --- Header --- */
.header {
	box-sizing: border-box;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
	background-color: rgba(255,255,255,0.7);
}
.header__inner {
  width: 100%;
	max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 20px;
	margin: 0 auto;
}
.header__nav-list {
  text-align: center;
  display: flex;
  gap: 30px;
}
.header__nav-link {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 12px;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}
.header__nav-link.is-active::after {
  transform: scaleX(1);
}
.header__sns {
  position: absolute;
  right: 20px;
  gap: 10px;
  font-size: 1.2rem;
}
.header__sns-link {
	width: 35px;
}
@media screen and (max-width: 768px) {
	.header {
		background-color: rgba(255,255,255,0.9);
		height: var(--header-height);
		margin-top: -5px;
	}
}
@media screen and (max-width: 767px) {
	.header__inner {
		width: 100%;
		max-width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		padding: 0 20px;
		margin-right: auto;
		margin-left: auto;
	}
  .header__nav-list {
    gap: 15px;
  }
	.header__nav-link {
		height: 12px;
		max-width: 60px;
		width: auto;
    font-size: 12px;
	}
}

/* --- Main Visual --- */
.main-visual {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  overflow: hidden;
}
.main-visual__placeholder {
  height: calc(100dvh - var(--header-height));
}
.main-visual__fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  overflow: hidden;
  z-index: -1;
}
.main-visual__video-container {
  width: 100%;
  height: 100%;
	position: relative;
}
.main-visual__video {
	margin: auto;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.main-visual__delayed-image-container {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 5;
  opacity: 0;
}
.main-visual__delayed-image-container.is-animated {
  animation: fadeInUp 1s ease-out forwards;
}
.main-visual__delayed-image-container h1 {
	display: flex;
	justify-content: center;
}
.main-visual__delayed-image {
  height: auto;
  margin: 0 auto;
  width: 70vw;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.main-visual__privacy,
.main-visual__scroll {
  z-index: 10;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.main-visual__privacy {
  position: absolute;
  bottom: 20px;
  left: 10%;
  font-size: 12px;
}
.main-visual__scroll {
  position: absolute;
  bottom: 50px;
  right: 10%;
  writing-mode: vertical-rl;
  font-size: 14px;
  letter-spacing: 1px;
}
.main-visual__scroll::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 40px;
  bottom: -50px;
  left: 50%;
  background: #000;
}
.main-visual__scroll-text {
  position: relative;
}
@media screen and (max-width: 1025px) {
	.main-visual__video {
		margin: inherit;
		object-fit: cover;
		transform: translate(-50%, -50%);
		position: absolute;
		top: 40%;
		left: 48%;
		width: 120vw;
	}
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
	.main-visual__delayed-image-container {
		top: 38%;
		bottom: auto;
		left: 50%;
		width: 86vw;
		transform: translateX(-50%) translateY(0);
	}
	.main-visual__delayed-image {
		width: 100%;
		height: auto;
	}
	.header__inner {
		justify-content: center;
	}
	.header__nav-list {
		gap: 22px;
	}
	.header__nav-link {
		width: auto;
		min-width: 68px;
		font-size: 14px;
	}
	.header__sns {
		right: 10px;
		gap: 6px;
	}
	.header__sns-link {
		width: 24px;
	}
}
@media screen and (max-width: 767px) {
	.main-visual__video-container {
		width: 100%;
		height: 100%;
		position: relative;
	}
	.main-visual__video {
		margin: inherit;
		object-fit: cover;
		transform: translate(-50%, -50%);
		position: absolute;
		top: 315px;
		left: 48%;
		width: 120vw;
	}
	.main-visual__delayed-image-container {
		top: 300px;
		bottom: auto;
		left: 50%;
		width: 86vw;
		transform: translateX(-50%) translateY(0);
	}
  .main-visual__delayed-image {
		width: 100%;
		height: auto;
	}
	.main-visual__privacy {
		position: absolute;
		top: 28px;
		bottom: auto;
		left: 9%;
	}
}
@media screen and (max-width: 539px) {
	.main-visual__delayed-image-container {
		top: 300px;
		width: 88vw;
	}
}

/* --- SP SNS --- */
.sp-sns {
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
	position: absolute;
	bottom: 0;
	left: 9%;
	z-index: 2;
}
.sp-sns__link {
	width: 40px;
}
@media screen and (max-width: 768px) {
	.sp-sns {
		position: fixed;
		bottom: 0;
		left: 9%;
		z-index: 1001;
	}
	.sp-sns::before {
		content: "";
		position: fixed;
		left: 0;
		bottom: calc(-56px - env(safe-area-inset-bottom));
		width: 100vw;
		height: calc(144px + env(safe-area-inset-bottom));
		background-color: rgba(255,255,255,0.9);
		opacity: 0;
		transition: opacity 0.3s ease;
		pointer-events: none;
		z-index: 0;
	}
	.sp-sns__link {
		position: relative;
		z-index: 1;
	}
	body.is-sp-sns-bg-visible .sp-sns::before {
		opacity: 1;
	}
	.main-visual__ui {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 160px;
		background: transparent;
		z-index: 2;
	}
	.main-visual__ui-inner {
		position: relative;
		width: 100vw;
		max-width: 100vw;
  	height: 100%;
	}
}

/* --- message --- */
.meincontents {
	background-color: rgba(255,255,255,0.8);
}
.meincontents h2 {
  margin-bottom: 50px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
}
.meincontents .tagline {
  font-size: 28px;
}
@media (max-width: 768px) {
  .meincontents h2 {
    font-size: 45px;
    line-height: 1.2;
  }
  .meincontents .tagline {
    font-size: 24px;
    line-height: 1.6;
  }
}

/* --- Gallery --- */
.gallery {
	background-image: url(../img/bg01.png);
	background-color: rgba(255,255,255,0.8);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
  padding: 0;
}
.gallery_inner {
  padding: var(--section-padding);
}
.gallery .container {
  max-width: 1128px;
}
.gallery__grid {
  position: relative;
}
.gallery__item {
  border: 1px solid #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.gallery__item:hover {
  opacity: 0.7;
}
.gallery__item img {
  display: block;
  width: 100%;
}
.gallery__item[data-index="0"] {
  position: absolute;
  right: 400px;
  width: 589px;
}
.gallery__item[data-index="1"] {
  position: absolute;
  top: 180px;
  right: 60px;
  width: 375px;
  z-index: 1;
}
.gallery__item[data-index="2"] {
  position: absolute;
  top: 395px;
  right: 655px;
  width: 474px;
  z-index: 1;
}
.gallery__item[data-index="3"] {
  position: absolute;
  top: 440px;
  right: 0;
  width: 668px;
}
.gallery__item[data-index="4"] {
  position: absolute;
  top: 720px;
  right: 750px;
  width: 244px;
  z-index: 1;
}
.gallery__item[data-index="5"] {
  position: absolute;
  top: 820px;
  right: 50px;
  width: 375px;
}
.gallery__item[data-index="6"] {
  position: absolute;
  top: 1020px;
  right: 230px;
  width: 589px;
  z-index: 2;
}
.gallery__item[data-index="7"] {
  position: absolute;
  top: 1200px;
  right: 80px;
  width: 244px;
  z-index: 3;
}
.gallery__item[data-index="8"] {
  position: absolute;
  top: 1380px;
  right: 655px;
  width: 474px;
  z-index: 1;
}
.gallery__item[data-index="9"] {
  position: absolute;
  top: 1500px;
  right: 0;
  width: 589px;
}
.gallery__item[data-index="10"] {
  position: absolute;
  top: 1670px;
  right: 620px;
  width: 375px;
}
.gallery__youtube {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	margin: auto;
	height: 60px;
	width: 60px;
}
/* ================================
   Modal
================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.modal[hidden] {
  display: none;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}
.modal__img {
  display: block;
  max-width: 88vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .modal__img {
    max-width: 92vw;
    max-height: 86vh;
  }
}
@media (max-width: 1024px) {
  .gallery_inner {
    padding: var(--section-padding);
  }
  .gallery .container {
    max-width: 100vw;
    overflow: hidden;
  }
  .gallery__item[data-index="0"] {
    right: 35.46vw;   /* 400 / 1128 * 100 */
    width: 52.21vw;   /* 589 / 1128 * 100 */
  }
  .gallery__item[data-index="1"] {
    top: 23.96vw;     /* 180 / 1128 * 100 */
    right: 4.32vw;    /* 60 / 1128 * 100 */
    width: 33.24vw;   /* 375 / 1128 * 100 */
  }
  .gallery__item[data-index="2"] {
    top: 37.02vw;     /* 395 / 1128 * 100 */
    right: 40.07vw;   /* 655 / 1128 * 100 */
    width: 42.02vw;   /* 474 / 1128 * 100 */
  }
  .gallery__item[data-index="3"] {
    top: 58.01vw;     /* 440 / 1128 * 100 */
    right: 2.32vw;
    width: 59.22vw;   /* 668 / 1128 * 100 */
  }
  .gallery__item[data-index="4"] {
    top: 86.83vw;     /* 720 / 1128 * 100 */
    right: 57.49vw;   /* 750 / 1128 * 100 */
    width: 21.63vw;   /* 244 / 1128 * 100 */
  }
  .gallery__item[data-index="5"] {
    top: 102.7vw;     /* 820 / 1128 * 100 */
    right: 4.43vw;    /* 50 / 1128 * 100 */
    width: 33.24vw;   /* 375 / 1128 * 100 */
  }
  .gallery__item[data-index="6"] {
    top: 118.43vw;     /* 1020 / 1128 * 100 */
    right: 38.39vw;   /* 230 / 1128 * 100 */
    width: 52.21vw;   /* 589 / 1128 * 100 */
  }
  .gallery__item[data-index="7"] {
    top: 123.38vw;    /* 1200 / 1128 * 100 */
    right: 7.09vw;    /* 80 / 1128 * 100 */
    width: 21.63vw;   /* 244 / 1128 * 100 */
  }
  .gallery__item[data-index="8"] {
    top: 155.34vw;    /* 1380 / 1128 * 100 */
    right: 47.07vw;   /* 655 / 1128 * 100 */
    width: 42.02vw;   /* 474 / 1128 * 100 */
  }
  .gallery__item[data-index="9"] {
    top: 164.51vw;    /* 1500 / 1128 * 100 */
    right: 2.32vw;
    width: 52.21vw;   /* 589 / 1128 * 100 */
  }
  .gallery__item[data-index="10"] {
    top: 192.05vw;    /* 1670 / 1128 * 100 */
    right: 49.96vw;   /* 620 / 1128 * 100 */
    width: 33.24vw;   /* 375 / 1128 * 100 */
  }
}
.youtube__item {
  padding: 100px 0;
  max-width: 100% !important;
  background: rgba(0, 0, 0, .3);
}
.youtube__item a,
.youtube__placeholder {
  display: inline-block;
  max-width: 900px;
  height: 500px;
  width: 90%;
}
.youtube__item a iframe,
.youtube__placeholder iframe,
.youtube__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
	.youtube__item a,
	.youtube__placeholder {
    display: inline-block;
    max-width: 90%;
    height: 300px;
    margin: 0 auto;
  }
}
 
/* ================================
   body scroll lock
================================ */
body.modal-open {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
	
}


/* --- Follow Me --- */
.follow-me {
	background-color: #000;
	padding: 0;
	position: relative;
	z-index: 1;
}
.follow-me .section__title {
  color: #fff;
}
.follow-me__text {
	margin-bottom: 50px;
}
.follow-me__links {
  display: flex;
	justify-content: center;
  gap: 100px;
  margin-top: 20px;
}
.follow-me__title {
	margin-bottom: 30px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
}
.follow-me__btn {
	background-color: #fff;
	border-radius: 100%;
	display: block;
	padding: 50px;
}
@media (max-width: 768px) {
	.follow-me__text {
		width: 50vw;
		margin-right: auto;
		margin-bottom: 40px;
		margin-left: auto;
	}
	.follow-me__links {
		flex-wrap: nowrap;
		gap: clamp(18px, 7vw, 42px);
	}
	.follow-me__title {
		margin-bottom: 18px;
		font-size: 20px;
	}
	.follow-me__btn {
		width: clamp(92px, 24vw, 118px);
		height: clamp(92px, 24vw, 118px);
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		padding: clamp(26px, 7vw, 34px);
	}
}

/* --- Profile --- */
.profile {
	background-color: rgba(255,255,255,0.8);
}
.profile__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  text-align: left;
}
.profile__image {
  flex: 0 0 230px;
	margin-top: -30px;
  border: 2px solid #fff;
	border-radius: 100%;
}
.profile__image img {
	display: block;
  width: 100%;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .profile__wrapper { 
		flex-direction: column;
		text-align: left;
		justify-content: center;
	}
  .profile__image { 
		flex: 0 auto;
		margin: 0 auto;
		width: 230px;
	}
	.profile__info {
		margin-top: 0;
	}
}

/* --- message --- */
.message {
	background-color: rgba(255,255,255,0.8);
}
.message__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  text-align: left;
}
.message__image {
  flex: 0 0 230px;
  margin-top: -30px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .message__wrapper { 
		flex-direction: column;
		text-align: left;
		justify-content: center;
	}
  .message__image {
    display: none;
  }
	.message__info {
		margin-top: 0;
	}
}

/* --- about --- */
.about {
	background-color: rgba(255,255,255,0.8);
	padding-top: 0;
}
.about__content table {
	border-top: 1px solid rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	border-collapse: collapse;
	margin: 0 auto;
	max-width: 100%;
	width: 900px;
}
.about__content table th,
.about__content table td {
	font-size: 15px;
	text-align: left;
	vertical-align: top;
}
.about__content table tr:not(:last-child) td,
.about__content table tr:not(:last-child) th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.about__content table th {
	font-weight: 700;
	padding: 15px 0 15px 120px;
	width: 30%;
}
.about__content table td {
	padding: 15px 30px;
	width: 70%;
}
@media (max-width: 768px) {
	.about__content table {
		width: 100%;
	}
	.about__content table th,
	.about__content table td {
		font-size: 14px;
	}
	.about__content table th {
		font-weight: 700;
		padding: 15px 10px;
	}
	.about__content table td {
		padding: 15px 10px;
	}
	.about__content table td p {
		margin-bottom: 1em;
	}
	.about__content table td p:last-child {
		margin-bottom: 0;
	}
}

/* --- Contact --- */
.contact {
	background-color: rgba(255,255,255,0.8);
	padding-top: 0;
}
.contact__links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 110px;
}
.contact__btn {
  flex: 0 1 350px;
  background-color: var(--accent-color);
  color: #fff;
	font-weight: 700;
  padding: 25px 15px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .contact__links {
		flex-wrap: wrap;
		margin-top: 60px;
		gap: 50px;
	}
  .contact__btn {
		flex: 0 1 100%;
		padding: 25px 15px;
	}
}

/* --- Footer --- */
.footer {
  padding: 80px 20px 40px;
  text-align: center;
	background-color: #000;
	position: relative;
	z-index: 2;
}
.footer__copyright {
	margin-top: 60px;
  font-size: 10px;
  color: #fff;
	position: relative;
	z-index: 1;
}
@media (max-width: 768px) {
	.footer {
		padding-bottom: calc(150px + env(safe-area-inset-bottom));
	}
	.footer__copyright {
		font-size: 10px;
	}
}

/* --- Animation --- */
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- profile ～ footer までの背景 --- */
.bg-scope {
  position: absolute;
  left: 0;
  width: 100%;
  background: url(../img/bg03.png) no-repeat center / cover;
  z-index: 0;
  pointer-events: none;
}
.privacy .bg-scope {
	z-index: -1;
  background: url(../img/bg02.png) no-repeat center / cover;
}

/* --- PRIVACY POLICY --- */
body.privacy {
  padding-top: var(--header-height);
}
.privacy .header {
  position: fixed;
}
.privacy .footer::after {
  content: none;
}
.privacy main {
  margin-top: calc(-1 * var(--header-height));
}
.privacy-policy__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  width: 100%;
}
/* 右：固定エリアのラッパー */
.policy-fixed {
  position: fixed;
  top: calc(var(--header-height));
  right: 0;
  width: 45%;
  height: 100dvh;
}
.policy-fixed__inner {
  position: sticky;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100dvh - var(--header-height));
}
.privacy-policy__title {
  padding-top: 150px;
  padding-left: 50px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
}
.privacy-policy__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 60px;
  right: 20vw;
  width: 115px;
  height: 265px;
  background-image: url(../img/privacy_bg02.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.privacy-policy__title img {
  width: 300px;
}
/* 左：本文スクロール */
.policy-policy-img__pc {
  width: 100%;
  padding-top: 50px;
}
.policy-img__sp {
  display: none;
}
.privacy-policy__content {
  width: 55%;
}
.policy-text__inner {
  margin-bottom: 50px;
}
.policy-text__inner h2 {
  font-size: 12px;
}
.policy-text__inner ul li {
  font-size: 12px;
}
.policy-text {
  width: 70%;
  margin: 50px 10% 0 20%;
}
.privacy .policy-text p {
  font-size: 12px;
  line-height: 2;
}
@media (max-width: 768px) {
  body.privacy {
    padding-top: var(--header-height);
  }
  .privacy .header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url(../img/bg02.png) no-repeat center / cover;
  }
  .privacy .header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .privacy main {
    margin-top: var(--header-height);
  }
  .privacy-policy__content {
    width: 85%;
    padding-top: var(--header-height);
    margin: 0 auto;
  }
  .privacy-policy__img {
    display: none;
  }
  .policy-text {
    width: 100%;
    margin: 0;
  }
  .policy-fixed {
    position: inherit;
    right: 0;
    width: 100%;
    height: auto;
  }
  .policy-fixed__inner {
    position: inherit;
    height: auto;
  }
  .privacy-policy__title {
    padding-top: 0;
    padding-left: 0;
    text-align: center;
  }
  .privacy-policy__title::after {
    content: none;
  }
  .privacy-policy__title img {
    width: 250px;
  }
  .policy-img__pc {
    display: none;
  }
  .policy-img__sp {
    display: block;
  }
  .policy-img::after {
    content: "";
    display: block;
    position: absolute;
    top: -30%;
    right: 25%;
    width: 57px;
    height: 133px;
    background-image: url(../img/privacy_bg02.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
