@charset "UTF-8";
@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Epilogue:ital,wght@0,100..900;1,100..900&family=Hina+Mincho&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marcellus&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,800,800italic");
@import url("https://fonts.googleapis.com/earlyaccess/sawarabigothic.css");

html {
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1224px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(16px);
  }
}

:root {
  --frame-gap: 4rem;
  /* 周囲の白い幅 */
  --frame-radius: 20px;
  /* 角丸（任意） */
  --blue: #1b2a86;
  --link: #00a6e6;
  --gold: #B49C66;
  --red: #c9171e;
  --black: #2F2A27;
  --brown: #6F4E37;
}

body {
  text-align: left;
  font-family: "Avenir", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #1B2624;
  background-color: #ffffff;
  /*background: linear-gradient(-20deg, #F08631,#eb8f4d,#E1412F, #a895cd,#F08631) fixed;
  background-size: 450% 450%;
  animation: GradietionAnimation 7.2s ease infinite;
  overflow-x: hidden;*/
}

@keyframes GradietionAnimation {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

h1 {
  font-size: 3rem;
  letter-spacing: 12px;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.35rem;
  font-weight: 500;
}

h5 {
  font-size: 1.1rem;
  margin: 0;
}

p {
  font-size: 1.1rem;
}

.bold {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  body {
    font-size: calc(1rem);
  }

  h1 {
    font-size: calc(3rem * 0.8);
  }

  h2 {
    font-size: calc(2.4rem * 0.8);
  }

  h3 {
    font-size: calc(2rem * 0.8);
  }

  h4 {
    font-size: calc(1.35rem * 0.8);
  }

  h5 {
    font-size: calc(1.1rem * 0.8);
  }

  p {
    font-size: 1rem;
  }
}

.t-accent_color {
  color: #262d7e;
}

.t-accent_color02 {
  color: #3390ce;
}

.t-accent_color03 {
  color: #515151;
}

img {
  width: 100%;
  height: auto;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

hr {
  border: none;
  background-color: #fff;
  border-width: 0.6px 0 0 0;
  border-top: dashed;
  border-color: black;
  border-top-width: 1.5px;

}

a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  padding: 0;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

#page-wrapper {
  margin-top: -4rem;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0rem 1.5rem 5rem;
}

.l-inner01 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1500px;
  padding: 4rem 1.5rem 4rem;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0rem 0rem 6rem;
  }

  .l-inner01 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 1500px;
    padding: 4rem 1rem 4rem;
  }
}

.p-footer {
  padding: 0 0 3.25rem;
  margin-top: 1.25rem;
}

.p-footer__contents01 {
  display: grid;
  grid-template-columns: 17.625rem 1fr 3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .p-footer__contents01 {
    grid-template-columns: 1fr;
    padding-bottom: 25px;
    max-width: 400px;
    margin-inline: auto;
  }
}

.p-footer__logo a {
  color: #260124;
  font-weight: 700;
  font-size: 24px;
}

.p-footer__menu {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-menu {
  display: grid;
  grid-template-columns: 18.75rem 1fr;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-menu {
    grid-template-columns: 1fr 1fr;
  }
}

.p-menu__blockTtl {
  color: #ef6d58;
  font-size: 16px;
  letter-spacing: 0.18em;
  line-height: 2;
}

.p-menu__list {
  margin-top: 1rem;
  margin-top: 1rem;
}

.p-menu__item a {
  display: inline-block;
  color: #391400;
  font-size: 16px;
  line-height: 2;
}

.p-footer__sns .item a {
  width: 3rem;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-footer__sns .item a {
    margin-left: auto;
  }
}

.p-footer__contents02 {
  border-top: 1px solid #F01E41;
  padding-top: 2.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-footer__contents02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 1.875rem;
  }
}

.p-copyright {
  color: rgba(57, 20, 0, .64);
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .p-copyright {
    font-size: 14px;
    text-align: center;
  }
}

.p-footer__contents02 .p-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0625rem;
  margin-top: 0;
}

.p-footer__contents02 .p-menu__list a {
  margin-top: 0;
  font-size: 16px;
}

.p-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1396px;
  padding: 1.5625rem 0.9375rem;
  z-index: 100;
}

.p-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__logo {
  width: 18.5625rem;
}

@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 12.5rem;
  }
}

