@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #0A0A0A;
  margin: 0;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.85;
}

.object_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.object_contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/*------------------------------------------------------------------------------
  ブラーフェードアニメーション
------------------------------------------------------------------------------*/
.is-blur-fade-ready {
  opacity: 0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  -webkit-transform: translateY(26px);
          transform: translateY(26px);
}

.is-blur-fade-active {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
#wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.l-main {
  display: block;
  background-color: transparent;
}

#wrapper .l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-main__commonContainer {
  margin: 16.8rem 0 19.6rem;
}
@media screen and (max-width: 767px) {
  .l-main__commonContainer {
    margin: 14.4rem 0 12.8rem;
  }
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 4rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 2.2rem 2rem;
  }
}

.l-header__logo {
  width: 24.2rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 13.6rem;
  }
}
.l-header__logo a {
  display: block;
}

.l-header__sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-top: -2.2rem;
}
@media screen and (max-width: 767px) {
  .l-header__sns-wrap {
    margin-top: -3.2rem;
  }
}

.l-header__sns-text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 3.6rem;
  margin-right: 1.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__sns-text {
    display: none;
  }
}
.l-header__sns-text::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  right: 0;
  width: 2.4rem;
  height: 1px;
  background-color: #fff;
  display: block;
}

.l-header__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -0.5rem;
}

.l-header__sns {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 3.4rem;
          flex: 0 1 3.4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-header__sns {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 2.8rem;
            flex: 0 1 2.8rem;
  }
}
.l-header__sns:not(:last-child) {
  margin-right: 0.8rem;
}
.l-header__sns img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__burger-btn-wrap {
  width: 100%;
  max-width: 12rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header__burger-btn-wrap {
    max-width: 7.8rem;
    padding-top: 0.4rem;
  }
}

.l-header__lang {
  border: 1px solid #C0C0C0;
  width: 4.3rem;
  height: 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1px;
  padding-top: 0.3rem;
  margin-top: 2rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-header__lang {
    width: 4rem;
    height: 2.3rem;
    margin-top: 1.6rem;
  }
}

.l-header__lang-link {
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-header__lang-link {
    font-size: 1.15rem;
  }
}

