@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@500&display=swap");
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.72vw;
  }
}

body {
  min-height: 100vh;
  min-width: 1200px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: -0.02em;
  color: #141414;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.714;
    min-width: 1%;
    position: relative;
  }
}

.js-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

img {
  image-rendering: -webkit-optimize-contrast;
}
.safari img {
  image-rendering: inherit;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
}

/* mouseover
--------------------------------------------------*/
@media screen and (max-width: 1200px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* main
--------------------------------------------------*/
.f-main {
  padding-top: 68px;
}
@media screen and (max-width: 767px) {
  .f-main {
    padding-top: 15vw;
  }
}

/* link
--------------------------------------------------*/
a {
  color: #141414;
  transition: 0.3s;
  will-change: transform;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  a:hover, a:focus {
    text-decoration: none;
    opacity: 1;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #141414;
  transition: 0.3s;
  will-change: transform;
}
button:hover {
  opacity: 0.5;
}
button:focus {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  button:hover, button:focus {
    opacity: 1;
  }
}
button:hover {
  opacity: 0.5;
}
button:focus {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  button:hover, button:focus {
    opacity: 1;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1200px;
  background: #fff;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 16vw;
    min-width: inherit;
  }
}
.l-header__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 68px;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 16vw;
  }
}
.l-header-menu {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.l-header-menu__btn {
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 68px;
  height: 68px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-menu__btn {
    width: 16vw;
    height: 16vw;
  }
}
.l-header-menu__btn:hover {
  opacity: 0.5;
}
.l-header-menu__btn img {
  width: 2.4rem;
  height: auto;
}
.l-header-menu__logo {
  width: 68px;
  height: 68px;
}
@media screen and (max-width: 767px) {
  .l-header-menu__logo {
    width: 60px;
    height: 60px;
  }
}
.l-header-menu__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-header-main {
  height: 68px;
}
@media screen and (max-width: 767px) {
  .l-header-main {
    display: none;
  }
}
.l-header-main-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin: 0 0 0 22em;
}
@media screen and (max-width: 1350px) {
  .l-header-main-list {
    margin: 0 0 0 13em;
  }
}
.l-header-main-list__item {
  font-size: 1.4rem;
}
.l-header-main-list__item + .l-header-main-list__item {
  margin-left: 5.714em;
}
.l-header-login {
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 68px;
}
@media screen and (max-width: 767px) {
  .l-header-login {
    width: 16vw;
    height: 16vw;
    padding: 4vw;
  }
}
.l-header-login a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.l-header-login a img {
  width: 3.2rem;
  height: 3.2rem;
}
.l-header-login.before {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-header-login.before {
    font-size: 1.2rem;
    padding: 0;
  }
}
.l-header-login.before a {
  justify-content: flex-start;
}
.l-header-navi {
  position: fixed;
  top: 0;
  width: 343px;
  transform: translateX(-343px);
  transition: 0.3s;
  z-index: 10;
}
.l-header-navi.u-home {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .l-header-navi {
    width: 20em;
    transform: translateX(-20em);
  }
}
.l-header-navi.is-open {
  transform: translateX(0);
}
.l-header-navi-head {
  position: relative;
}
.l-header-navi-head__logo {
  width: calc(100% - 68px);
  height: 68px;
  background: #1c212e;
}
@media screen and (max-width: 767px) {
  .l-header-navi-head__logo {
    width: calc(100% - 16vw);
    height: 16vw;
    text-align: center;
    background: #fe5868;
  }
}
.l-header-navi-head__logo img {
  width: 100%;
  height: auto;
}
.l-header-navi-head__logo a {
  display: block;
}
.l-header-navi-head__btn {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 68px;
  height: 68px;
  background: #fff;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-header-navi-head__btn {
    width: 16vw;
    height: 16vw;
  }
}
.l-header-navi-head__btn:hover {
  opacity: 0.5;
}
.l-header-navi-head__btn img {
  width: 2.4rem;
  height: auto;
}
.l-header-navi__menus {
  width: 275px;
  height: calc(100vh - 68px);
  height: calc(100dvh - 68px);
  overflow-y: scroll;
  background: #fdf5fa;
  padding: 2em 0 2em 0.375em;
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .l-header-navi__menus {
    width: calc(100% - 16vw);
    height: calc(100vh - 16vw);
    height: calc(100dvh - 16vw);
    padding: 1em 0 1em 0.375em;
  }
}
.l-header-navi__menus::-webkit-scrollbar {
  display: none;
}
.l-header-navi-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header-navi-sp {
    display: block;
    padding: 0 0.625em;
  }
}
.l-header-navi__ttl {
  font-weight: 700;
  color: #fff;
  margin: 0.8em 0;
}
.l-header-navi-list {
  padding: 0 0.625em;
}
@media screen and (max-width: 767px) {
  .l-header-navi-list {
    border-top: 1px solid #858584;
    margin-top: 1.5em;
    padding-top: 1em;
  }
  p + .l-header-navi-list {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }
}
.l-header-navi-list + .l-header-navi-list {
  border-top: 1px solid #858584;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-navi-list + .l-header-navi-list {
    margin-top: 1em;
    padding-top: 1em;
  }
}
.l-header-navi-list__item, .l-header-navi-list__item--dots {
  font-size: 1.4rem;
}
.l-header-navi-list__item + .l-header-navi-list__item, .l-header-navi-list__item--dots + .l-header-navi-list__item, .l-header-navi-list__item + .l-header-navi-list__item--dots, .l-header-navi-list__item--dots + .l-header-navi-list__item--dots {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .l-header-navi-list__item + .l-header-navi-list__item, .l-header-navi-list__item--dots + .l-header-navi-list__item, .l-header-navi-list__item + .l-header-navi-list__item--dots, .l-header-navi-list__item--dots + .l-header-navi-list__item--dots {
    margin-top: 0.8em;
  }
}
.l-header-navi-list__item img, .l-header-navi-list__item--dots img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.8rem;
  height: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-navi-list__item img, .l-header-navi-list__item--dots img {
    width: 1.5em;
  }
}
.l-header-navi-list__item a, .l-header-navi-list__item--dots a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 2em;
  padding-left: 2.857em;
}
@media screen and (max-width: 767px) {
  .l-header-navi-list__item a, .l-header-navi-list__item--dots a {
    padding-left: 2em;
  }
}
.l-header-navi-list__item a[href^="#"], .l-header-navi-list__item--dots a[href^="#"] {
  position: relative;
}
.l-header-navi-list__item a[href^="#"]:hover span, .l-header-navi-list__item--dots a[href^="#"]:hover span {
  /*font-size: 0;*/
  opacity: 0;
}
.l-header-navi-list__item a[href^="#"]:hover::before, .l-header-navi-list__item--dots a[href^="#"]:hover::before {
  content: "Coming Soon";
  position: absolute;
  top: 50%;
  left: 2.875em;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.l-header-navi-list__item a[href^="#"].join:hover span, .l-header-navi-list__item--dots a[href^="#"].join:hover span {
  /*font-size: 0;*/
  opacity: 0;
}
.l-header-navi-list__item a[href^="#"].join:hover::before, .l-header-navi-list__item--dots a[href^="#"].join:hover::before {
  content: "本申込み後にご覧いただけます";
  position: absolute;
  top: 50%;
  left: 2.875em;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.l-header-navi-list__item--dots + .l-header-navi-list__item--dots {
  margin-top: 0.5em;
}
.l-header-navi-list__item--dots a {
  position: relative;
}
.l-header-navi-list__item--dots a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.8em;
  width: 3px;
  height: 3px;
  background: #141414;
  border-radius: 100%;
  transform: translateY(-50%);
}
.l-header-navi-list__item--dots a[href^="#"]:hover span {
  /*font-size: 0;*/
  opacity: 0;
}
.l-header-navi-list__item--dots a[href^="#"]:hover::before {
  content: "Coming Soon";
  position: absolute;
  top: 50%;
  left: 2.875em;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.l-header-navi-list__item--dots a[href^="#"].join:hover span {
  /*font-size: 0;*/
  opacity: 0;
}
.l-header-navi-list__item--dots a[href^="#"].join:hover::before {
  content: "本申込み後にご覧いただけます";
  position: absolute;
  top: 50%;
  left: 2.875em;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.l-header-navi-list__parent {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 2em;
  padding-left: 2.857em;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-navi-list__parent {
    padding-left: 2em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-navi-list__parent:hover {
    opacity: 0.5;
  }
}
.l-header-navi-list__parent::after {
  content: "";
  position: absolute;
  top: 0.5em;
  right: 1.5em;
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid #0a0d14;
  border-bottom: 2px solid #0a0d14;
  transform: rotate(45deg);
}
.l-header-navi-list__parent.is-open::after {
  top: 0.85em;
  transform: rotate(-135deg);
}
.l-header-navi-list__parent img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.8rem;
  height: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-navi-list__parent img {
    width: 1.5em;
  }
}
.l-header-navi-list-children {
  display: none;
  padding-top: 0.2em;
}
.l-header-navi-list-children__item {
  font-size: 1.4rem;
}
.l-header-navi-list-children__item + .l-header-navi-list-children__item {
  margin-top: 0.2em;
}
.l-header-navi-list-children__item a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 2em;
  padding-left: 2.857em;
}
@media screen and (max-width: 767px) {
  .l-header-navi-list-children__item a {
    padding-left: 2em;
  }
}
.l-header-navi-list-children__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.8em;
  width: 3px;
  height: 3px;
  background: #141414;
  border-radius: 100%;
  transform: translateY(-50%);
}
.l-header-join {
  position: absolute;
  top: 16px;
  right: 100px;
  height: 36px;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-header-join {
    top: 3vw;
    right: 14vw;
    height: 10vw;
    font-size: 1rem;
  }
}
.l-header-join a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #f24646;
  line-height: 1;
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  .l-header-join a {
    line-height: 1.2;
    padding: 0 0.8em;
  }
}
.l-header-join a span {
  position: relative;
  padding-right: 1em;
}
@media screen and (max-width: 767px) {
  .l-header-join a span {
    padding-right: 0.8em;
  }
}
.l-header-join a span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.l-header-cancel {
  position: absolute;
  top: 16px;
  right: 440px;
  height: 36px;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-header-cancel {
    top: 3vw;
    right: 48vw;
    height: 10vw;
    font-size: 1rem;
  }
}
.l-header-cancel a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #EECD65;
  color: #333;
  line-height: 1;
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  .l-header-cancel a {
    line-height: 1.2;
    padding: 0 0.8em;
  }
}
.l-header-cancel a span {
  position: relative;
  padding-right: 1em;
}
@media screen and (max-width: 767px) {
  .l-header-cancel a span {
    padding-right: 0.8em;
  }
}
.l-header-cancel a span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(-45deg);
}
.l-header-search {
  margin: 20px 130px 0 auto;
  border: 1px solid #cccccc;
  margin-left: auto;
  padding: 0;
  height: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-header-search {
    margin: 1em 3.5em 0 auto;
    height: 1.8em;
  }
}
.l-header-search form {
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.l-header-search .search-block {
  font-size: 1.3rem;
  padding: 5px;
  flex-grow: 1;
  height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-header-search .search-block {
    width: 11em;
  }
}
.l-header-search .search-block:focus {
  outline: none;
}
.l-header-search .search-btn {
  background: url(../img/common/icn_search.png) #fe5868 no-repeat center center/15px 15px;
  width: 30px;
  height: 100%;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-header-search .search-btn {
    width: 2em;
  }
}

.l-footer {
  background: #0a0d14;
  padding: 4.8rem 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 2em 0 2.688em;
  }
}
.l-footer-sns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 2.25em;
}
.l-footer-sns__item {
  width: 2.188em;
}
.l-footer-sns__item + .l-footer-sns__item {
  margin-left: 1.375em;
}
.l-footer-sns__item img {
  width: 100%;
  height: auto;
}
.l-footer__logo {
  width: 345px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 50vw;
  }
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
.l-footer-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.125em;
}
@media screen and (max-width: 767px) {
  .l-footer-menu {
    display: block;
  }
}
.l-footer-menu__item {
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-menu__item {
    text-align: center;
  }
}
.l-footer-menu__item + .l-footer-menu__item {
  border-left: 1px solid #fff;
  margin-left: 1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .l-footer-menu__item + .l-footer-menu__item {
    border: 0;
    margin: 1em 0 0;
    padding: 0;
  }
}
.l-footer-menu__item a {
  color: #fff;
}
.l-footer__copy {
  text-align: center;
  color: #ccc;
  line-height: 1;
  font-size: 1.4rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1rem;
    margin: 2em 0 0;
  }
  .l-footer__copy + .l-footer__copy {
    margin-top: 2em;
  }
}