.p-header__btn a {
  font-weight: 500;
  font-size: 2.5rem;
  background: #FB8283;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  padding: 0.625rem 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-header__btn a {
    font-size: 1.5rem;
    padding: 0.3125rem 1.25rem;
  }
}

.p-info {
  padding: 10rem 0;
}

@media screen and (max-width: 767px) {
  .p-info {
    padding: 5rem 0;
  }
}

.p-info__contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #f3d1bf;
  border-radius: 6px;
}

@media screen and (max-width: 767px) {
  .p-info__contents {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }
}

.p-info__contents a {
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-info__contents a:hover {
  background: #FDF0E9;
}

@media screen and (max-width: 767px) {
  .p-info__contents a {
    padding: 1.5rem 2rem;
    gap: 1rem;
  }
}

.p-info__contents a+a {
  border-left: 1px solid #f3d1bf;
}

@media screen and (max-width: 767px) {
  .p-info__contents a+a {
    border-left: none;
    border-top: 1px solid #f3d1bf;
  }
}

.p-info__contents .text {
  color: #EF6D58;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.p-info__btn {
  text-align: center;
}

.p-info__btn a {
  font-size: 2.5rem;
  letter-spacing: 0.07em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50rem;
  max-width: 100%;
  margin-inline: auto;
  color: #fff;
  background: linear-gradient(240deg, #9366CD 0%, #5CBAF5 100%);
  border-radius: 70px;
  padding: 2.25rem 1.5rem 1.875rem;
}

@media screen and (max-width: 767px) {
  .p-info__btn a {
    font-size: 1.25rem;
    padding: 1.125rem 1rem 0.9375rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }
}

/* ========================================
   MV
======================================== */

.p-mv {
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 980px) {
	.p-mv {
		padding-top: 4rem;
	}
}


/* ========================================
   Fixed background
======================================== */

.p-mv__bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 86svh;
	overflow: hidden;
	pointer-events: none;
}

.p-mv__picture {
	display: block;
	width: 100%;
	height: 100%;
}

.p-mv__picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* ========================================
   First view
======================================== */

.p-mv__hero {
	position: relative;
	z-index: 1;
	width: 100%;
	height: calc(86svh - 3rem);
}

.p-mv__title {
	position: absolute;
	left: 50%;
	bottom: 15%;
	width: min(40%, 720px);
	transform: translateX(-50%);
}

.p-mv__title img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 980px) {
	.p-mv__hero {
		height: calc(86svh - 4rem);
	}
}

@media screen and (max-width: 767px) {
	.p-mv__hero {
		min-height: 520px;
	}

	.p-mv__title {
		top: 50%;
		bottom: auto;
		width: 90%;
		transform: translate(-50%, -50%);
	}
}


/* ========================================
   Scroll indicator
======================================== */

.p-scroll {
	position: absolute;
	left: 50%;
	bottom: 0;
	padding: 10px 0 10px 2.6875rem;
	overflow: hidden;
	transform: translateX(-50%);
}

.p-scroll__text {
	position: relative;
	margin: 0;
	font-size: 0.75rem;
	color: #fff;
}

.p-scroll__text span {
	writing-mode: vertical-rl;
  color: #fff;
}

.p-scroll__text::before {
	content: "";
	position: absolute;
	top: 0;
	left: -0.875rem;
	width: 0.6rem;
	height: 2rem;
	background: url("../../images/down.svg") no-repeat center / contain;
	animation: arrow-move 1.6s ease-in-out infinite;
}

@media screen and (max-width: 767px) {
	.p-scroll {
		bottom: 15px;
	}

	.p-scroll__text {
		color: #ffffff;
	}

	.p-scroll__text::before {
		width: 8px;
	}
}

@keyframes arrow-move {
	from {
		transform: translateY(-150%);
	}

	to {
		transform: translateY(150%);
	}
}


/* ========================================
   Content area
======================================== */

.p-mv__content {
	position: relative;
	z-index: 2;
	width: 100%;
	isolation: isolate;
}

.p-mv__content > .l-inner {
	position: relative;
	z-index: 1;
	max-width: 100%;
	padding: 4rem 4rem;
}

.p-mv__blur {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	-webkit-mask-image:
		linear-gradient(
			to bottom,
			transparent 0%,
			#000 8%,
			#000 100%
		);
	mask-image:
		linear-gradient(
			to bottom,
			transparent 0%,
			#000 8%,
			#000 100%
		);
}

.p-mv__blur::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../../images/mv-msg-bg.png") center / cover;
	opacity: 0.65;
}