/* 1023px
--------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 999;
    width: 0;
    height: 100vh;
    -webkit-transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(235, 240, 243, 0.95);
    margin-right: 0;
  }
  .l-header__nav.open {
    display: block;
    opacity: 1;
    width: 100%;
    z-index: 99;
  }
  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    width: 100%;
  }
  .l-header__nav-item {
    margin: 0 auto 40px;
    width: 100%;
  }
}
/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 31.6rem 0 16rem;
}
@media screen and (max-width: 900px) {
  .l-footer {
    padding: 26rem 0 14rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 16.4rem 0 3.2rem;
  }
}
.l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -27rem;
  background-image: url(../img/fotter-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 125.7rem;
  height: 91.1rem;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .l-footer::before {
    width: 90rem;
    height: 84rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer::before {
    top: 2rem;
    width: 72rem;
    height: 68rem;
  }
}

.l-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    display: block;
  }
}

.l-footer__info {
  padding-right: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    padding-right: 0;
    margin-bottom: 3.2rem;
  }
}

.l-footer__logo {
  width: 100%;
  max-width: 18.2rem;
  display: block;
  margin-bottom: 1.6rem;
}

.l-footer__sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-wrap {
    margin-bottom: 4rem;
  }
}

.l-footer__sns {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 3.4rem;
          flex: 0 1 3.4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 3rem;
            flex: 0 1 3rem;
  }
}
.l-footer__sns:not(:last-child) {
  margin-right: 1.6rem;
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 3rem;
}
@media screen and (max-width: 900px) {
  .l-footer__nav-list {
    max-width: 40rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.6rem 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    max-width: 100%;
    gap: 1.6rem 3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .l-footer__nav-list {
    gap: 2rem 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 520px) {
  .l-footer__nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}

.l-footer__nav-link {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  padding-right: 0.6rem;
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.l-footer__nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 1.5rem;
    padding-right: 0;
  }
}
.l-footer__nav-link:hover::before {
  width: 100%;
}

.l-footer__cta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-footer__cta-btn {
  color: #0A0A0A;
  font-size: 2.4rem;
  font-weight: normal;
  letter-spacing: 0.07em;
  font-family: "Josefin Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 7.2rem;
  max-width: 35.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(../img/btn-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 48px;
  padding-top: 0.4rem;
  margin-left: auto;
  margin-bottom: 9.8rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .l-footer__cta-btn {
    font-size: 2rem;
    max-width: 28rem;
    height: 6.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__cta-btn {
    font-size: 1.8rem;
    max-width: 26rem;
    height: 5.6rem;
    margin: 0 auto 8rem 0;
  }
}
.l-footer__cta-btn:hover {
  opacity: 0.85;
}
.l-footer__cta-btn:hover .l-footer__cta-arrow {
  right: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__cta-btn:hover .l-footer__cta-arrow {
    right: 2.2rem;
  }
}

.l-footer__cta-arrow {
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  stroke: #0A0A0A;
  right: 3rem;
  width: 5.2rem;
  height: 1rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 900px) {
  .l-footer__cta-arrow {
    right: 2.8rem;
    width: 4rem;
    height: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__cta-arrow {
    right: 2.2rem;
    width: 3.6rem;
    height: 0.7rem;
  }
}

.l-footer__copyright {
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  display: block;
  text-align: right;
  opacity: 0.95;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.15rem;
    letter-spacing: 0.3em;
    text-align: left;
  }
}

/*------------------------------------------------------------------------------
  sidebar
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  max-width: 114rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

.c-inner--sm {
  max-width: 104rem;
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
  width: 100%;
  max-width: 32rem;
  height: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: 1px solid #fff;
  border-radius: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 0.3rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.8rem;
    max-width: 29rem;
    height: 6.4rem;
  }
}
.c-btn:hover {
  opacity: 1;
  color: #0A0A0A;
  background-color: #fff;
}
.c-btn:hover .c-btn__arrow {
  stroke: #0A0A0A;
}

.c-btn--white {
  color: #0A0A0A;
  border: 1px solid #0A0A0A;
}
.c-btn--white:hover {
  opacity: 1;
  color: #fff;
  background-color: #0A0A0A;
}
.c-btn--white:hover .c-btn__arrow {
  stroke: #fff;
}
.c-btn--white .c-btn__arrow {
  stroke: #0A0A0A;
}

.c-btn__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  stroke: #fff;
  right: 2.4rem;
  width: 5.2rem;
  height: 1.1rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-btn__arrow {
    right: 2rem;
    width: 4.6rem;
    height: 0.9rem;
  }
}

.c-btn--sm {
  font-size: 1.8rem;
  max-width: 28rem;
  height: 6rem;
}
.c-btn--sm .c-btn__arrow {
  right: 2.2rem;
  width: 4rem;
  height: 0.9rem;
}

/*------------------------------------------------------------------------------
  c-burger-btn
------------------------------------------------------------------------------*/
.c-burger-btn {
  display: block;
  border: none;
  cursor: pointer;
  top: 0px;
  z-index: 999;
  background-color: transparent;
  position: relative;
  margin-left: auto;
  /* ハンバーガーメニューが開いたとき */
}
.c-burger-btn.cross .c-burger-btn__bar--top {
  width: 4.6rem;
  -webkit-transition-delay: 40ms;
          transition-delay: 40ms;
  -webkit-transform: translateY(10px) rotate(135deg) translateX(-5px);
          transform: translateY(10px) rotate(135deg) translateX(-5px);
}
@media screen and (max-width: 767px) {
  .c-burger-btn.cross .c-burger-btn__bar--top {
    width: 3.6rem;
  }
}
.c-burger-btn.cross .c-burger-btn__bar--bottom {
  width: 4.6rem;
  -webkit-transition-delay: 20ms;
          transition-delay: 20ms;
  -webkit-transform: translateY(-11px) rotate(-135deg) translateX(-5px);
          transform: translateY(-11px) rotate(-135deg) translateX(-5px);
}
@media screen and (max-width: 767px) {
  .c-burger-btn.cross .c-burger-btn__bar--bottom {
    width: 3.6rem;
  }
}