.c-movie {
  overflow: hidden;
}
.c-movie + .c-movie {
  margin-top: 2em;
}
.c-movie-head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 max(1.3vw, 1.25em);
}
@media screen and (max-width: 767px) {
  .c-movie-head {
    padding: 0 1em;
  }
}
.c-movie-head__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-movie-head__ttl {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
.c-movie-head__link {
  line-height: 1;
  font-size: 1.8rem;
  margin-left: 2.5em;
}
@media screen and (max-width: 767px) {
  .c-movie-head__link {
    font-size: 1.2rem;
    margin-left: 1em;
    flex-shrink: 0;
  }
}
.c-movie-head__link a {
  position: relative;
  padding: 0 1em 0 0;
}
.c-movie-head__link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.c-movie-slider {
  position: relative;
  padding: max(1.3vw, 1.25em) max(1.3vw, 1.25em);
}
@media screen and (max-width: 767px) {
  .c-movie-slider {
    margin: 1em 0 0;
    padding: 0 1em;
  }
}
.c-movie-slider__item a {
  position: relative;
  display: block;
  /*padding-top: 56.4%;*/
  border-radius: 0.625em;
  overflow: hidden;
  /*border: 1px solid $bk;*/
}
@media (hover: hover) and (pointer: fine) {
  .c-movie-slider__item a:hover {
    transform: scale(1.1);
    opacity: 1;
  }
}
.c-movie-slider__item a img {
  /*
  position: absolute;
  top: 0;
  left: 0;
  */
  width: 100%;
  height: 100%;
  aspect-ratio: 254/324;
  object-fit: cover;
}
.c-movie-slider__item.u-movie a img {
  aspect-ratio: 716/404;
}
.c-movie-slider__ttl {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-movie-slider__ttl {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .c-movie-slider__ttl {
    font-size: 0.8rem;
  }
}
.c-movie-slider__next {
  position: absolute;
  top: 50%;
  right: max(0.5vw, 0.5em);
  width: max(3.1vw, 46px);
  height: max(3.1vw, 46px);
  background: url(../img/common/icon_arrow_next.png) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.9;
  cursor: pointer;
  transition: 0.3s;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-movie-slider__next:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .c-movie-slider__next {
    right: 2vw;
    width: 10vw;
    height: 10vw;
  }
}
.c-movie-slider__next::after {
  content: none;
}
.c-movie-slider__next.swiper-button-disabled {
  opacity: 0;
}
.c-movie-slider__prev {
  position: absolute;
  top: 50%;
  left: max(0.5vw, 0.5em);
  width: max(3.1vw, 46px);
  height: max(3.1vw, 46px);
  background: url(../img/common/icon_arrow_prev.png) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.9;
  cursor: pointer;
  transition: 0.3s;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-movie-slider__prev:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .c-movie-slider__prev {
    left: 2vw;
    width: 10vw;
    height: 10vw;
  }
}
.c-movie-slider__prev::after {
  content: none;
}
.c-movie-slider__prev.swiper-button-disabled {
  opacity: 0;
}

.c-heading {
  font-size: 3rem;
  padding: 0 0 0.4em;
  border-bottom: 1px solid #777;
  word-break: break-all;
  margin-bottom: 2.2em;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 1.6rem;
  }
}

.c-pagetop {
  pointer-events: none;
  position: sticky;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  padding: 8em 1em 1em;
  z-index: 100;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    padding: 5em 1em 1em;
  }
}
.c-pagetop.is-active {
  opacity: 1;
}
.c-pagetop a {
  pointer-events: all;
  display: block;
  width: 54px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .c-pagetop a {
    width: 2.5em;
  }
}
.c-pagetop a img {
  width: 100%;
  height: auto;
}