@media screen and (max-width: 980px) {
	.p-mv__content > .l-inner {
		padding: 3rem 0.9rem 4rem;
	}
}


/* ========================================
   Message
======================================== */

.p-mv__message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 3rem;
	color: #fff;
	text-align: center;
	letter-spacing: 0.12rem;
	line-height: 2;
}

.p-mv__messageInner {
	width: fit-content;
	max-width: calc(90% - 1rem);
	margin-inline: auto;
}

.p-mv__message p {
	margin: 0 0 1rem;
	font-size: 1.325rem;
	font-weight: 500;
	line-height: 2.4;
	text-align: center;
}

.p-mv__layback,
.p-mv__open {
	display: block;
	width: min(100%, 500px);
	margin-inline: auto;
}

.p-mv__layback {
	margin-bottom: 1rem;
}

.p-mv__open {
	margin-bottom: 2rem;
}

.p-mv__layback img,
.p-mv__open img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	.p-mv__message {
		margin-top: 3rem;
		letter-spacing: 0.01rem;
	}

	.p-mv__messageInner {
		width: 100%;
		max-width: 100%;
	}

	.p-mv__message p {
		font-size: 1.05rem;
		font-weight: 400;
		line-height: 2;
		text-align: left;
	}
}


/* ========================================
   Special-site card
======================================== */

.mv-msg-item {
	margin-top: 3rem;
	padding: 0.75rem 0.75rem 1.25rem;
	border-radius: 4px;
	background-color: #f7f5f1;
	color: #111;
}

.mv-msg-item__head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.mv-msg-item__head p {
	margin: 0;
	line-height: 1.5;
}

.mv-msg-item__head img {
	width: 125px;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
}

.mv-msg-item .mv-msg-item__text {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	line-height: 1.6;
}

.mv-msg-item__cta .button-37 {
	display: block;
	margin-bottom: 0;
	padding: 0.35rem;
	border-radius: 7px;
	background-color: #111;
	color: #fff;
	font-family:
		"Avenir",
		"Yu Gothic",
		"游ゴシック",
		YuGothic,
		"游ゴシック体",
		"ヒラギノ角ゴ Pro W3",
		"メイリオ",
		sans-serif;
}


/* ========================================
   Campaign end message
======================================== */

.p-mv-el-wrap h2 {
	margin: 0;
	color: #000;
	text-align: center;
}

.p-secWrap {
  color: #260124;
}

.p-secWrap__en {
  font-size: 4.875rem;
  font-weight: 400;
  font-family: "Marcellus", serif;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .p-secWrap__en {
    font-size: 3rem;
  }
}

.p-secWrap__ja {
  font-size: 2.25rem;
  margin-top: 7px;
  display: block;
  font-weight: 400;
  letter-spacing: 0.16em;
  font-family: "Hina Mincho", serif;
}

@media screen and (max-width: 767px) {
  .p-secWrap__ja {
    font-size: 1.75rem;
  }
}

.p-totop {
  position: fixed;
  bottom: 4.375rem;
  right: 4.375rem;
  opacity: 0;
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
}

@media screen and (max-width: 767px) {
  .p-totop {
    right: 20px;
    bottom: 30px;
  }
}

.p-totop a {
  display: block;
  padding-left: 14px;
  color: #3c1a39;
  font-size: 12px;
}