.c-burger-btn__bar {
  display: block;
  height: 2px;
  border-radius: 0px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 767px) {
  .c-burger-btn__bar {
    height: 1.5px;
  }
}

.c-burger-btn__bar--top {
  margin-bottom: 1.2rem;
  width: 8rem;
}
@media screen and (max-width: 767px) {
  .c-burger-btn__bar--top {
    width: 5.6rem;
  }
}

.c-burger-btn__bar--bottom {
  width: 5rem;
  margin-left: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-burger-btn__bar--bottom {
    width: 3.4rem;
  }
}

/*------------------------------------------------------------------------------
  c-burger-menu
------------------------------------------------------------------------------*/
.c-burger-menu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: 9;
  width: 0;
  height: 100vh;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.c-burger-menu.open {
  display: block;
  opacity: 1;
  width: 42rem;
  background-image: url(../img/menu-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: -6px 0 32px rgba(0, 0, 0, 0.24);
          box-shadow: -6px 0 32px rgba(0, 0, 0, 0.24);
}
@media screen and (max-width: 520px) {
  .c-burger-menu.open {
    width: 100%;
  }
}

.c-burger-menu__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 18rem;
  padding-left: 4.8rem;
}
@media screen and (max-width: 520px) {
  .c-burger-menu__nav-list {
    padding-top: 13.2rem;
    padding-left: 3.2rem;
  }
}

.c-burger-menu__nav-item {
  margin-bottom: 4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__nav-item {
    margin-bottom: 2.8rem;
  }
}

.c-burger-menu__nav-link {
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.24em;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.c-burger-menu__nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-burger-menu__nav-link {
    font-size: 1.6rem;
    font-weight: 350;
  }
}
.c-burger-menu__nav-link:hover::before {
  width: 100%;
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title__en {
  color: #fff;
  font-size: 6.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 900px) {
  .c-title__en {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 4rem;
  }
}

.c-title__ja {
  font-weight: normal;
  letter-spacing: 0.25em;
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px) {
  .c-title__ja {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
}

/*------------------------------------------------------------------------------
  c-breadcrumb
------------------------------------------------------------------------------*/
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-breadcrumb__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child) {
    margin-right: 28px;
  }
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "＞";
  position: absolute;
  top: 7px;
  right: -24px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child)::after {
    font-size: 0.8rem;
    top: 5.5px;
    right: -19px;
  }
}