.wp-pagenavi {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5em;
}
.wp-pagenavi span.current {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-size: 1.6rem;
  background: #fe5868;
  padding: 0;
  border-color: #fe5868;
  box-sizing: border-box;
  border-radius: 3px;
  margin: 0 5px;
}
.wp-pagenavi .page {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-size: 1.6rem;
  padding: 0;
  box-sizing: border-box;
  border-radius: 3px;
  margin: 0 5px;
}
.wp-pagenavi .page:hover {
  border-color: #fe5868;
  background: #fe5868;
  opacity: 1;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-size: 1.6rem;
  padding: 0;
  box-sizing: border-box;
  border-radius: 3px;
  margin: 0 5px;
}
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
  border-color: #fe5868;
  background: #fe5868;
  opacity: 1;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/* --------------------------------------------------
 color
-------------------------------------------------- */
.u-bl {
  color: #718098 !important;
}

.u-pk {
  color: #fdf5fa !important;
}

/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

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

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

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

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-margin.-short {
  margin-bottom: 16px;
}
.u-margin.-middle {
  margin-bottom: 32px;
}
.u-margin.-large {
  margin-bottom: 64px;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

.p-home-mv {
  overflow: hidden;
  padding: 0.625em 1.5rem 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-home-mv {
    padding: 0;
  }
}
.p-home-mv-slider {
  position: relative;
}
.p-home-mv-slider__item {
  position: relative;
  padding: 0 0.625em;
}
.p-home-mv-slider__inner {
  position: absolute;
  top: 50%;
  right: max(10vw, 120px);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider__inner {
    width: 45%;
    right: 2em;
  }
}
.p-home-mv-slider__catch {
  width: max(32vw, 384px);
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider__catch {
    width: 40vw;
  }
}
.p-home-mv-slider__txt {
  font-size: max(2.1vw, 3.1rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider__txt {
    font-size: 1.4rem;
  }
}
.p-home-mv-slider__bg {
  width: 100%;
  height: auto;
  border-radius: 0.625em;
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider__bg {
    height: 60vw;
    object-fit: cover;
  }
}
.p-home-mv-slider .rg {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.p-home-mv-slider__btn {
  width: max(18.7vw, 280px);
  height: max(4vw, 60px);
  font-size: max(1.2vw, 1.8rem);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 1.5em auto 0;
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider__btn {
    width: 100%;
    height: 8vw;
    font-size: 1rem;
    margin: 1em auto 0;
  }
}
.p-home-mv-slider__btn a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0.2em;
  background: #fff;
  color: #0a0d14;
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider__btn a {
    padding-right: 1em;
  }
}
.p-home-mv-slider__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8em;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/home/icon_play.png) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider__btn a::after {
    right: 0.5em;
  }
}
.rg .p-home-mv-slider__btn {
  width: 48%;
  margin: 1.5em 0 0;
}
.p-home-mv-slider .swiper-button-next {
  right: max(1.5vw, 22px);
  width: max(3.1vw, 46px);
  height: max(3.1vw, 46px);
  background: url(../img/common/icon_arrow_next.png) 0 0/100% auto no-repeat;
  transition: 0.3s;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-mv-slider .swiper-button-next:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider .swiper-button-next {
    width: 10vw;
    height: 10vw;
    right: 2vw;
  }
}
.p-home-mv-slider .swiper-button-next::after {
  content: none;
}
.p-home-mv-slider .swiper-button-prev {
  left: max(1.5vw, 22px);
  width: max(3.1vw, 46px);
  height: max(3.1vw, 46px);
  background: url(../img/common/icon_arrow_prev.png) 0 0/100% auto no-repeat;
  transition: 0.3s;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-mv-slider .swiper-button-prev:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider .swiper-button-prev {
    width: 10vw;
    height: 10vw;
    left: 2vw;
  }
}
.p-home-mv-slider .swiper-button-prev::after {
  content: none;
}
.p-home-mv-slider .swiper-button-disabled {
  opacity: 0;
}
.p-home-mv-slider .swiper-pagination {
  bottom: 26px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider .swiper-pagination {
    bottom: 4vw;
  }
}
.p-home-mv-slider .swiper-pagination-bullet {
  width: max(0.7vw, 10px);
  height: max(0.7vw, 10px);
  background: #718098;
  margin: 0 max(0.5vw, 8px);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-home-mv-slider .swiper-pagination-bullet {
    width: 2vw;
    height: 2vw;
    margin: 0 1vw;
  }
}
.p-home-mv-slider .swiper-pagination-bullet-active {
  background: #fff;
}
.p-home-mv img {
  width: 100%;
  height: auto;
}
.p-home-info {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1450px;
  border-bottom: 1px solid #3a3c45;
  margin: 0 auto 5em;
  padding: 2em 0;
}
@media screen and (max-width: 767px) {
  .p-home-info {
    display: block;
    margin-bottom: 2em;
    padding: 1.5em 1em;
  }
}
.p-home-info__ttl {
  width: 28.4vw;
  font-size: max(1.3vw, 1.8rem);
  padding-left: 3.2em;
}
@media screen and (max-width: 1200px) {
  .p-home-info__ttl {
    width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .p-home-info__ttl {
    width: auto;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5em;
    padding: 0;
  }
}
.p-home-info-define {
  width: calc(100% - 28.4vw - 8.7vw);
}
@media screen and (max-width: 1200px) {
  .p-home-info-define {
    width: calc(100% - 340px - 130px);
  }
}
@media screen and (max-width: 767px) {
  .p-home-info-define {
    width: auto;
  }
}
.p-home-info-define__ttl {
  position: relative;
  clear: left;
  float: left;
  font-size: 1.4rem;
  font-weight: 400;
  padding-left: 1.6em;
}
@media screen and (max-width: 767px) {
  .p-home-info-define__ttl {
    float: none;
    font-size: 1.2rem;
  }
}
.p-home-info-define__ttl::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_time.png) 0 0/1em auto no-repeat;
}
.p-home-info-define__content {
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 9.375em;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 767px) {
  .p-home-info-define__content {
    font-size: 1.2rem;
    padding: 0;
  }
}
.p-home-info-define__content:last-child {
  margin-bottom: 0;
}
.p-home-info__link {
  position: absolute;
  bottom: 1em;
  right: 1em;
  line-height: 1;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-home-info__link {
    position: relative;
    bottom: auto;
    right: auto;
    font-size: 1.2rem;
    text-align: right;
    margin-top: 1em;
  }
}
.p-home-info__link a {
  position: relative;
  padding: 0 1.2em 0 0;
}
.p-home-info__link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.p-category {
  padding: max(2.1vw, 2em);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-category {
    padding: 1.5em 1em 0;
  }
}
.p-category-photo__img {
  width: 604px;
  border-radius: 1rem;
  overflow: hidden;
  margin: 6rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-category-photo__img {
    width: 100%;
  }
}
.p-category-photo__img img {
  width: 100%;
  height: auto;
}
.p-category-photo__btn {
  width: 33rem;
  height: 4.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 3em;
  margin: 7rem auto 0;
  overflow: hidden;
}
.p-category-photo__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #777;
  color: #fff;
}
.p-category__comments {
  max-width: 1250px;
  margin: 7rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-category__comments {
    font-size: 1.4rem;
  }
}
.p-category .c-heading {
  margin-bottom: 0;
}
.p-category__catname {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-category__catname {
    font-size: 1.2rem;
  }
}
.p-category-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  .p-category-list {
    justify-content: space-between;
    margin-top: 1.5em;
  }
}
.p-category-list__item {
  width: calc((100% - 90px) / 4);
  margin-right: 30px;
  margin-top: 2.875em;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-category-list__item {
    width: 48%;
    margin-right: 0;
    margin-top: 1em;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .p-category-list__item {
    width: calc((100% - 90px) / 4);
    margin-right: 30px;
  }
}
.p-category-list__item:nth-child(4n) {
  margin-right: 0;
}
.p-category-list__item:nth-child(-n+4) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-category-list__item:nth-child(-n+4) {
    margin-top: 1em;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .p-category-list__item:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-category-list__item:nth-child(-n+2) {
    margin-top: 0;
  }
}
.p-category-list__item a {
  position: relative;
  display: block;
  /*padding-top: 56.4%;*/
  border: 1px solid #ccc;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .p-category-list__item a:hover {
    transform: scale(1.1);
    opacity: 1;
  }
}
.p-category-list__item a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 243/324;
  object-fit: contain;
}
.p-category-list__item.u-movie a img {
  aspect-ratio: 716/404;
}
.p-category-list__ttl {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-category-list__ttl {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .p-category-list__ttl {
    font-size: 0.8rem;
  }
}
.p-category-movie {
  position: relative;
  width: 1250px;
  padding-top: 700px;
  margin: 6.4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-category-movie {
    width: 100%;
    padding-top: 56%;
    margin-bottom: 2em;
  }
}
.p-category-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-category__slider {
  margin-top: 6.875em;
}
@media screen and (max-width: 767px) {
  .p-category__slider {
    margin-top: 4em;
  }
}
.p-category__slider .c-movie-slider {
  padding: 0;
}
.p-category__slider .c-movie-slider__next {
  right: -1.5em;
}
@media screen and (max-width: 767px) {
  .p-category__slider .c-movie-slider__next {
    right: calc(2vw - 1em);
  }
}
.p-category__slider .c-movie-slider__prev {
  left: -1.5em;
}
@media screen and (max-width: 767px) {
  .p-category__slider .c-movie-slider__prev {
    left: calc(2vw - 1em);
  }
}

.p-news {
  max-width: 1260px;
  padding: 2em 1em 0;
  margin: 0 auto;
  box-sizing: content-box;
}
.p-news__more {
  width: 7em;
  text-align: center;
  margin: 5em auto 0;
  cursor: pointer;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-news__more:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-news__more {
    margin: 3em auto 0;
  }
}
.p-news__more span {
  position: relative;
  padding: 0 0 0 1.5em;
}
.p-news__more span::after {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.p-news-list__item {
  border-bottom: 1px solid #777;
}
.p-news-list__item + .p-news-list__item {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-news-list__item + .p-news-list__item {
    margin-top: 1em;
  }
}
.p-news-list__item a {
  display: block;
  position: relative;
  padding: 0 0 0.6em 3.5em;
}
@media screen and (max-width: 767px) {
  .p-news-list__item a {
    padding: 0 0 1em 2em;
  }
}
.p-news-list__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.625em;
  width: 1.563em;
  height: 1.813em;
  background: url(../img/common/icon_news.png) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-news-list__item a::before {
    left: 0.4em;
    width: 1em;
    height: 1.3em;
  }
}
.p-news-list__ttl {
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-news-list__ttl {
    font-size: 1.4rem;
  }
}
.p-news-list__more {
  position: absolute;
  bottom: 0.8em;
  right: 1em;
  line-height: 1;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__more {
    bottom: 1.25em;
    font-size: 1.2rem;
    text-align: right;
  }
}
.p-news-list__more span {
  position: relative;
  padding: 0 1.2em 0 0;
}
.p-news-list__more span::after {
  content: "";
  position: absolute;
  top: 0.5em;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.p-news-list__date {
  position: relative;
  font-size: 1.2rem;
  color: #718098;
  line-height: 1;
  margin-top: 1em;
  padding: 0 0 0 1.5em;
}
.p-news-list__date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_time_bl.png) 0 0/100% 100% no-repeat;
}
.p-news-head {
  position: relative;
  font-size: 3rem;
  padding: 0 0 0.4em 2em;
  margin-bottom: 2.667em;
  border-bottom: 1px solid #777;
}
@media screen and (max-width: 767px) {
  .p-news-head {
    font-size: 1.6rem;
    margin-bottom: 1.5em;
  }
}
.p-news-head::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0.5em;
  width: 0.867em;
  height: 1em;
  background: url(../img/common/icon_news.png) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-news-head::before {
    left: 0.4em;
    width: 1em;
    height: 1.3em;
  }
}
.p-news-head__ttl {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-news-head__ttl {
    font-size: 1.6rem;
  }
}
.p-news-head__date {
  position: relative;
  font-size: 1.2rem;
  color: #718098;
  line-height: 1;
  margin-top: 1em;
  padding: 0 0 0 1.5em;
}
.p-news-head__date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_time_bl.png) 0 0/100% 100% no-repeat;
}
.p-news__btn {
  width: 29em;
  height: 3.3em;
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin: 3.5em auto 0;
}
@media screen and (max-width: 767px) {
  .p-news__btn {
    width: 100%;
    font-size: 1.4rem;
    margin-top: 3em;
  }
}
.p-news__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #141414;
  color: #141414;
  border-radius: 0.3em;
}
@media (hover: hover) and (pointer: fine) {
  .p-news__btn a:hover {
    background: #141414;
    color: #131722;
    opacity: 1;
  }
}
.p-news-detail {
  padding: 0 3.75em;
}
.p-news-detail * {
  word-break: break-all;
}
.p-news-detail h2 {
  font-size: 2.2rem;
  border-left: 6px double #141414;
  padding: 0 0 0 0.5em;
}
.p-news-detail h3 {
  font-size: 2rem;
  border: 2px solid #141414;
  padding: 0.5em 0.8em;
}
.p-news-detail h2,
.p-news-detail h3,
.p-news-detail h4,
.p-news-detail h5,
.p-news-detail h6 {
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-bottom: 0.5em;
}
.p-news-detail * + h2,
.p-news-detail * + h3,
.p-news-detail * + h4,
.p-news-detail * + h5,
.p-news-detail * + h6,
.p-news-detail * + p,
.p-news-detail * + ul,
.p-news-detail * + ol {
  margin-top: 1.5em;
}
.p-news-detail h4 {
  font-size: 1.8rem;
  border-left: 2px solid #141414;
  padding-left: 0.5em;
}
.p-news-detail h5 {
  font-size: 1.6rem;
  border-bottom: 1px solid #141414;
}
.p-news-detail h6 {
  font-size: 1.8rem;
}
.p-news-detail p {
  font-size: 1.8rem;
  line-height: 1.7;
}
.p-news-detail strong {
  font-weight: bold;
}
.p-news-detail em {
  font-style: italic;
}
.p-news-detail blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 1em;
  -webkit-margin-end: 1em;
}
.p-news-detail a {
  color: #2D91CF;
}
.p-news-detail .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.p-news-detail img {
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-top: 2em;
  margin-bottom: 2em;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
.p-news-detail .alignright {
  float: right;
  margin-left: 1.5em;
}
.p-news-detail .alignleft {
  float: left;
  margin-right: 1.5em;
}
.p-news-detail img[class*=wp-image-],
.p-news-detail img[class*=attachment-] {
  height: auto;
  max-width: 100%;
}
.p-news-detail ul {
  list-style: none;
}
.p-news-detail ul li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 0 0 0 1em;
  word-break: break-all;
}
.p-news-detail ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-news-detail ol {
  counter-reset: item;
  list-style-type: none;
}
.p-news-detail ol li {
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 1.6;
  word-break: break-all;
}
.p-news-detail ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.p-news-detail * + .wp-block-buttons {
  margin: 3.5em 0 0;
}
.p-news-detail .wp-block-button {
  width: 29em;
  height: 3.3em;
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-news-detail .wp-block-button {
    width: 100%;
    font-size: 1.4rem;
    margin-top: 3em;
  }
}
.p-news-detail .wp-block-button a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #141414;
  background: #141414;
  color: #131722;
  font-size: 1.8rem;
  border-radius: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-news-detail .wp-block-button a {
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news-detail .wp-block-button a:hover {
    background: #131722;
    color: #141414;
    opacity: 1;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news-detail .wp-block-button.is-style-outline a:hover {
    background: #141414;
    color: #131722;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-news-detail {
    padding: 0;
  }
  .p-news-detail p {
    font-size: 1.2rem;
  }
  .p-news-detail h2 {
    font-size: 1.6rem;
  }
  .p-news-detail h3 {
    font-size: 1.5rem;
  }
  .p-news-detail h4 {
    font-size: 1.4rem;
  }
  .p-news-detail h5 {
    font-size: 1.3rem;
  }
  .p-news-detail h6 {
    font-size: 1.2rem;
  }
  .p-news-detail ul li,
  .p-news-detail ol li {
    font-size: 1.2rem;
  }
}
.p-news-pager {
  max-width: 1080px;
  overflow: hidden;
  font-size: 1.4rem;
  margin: 7.5em auto 0;
}
@media screen and (max-width: 767px) {
  .p-news-pager {
    margin: 4em auto 0;
  }
}
.p-news-pager__prev {
  position: relative;
  float: left;
}
.p-news-pager__prev a {
  position: relative;
  padding: 0 0 0 1.8em;
}
.p-news-pager__prev a::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: 0.2em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.p-news-pager__next {
  float: right;
}
.p-news-pager__next a {
  position: relative;
  padding: 0 1.8em 0 0;
}
.p-news-pager__next a::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: 0.2em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.p-membership {
  padding-top: 0;
}
.p-membership__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: calc(100vh - 17.2rem);
  min-height: 640px;
  background: url(../img/membership/bg.jpg) 0 0 repeat-x;
}
@media screen and (max-width: 767px) {
  .p-membership__inner {
    height: auto;
    min-height: inherit;
    padding: 3em 1em;
  }
}
.p-membership-detail {
  width: 28.125em;
  background: #232323;
  border-radius: 0.313em;
  margin: 0 auto;
  padding: 3.75em 4.5em;
}
@media screen and (max-width: 767px) {
  .p-membership-detail {
    width: auto;
    padding: 3em 2em;
  }
}
.p-membership-detail__logo {
  width: 16.125em;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-membership-detail__logo {
    width: 80%;
  }
}
.p-membership-detail__logo img {
  width: 100%;
  height: auto;
}
.p-membership-detail__login {
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #fff;
  font-size: 3.6rem;
  margin: 0.4em 0 0.667em;
}
@media screen and (max-width: 767px) {
  .p-membership-detail__login {
    font-size: 2rem;
  }
}
.p-membership-detail .tmp-login-form-inner {
  display: flex;
  flex-flow: column;
}
.p-membership-detail .tmp-login-form-inner .tmp-mail-input {
  order: 1;
  font-size: 1.5rem;
  height: 3.5em;
  border-radius: 5px;
  margin-bottom: 1em;
}
.p-membership-detail .tmp-login-form-inner .tmp-mail-input input {
  height: 100%;
  line-height: 1;
  margin: 0;
}
.p-membership-detail .tmp-login-form-inner .tmp-password-input {
  order: 2;
  font-size: 1.5rem;
  height: 3.5em;
  border-radius: 5px;
  margin-bottom: 1.5em;
}
.p-membership-detail .tmp-login-form-inner .tmp-password-input input {
  height: 100%;
  line-height: 1;
}
.p-membership-detail .tmp-login-form-inner .tmp-login-submit {
  order: 3;
}
.p-membership-detail .tmp-login-form-inner .tmp-remember-me {
  order: 4;
  line-height: 1;
}
.p-membership-detail .tmp-login-form-inner .tmp-remember-me .tmp-remember-checkbox {
  display: none;
}
.p-membership-detail .tmp-login-form-inner .tmp-remember-me .tmp-rember-label {
  background: url(../img/membership/icon_check_off.png) 0 center/1em 1em no-repeat;
  line-height: 1;
  padding-left: 1.5em;
  color: #fff;
}
.p-membership-detail .tmp-login-form-inner .tmp-remember-me .tmp-rember-label.active {
  background: url(../img/membership/icon_check_on.png) 0 center/1em 1em no-repeat;
}
.p-membership-detail .tmp-login-form-inner .tmp-login-submit {
  margin: 0 0 1em;
}
.p-membership-detail .tmp-login-form-inner .tmp-login-submit input {
  width: 100%;
  height: 2.9em;
  font-size: 1.8rem;
  font-weight: 700;
  background: #f24646;
  color: #fff;
  border-radius: 5px;
}
.p-membership-detail .tmp-mail-label,
.p-membership-detail .tmp-password-label {
  display: none;
}
.p-membership-detail #tmp-login-form-pw-reset-box {
  text-align: left;
  padding-left: 1.5em;
  line-height: 1;
  margin-top: 0.8em;
}
.p-membership-detail #tmp-login-form-pw-reset-box a {
  color: #fff;
}
.p-membership-btn {
  width: 100%;
  height: 2.9em;
  font-size: 1.8rem;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-membership-btn {
    height: 3.7em;
    font-size: 1.4rem;
    margin-top: 8vw;
  }
}
.p-membership-btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #f2f2f4;
  color: #151515;
}
.p-membership-btn a span {
  position: relative;
  padding-right: 1em;
}
.p-membership-btn a span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #151515;
  border-bottom: 2px solid #151515;
  transform: translateY(-50%) rotate(-45deg);
}

.p-page {
  max-width: 1260px;
  padding: 2em 1em 0;
  margin: 0 auto;
  box-sizing: content-box;
}

.p-online {
  max-width: 1040px;
  background: #fff;
  margin: 0 auto;
  padding: 2.5em 5em 12.5em;
}
@media screen and (max-width: 767px) {
  .p-online {
    padding: 1em 1em 5em;
  }
}
.p-online-mv {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f8f8f8;
  margin-bottom: 3.375em;
  padding: 2em 0 2em 1.5em;
}
@media screen and (max-width: 767px) {
  .p-online-mv {
    display: block;
    padding: 2em 0 1em;
  }
}
.p-online-mv__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #111;
  line-height: 1.6;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-online-mv__ttl {
    font-size: 1.6rem;
  }
}
.p-online-mv__inner {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-online-mv__inner {
    padding: 0 2em;
  }
  .p-online-mv__inner img {
    width: 80%;
  }
}
.p-online__txt {
  color: #111;
  line-height: 1.875;
}
.p-online__txt + .p-online__txt {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-online__txt {
    font-size: 1.4rem;
  }
}
.p-online__txt a {
  color: #0366cc;
}
.p-online__sub {
  text-align: center;
  color: #111;
  font-weight: 700;
  font-size: 3rem;
  margin: 2em 0 1.3em;
}
@media screen and (max-width: 767px) {
  .p-online__sub {
    font-size: 1.8rem;
  }
}
.p-online-list {
  margin-top: 2em;
}
.p-online-list__item {
  position: relative;
  color: #111;
  line-height: 1.875;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-online-list__item {
    font-size: 1.4rem;
  }
}
.p-online-list__item::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.7em;
  height: 0.7em;
  background: #fe5868;
  border-radius: 100%;
}

.p-introduction__movie {
  position: relative;
  padding-top: 56%;
}
.p-introduction__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-introduction__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-introduction__txt {
  font-size: 1.7rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-introduction__txt {
    font-size: 1.4rem;
  }
}
.p-introduction__txt + .p-introduction__txt {
  margin-top: 1.5em;
}
.p-introduction__txt a {
  color: #0366cc;
}
.p-introduction__sub {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin: 4em 0 1.3em;
}
@media screen and (max-width: 767px) {
  .p-introduction__sub {
    font-size: 1.7rem;
  }
}
.p-introduction__num {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 2.5em 0 1.5em;
}
@media screen and (max-width: 767px) {
  .p-introduction__num {
    font-size: 1.6rem;
    margin: 1.5em 0 1em;
  }
}
.p-introduction__sign {
  text-align: right;
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin: 3em 0 1em;
}
@media screen and (max-width: 767px) {
  .p-introduction__sign {
    font-size: 2rem;
  }
}
.p-introduction__img {
  display: block;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-introduction__img {
    width: 60%;
    height: auto;
  }
}

.p-tos {
  max-width: 1100px;
  margin: 0 auto;
}
.p-tos__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  border-bottom: 1px solid #fff;
  margin: 4em 0 0;
  padding: 0 0 0.3em;
}
.p-tos__ttl + .p-tos__sub {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-tos__ttl {
    font-size: 1.6rem;
  }
}
.p-tos__sub {
  font-weight: 700;
  font-size: 2rem;
  margin: 3em 0 1em 0;
}
@media screen and (max-width: 767px) {
  .p-tos__sub {
    font-size: 1.5rem;
  }
}
.p-tos__txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-tos__txt {
    font-size: 1.3rem;
  }
}
.p-tos__txt a {
  color: #0366cc;
}
.p-tos-dot {
  counter-reset: dot 0;
}
.p-tos-dot__item {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 0 0 0 1em;
}
@media screen and (max-width: 767px) {
  .p-tos-dot__item {
    font-size: 1.3rem;
  }
}
.p-tos-dot__item + .p-tos-dot__item {
  margin-top: 1.2em;
}
.p-tos-dot__item::before {
  counter-increment: dot 1;
  content: counter(dot) ". ";
  position: absolute;
  top: 0;
  left: 0;
}
.p-tos-dot + p {
  margin-top: 1.5em;
}
.p-tos-brackets {
  counter-reset: brackets 0;
}
.p-tos-brackets__item {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 0 0 0 2.5em;
}
@media screen and (max-width: 767px) {
  .p-tos-brackets__item {
    font-size: 1.3rem;
  }
}
.p-tos-brackets__item::before {
  counter-increment: brackets 1;
  content: "( " counter(brackets) " )";
  position: absolute;
  top: 0;
  left: 0;
}
.p-tos-list {
  margin-top: 2em;
}
.p-tos-list__item {
  position: relative;
  color: #111;
  line-height: 1.875;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-tos-list__item {
    font-size: 1.4rem;
  }
}
.p-tos-list__item::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.7em;
  height: 0.7em;
  background: #fe5868;
  border-radius: 100%;
}
.p-tos__date {
  text-align: right;
  font-size: 1.5rem;
  margin: 6em 0 0 0 !important;
}
@media screen and (max-width: 767px) {
  .p-tos__date {
    font-size: 1.3rem;
  }
}

.p-faq {
  max-width: 1100px;
  margin: 0 auto;
}
.p-faq-define {
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  .p-faq-define {
    padding: 0;
  }
}
.p-faq-define__ttl {
  position: relative;
  min-height: 2.1em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1.2em;
  padding: 0.1em 0 0 3em;
}
@media screen and (max-width: 767px) {
  .p-faq-define__ttl {
    font-size: 1.6rem;
  }
}
.p-faq-define__ttl img {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-faq-define__ttl img {
    width: 2.1em;
    height: auto;
  }
}
.p-faq-define__txt {
  border-bottom: 1px solid #f8f8f8;
  padding: 0 0 1.5em;
  margin: 1em 0 0;
}
@media screen and (max-width: 767px) {
  .p-faq-define__txt {
    font-size: 1.4rem;
  }
}
.p-faq-define__txt a {
  text-decoration: underline;
}
.p-faq-define__txt a:hover {
  text-decoration: none;
}
.p-faq-define__txt div {
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-faq-define__txt div {
    padding: 0;
  }
}