.p-totop a span {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-totop a::before {
  position: absolute;
  content: "";
  top: 45%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 100%;
  background: url("../images/totop.png") no-repeat center center/contain;
}

.p-work {
  overflow: hidden;
  padding-bottom: 20px;
}

.p-work__block {
  margin-top: 2.875rem;
}

@media screen and (max-width: 767px) {
  .p-work__block {
    margin-top: 3.125rem;
  }
}

.p-work__contents {
  width: 100%;
  margin-top: 0;
}

.p-work__block.--01 {
  width: 100%;
  margin: 0 auto;
}

.p-work__block.--01 .p-work__contents {
  position: relative;
  padding-bottom: 75px;
  margin-top: 4.5rem;
}

@media screen and (max-width:767px) {
  .p-work__contents {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .p-work__block.--01 {
    padding-bottom: 0;
    width: 100%;
  }

  .p-work__block.--01 .p-work__contents {
    margin-top: 2.5rem;
  }
}

.p-work__slider {
  position: relative;
}

.i-gallery .swiper-button-next,
.i-gallery .swiper-button-prev,
.p-work__contents .swiper-button-next,
.p-work__contents .swiper-button-prev,
.p-work__contents .swiper-button-next02,
.p-work__contents .swiper-button-prev02,
.p-work__contents .swiper-button-next03,
.p-work__contents .swiper-button-prev03 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
  width: 3rem;
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
}

.i-gallery .swiper-button-next:before,
.i-gallery .swiper-button-prev:before,
.p-work__contents .swiper-button-next:hover,
.p-work__contents .swiper-button-prev:hover,
.p-work__contents .swiper-button-next02:hover,
.p-work__contents .swiper-button-prev02:hover,
.p-work__contents .swiper-button-next03:hover,
.p-work__contents .swiper-button-prev03:hover {
  opacity: 0.6;
}

.i-gallery .swiper-button-prev,
.p-work__contents .swiper-button-prev,
.p-work__contents .swiper-button-prev02,
.p-work__contents .swiper-button-prev03 {
  left: 30%;
}

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

  .p-work__contents .swiper-button-prev,
  .p-work__contents .swiper-button-prev02,
  .p-work__contents .swiper-button-prev03 {
    top: 25%;
    left: -16%;
    display: none;
  }
}

.i-gallery .swiper-button-next:before,
.p-work__contents .swiper-button-next,
.p-work__contents .swiper-button-next02,
.p-work__contents .swiper-button-next03 {
  right: 30%;
}

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

  .p-work__contents .swiper-button-next,
  .p-work__contents .swiper-button-next02,
  .p-work__contents .swiper-button-next03 {
    top: 25%;
    right: -16%;
    display: none;
  }
}

.swiper-slide-next,
.swiper-slide-prev {
  opacity: 1;
}



.i-gallery .swiper-button-next:before,
.i-gallery .swiper-button-prev:before,
.p-work__contents .swiper-button-next:before,
.p-work__contents .swiper-button-prev:before,
.p-work__contents .swiper-button-next02:before,
.p-work__contents .swiper-button-prev02:before,
.p-work__contents .swiper-button-next03:before,
.p-work__contents .swiper-button-prev03:before {
  content: "";
  width: 40px;
  height: 6px;
}

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

  .i-gallery .swiper-button-next:before,
  .i-gallery .swiper-button-prev:before,
  .p-work__contents .swiper-button-next:before,
  .p-work__contents .swiper-button-prev:before,
  .p-work__contents .swiper-button-next02:before,
  .p-work__contents .swiper-button-prev02:before,
  .p-work__contents .swiper-button-next03:before,
  .p-work__contents .swiper-button-prev03:before {
    width: 32px;
    height: 6px;
  }
}

.i-gallery .swiper-button-prev:before,
.p-work__contents .swiper-button-prev:before,
.p-work__contents .swiper-button-prev02:before,
.p-work__contents .swiper-button-prev03:before {
  background: url("../../images/left.svg") no-repeat center center/contain;
}

.i-gallery .swiper-button-next:before,
.p-work__contents .swiper-button-next:before,
.p-work__contents .swiper-button-next02:before,
.p-work__contents .swiper-button-next03:before {
  background: url("../../images/right.svg") no-repeat center center/contain;
}

.i-gallery .swiper-button-next:after,
.i-gallery .swiper-button-prev:after,
.p-work__contents .swiper-button-next:after,
.p-work__contents .swiper-button-prev:after,
.p-work__contents .swiper-button-next02:after,
.p-work__contents .swiper-button-prev02:after,
.p-work__contents .swiper-button-next03:after,
.p-work__contents .swiper-button-prev03:after {
  font-family: "Marcellus", serif;
  font-size: 13px;
  color: #1B2624;
}

.swiper-button-next02:after,
.swiper-rtl .swiper-button-prev02:after,
.swiper-button-next03:after,
.swiper-rtl .swiper-button-prev03:after {
  content: 'next';
}

.swiper-button-prev02:after,
.swiper-rtl .swiper-button-next02:after,
.swiper-button-prev03:after,
.swiper-rtl .swiper-button-next03:after {
  content: 'prev';
}

.p-work__contents .swiper-button-prev:after,
.p-work__contents .swiper-button-prev02:after,
.p-work__contents .swiper-button-prev03:after {
  padding-left: 3px;
}

.p-work__contents .swiper-button-next:after,
.p-work__contents .swiper-button-next02:after,
.p-work__contents .swiper-button-next03:after {
  padding-right: 3px;
}

.p-work__contents .swiper-slide {
  border-radius: 8px;
  text-align: center;
  padding: .5rem 1rem 0rem;
  -webkit-transition: -webkit-transform ease 1s;
  transition: -webkit-transform ease 1s;
  transition: transform ease 1s;
  transition: transform ease 1s, -webkit-transform ease 1s;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
  -webkit-filter: blur(3px);
  filter: blur(3px);
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-work__contents .swiper-slide {
    width: 14.7rem;
    padding: 0 0rem 1rem;
  }
}

.p-work__slider .swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform ease 1s;
  transition: -webkit-transform ease 1s;
  transition: transform ease 1s;
  transition: transform ease 1s, -webkit-transform ease 1s;
  -webkit-filter: none;
  filter: none;
  z-index: 1;
  width: 31.25rem;
}

@media screen and (max-width: 767px) {
  .p-work__slider .swiper-slide-active {
    width: 17.5rem;
  }
}

.p-work__slider .swiper-slide .slide-img {
  overflow: hidden;
  max-width: 100rem;
  margin-inline: auto;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .p-work__slider .swiper-slide .slide-img {
    max-width: 50rem;
    margin-bottom: 1em;
  }
}

.p-work__slider .swiper-slide .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-work__slider .swiper-slide .text {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  margin-top: 11px;
}

.p-work__slider .swiper-slide .name {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin-top: 3px;
  line-height: 1;
}

.p-work__slider .swiper-slide .year {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  margin-top: 6px;
}

.popup-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: gray;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity ease 0.6s;
  transition: opacity ease 0.6s;
}

.popup {
  z-index: 101;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 80%;
  width: 80%;
  max-width: 560px;
  overflow-y: scroll;
  background: linear-gradient(154deg, rgb(248, 246, 245) 13%, rgb(255, 231, 220) 55%, rgb(226, 255, 255) 100%);
  color: #260124;
  -webkit-transition: opacity ease 0.6s;
  transition: opacity ease 0.6s;
  opacity: 0;
  visibility: hidden;
}

.popup__content {
  padding-bottom: 2.875rem;
}

@media screen and (max-width: 767px) {
  .popup__content {
    padding-bottom: 2.1875rem;
  }
}

.popup__content .name {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding: 0 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 1;
}

.popup__content .name small {
  font-size: 14px;
  display: inline-block;
  margin-left: 12px;
}

@media screen and (max-width: 767px) {
  .popup__content .name {
    font-size: 24px;
    padding: 0 1.25rem;
  }
}

.popup__content .interview {
  padding: 0 2.5rem;
}

.popup__content .interview dt {
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
}

.popup__content .interview dd {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
}

.popup__content .interview dd+dt {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .popup__content .interview {
    padding: 0 1.25rem;
  }

  .popup__content .interview dt {
    line-height: 1.6;
  }
}

/*hide popup*/
.popupBtn {
  color: #fafafa;
  border: 1px solid #fafafa;
  padding: 7px 15px;
  border-radius: 8px;
  background: transparent;
  -webkit-transition: background ease 0.3s;
  transition: background ease 0.3s;
  display: block;
  font-size: 2rem;
  margin-top: 2.1875rem;
  cursor: pointer;
  display: inline-block;
  pointer-events: auto;
  position: relative;
  z-index: 95;
}

@media screen and (max-width: 767px) {
  .popupBtn {
    font-size: 1.125rem;
    padding: 10px;
    margin-top: 1.875rem;
  }
}

.popupBtn:hover {
  background: #f55c5d;
}

.popupBtn:active {
  background: #f55c5d;
  -webkit-transition: background ease 0.3s;
  transition: background ease 0.3s;
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-optima {
  font-family: Optima, Segoe, Segoe UI, Candara, Calibri, Arial, sans-serif;
  font-weight: 100;
}

.u-hina {
  font-family: "Hina Mincho", serif;
  font-style: normal;
  font-weight: 400;
}

.u-serif {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
}

.u-inter {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 200;
}

.u-epi {
  font-family: "Epilogue", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.u-dm {
  font-family: "DM Mono", monospace;
  font-style: normal;
  font-weight: 400;
}

.u-mar {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.js-text span {
  display: inline-block;
}

.u-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.p-desc__img {
  width: 50%;
  margin: 0 auto 1em;
}