.c-breadcrumb__link {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.3;
  display: inline-block;
  text-decoration: none;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__link {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
  }
}
.c-breadcrumb__link:hover {
  text-decoration: underline;
}
.c-breadcrumb__link.--current {
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-pagination
------------------------------------------------------------------------------*/
.c-pagination {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 4.8rem;
  }
}
.c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .page-numbers li {
  margin: 0 0.3rem;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers li {
    margin: 0 0.2rem;
  }
}
.c-pagination .page-numbers span,
.c-pagination .page-numbers a {
  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;
  color: #0A0A0A;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  background-color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 43px;
  height: 43px;
  border: 1px solid #0A0A0A;
  border-radius: 1px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 2px;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers span,
  .c-pagination .page-numbers a {
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    padding-top: 3px;
  }
}
.c-pagination .page-numbers span.current,
.c-pagination .page-numbers a.current {
  pointer-events: none;
}
.c-pagination .page-numbers span.current, .c-pagination .page-numbers span:hover,
.c-pagination .page-numbers a.current,
.c-pagination .page-numbers a:hover {
  color: #fff;
  background-color: #0A0A0A;
  opacity: 1;
  border: 1px solid #fff;
}
.c-pagination .page-numbers .dots {
  color: #fff;
  font-weight: normal;
  pointer-events: none;
  border: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 2rem;
  background-color: transparent;
}
.c-pagination .page-numbers .prev,
.c-pagination .page-numbers .next {
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers .prev,
  .c-pagination .page-numbers .next {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 21rem 0 23.6rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-mv {
    padding: 19rem 0 16rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding: 18rem 0;
  }
}
.p-mv::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: -12rem;
  background-image: url(../img/mv-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 237rem;
  height: 117.7rem;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .p-mv::before {
    width: 190rem;
    height: 80rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv::before {
    top: -1.2rem;
    left: -8rem;
    background-image: url(../img/mv-bg_sp.png);
    width: 99.8rem;
    height: 54rem;
  }
}

.p-mv__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 138rem;
  padding: 0 2rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.p-mv__slider {
  width: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-mv__slider {
    width: calc(100% + 2rem);
  }
}
.p-mv__slider .p-mv__slide-detail {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.p-mv__slider .swiper-slide-active .p-mv__slide-detail {
  visibility: visible;
  opacity: 1;
}
.p-mv__slider .swiper-pagination {
  height: 2px;
}
.p-mv__slider .swiper-pagination-bullets {
  left: auto;
  right: 0;
  bottom: -20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-pagination-bullets {
    bottom: -16px;
    right: -0.8rem;
  }
}
.p-mv__slider .swiper-pagination-bullet {
  background-color: #fff;
  width: 48px;
  height: 1.5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  margin: 0 5px !important;
}
@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-pagination-bullet {
    width: 32px;
    height: 1px;
    margin: 0 4px !important;
  }
}
.p-mv__slider .swiper-pagination-bullet-active {
  background-color: #fff;
}

.p-mv__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-mv__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-mv__slide-detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28%;
          flex: 0 1 28%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  padding-top: 2rem;
  padding-right: 3rem;
}
@media screen and (max-width: 900px) {
  .p-mv__slide-detail {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slide-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 0;
    text-align: left;
    margin-bottom: 1.6rem;
  }
}

.p-mv__slide-number {
  font-size: 14rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.03em;
  font-family: "Josefin Sans", sans-serif;
  display: block;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 900px) {
  .p-mv__slide-number {
    font-size: 10rem;
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slide-number {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 8rem;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__slide-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 1rem;
    padding-right: 1.2rem;
  }
}

.p-mv__slide-en {
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 900px) {
  .p-mv__slide-en {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slide-en {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.p-mv__slide-ja {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 900px) {
  .p-mv__slide-ja {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slide-ja {
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
  }
}

.p-mv__slide-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
}
@media screen and (max-width: 767px) {
  .p-mv__slide-img {
    width: 100%;
    height: 100%;
  }
}
.p-mv__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 950/534;
}
@media screen and (max-width: 767px) {
  .p-mv__slide-img img {
    aspect-ratio: 3/2;
  }
}
.p-mv__slide-img:hover {
  opacity: 1;
}

/*------------------------------------------------------------------------------
  p-about
------------------------------------------------------------------------------*/
.p-about {
  padding: 24.8rem 0 22rem;
  background-image: url(../img/about-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .p-about {
    padding: 20rem 0 18rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 12.8rem 0;
  }
}

.p-about__contents {
  position: relative;
  z-index: 1;
}
.p-about__contents::before {
  content: "";
  position: absolute;
  top: -25.8rem;
  left: 0;
  background-image: url(../img/sakura-bibi-vr.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 224px;
  height: 1312px;
  z-index: 0;
}
@media screen and (max-width: 900px) {
  .p-about__contents::before {
    width: 210px;
    height: 1280px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__contents::before {
    left: -4rem;
    top: -13.8rem;
    width: 180px;
    height: 1100px;
  }
}

.p-about__title {
  margin-bottom: 9rem;
  margin-left: 12.8rem;
}
@media screen and (max-width: 900px) {
  .p-about__title {
    margin-left: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__title {
    margin-left: 0;
    margin-bottom: 4.8rem;
  }
  .p-about__title .c-title__en {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}

.p-about__texts {
  font-weight: normal;
  line-height: 2.6;
  letter-spacing: 0.25em;
  margin-left: 18.4rem;
}
@media screen and (max-width: 900px) {
  .p-about__texts {
    margin-left: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__texts {
    font-size: 1.25rem;
    line-height: 2.45;
    letter-spacing: 0.2em;
    margin-left: 2.4rem;
  }
}
.p-about__texts p:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-about__texts p:not(:last-child) {
    margin-bottom: 2.8rem;
  }
}

/*------------------------------------------------------------------------------
  p-latest-song
------------------------------------------------------------------------------*/
.p-latest-song {
  padding: 25.8rem 0 24rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-latest-song {
    padding: 15.6rem 0 18rem;
  }
}
.p-latest-song::before {
  content: "";
  position: absolute;
  top: 0;
  left: -23rem;
  background-image: url(../img/top-bg1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 110.2rem;
  height: 110.2rem;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .p-latest-song::before {
    width: 90rem;
    height: 90rem;
  }
}
@media screen and (max-width: 767px) {
  .p-latest-song::before {
    left: -18rem;
    width: 56rem;
    height: 56rem;
  }
}

.p-latest-song__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem 0;
  margin: 6.4rem auto;
}
@media screen and (max-width: 767px) {
  .p-latest-song__list {
    margin: 4rem 0 4.8rem;
    gap: 3.2rem 0;
  }
}

.p-latest-song__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.27%;
          flex: 0 1 47.27%;
}
@media screen and (max-width: 767px) {
  .p-latest-song__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.p-latest-song__item a {
  display: block;
}
.p-latest-song__item a:hover {
  opacity: 0.7;
}
.p-latest-song__item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 16/9;
}
.p-latest-song__item a h3 {
  color: #DCDCDC;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.8;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-latest-song__item a h3 {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
  }
}

/*------------------------------------------------------------------------------
  p-top-info
------------------------------------------------------------------------------*/
.p-top-info {
  margin-bottom: 23.2rem;
  min-height: 52.7rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-top-info {
    min-height: 32rem;
    margin-bottom: 19rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-info {
    min-height: 0;
    margin-bottom: 16rem;
  }
}
.p-top-info::before {
  content: "";
  position: absolute;
  top: -3.8rem;
  left: -0.2rem;
  background-image: url(../img/top-bg2.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 243.3rem;
  height: 84.6rem;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .p-top-info::before {
    width: 140rem;
    height: 60rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-info::before {
    top: -2rem;
    left: -6.4rem;
    width: 80rem;
    height: 30rem;
  }
}

.p-top-info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: calc(50% - 55rem - 2rem);
  margin-right: auto;
  max-width: 128.6rem;
  padding: 0 2rem;
}
@media screen and (max-width: 1139px) {
  .p-top-info__inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-info__heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 34.5rem;
          flex: 0 1 34.5rem;
  margin-right: 11.2rem;
}
@media screen and (max-width: 1280px) {
  .p-top-info__heading {
    margin-right: 4.8rem;
  }
}
@media screen and (max-width: 900px) {
  .p-top-info__heading {
    margin-right: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-info__heading {
    display: contents;
  }
}

.p-top-info__btn {
  margin-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__btn {
    margin: 4.8rem auto 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-top-info__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-top-info__list {
    margin-top: 4rem;
  }
}

/*------------------------------------------------------------------------------
  p-info-list
------------------------------------------------------------------------------*/
.p-info-list__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #383838;
}
.p-info-list__item:first-child {
  border-top: 1px solid #383838;
}

.p-info-list__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 3.8rem 1.2rem 3.4rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-info-list__item-link {
    padding: 3rem 0.4rem 2.8rem;
  }
}
.p-info-list__item-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/info-cover.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.p-info-list__item-link:hover {
  opacity: 1;
}
.p-info-list__item-link:hover::before {
  opacity: 1;
}
.p-info-list__item-link:hover .p-info-list__item-time,
.p-info-list__item-link:hover .p-info-list__item-title {
  color: #0A0A0A;
}

.p-info-list__item-time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17.5rem;
          flex: 0 0 17.5rem;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 900px) {
  .p-info-list__item-time {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 11.8rem;
            flex: 0 0 11.8rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-info-list__item-time {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9.4rem;
            flex: 0 0 9.4rem;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }
}

.p-info-list__item-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .p-info-list__item-title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-info-list__item-title {
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------------------------
  p-page-mv
------------------------------------------------------------------------------*/
.p-page-mv {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-top: 20.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-page-mv {
    padding-top: 17rem;
  }
}
.p-page-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 58%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 160rem;
  height: 48.96vw;
  background-image: url(../img/page-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1439px) {
  .p-page-mv::before {
    left: auto;
    right: -13rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 144rem;
    height: 70.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv::before {
    right: -6rem;
    width: 104rem;
    height: 53rem;
    opacity: 0.8;
  }
}

.p-page-mv__title {
  color: #fff;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-page-mv__title {
    margin-top: 4.8rem;
  }
}

.p-page-mv__title-en {
  font-size: 8.8rem;
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 0.03em;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 900px) {
  .p-page-mv__title-en {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__title-en {
    font-size: 5.2rem;
  }
}

.p-page-mv__title-ja {
  font-weight: normal;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 900px) {
  .p-page-mv__title-ja {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__title-ja {
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------------------------
  p-single
------------------------------------------------------------------------------*/
.p-single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  position: relative;
}
.p-single::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 1.6rem);
  height: calc(100% - 1.6rem);
  border: 1px solid #222;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-single::before {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }
}

.p-single__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 101.2rem;
  padding: 12.8rem 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-single__inner {
    padding: 8rem 1.6rem;
  }
}
.p-single__inner.p-single__inner--sm {
  padding: 8.8rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-single__inner.p-single__inner--sm {
    padding: 4rem 2rem;
  }
}

.p-single__time {
  color: #222;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-single__time {
    font-size: 1.7rem;
  }
}

.p-single__title {
  color: #222;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 2rem;
    margin-top: 1.2rem;
  }
}

.p-single__contents {
  color: #222;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 4.8rem 0 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-single__contents {
    font-size: 1.3rem;
  }
}
.p-single__contents h2,
.p-single__contents h3,
.p-single__contents h4,
.p-single__contents h5,
.p-single__contents a,
.p-single__contents p,
.p-single__contents ul,
.p-single__contents ol,
.p-single__contents table,
.p-single__contents .wp-block-table,
.p-single__contents .wp-block-image,
.p-single__contents .wp-block-media-text {
  margin: 1em 0;
}
.p-single__contents ul {
  list-style-type: none;
  list-style-position: inside;
}
.p-single__contents ul li {
  font-size: 1.5rem;
  text-indent: -1em;
  padding-left: 1em;
  position: relative;
}
.p-single__contents ul li::before {
  content: "・";
}
@media screen and (max-width: 767px) {
  .p-single__contents ul li {
    font-size: 1.3rem;
  }
}
.p-single__contents ol {
  font-size: 1.5rem;
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-single__contents ol {
    font-size: 1.3rem;
  }
}
.p-single__contents a:not([class]) {
  color: #09099C;
  text-decoration: underline;
}
.p-single__contents h2 {
  color: #222;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 4px solid #222;
  padding-left: 1.4rem;
}
@media screen and (max-width: 900px) {
  .p-single__contents h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__contents h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    border-width: 2.5px;
    padding-left: 1.2rem;
  }
}
.p-single__contents h2[style*="text-align: center"], .p-single__contents h2.has-text-align-center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-single__contents h2[style*="text-align: right"], .p-single__contents h2.has-text-align-right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.p-single__contents h3 {
  color: #222;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #aaa;
}
@media screen and (max-width: 767px) {
  .p-single__contents h3 {
    font-size: 1.7rem;
  }
}
.p-single__contents h4 {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-single__contents h4 {
    font-size: 1.6rem;
  }
}
.p-single__contents h5 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-single__contents h5 {
    font-size: 1.5rem;
  }
}
.p-single__contents .wp-block-image.aligncenter {
  margin-inline: auto;
}
.p-single__contents .wp-block-image.alignright {
  margin-inline: auto 0;
}
.p-single__contents .wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.p-single__contents .wp-block-image.alignnone {
  margin-inline: 0;
}
.p-single__contents figure.wp-block-image.aligncenter {
  margin-inline: auto;
}
.p-single__contents figure.wp-block-image.alignright {
  margin-inline: auto 0;
}
.p-single__contents figure.wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.p-single__contents figure.wp-block-image.alignnone {
  margin-inline: 0;
}
.p-single__contents img.aligncenter {
  margin-inline: auto;
  display: block;
}
.p-single__contents img.alignright {
  margin-inline: auto 0;
  display: block;
}
.p-single__contents img.alignleft {
  margin-inline: 0 auto;
  display: block;
}

/*------------------------------------------------------------------------------
  p-contact
------------------------------------------------------------------------------*/
.p-contact__text {
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.p-contact__text--sm {
  color: #D7D7D7;
  font-size: 1.3rem;
  line-height: 2.5;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-contact__text--sm {
    font-size: 1.1rem;
    line-height: 2.3;
  }
}

.p-contact-form {
  max-width: 96rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    margin-top: 5.6rem;
  }
}

.p-contact-form__list {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__list {
    margin-bottom: 2.8rem;
  }
}

.p-contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item {
    display: block;
  }
}
.p-contact-form__item:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item:not(:last-child) {
    margin-bottom: 2.8rem;
  }
}

.p-contact-form__item-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 22rem;
          flex: 0 1 22rem;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  font-family: "Josefin Sans", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1.6rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px) {
  .p-contact-form__item-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 17rem;
            flex: 0 1 17rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-title {
    font-size: 1.5rem;
    margin: 0 0 0.8rem;
  }
}
.p-contact-form__item-title span {
  font-size: 1.1rem;
}

.p-contact-form__input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-contact-form__input-wrap input[type=text],
.p-contact-form__input-wrap input[type=email],
.p-contact-form__input-wrap input[type=tel],
.p-contact-form__input-wrap select,
.p-contact-form__input-wrap textarea {
  color: #fff;
  font-size: 1.6rem !important;
  width: 100%;
  padding: 9.5px 12px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1px;
  background-color: transparent;
  border: 1px solid #575757;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
  color: #A3A3A3;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
  color: #A3A3A3;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
  color: #A3A3A3;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
  color: #A3A3A3;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::placeholder,
.p-contact-form__input-wrap input[type=email]::placeholder,
.p-contact-form__input-wrap input[type=tel]::placeholder,
.p-contact-form__input-wrap select::placeholder,
.p-contact-form__input-wrap textarea::placeholder {
  color: #A3A3A3;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap textarea {
  resize: none;
  min-height: 24rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap textarea {
    min-height: 18rem;
  }
}
.p-contact-form__input-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #616161;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: -4.5px;
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 -2px #fff;
          box-shadow: 0 0 0 -2px #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  margin-right: 1rem;
}
.p-contact-form__input-wrap input[type=checkbox]:checked {
  border: 2px solid #575757;
  -webkit-box-shadow: 0 0 0 1px #575757;
          box-shadow: 0 0 0 1px #575757;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-contact-form__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap {
    display: block;
  }
}

.p-contact-form__agree {
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree {
    font-size: 1.4rem;
    margin-bottom: 5.6rem;
  }
}
.p-contact-form__agree input {
  margin-right: 1.4rem;
}
.p-contact-form__agree a {
  color: #fff;
  text-decoration: underline;
}

.p-contact-form__btn {
  margin: 0 auto;
  display: block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.p-contact-form__btn input[type=submit] {
  color: #fff;
  font-size: 2rem;
  width: 100%;
  height: 100%;
  max-width: 32rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-family: "Josefin Sans", sans-serif;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
  margin: 0 auto;
  transition: all 0.2s ease;
}
.p-contact-form__btn input[type=submit]:hover {
  color: #0A0A0A;
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn input[type=submit] {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}

.p-contact-form .wpcf7-list-item {
  margin-left: 0;
}

/*------------------------------------------------------------------------------
  privacy-policy
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-primary-color {
  color: #0A0A0A;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz16 {
  font-size: 1.6rem;
}

.u-fz15 {
  font-size: 1.5rem;
}

.u-fz14 {
  font-size: 1.4rem;
}

.u-fz13 {
  font-size: 1.3rem;
}

.u-fz12 {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fw-bold {
  font-weight: bold;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-normal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-text-align-left {
  text-align: left;
}

.u-text-align-center {
  text-align: center;
}

.u-text-align-right {
  text-align: right;
}

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-2 {
  margin-top: 2px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

.u-mt-5 {
  margin-top: 40px !important;
}

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-05 {
  margin-bottom: 4px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

.u-mb-5 {
  margin-bottom: 40px !important;
}

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-ml-05 {
  margin-left: 4px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

.u-mr-5 {
  margin-right: 40px !important;
}

.u-m-space-4 {
  margin: 4px !important;
}

.u-m-1 {
  margin: 8px !important;
}

.u-m-2 {
  margin: 16px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */