@charset "UTF-8";

/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit;

  /* 1 */
  vertical-align: inherit;

  /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default;

  /* 1 */
  line-height: 1.5;

  /* 2 */
  -moz-tab-size: 4;

  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;

  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;

  /* 5 */
  -webkit-text-size-adjust: 100%;

  /* 5 */
  word-break: break-word;

  /* 6 */
}

/* Sections
  * ========================================================================== */

/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */

/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
  * 1. Add the correct sizing in Firefox.
  * 2. Show the overflow in Edge 18- and IE.
  */
hr {
  height: 0;

  /* 1 */
  overflow: visible;

  /* 2 */
  padding: 0 !important;
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * 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: 1em;

  /* 2 */
}

/* Text-level semantics
  * ========================================================================== */

/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
  * 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: 1em;

  /* 2 */
}

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

/* Embedded content
  * ========================================================================== */

/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */

/**
  * Collapse border spacing in all browsers (opinionated).
  */
table {
  border-collapse: collapse;
}

/* Forms
  * ========================================================================== */

/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible;

  /* 1 */
  text-transform: none;

  /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0;

  /* 1 */
  padding: 0.35em 0.75em 0.625em;

  /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit;

  /* 2 */
  display: table;

  /* 1 */
  max-width: 100%;

  /* 1 */
  white-space: normal;

  /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block;

  /* 1 */
  vertical-align: baseline;

  /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0;

  /* 1 */
  overflow: auto;

  /* 2 */
  resize: vertical;

  /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type="search"] {
  -webkit-appearance: textfield;

  /* 1 */
  outline-offset: -2px;

  /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button;

  /* 1 */
  font: inherit;

  /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */

/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

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

/* Scripting
  * ========================================================================== */

/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */

/*
  * 1. Remove the tapping delay in IE 10.
  * 2. Remove the tapping delay on clickable elements
       in all browsers (opinionated).
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;

  /* 1 */
  touch-action: manipulation;

  /* 2 */
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */

/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy="true"] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

@-webkit-keyframes fadein01 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadein01 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes circle-accent {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
    border: 1px solid #a38958;
  }

  100% {
    opacity: 0;
    border: 1px solid #a38958;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes circle-accent {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
    border: 1px solid #a38958;
  }

  100% {
    opacity: 0;
    border: 1px solid #a38958;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@-webkit-keyframes circle-accent2 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes circle-accent2 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes ani01 {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  30% {
    -webkit-transform: translateX(-10px) translateY(-15px);
    transform: translateX(-10px) translateY(-15px);
  }

  60% {
    -webkit-transform: translateX(10px) translateY(-15px);
    transform: translateX(10px) translateY(-15px);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes ani01 {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  30% {
    -webkit-transform: translateX(-10px) translateY(-15px);
    transform: translateX(-10px) translateY(-15px);
  }

  60% {
    -webkit-transform: translateX(10px) translateY(-15px);
    transform: translateX(10px) translateY(-15px);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes ani02_bal1 {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ani02_bal1 {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes ani02_bal2 {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ani02_bal2 {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes ani03 {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }

  20% {
    -webkit-transform: translateY(-10px) translateX(-5px);
    transform: translateY(-10px) translateX(-5px);
  }

  40% {
    -webkit-transform: translateY(-10px) translateX(15px);
    transform: translateY(-10px) translateX(15px);
  }

  60% {
    -webkit-transform: translateY(-5px) translateX(-5px);
    transform: translateY(-5px) translateX(-5px);
  }

  80% {
    -webkit-transform: translateY(-5px) translateX(10px);
    transform: translateY(-5px) translateX(10px);
  }

  100% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
}

@keyframes ani03 {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }

  20% {
    -webkit-transform: translateY(-10px) translateX(-5px);
    transform: translateY(-10px) translateX(-5px);
  }

  40% {
    -webkit-transform: translateY(-10px) translateX(15px);
    transform: translateY(-10px) translateX(15px);
  }

  60% {
    -webkit-transform: translateY(-5px) translateX(-5px);
    transform: translateY(-5px) translateX(-5px);
  }

  80% {
    -webkit-transform: translateY(-5px) translateX(10px);
    transform: translateY(-5px) translateX(10px);
  }

  100% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes ani04 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes ani04 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@-webkit-keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes stick1 {
  0% {
    -webkit-transform: translateY(0) rotate(60deg);
    transform: translateY(0) rotate(60deg);
  }

  50% {
    -webkit-transform: translateY(-10px) translateX(-5px) rotate(60deg);
    transform: translateY(-10px) translateX(-5px) rotate(60deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(60deg);
    transform: translateY(0) rotate(60deg);
  }
}

@keyframes stick1 {
  0% {
    -webkit-transform: translateY(0) rotate(60deg);
    transform: translateY(0) rotate(60deg);
  }

  50% {
    -webkit-transform: translateY(-10px) translateX(-5px) rotate(60deg);
    transform: translateY(-10px) translateX(-5px) rotate(60deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(60deg);
    transform: translateY(0) rotate(60deg);
  }
}

@-webkit-keyframes stick2 {
  0% {
    -webkit-transform: translateY(0) rotate(-60deg);
    transform: translateY(0) rotate(-60deg);
  }

  50% {
    -webkit-transform: translateY(-10px) translateX(5px) rotate(-60deg);
    transform: translateY(-10px) translateX(5px) rotate(-60deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(-60deg);
    transform: translateY(0) rotate(-60deg);
  }
}

@keyframes stick2 {
  0% {
    -webkit-transform: translateY(0) rotate(-60deg);
    transform: translateY(0) rotate(-60deg);
  }

  50% {
    -webkit-transform: translateY(-10px) translateX(5px) rotate(-60deg);
    transform: translateY(-10px) translateX(5px) rotate(-60deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(-60deg);
    transform: translateY(0) rotate(-60deg);
  }
}

@-webkit-keyframes pencil_arrow {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(-20deg);
    transform: translateX(0) translateY(0) rotate(-20deg);
  }

  15% {
    -webkit-transform: translateX(15px) translateY(-10px) rotate(-20deg);
    transform: translateX(15px) translateY(-10px) rotate(-20deg);
  }

  35% {
    -webkit-transform: translateX(20px) translateY(-5px) rotate(-20deg);
    transform: translateX(20px) translateY(-5px) rotate(-20deg);
  }

  50% {
    -webkit-transform: translateX(30px) translateY(-15px) rotate(-20deg);
    transform: translateX(30px) translateY(-15px) rotate(-20deg);
  }

  70% {
    -webkit-transform: translateX(35px) translateY(-10px) rotate(-20deg);
    transform: translateX(35px) translateY(-10px) rotate(-20deg);
  }

  100% {
    -webkit-transform: translateX(45px) translateY(-15px) rotate(-20deg);
    transform: translateX(45px) translateY(-15px) rotate(-20deg);
  }
}

@keyframes pencil_arrow {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(-20deg);
    transform: translateX(0) translateY(0) rotate(-20deg);
  }

  15% {
    -webkit-transform: translateX(15px) translateY(-10px) rotate(-20deg);
    transform: translateX(15px) translateY(-10px) rotate(-20deg);
  }

  35% {
    -webkit-transform: translateX(20px) translateY(-5px) rotate(-20deg);
    transform: translateX(20px) translateY(-5px) rotate(-20deg);
  }

  50% {
    -webkit-transform: translateX(30px) translateY(-15px) rotate(-20deg);
    transform: translateX(30px) translateY(-15px) rotate(-20deg);
  }

  70% {
    -webkit-transform: translateX(35px) translateY(-10px) rotate(-20deg);
    transform: translateX(35px) translateY(-10px) rotate(-20deg);
  }

  100% {
    -webkit-transform: translateX(45px) translateY(-15px) rotate(-20deg);
    transform: translateX(45px) translateY(-15px) rotate(-20deg);
  }
}

@-webkit-keyframes pencil_arrow-out {
  0% {
    -webkit-transform: translateX(45px) translateY(-15px) rotate(-20deg);
    transform: translateX(45px) translateY(-15px) rotate(-20deg);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(-20deg);
    transform: translateX(0) translateY(0) rotate(-20deg);
  }
}

@keyframes pencil_arrow-out {
  0% {
    -webkit-transform: translateX(45px) translateY(-15px) rotate(-20deg);
    transform: translateX(45px) translateY(-15px) rotate(-20deg);
  }

  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(-20deg);
    transform: translateX(0) translateY(0) rotate(-20deg);
  }
}

@-webkit-keyframes pencil_image {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes pencil_image {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  min-width: 320px;
  color: #000;
  overflow-x: hidden;
  font-size: 0.875rem;
  line-height: 2.1429;
  counter-reset: label;
  letter-spacing: 0.02em;
}

a {
  color: #000;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl {
  margin: 0;
}

figure {
  margin: 0;
}

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

p {
  margin: 0;
}

button:hover {
  cursor: pointer;
}

/* Lazyload
------------------------------------------ */
.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.l-inner {
  width: calc((339 / 375) * 100%);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.l-footer {
  padding-bottom: 140px;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.l-footer::before {
  position: absolute;
  content: "";
  background-image: url(../image/footer_arrow.svg);
  width: 401px;
  height: 503px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  right: -10px;
  top: 50px;
}

.l-footer__inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  width: calc(353 / 393 * 100%);
}

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

.l-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-footer__logo .sendai {
  width: 100px;
}

.l-footer__logo .hipro {
  width: 122px;
  margin-left: 20px;
}

.l-footer__title {
  padding-top: 66px;
}

.l-footer__title .c-title2 {
  font-size: 2.25rem;
  line-height: 1.4444;
}

.l-footer__upperText {
  padding-top: 28px;
  font-size: 0.875rem;
  line-height: 2;
}

.l-footer__button {
  padding-top: 66px;
}

.l-footer__button .c-button__link {
  width: 188px;
}

.l-footer__lower {
  padding-top: 100px;
}

.l-footer__snsList {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
}

.l-footer__snsItem a {
  width: 24px;
}

.l-footer__snsItem + .l-footer__snsItem {
  margin-left: 28px;
}

.l-footer__list {
  padding-bottom: 40px;
  padding-left: 0;
  list-style-type: none;
  margin-top: 40px;
  margin-bottom: 0;
}

.l-footer__item + .l-footer__item {
  margin-top: 18px;
}

.l-footer__item a {
  font-size: 0.75rem;
  line-height: 1;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 5px;
  padding-bottom: 5px;
}

.l-footer__copyright p {
  font-size: 0.625rem;
  line-height: 1.8;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.l-gnav {
  height: 100%;
}

.l-gnav__inner {
  width: calc((340 / 390) * 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: 72px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.l-gnav__logo {
  width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.l-gnav__main {
  padding-top: 80px;
  padding-bottom: 60px;
}

.l-gnav__list {
  padding-left: 0;
  list-style-type: none;
}

.l-gnav__item + .l-gnav__item {
  margin-top: 34px;
}

.l-gnav__link {
  padding-top: 10px;
  padding-bottom: 10px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-gnav__link .en {
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: bold;
}

.l-gnav__link .ja {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  padding-top: 10px;
}

.l-gnav__snsList {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 60px;
}

.l-gnav__snsItem + .l-gnav__snsItem {
  margin-left: 20px;
}

.l-gnav__snsItem a {
  width: 24px;
}

.l-gnav__info {
  padding-top: 48px;
}

.l-gnav__infoItem + .l-gnav__infoItem {
  margin-top: 20px;
}

.l-gnav__infoItem a {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: bold;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.l-bg {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.l-header {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.l-header.is-fixed .l-header__wrapper {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: #fff;
}

.l-header.is-open .l-header__wrapper {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

.l-header.is-open .l-header__logo {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-header__wrapper {
  padding: 8px 10px;
  border-radius: 50px;
}

.l-header__logo a {
  display: block;
  width: 178px;
}

.l-header__main {
  display: none;
}

.l-header__list {
  list-style-type: none;
  padding-left: 0;
}

.l-header__nav {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
}

.l-header__button {
  width: 45px;
  height: 45px;
  position: relative;
  border: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

.l-header__button.is-open .l-header__buttonLine {
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}

.l-header__button.is-open .l-header__buttonLine:nth-last-of-type(1) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  top: 31px;
}

.l-header__button.is-open .l-header__buttonLine:nth-last-of-type(2) {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.l-header__buttonLine {
  width: 32px;
  height: 2px;
  display: block;
  position: absolute;
  border-radius: 50px;
  background-color: #000;
  -webkit-transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  right: 2px;
}

.l-header__buttonLine:nth-last-of-type(1) {
  top: 17px;
}

.l-header__buttonLine:nth-last-of-type(2) {
  top: 30px;
}

.l-header__gnav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding-top: 40px;
  padding-bottom: 60px;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 4;
  height: 100%;
}

.l-header__gnav.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: all;
}

.c-button {
  border: 1px solid #000;
  border-radius: 50px;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.c-button__link {
  background-color: #fff;
  width: 300px;
  height: 58px;
  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;
  position: relative;
  padding-right: 10px;
}

.c-button__link .round {
  margin-right: 24px;
  margin-top: -6px;
}

.c-button__link .round::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-image: linear-gradient(118deg, #fe3a95, #e50be9);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-button__link .text {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: bold;
}

.c-hdl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 26px;
}

.c-hdl.-white .c-hdl__main {
  color: #fff;
}

.c-hdl.-white .c-hdl__sub {
  color: #fff;
}

.c-hdl__main {
  font-size: 2rem;
  line-height: 1.3125;
  font-weight: 500;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fe3a95;
  position: relative;
  display: inline-block;
}

.c-hdl__main::before {
  position: absolute;
  content: "";
  background-image: url(../image/hdl_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  left: -29px;
}

.c-hdl__sub {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 900;
  margin-top: 7px;
  display: inline-block;
  margin-left: 10px;
}

.c-hdl__sub > span {
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1.6;
  margin-left: 10px;
}

.c-hdl2 {
  text-align: center;
}

.c-hdl2__main {
  color: #a38958;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  display: block;
  padding-bottom: 12px;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.c-hdl2__sub {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: #fe3a95;
  display: block;
}

.c-modal {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  z-index: 5;
  position: relative;
}

.c-modal.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: all;
}

.c-modal[aria-hidden="false"] .c-modal__inner,
.c-modal[aria-hidden="false"] .c-modal__container {
  -webkit-animation: showIn 0.3s ease;
  animation: showIn 0.3s ease;
}

.c-modal[aria-hidden="true"] .c-modal__inner,
.c-modal[aria-hidden="true"] .c-modal__container {
  -webkit-animation: showOut 0.3s ease;
  animation: showOut 0.3s ease;
}

.c-modal__inner {
  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: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.c-modal__container {
  height: 90%;
  position: relative;
  top: 50%;
  left: 50%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  max-width: 868px;
  width: 94%;
  border: 1px solid #a38958;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  overflow: scroll;
}

.c-modal__content {
  height: 100%;
  width: calc((306 / 360) * 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 60px;
}

.c-modal__close {
  position: absolute;
  width: 40px;
  height: 40px;
  border: none;
  color: transparent;
  top: 16px;
  right: 16px;
  background-color: transparent;
}

.c-modal__close::before,
.c-modal__close::after {
  position: absolute;
  content: "";
  background-color: #fe3a95;
  width: 30px;
  height: 3px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

.c-modal__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-modal__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-modal__section + .c-modal__section {
  margin-top: 56px;
}

.c-modal__main > .title {
  color: #a38958;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  padding-top: 33px;
}

.c-modal__main > .commingsoon {
  color: #a38958;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1;
  height: 200px;
  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;
}

.c-modal__main.-commingsoon > .title {
  display: none;
}

.c-modal__closeButton {
  text-align: center;
  margin-top: 24px;
  padding-bottom: 50px;
}

.c-modal__closeButton button {
  color: #fe3a95;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
  padding: 5px 28px;
  background-color: transparent;
  font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid #fe3a95;
  width: 100%;
  height: 100%;
  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;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.c-modal__closeButton button span {
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
  display: block;
  background-color: #fe3a95;
  border-radius: 50%;
  position: relative;
  margin-left: 6px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.c-modal__closeButton button span::before,
.c-modal__closeButton button span::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.c-modal__closeButton button span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-modal__closeButton button span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-modal__info .category {
  color: #f3c2c2;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  border-radius: 20px;
  padding: 5px 10px;
  display: inline-block;
  border: 1px solid #f3c2c2;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
  margin-right: 14px;
}

.c-modal__info .time {
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  color: #a38958;
}

.c-modal__title {
  font-size: 1.5rem;
  line-height: 1.6667;
  font-weight: 900;
  color: #a38958;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-top: 10px;
}

.c-modal__subtitle {
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 26px;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #a38958;
}

.c-modal__text {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  padding-top: 12px;
  color: #000;
}

.c-modal__list {
  padding-left: 0;
  list-style: none;
  margin-top: 26px;
}

.c-modal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #f4e7ce;
  padding: 14px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-modal__item + .c-modal__item {
  margin-top: 8px;
}

.c-modal__item.-commingsoon {
  color: #fe3a95;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: bold;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.c-modal__item.-commingsoon .c-modal__desc {
  border: none;
  padding: 0 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-modal__item.-commingsoon .c-modal__intro {
  padding-top: 0;
  margin-left: 0;
  width: 100%;
}

.c-modal__figure {
  width: 108px;
  position: relative;
  padding-bottom: 30px;
}

.c-modal__figure img {
  border-radius: 50%;
  overflow: hidden;
}

.c-modal__figure::before {
  position: absolute;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 12px;
}

.c-modal__figure.-moderator::before {
  color: #f3c2c2;
  content: "moderator";
}

.c-modal__figure.-speraker::before {
  color: #edb799;
  content: "speraker";
}

.c-modal__figure.-panelist::before {
  color: #92d9c0;
  content: "panelist";
}

.c-modal__desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  margin-left: 20px;
  display: contents;
}

.c-modal__desc .detail {
  font-size: 0.625rem;
  line-height: 1.6;
  width: calc((300 / 410) * 100%);
  margin-left: 10px;
}

.c-modal__intro {
  margin-left: 20px;
  padding-top: 10px;
  width: calc(100% - 128px);
}

.c-modal__intro .position {
  font-size: 0.75rem;
  line-height: 1.6667;
  font-weight: 500;
  color: #8b8b8b;
}

.c-modal__intro .name {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  color: #000;
}

.c-modal__intro .text {
  margin-top: 20px;
}

.c-modal__intro .text p {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.7143;
}

.c-modal__detail {
  margin-top: 10px;
}

.c-modal__detail .list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-modal__detail .list dt,
.c-modal__detail .list dd {
  color: #000;
}

.c-modal__detail .list dt {
  width: 50px;
}

.c-modal__detail .list dd {
  margin-left: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
}

.c-modal__detail p {
  font-size: 0.8125rem;
  line-height: 1.8462;
  color: #000;
}

.c-title {
  background-color: #fff;
  padding: 6px 6px 4px 6px;
  display: inline-block;
}

.c-title.-en {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.375rem;
  line-height: 1.5455;
}

.c-title2 {
  font-size: 1.75rem;
  line-height: 1.4286;
  font-weight: bold;
}

.c-title2 span {
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-title3 {
  text-align: center;
}

.c-title3 span {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  background-image: linear-gradient(118deg, #fe3a95, #e50be9);
  color: #fff;
  padding: 2px 8px;
}

.index-contact a {
  height: 768px;
  font-size: 6.875rem;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #fe3a95;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  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;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-contact a > span {
  position: relative;
}

.index-contact a > span::after {
  position: absolute;
  content: "";
  background-color: #fe3a95;
  width: 100px;
  height: 4px;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-contact a::before {
  position: absolute;
  content: "";
  background-color: #403c33;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-contact a::after {
  position: absolute;
  content: "";
  background-image: url(/img/kv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}

.index-contact a:hover > span {
  color: #fff;
}

.index-contact a:hover > span::after {
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-contact a:hover::after {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-contact a:hover::before {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-intro .inner {
  position: relative;
}

.index-intro .intro-inner {
  padding: 413px 0 140px;
}

.index-intro .sub-title {
  width: 50.625vw;
  position: absolute;
  right: 0;
  top: -133px;
}

.index-intro .intro-txt {
  margin-top: 173px;
}

.index-intro .title {
  font-size: 1.625rem;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.index-intro .sentence {
  margin-top: 30px;
  font-size: 0.875rem;
  line-height: 2.1429;
  letter-spacing: 0.16em;
  display: inline-block;
  max-width: 800px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  width: 80%;
}

.index-kv {
  height: 100vh;
}

.index-kv .kv-wrap {
  position: relative;
  height: 100vh;
}

.index-kv .kv-titl {
  position: absolute;
  left: 160px;
  top: calc(50% - 10px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
}

.index-kv .main-title {
  width: 46.875vw;
}

.index-news {
  color: #403c33;
}

.index-news .news-inner {
  padding: 280px 0 140px;
}

.index-news .news-wrap {
  margin-top: 80px;
}

.index-news .news-article {
  list-style-type: none;
  padding-left: 0;
}

.index-news .article {
  border-bottom: 1px solid #403c33;
}

.index-news .article:first-child {
  border-top: 1px solid #403c33;
}

.index-news .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0;
  position: relative;
}

.index-news .contents::before {
  position: absolute;
  content: "";
  background-color: #403c33;
  height: 1px;
  width: 34px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-news .contents::after {
  position: absolute;
  content: "";
  background-color: #403c33;
  height: 1px;
  width: 34px;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-news .contents.action::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-news .contents.action::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-news .time {
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  width: 160px;
  margin-top: 10px;
  position: relative;
}

.index-news .time::after {
  position: absolute;
  content: "";
  background-color: #403c33;
  left: 0;
  bottom: -3px;
  width: 32px;
  height: 2px;
}

.index-news .title {
  font-size: 0.875rem;
  line-height: 2.2857;
  color: #403c33;
}

.index-news .arrow {
  position: absolute;
  position: relative;
}

.index-news .arrow::before {
  position: absolute;
  content: "";
  background-color: #403c33;
  height: 1px;
  width: 34px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.index-news .attention {
  display: none;
  margin-bottom: 44px;
  margin-left: 160px;
}

.index-service .inner {
  position: relative;
}

.index-service .service-inner {
  padding: 140px 0 280px;
}

.index-service .hdl-title {
  z-index: 2;
}

.index-service .sub-title {
  width: 71.0938vw;
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 1;
}

.index-service .service-contents {
  margin-top: 180px;
}

.branding-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.branding-wrap .branding-contents {
  width: 370px;
  height: 523px;
}

.branding-wrap figure {
  width: 100%;
  height: 100%;
  position: relative;
}

.branding-wrap .branding-img {
  width: 370px;
}

.branding-wrap .branding-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 11.1111vw;
  z-index: 1;
  position: inherit;
}

.branding-wrap .branding-txt > .list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.branding-wrap .brand > .title {
  font-size: 1.625rem;
  line-height: 1;
  color: #403c33;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03em;
}

.branding-wrap .brand .list {
  margin-top: 36px;
  list-style-type: disc;
}

.branding-wrap .brand .item {
  font-size: 0.875rem;
  line-height: 2.4286;
  color: #403c33;
}

.p-about {
  padding-top: 10px;
  padding-bottom: 42px;
  position: relative;
}

.p-about::after {
  position: absolute;
  content: "";
  background-color: #fcf9f5;
  width: 100%;
  height: 788px;
  bottom: 0;
  left: 0;
}

.p-about__inner {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  width: calc((339 / 375) * 100%);
}

.p-about__title {
  text-align: center;
  color: #a38958;
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: bold;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.p-about__wrapper {
  padding-top: 22px;
  z-index: 1;
  position: relative;
}

.p-about__list {
  padding-left: 0;
  list-style-type: none;
}

.p-about__item {
  border-radius: 8px;
  -webkit-box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.07);
}

.p-about__item:nth-of-type(1) {
  background-color: #fff5f5;
  border: 2px solid #f3c2c2;
}

.p-about__item:nth-of-type(1) > .title {
  background-color: #f3c2c2;
}

.p-about__item:nth-of-type(2) {
  background-color: #f5fff7;
  border: 2px solid #92d9c0;
}

.p-about__item:nth-of-type(2) > .title {
  background-color: #92d9c0;
}

.p-about__item:nth-of-type(3) {
  background-color: #fff4ed;
  border: 2px solid #edb799;
}

.p-about__item:nth-of-type(3) > .title {
  background-color: #edb799;
}

.p-about__item .title {
  text-align: center;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px 6px 0 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-about__item .title span {
  color: #fff;
}

.p-about__item .title span:nth-of-type(1) {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
}

.p-about__item .title span:nth-of-type(2) {
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.125rem;
  line-height: 1;
}

.p-about__box {
  padding: 32px 22px 26px;
}

.p-about__box .subtitle {
  font-size: 1.1875rem;
  line-height: 1.4737;
  font-weight: 600;
  margin-bottom: 13px;
  text-align: center;
  color: black;
}

.p-about__box .detail {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  color: black;
}

.p-article {
  padding-top: 220px;
  padding-bottom: 200px;
  background-color: #f8f7f7;
}

.p-article__inner {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
}

.p-article__inner .thumb {
  margin-bottom: 48px;
}

.p-article__inner .time {
  background-color: #fff;
}

.p-article__inner .time span {
  font-size: 0.875rem;
  line-height: 1.4286;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.p-article__inner .title {
  font-size: 2.25rem;
  line-height: 1.3333;
  font-weight: bold;
  margin-top: 48px;
}

.p-article__body {
  padding-top: 80px;
}

.p-article__body h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
}

.p-article__body h3 {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: bold;
}

.p-article__body p {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 18px;
  margin-bottom: 18px;
}

.p-article__body a {
  font-size: 1.125rem;
  line-height: 1.5;
  text-decoration: underline;
}

.p-article__body a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.p-article__body .box {
  background-color: #fff;
  padding: 20px;
}

.p-article__body .strong {
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-banner {
  padding-top: 128px;
  padding-bottom: 128px;
  background-image: url(../image/faq_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.p-banner__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-banner__title span {
  background-color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  padding: 5px 10px;
}

.p-banner__text {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  padding-top: 36px;
  text-align: center;
}

.p-banner__button {
  text-align: center;
  padding-top: 60px;
}

.p-concept {
  padding-top: 64px;
  padding-bottom: 74px;
  background-image: url(../image/concept_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.p-concept__inner {
  color: #fff;
  width: calc((353 / 393) * 100%);
  margin-right: auto;
  margin-left: auto;
}

.p-concept__title {
  padding-right: 20px;
  font-size: 2.25rem;
  line-height: 1.4167;
  font-weight: bold;
}

.p-concept__copy {
  font-size: 1.125rem;
  line-height: 1.4444;
  padding-top: 50px;
}

.p-concept__text {
  margin-top: 22px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.p-concept__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-concept__logo .sendai {
  width: 126px;
}

.p-concept__logo .hipro {
  width: 160px;
  margin-left: 26px;
}

.p-faq {
  padding-top: 46px;
  padding-bottom: 87px;
  background-color: #f8f7f7;
}

.p-faq__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: calc(353 / 393 * 100%);
}

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

.p-faq__title span {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  background-color: #fff;
  display: inline-block;
  padding: 4px 10px;
}

.p-faq__desc {
  padding-top: 52px;
  border-bottom: 1px solid #000;
  padding-bottom: 14px;
}

.p-faq__row {
  border-top: 1px solid #000;
}

.p-faq__row + .p-faq__row {
  margin-top: 10px;
}

.p-faq__row > dt,
.p-faq__row dd {
  position: relative;
}

.p-faq__row > dt::before,
.p-faq__row > dt::after,
.p-faq__row dd::before,
.p-faq__row dd::after {
  top: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 21px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-faq__row > dt::before,
.p-faq__row dd::before {
  position: absolute;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-faq__row > dt::after,
.p-faq__row dd::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 2px;
}

.p-faq__row > dt {
  margin-top: 30px;
}

.p-faq__row > dt::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  content: "q.";
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  left: 0;
}

.p-faq__row > dd::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  content: "a.";
  left: 0;
  top: 11px;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.p-faq__question button {
  font-size: 0.875rem;
  line-height: 1.5714;
  font-weight: bold;
  border-radius: 10px;
  padding: 0 44px 15px 36px;
  width: 100%;
  border: none;
  background-color: transparent;
  color: #000;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
}

.p-faq__question button::before,
.p-faq__question button::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  right: 8px;
  top: 10px;
  background-image: linear-gradient(118deg, #fe3a95, #e50be9);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-faq__question button::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-faq__question button.action::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.p-faq__text {
  font-size: 0.8125rem;
  line-height: 1.6923;
  font-weight: 500;
  margin-left: 0;
  padding: 0 30px 16px 34px;
  color: #000;
  display: none;
}

.p-faq__text a {
  color: #fe3a95;
  display: inline-block;
  text-decoration: underline;
}

.p-fixed {
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  bottom: 10px;
  right: -1px;
  width: 100%;
  z-index: 3;
  background-image: linear-gradient(118deg, #fe3a95, #e50be9);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-fixed.is-fixed {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-fixed__inner {
  width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.p-fixed__title {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
}

.p-fixed__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5px;
}

.p-fixed__text {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
}

.p-fixed__button {
  background-color: #fff;
  width: 124px;
  border-radius: 28px;
  margin-left: 20px;
}

.p-fixed__button a {
  font-size: 0.625rem;
  line-height: 1.6;
  font-weight: bold;
  padding: 4px 12px 4px 10px;
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.p-fixed__button a::before {
  position: absolute;
  content: "";
  background-image: url(../image/icon_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 7px;
  height: 11px;
  top: 0;
  bottom: 0;
  right: 4px;
  margin: auto;
}

.p-instance {
  padding-bottom: 46px;
  position: relative;
  background-color: #fcf9f5;
}

.p-instance__inner {
  width: calc(352 / 375 * 100%);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.p-instance__title {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: bold;
  color: #a38958;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: center;
}

.p-instance__main {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-instance__list {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 36px;
  width: 352px;
  margin-left: auto;
  margin-right: auto;
}

.p-instance__item {
  text-align: center;
  width: 168px;
}

.p-instance__item .category {
  color: #a38958;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.125rem;
  line-height: 1.3333;
  font-weight: bold;
  padding-bottom: 18px;
}

.p-instance__item .image {
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  width: 120px;
}

.p-instance__item .pro {
  color: #8c9297;
  font-size: 0.625rem;
  line-height: 1.8;
  font-weight: 500;
  margin-top: 9px;
}

.p-instance__item .name {
  color: black;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.7778;
}

.p-instance__more {
  margin-left: auto;
  margin-right: auto;
  padding-top: 37px;
  width: 286px;
}

@use "sass:math";
@use '../fundation' as *;

.p-mv {
  height: calc(716 / 393 * 100vw);
  position: relative;
  overflow: hidden;
}

.p-mv__bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.p-mv__mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: calc(716 / 393 * 100vw);
}

.p-mv__title {
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.5455;
  font-size: calc(22 / 393 * 100vw);
  position: absolute;
  top: calc(600 / 393 * 100vw);
  left: calc(19 / 393 * 100vw);
}

.p-mv__title span {
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-mv__slide {
  position: absolute;
  top: calc(349 / 393 * 100vw);
  z-index: 1;
}

.p-mv__slideText {
  font-size: 2.75rem;
  line-height: 1;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  width: 100%;
  font-size: calc(44 / 393 * 100vw);
}

.p-mv__slideText .sec1__title--first {
  -webkit-animation: anim--first 50s infinite linear 0.1s both;
  animation: anim--first 50s infinite linear 0.1s both;
}

.p-mv__slideText .sec1__title--second {
  -webkit-animation: anim--second 50s infinite linear 0.1s both;
  animation: anim--second 50s infinite linear 0.1s both;
}

@-webkit-keyframes anim--first {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes anim--first {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes anim--second {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes anim--second {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.p-news {
  background-color: #f8f7f7;
  padding-top: 80px;
  padding-bottom: 120px;
}

.p-news__upper {
  margin-left: 20px;
}

.p-news__slide {
  padding-top: 38px;
}

.p-news__slide .swiper {
  padding-bottom: 60px;
}

.p-news__slide .swiper-button-next,
.p-news__slide .swiper-button-prev {
  width: 26px;
  height: 10px;
  background-image: url(../image/slide_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  top: inherit;
}

.p-news__slide .swiper-button-next::after,
.p-news__slide .swiper-button-prev::after {
  content: inherit;
}

.p-news__slide .swiper-button-prev {
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
  left: 0;
}

.p-news__slide .swiper-button-next {
  left: 66px;
}

.p-news__slideLink {
  position: relative;
}

.p-news__slideBox {
  position: relative;
}

.p-news__slideBox::before {
  position: absolute;
  content: "";
  width: calc(100% - 23px);
  height: 100%;
  top: 23px;
  left: 0;
  background-color: #fff;
  z-index: -1;
}

.p-news__slideFigure {
  margin-left: 30px;
}

.p-news__slideTime {
  color: #fe3a95;
  position: absolute;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: 32px;
  left: 10px;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.625rem;
  line-height: 1;
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

.p-news__slideTitle {
  font-size: 0.8125rem;
  line-height: 1.5385;
  font-weight: 500;
  padding-left: 36px;
  padding-top: 10px;
  padding-right: 44px;
}

.p-news__box {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: calc((353 / 393) * 100%);
  padding-top: 120px;
}

.p-news__title {
  width: 360px;
}

.p-news__title .main {
  color: #fff;
  background-image: linear-gradient(118deg, #fe3a95, #e50be9);
  display: inline-block;
  padding: 4px;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
}

.p-news__title .subtitle {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 10px;
  font-size: 2.5rem;
  line-height: 1.25;
}

.p-news__main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  margin-top: 50px;
}

.p-news__main .text {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
}

.p-notes {
  padding-bottom: 64px;
  padding-top: 140px;
  background-color: #fcf9f5;
}

.p-notes__title .c-title__text {
  text-align: center;
}

.p-notes__wrapper {
  max-width: 868px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}

.p-notes__list {
  padding-left: 0;
  list-style-type: none;
}

.p-notes__item {
  position: relative;
  color: #000;
  font-size: 1rem;
  line-height: 1.875;
  padding-left: 1.5em;
}

.p-notes__item::before {
  position: absolute;
  content: "・";
  left: 0;
}

.p-notes__item + .p-notes__item {
  margin-top: 10px;
}

.p-outline__inner {
  background-image: linear-gradient(118deg, rgba(254, 58, 149, 0.1), rgba(229, 11, 233, 0.1));
  padding-top: 65px;
  padding-bottom: 80px;
}

.p-outline__detail {
  text-align: center;
  margin-top: 24px;
}

.p-outline__detailInner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  padding: 3px 15px;
}

.p-outline__detailDeadline {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 16px;
}

.p-outline__detailDate .num {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: bold;
}

.p-outline__detailDate .week {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.625rem;
  line-height: 1;
  margin-right: 4px;
}

.p-outline__wrapper {
  width: calc((329 / 393) * 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}

.p-outline__desc {
  margin-top: 20px;
  border-top: 1px solid #8b8b8b;
}

.p-outline__row {
  padding-top: 16px;
  padding-bottom: 30px;
  border-bottom: 1px solid #8b8b8b;
}

.p-outline__dlist {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.7143;
  width: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #8b8b8b;
}

.p-outline__text {
  margin-left: 0;
  font-weight: 400;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 30px;
}

.p-outline__text .small {
  font-size: 0.8125rem;
  line-height: 1.6923;
  padding-top: 15px;
}

.p-outline__button {
  text-align: center;
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-participation {
  padding-top: 130px;
  padding-bottom: 130px;
  background-color: #fbf8f4;
}

.p-participation__list {
  padding-left: 0;
  list-style-type: none;
  padding-top: 60px;
}

.p-participation__item + .p-participation__item {
  padding-top: 45px;
}

.p-participation__title {
  position: relative;
  color: #fe3a95;
  font-size: 1.375rem;
  line-height: 1.3636;
  font-weight: 900;
  padding-left: 50px;
}

.p-participation__title::before {
  position: absolute;
  content: "";
  width: 38px;
  height: 38px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

.p-participation__title.-offline::before {
  background-image: url(../image/icon_offline.svg);
}

.p-participation__title.-online::before {
  background-image: url(../image/icon_online.svg);
}

.p-participation__flowList {
  list-style-type: none;
  padding-left: 0;
}

.p-program {
  background-image: url(../image/program_bg_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.p-program__inner {
  width: calc((353 / 395) * 100%);
  margin-left: auto;
  margin-right: auto;
}

.p-program .c-title2 {
  text-align: center;
}

.p-program__copy {
  padding-top: 40px;
  font-size: 0.875rem;
  line-height: 1.7143;
  font-weight: 500;
}

.p-program__explain {
  padding-top: 42px;
  padding-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  width: calc((300 / 353) * 100%);
}

.p-program__explainInner {
  background-color: #fff;
  padding: 43px 20px 36px;
  position: relative;
}

.p-program__explainTag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(118deg, #fe3a95, #e50be9);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  padding: 4px 8px;
  font-weight: bold;
}

.p-program__explainBox .title {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
}

.p-program__explainBox .detail {
  padding-top: 12px;
}

.p-program__explainBox .main {
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: bold;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.p-program__explainBox .sub {
  font-size: 0.625rem;
  line-height: 1.4;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.p-program__explainTable {
  padding-top: 30px;
}

.p-program__explainRow dt {
  background-color: #e3e3e3;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: bold;
  width: 70px;
  height: 24px;
  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;
}

.p-program__explainRow dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  font-size: 0.8125rem;
  line-height: 1.6923;
  margin-left: 0;
  margin-top: 10px;
}

.p-program__explainRow + .p-program__explainRow {
  margin-top: 18px;
}

.p-program__detail {
  padding-top: 14px;
}

.p-program__detailInner {
  max-width: 1025px;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
}

.p-program__detailInner .c-title3 {
  text-align: left;
}

.p-program__detailInner .swiper-button-next,
.p-program__detailInner .swiper-button-prev {
  width: 26px;
  height: 10px;
  background-image: url(../image/slide_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  top: inherit;
}

.p-program__detailInner .swiper-button-next::after,
.p-program__detailInner .swiper-button-prev::after {
  content: inherit;
}

.p-program__detailInner .swiper-button-prev {
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
  left: 0;
}

.p-program__detailInner .swiper-button-next {
  left: 66px;
}

.p-program__detailList {
  padding-top: 54px;
  list-style-type: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 36px;
}

.p-program__detailItem {
  background-color: #fff;
  padding: 70px 22px 30px 22px;
  position: relative;
  counter-increment: title;
}

.p-program__detailItem::before {
  position: absolute;
  content: "0" counter(title);
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  top: 30px;
  left: 30px;
  font-size: 1rem;
  line-height: 1;
}

.p-program__detailTitle {
  font-size: 1.125rem;
  line-height: 1.5556;
  font-weight: bold;
}

.p-program__detailText {
  font-size: 0.8125rem;
  line-height: 1.5385;
  font-weight: 500;
  padding-top: 112px;
  margin-top: auto;
}

.p-relation {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.p-relation__inner {
  text-align: center;
  width: calc(353 / 393 * 100%);
  max-width: 962px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.p-relation__copy {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  line-height: 1.7143;
  font-weight: 500;
  text-align: left;
  padding-top: 40px;
}

.p-relation__box {
  padding-top: 72px;
}

.p-relation__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.p-relation__item {
  display: -ms-grid;
  display: grid;
}

.p-relation__item + .p-relation__item {
  padding-top: 80px;
}

.p-relation__figure {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-top: 16px;
}

.p-relation__main {
  display: contents;
}

.p-relation__upper {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.p-relation__lower {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.p-relation__label {
  position: relative;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1;
  display: block;
  counter-increment: label;
  text-align: right;
}

.p-relation__label::before,
.p-relation__label::after {
  position: absolute;
  content: "";
}

.p-relation__label::before {
  left: 26px;
  top: 5px;
  background-image: linear-gradient(118deg, #fe3a95, #e50be9);
  width: calc(100% - 114px);
  height: 1px;
}

.p-relation__label::after {
  content: "0" counter(label);
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1;
  left: 0;
  top: 0;
}

.p-relation__title {
  text-align: left;
  font-size: 1.375rem;
  line-height: 1.6364;
  font-weight: bold;
  padding-top: 40px;
}

.p-relation__detail {
  text-align: left;
  font-size: 0.8125rem;
  line-height: 1.6923;
  font-weight: 500;
  margin-top: auto;
  padding-top: 20px;
}

.p-relation__button {
  text-align: left;
  margin-top: 40px;
}

.p-schedule {
  padding-bottom: 80px;
}

.p-schedule__inner {
  margin-left: auto;
  margin-right: auto;
  width: calc((353 / 393) * 100%);
}

.p-schedule__inner .c-title3 {
  text-align: left;
}

.p-schedule__main {
  padding-top: 34px;
}

.p-schedule__list {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.p-schedule__item + .p-schedule__item .p-schedule__dlist::before {
  height: calc(100% - 144px);
}

.p-schedule__dlist {
  position: relative;
  padding-bottom: 30px;
}

.p-schedule__dlist::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-image: linear-gradient(118deg, #fe3a95, #e50be9);
  left: 0;
  top: 13px;
}

.p-schedule__row.-done .p-schedule__title {
  color: #a5a5a5;
  border: 1px solid #a5a5a5;
}

.p-schedule__row.-done .p-schedule__title::before {
  background-color: #a5a5a5;
}

.p-schedule__row.-done .p-schedule__title::after {
  border: 1px solid #a5a5a5;
}

.p-schedule__row.-done .p-schedule__desc .title {
  color: #a5a5a5;
  -webkit-text-fill-color: inherit;
  background: transparent;
}

.p-schedule__row.-done .p-schedule__desc .text {
  color: #a5a5a5;
}

.p-schedule__row + .p-schedule__row {
  margin-top: 26px;
}

.p-schedule__title {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: bold;
  padding: 6px 15px;
  border-radius: 50px;
  border: 1px solid #000;
  display: inline-block;
  margin-left: 28px;
  position: relative;
}

.p-schedule__title::before,
.p-schedule__title::after {
  position: absolute;
  content: "";
}

.p-schedule__title::before {
  width: 28px;
  height: 1px;
  left: -29px;
  background-color: #000;
  top: 0;
  bottom: 0;
  margin: auto;
}

.p-schedule__title::after {
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  background-color: #fff;
  left: -32px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}

.p-schedule__desc {
  margin-left: 30px;
  padding-top: 12px;
}

.p-schedule__desc .title {
  font-size: 0.875rem;
  line-height: 1.7143;
  background: -webkit-gradient(linear, left top, right top, from(#fe3a95), to(#e50be9));
  background: linear-gradient(90deg, #fe3a95, #e50be9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  display: inline-block;
}

.p-schedule__desc .text {
  font-size: 0.8125rem;
  line-height: 1.6923;
  margin-top: 4px;
  font-weight: 500;
}

.p-session {
  padding-top: 95px;
  padding-bottom: 160px;
  position: relative;
}

.p-session__inner {
  text-align: center;
  width: calc(343 / 375 * 100%);
  max-width: 962px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.p-session__title {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #a38958;
  font-size: 2.625rem;
  line-height: 1;
  font-weight: 500;
  text-align: left;
}

.p-session__flow {
  margin-top: 40px;
  position: relative;
  padding-left: 30px;
}

.p-session__flow::before {
  position: absolute;
  content: "";
  background-color: #a38958;
  width: 1px;
  height: calc(100% - 52px);
  top: 0;
  left: 2px;
}

.p-session__row + .p-session__row {
  padding-top: 60px;
}

.p-session__term > .time {
  color: #a38958;
  font-size: 1rem;
  line-height: 1;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  position: relative;
  text-align: left;
  display: block;
  letter-spacing: 0.04em;
}

.p-session__term > .time::before {
  position: absolute;
  content: "";
  background-color: #a38958;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: -1px;
  left: -33px;
}

.p-session__desc {
  margin-left: 0;
}

.p-session__desc > .title {
  color: #a38958;
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: left;
  margin-top: 4px;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.p-session__desc.-comming {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  color: #a38958;
  font-weight: 900;
  text-align: left;
  margin-top: 20px;
}

.p-session__list {
  list-style-type: none;
  padding-left: 0;
  padding-top: 6px;
}

.p-session__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-session__item.-moderator > .figure::before {
  content: "moderator";
  color: #f3c2c2;
}

.p-session__item.-speaker > .figure::before {
  content: "speaker";
  color: #edb799;
}

.p-session__item.-panelist > .figure::before {
  content: "panelist";
  color: #92d9c0;
}

.p-session__item.-commong .name {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  font-size: 1rem;
  line-height: 1;
}

.p-session__item > .figure {
  width: 96px;
  position: relative;
}

.p-session__item > .figure img {
  border-radius: 50%;
  overflow: hidden;
}

.p-session__item > .figure::before {
  position: absolute;
  text-transform: capitalize;
  color: #a38958;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 50px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -20px;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.p-session__itemText {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  margin-left: 16px;
  padding-top: 12px;
}

.p-session__itemText .position {
  font-size: 0.625rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  color: #8b8b8b;
}

.p-session__itemText .name {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 600;
  text-align: left;
  margin-top: auto;
  color: #000;
}

.p-session__itemText .name span {
  font-size: 1rem;
  line-height: 1.5;
}

.p-session__button {
  margin-top: 35px;
  text-align: right;
}

.p-session__button button {
  background-color: transparent;
  border: none;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #fe3a95;
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
  cursor: pointer;
  border-bottom: 1px solid #fe3a95;
  padding-bottom: 10px;
  font-size: 1rem;
  line-height: 1;
  padding-right: 40px;
}

.p-session__button button::before {
  position: absolute;
  content: "";
  background-image: url(../image/button_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 6px;
  right: 0;
  top: 10px;
}

.p-ttable {
  padding-top: 20px;
}

.p-ttable__inner {
  text-align: center;
  width: 90%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  position: relative;
}

.p-ttable__title {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.p-ttable__title .c-title__text {
  color: #fff;
}

.p-ttable__wrapper {
  background-image: url(../image/ttable_time_sp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  margin-top: 50px;
}

.p-ttable__table {
  color: #fe3a95;
  width: 100%;
}

.p-ttable__body {
  display: block;
  padding-left: 44px;
  width: 340px;
  margin: auto;
}

.p-ttable__row > td:nth-of-type(1) {
  width: 158px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
}

.p-ttable__row > td:nth-of-type(2) {
  width: 128px;
}

.p-ttable__row .area {
  background-color: #f3c2c2;
  color: #fff;
  padding: 16px 10px;
  font-size: 1.125rem;
  line-height: 1;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
}

.p-ttable__row .area span {
  display: block;
  text-align: center;
  width: 100%;
}

.p-ttable__row .area + .area {
  background-color: #92d9c0;
}

.p-ttable__row:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 142px;
}

.p-ttable__row:nth-of-type(2) .p-ttable__button {
  margin-top: 14px;
  height: 178px;
}

.p-ttable__row:nth-of-type(2) > td {
  margin-top: 10px;
  display: table-cell;
}

.p-ttable__row:nth-of-type(2) > td .opening {
  position: relative;
  height: 120px;
  width: 100%;
  z-index: 1;
  text-align: left;
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-ttable__row:nth-of-type(2) > td .opening::before,
.p-ttable__row:nth-of-type(2) > td .opening::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.p-ttable__row:nth-of-type(2) > td .opening::before {
  background-color: #fff;
  z-index: -1;
}

.p-ttable__row:nth-of-type(2) > td .opening::after {
  border-bottom: 1px solid #a38958;
}

.p-ttable__row:nth-of-type(2) > td .time {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
  color: #a38958;
}

.p-ttable__row:nth-of-type(2) > td .name {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 900;
  margin-top: 3px;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #a38958;
}

.p-ttable__row:nth-of-type(3) .p-ttable__button {
  margin-top: -1px;
}

.p-ttable__row:last-of-type > td {
  margin-top: 10px;
  display: table-cell;
}

.p-ttable__row:last-of-type > td .party {
  position: relative;
  height: 423px;
  width: 100%;
  margin-top: 50px;
  color: #fff;
  z-index: 1;
  padding: 11px 10px 27px;
}

.p-ttable__row:last-of-type > td .party::before,
.p-ttable__row:last-of-type > td .party::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.p-ttable__row:last-of-type > td .party::before {
  background-color: #fff;
  z-index: -1;
}

.p-ttable__row:last-of-type > td .party::after {
  border: 1px solid #a38958;
}

.p-ttable__row:last-of-type > td .time {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 900;
}

.p-ttable__row:last-of-type > td .title {
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 900;
  margin-top: 12px;
  color: #a38958;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: left;
}

.p-ttable__button {
  border: 1px solid #a38958;
  padding: 11px 10px 27px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  position: relative;
  width: 100%;
  margin-top: 20px;
  background-color: #fff;
  height: 198px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-ttable__button .title {
  color: #a38958;
  font-size: 0.875rem;
  line-height: 1.7143;
  font-weight: 900;
  position: relative;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.p-ttable__button .title + .title {
  margin-top: 8px;
}

.p-ttable__button .more {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 900;
  color: #fe3a95;
  position: absolute;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  bottom: 14px;
  right: 30px;
}

.p-ttable__button .toggle {
  display: block;
  position: absolute;
  bottom: 14px;
  margin: auto;
  right: 12px;
  width: 12px;
  height: 12px;
  background-color: #fe3a95;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.p-ttable__button .toggle::before,
.p-ttable__button .toggle::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 1px;
  border-radius: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
  background-color: #fff;
}

.p-ttable__button .toggle::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-ttable__rowspan {
  position: relative;
  border: none;
  height: 667px;
}

.p-ttable__rowspan .about {
  color: #92d9c0 !important;
  border-color: #92d9c0 !important;
}

.p-ttable__rowspan::before {
  position: absolute;
  content: "";
  border: 1px solid #a38958;
  width: 100%;
  height: 667px;
  left: 0;
  top: 0;
  background-color: #fff;
}

.p-ttable__rowspan .exchange {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  padding: 11px 10px 27px;
}

.p-ttable__info {
  padding-bottom: 8px;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-ttable__info .about {
  border: 1px solid #f3c2c2;
  border-radius: 20px;
  color: #f3c2c2;
  font-size: 0.6875rem;
  line-height: 1;
  font-weight: 600;
  padding: 4px;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.p-ttable__info .time {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 900;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #a38958;
  margin-top: 7px;
}

.p-ttable .booth {
  color: #a38958;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 900;
  text-align: left;
  font-family: dnp-shuei-anti-std, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

._se {
  display: block !important;
}

._sp {
  display: block !important;
}

._tab {
  display: block !important;
}

._pc {
  display: none !important;
}

._tablet-only {
  display: none;
}

._pc-only {
  display: none;
}

._sp-only {
  display: none;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

@media print, screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }

  a[href^="tel:"] {
    pointer-events: none;
    color: color(text);
    text-decoration: none;
  }

  .l-inner {
    width: 86%;
    width: calc((1120 / 1280) * 100%);
  }

  .l-footer {
    padding-top: 210px;
    padding-bottom: 310px;
  }

  .l-footer::before {
    width: 883px;
    height: 1106px;
    right: 276px;
    top: -88px;
  }

  .l-footer__inner {
    width: 95%;
  }

  .l-footer__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .l-footer__logo .sendai {
    width: 129px;
  }

  .l-footer__logo .hipro {
    margin-left: 30px;
    width: 189px;
  }

  .l-footer__title {
    padding-top: 116px;
  }

  .l-footer__title .c-title2 {
    font-size: 3.125rem;
    line-height: 1.6;
  }

  .l-footer__upperText {
    padding-top: 38px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .l-footer__button .c-button__link {
    width: 300px;
  }

  .l-footer__lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 148px;
  }

  .l-footer__lowerMain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-footer__snsItem a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-footer__snsItem a:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-footer__snsItem + .l-footer__snsItem {
    margin-left: 40px;
  }

  .l-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    padding-bottom: 0;
    margin-left: 44px;
  }

  .l-footer__item {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
  }

  .l-footer__item + .l-footer__item {
    margin-left: 20px;
    margin-top: 0;
  }

  .l-footer__item a {
    padding: 5px 10px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-footer__item a:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-gnav__inner {
    width: 94%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 50px;
  }

  .l-gnav__logo {
    margin-left: 0;
    margin-right: 0;
  }

  .l-gnav__logo a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-gnav__logo a:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-gnav__main {
    padding-top: 0;
    padding-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-left: 156px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .l-gnav__link {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-gnav__link:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-gnav__link .en {
    font-size: 2rem;
    line-height: 1;
  }

  .l-gnav__link .ja {
    font-size: 0.75rem;
    line-height: 1;
    padding-top: 7px;
  }

  .l-gnav__snsList {
    padding-top: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .l-gnav__snsItem a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-gnav__snsItem a:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-gnav__infoItem a {
    text-align: right;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-gnav__infoItem a:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-bg.is-open {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: all;
  }

  .l-header {
    top: 28px;
  }

  .l-header__wrapper {
    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;
    width: 96%;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 28px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }

  .l-header__logo a {
    width: 120px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-header__logo a:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .l-header__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .l-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-header__link {
    color: #fe3a95;
    font-size: 0.75rem;
    line-height: 1.6667;
    font-weight: 700;
    padding: 10px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    font-family: dnp-shuei-anti-std, sans-serif;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }

  .l-header__link:hover {
    color: #a38958;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .l-header__nav {
    position: static;
    top: 5px;
    right: 48px;
  }

  .l-header__button:hover .l-header__buttonLine {
    background-color: #fe3a95;
    -webkit-transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  }

  .l-header__buttonLine {
    width: 48px;
  }

  .l-header__gnav {
    height: auto;
  }

  .c-button {
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
  }

  .c-button:hover {
    border: 1px solid #fe3a95;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
  }

  .c-button:hover .c-button__link .round::before {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  .c-button__link {
    height: 80px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .c-button__link:hover {
    color: #fe3a95;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .c-button__link .round {
    margin-right: 20px;
  }

  .c-button__link .text {
    font-size: 1rem;
    line-height: 1;
  }

  .c-hdl {
    display: block;
    padding-left: 0;
  }

  .c-hdl__main {
    display: block;
    font-size: 2.8125rem;
    line-height: 1.3333;
  }

  .c-hdl__main::before {
    width: 30px;
    height: 30px;
    left: -40px;
  }

  .c-hdl__sub {
    display: block;
    font-size: 0.8125rem;
    line-height: 1;
    margin-left: 0;
  }

  .c-hdl2__main {
    font-size: 1.0625rem;
    line-height: 1;
    padding-bottom: 20px;
  }

  .c-hdl2__sub {
    font-size: 2.9375rem;
    line-height: 1;
  }

  .c-modal__content {
    width: 94%;
    padding-top: 86px;
    padding-bottom: 60px;
    max-width: 740px;
  }

  .c-modal__close {
    top: 30px;
    right: 40px;
  }

  .c-modal__close:hover::before,
  .c-modal__close:hover::after {
    background-color: #a38958;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }

  .c-modal__close::before,
  .c-modal__close::after {
    width: 40px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }

  .c-modal__section + .c-modal__section {
    margin-top: 86px;
  }

  .c-modal__main > .commingsoon {
    font-size: 2rem;
    line-height: 1;
    height: 300px;
  }

  .c-modal__closeButton button {
    -webkit-transition: color 0.3s ease, border 0.3s ease;
    transition: color 0.3s ease, border 0.3s ease;
  }

  .c-modal__closeButton button:hover {
    color: #a38958;
    -webkit-transition: color 0.3s ease, border 0.3s ease;
    transition: color 0.3s ease, border 0.3s ease;
    border: 1px solid #a38958;
  }

  .c-modal__closeButton button:hover span {
    background-color: #a38958;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }

  .c-modal__title {
    margin-top: 6px;
    font-size: 1.5rem;
    line-height: 1.3333;
    font-family: dnp-shuei-anti-std, sans-serif;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }

  .c-modal__text {
    font-size: 1rem;
    line-height: 1.375;
  }

  .c-modal__item {
    padding: 16px 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .c-modal__figure {
    width: 120px;
  }

  .c-modal__figure::before {
    font-size: 1rem;
    line-height: 1;
  }

  .c-modal__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 15px;
  }

  .c-modal__intro {
    width: 200px;
    margin-left: 0;
  }

  .c-modal__intro .name {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .c-modal__detail {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 1;
    margin-left: 20px;
    margin-top: 0;
  }

  .c-title.-en {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .c-title2 {
    font-size: 3.125rem;
    line-height: 1.5;
  }

  .c-title3 span {
    font-size: 2.25rem;
    line-height: 1;
    padding: 0 9px 2px 9px;
  }

  .p-about {
    padding-top: 76px;
    padding-bottom: 62px;
  }

  .p-about::after {
    height: 268px;
  }

  .p-about__inner {
    width: 94%;
  }

  .p-about__title {
    font-size: 1.5rem;
    line-height: 1.6667;
  }

  .p-about__wrapper {
    padding-top: 51px;
  }

  .p-about__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-about__item {
    width: calc((362 / 1120) * 100%);
  }

  .p-about__item .title {
    padding-bottom: 26px;
  }

  .p-about__item .title span:nth-of-type(1) {
    margin-bottom: 4px;
  }

  .p-about__box {
    border-radius: 32px;
    padding: 28px 22px 35px;
  }

  .p-about__box .subtitle {
    margin-bottom: 11px;
    font-size: 1.1875rem;
    line-height: 1.6842;
  }

  .p-article {
    padding-top: 230px;
    padding-bottom: 300px;
  }

  .p-article__body .box {
    padding: 50px;
  }

  .p-banner {
    padding-top: 100px;
    padding-bottom: 95px;
  }

  .p-banner__title span {
    font-size: 2.25rem;
    line-height: 1;
  }

  .p-banner__text {
    font-size: 1.375rem;
    line-height: 1;
    padding-top: 46px;
  }

  .p-banner__button {
    padding-top: 64px;
  }

  .p-concept {
    padding-top: 123px;
    padding-bottom: 110px;
  }

  .p-concept__inner {
    max-width: 1280px;
  }

  .p-concept__title {
    text-align: center;
    font-size: 3.75rem;
    line-height: 1.5;
    padding-right: 0;
  }

  .p-concept__copy {
    padding-top: 100px;
    text-align: center;
    font-size: 1.375rem;
    line-height: 1.8182;
  }

  .p-concept__text {
    margin-top: 22px;
    font-size: 1.125rem;
    line-height: 1.8889;
  }

  .p-concept__logo {
    padding-top: 80px;
  }

  .p-concept__logo .sendai {
    width: 175px;
  }

  .p-concept__logo .hipro {
    width: 220px;
    margin-left: 36px;
  }

  .p-faq {
    padding-top: 114px;
    padding-bottom: 180px;
  }

  .p-faq__inner {
    width: 95%;
  }

  .p-faq__title span {
    font-size: 2.25rem;
    line-height: 1;
    padding: 6px;
  }

  .p-faq__desc {
    padding-top: 80px;
  }

  .p-faq__row + .p-faq__row {
    margin-top: 22px;
  }

  .p-faq__row > dt::before,
  .p-faq__row > dt::after,
  .p-faq__row dd::before,
  .p-faq__row dd::after {
    left: 17px;
    top: 4px;
  }

  .p-faq__row > dt::before,
  .p-faq__row dd::before {
    font-size: 1.5rem;
    line-height: 0.8333;
  }

  .p-faq__row > dt {
    margin-top: 44px;
  }

  .p-faq__row > dd::before {
    padding-bottom: 12px;
    left: 20px;
    top: 0;
  }

  .p-faq__question button {
    font-size: 1.25rem;
    line-height: 1.5;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    padding: 0 100px 28px 90px;
  }

  .p-faq__question button:hover {
    color: #fe3a95;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .p-faq__question button:hover::before,
  .p-faq__question button:hover::after {
    background-color: #fe3a95;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  .p-faq__question button::before,
  .p-faq__question button::after {
    right: 10px;
    top: 14px;
    width: 24px;
    height: 3px;
  }

  .p-faq__text {
    padding: 0 30px 16px 90px;
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .p-faq__text a:hover {
    text-decoration: none;
  }

  .p-fixed {
    background-color: rgba(255, 255, 255, 0.87);
    background-image: inherit;
    width: 370px;
    border-radius: 3px 0 0 3px;
    border: 1px solid #000;
    bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .p-fixed__inner {
    width: 326px;
  }

  .p-fixed__title {
    color: #000;
  }

  .p-fixed__box {
    display: block;
    margin-top: 6px;
  }

  .p-fixed__text {
    color: #000;
    font-size: 0.875rem;
    line-height: 1.4286;
  }

  .p-fixed__button {
    background-color: transparent;
    width: 154px;
    margin-left: auto;
    margin-top: 10px;
  }

  .p-fixed__button a {
    font-size: 0.8125rem;
    line-height: 1.2308;
  }

  .p-fixed__button a:hover::before {
    right: -4px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }

  .p-fixed__button a::before {
    width: 8px;
    height: 12px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }

  .p-instance__inner {
    max-width: 1018px;
    width: 94%;
  }

  .p-instance__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .p-instance__main {
    padding-top: 0;
    padding-bottom: 64px;
  }

  .p-instance__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 40px;
    width: auto;
  }

  .p-instance__item {
    width: 240px;
  }

  .p-instance__item .category {
    font-size: 1.25rem;
    line-height: 1;
    padding-bottom: 0;
    margin-bottom: 25px;
  }

  .p-instance__item .image {
    width: 160px;
  }

  .p-instance__item .pro {
    margin-top: 20px;
    font-size: 0.8125rem;
    line-height: 1.5385;
  }

  .p-instance__item .name {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .p-instance__more {
    width: 515px;
    padding-top: 62px;
  }

  .p-mv {
    padding-top: 60px;
    height: calc(926 / 1440 * 100vw);
  }

  .p-mv__mask {
    height: calc(926 / 1440 * 100vw);
  }

  .p-mv__title {
    font-size: calc(36 / 1440 * 100vw);
    top: calc(760 / 1440 * 100vw);
    left: calc(78 / 1440 * 100vw);
  }

  .p-mv__slide {
    top: calc(410 / 1440 * 100vw);
  }

  .p-mv__slideText {
    font-size: 5.625rem;
    line-height: 1;
    font-size: calc(90 / 1440 * 100vw);
  }

  .p-news {
    padding-top: 130px;
    padding-bottom: 180px;
  }

  .p-news__upper {
    margin-left: 170px;
  }

  .p-news__slide .swiper {
    padding-bottom: 80px;
  }

  .p-news__slide .swiper-button-next,
  .p-news__slide .swiper-button-prev {
    width: 37px;
    height: 14px;
  }

  .p-news__slide .swiper-button-next {
    left: 90px;
  }

  .p-news__slideTime {
    font-size: 0.6875rem;
    line-height: 1;
  }

  .p-news__box {
    width: 95%;
    padding-top: 170px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .p-news__title .main {
    font-size: 1.75rem;
    line-height: 1;
  }

  .p-news__title .subtitle {
    margin-top: 12px;
    font-size: 3.125rem;
    line-height: 1.28;
  }

  .p-news__main {
    margin-top: 0;
    margin-left: 80px;
  }

  .p-news__main .text {
    font-size: 1.125rem;
    line-height: 1.8889;
  }

  .p-notes {
    padding-top: 80px;
    padding-bottom: 114px;
  }

  .p-notes__wrapper {
    width: 94%;
    padding-top: 50px;
  }

  .p-notes__item {
    font-size: 1rem;
    line-height: 2;
  }

  .p-outline {
    padding-bottom: 250px;
  }

  .p-outline__inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    padding-top: 76px;
    padding-bottom: 70px;
    border-radius: 10px;
  }

  .p-outline__detail {
    margin-top: 40px;
  }

  .p-outline__detailInner {
    padding: 14px 20px;
  }

  .p-outline__detailDeadline {
    margin-right: 28px;
    font-size: 1.125rem;
    line-height: 1;
  }

  .p-outline__detailDate {
    line-height: 1;
  }

  .p-outline__detailDate .num {
    font-size: 1.5rem;
    line-height: 1;
  }

  .p-outline__detailDate .week {
    font-size: 1.0625rem;
    line-height: 1;
    margin-right: 18px;
  }

  .p-outline__wrapper {
    width: 95%;
    max-width: 1000px;
    padding-top: 0;
  }

  .p-outline__desc {
    margin-top: 76px;
  }

  .p-outline__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .p-outline__dlist {
    font-size: 1rem;
    line-height: 1.5;
    width: 210px;
  }

  .p-outline__text {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-top: 0;
  }

  .p-outline__text .small {
    font-size: 1rem;
    line-height: 1.75;
  }

  .p-outline__button {
    padding-top: 70px;
  }

  .p-program {
    background-image: url(../image/program_bg.png);
    padding-top: 134px;
  }

  .p-program__copy {
    font-size: 1.125rem;
    line-height: 1.6667;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-program__explain {
    padding-top: 128px;
    padding-bottom: 80px;
  }

  .p-program__explainInner {
    width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 42px 60px;
  }

  .p-program__explainBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .p-program__explainBox .title {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-right: 20px;
    border-right: 1px solid #e3e3e3;
  }

  .p-program__explainBox .detail {
    padding-left: 20px;
    padding-top: 0;
  }

  .p-program__explainBox .main {
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .p-program__explainBox .sub {
    font-size: 0.8125rem;
    line-height: 1.5385;
  }

  .p-program__explainTable {
    padding-top: 36px;
  }

  .p-program__explainRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-program__explainRow dd {
    margin-left: 12px;
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 0;
  }

  .p-program__explainRow + .p-program__explainRow {
    margin-top: 16px;
  }

  .p-program__detail {
    padding-top: 86px;
  }

  .p-program__detailInner .c-title3 {
    text-align: center;
  }

  .p-program__detailInner .swiper-button-next,
  .p-program__detailInner .swiper-button-prev {
    display: none;
  }

  .p-program__detailList {
    padding-top: 74px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .p-program__detailItem {
    padding: 70px 30px 30px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-program__detailTitle {
    font-size: 1.375rem;
    line-height: 1.4546;
  }

  .p-program__detailText {
    font-size: 0.875rem;
    line-height: 1.5714;
    padding-top: 80px;
  }

  .p-relation {
    padding-top: 246px;
    padding-bottom: 224px;
  }

  .p-relation__inner {
    max-width: 1100px;
  }

  .p-relation__copy {
    font-size: 1.125rem;
    line-height: 1.6667;
  }

  .p-relation__box {
    padding-top: 124px;
  }

  .p-relation__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-relation__item + .p-relation__item {
    border-top: 1px solid #8b8b8b;
    margin-top: 80px;
  }

  .p-relation__item:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
  }

  .p-relation__item:nth-of-type(even) .p-relation__main {
    margin-right: 50px;
    margin-left: 0;
  }

  .p-relation__figure {
    width: calc((485 / 1100) * 100%);
    padding-top: 0;
  }

  .p-relation__main {
    margin-left: 50px;
    width: calc((565 / 1100) * 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-relation__lower {
    margin-top: auto;
  }

  .p-relation__label {
    padding-left: 134px;
    text-align: left;
  }

  .p-relation__label::before {
    width: 87px;
    left: 34px;
    top: 7px;
  }

  .p-relation__title {
    font-size: 2.25rem;
    line-height: 1.5;
    padding-top: 30px;
  }

  .p-relation__detail {
    font-size: 1rem;
    line-height: 1.75;
  }

  .p-relation__button .c-button__link {
    width: 282px;
    height: 60px;
  }

  .p-schedule {
    padding-top: 56px;
    padding-bottom: 200px;
  }

  .p-schedule__inner {
    width: 95%;
    max-width: 940px;
  }

  .p-schedule__inner .c-title3 {
    text-align: center;
  }

  .p-schedule__main {
    padding-top: 80px;
  }

  .p-schedule__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-schedule__item {
    width: 400px;
  }

  .p-schedule__item + .p-schedule__item {
    margin-left: 30px;
  }

  .p-schedule__item + .p-schedule__item .p-schedule__dlist {
    padding-top: 30px;
  }

  .p-schedule__item + .p-schedule__item .p-schedule__dlist::before {
    top: 0;
    height: 100%;
  }

  .p-schedule__row + .p-schedule__row {
    margin-top: 38px;
  }

  .p-schedule__title {
    margin-left: 48px;
  }

  .p-schedule__title::before {
    width: 48px;
    left: -48px;
  }

  .p-schedule__title::after {
    left: -52px;
  }

  .p-schedule__desc {
    margin-left: 47px;
  }

  .p-schedule__desc .text {
    font-size: 0.875rem;
    line-height: 1.7143;
  }

  .p-session {
    padding-top: 100px;
    padding-bottom: 230px;
  }

  .p-session__inner {
    width: calc(1120 / 1280 * 100%);
    max-width: 1120px;
  }

  .p-session__title {
    font-size: 4.6875rem;
    line-height: 1;
    text-align: center;
    padding-left: 80px;
  }

  .p-session__flow {
    margin-top: 66px;
    padding-left: 0;
  }

  .p-session__flow::before {
    left: 178px;
    height: calc(100% - 19px);
  }

  .p-session__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .p-session__row + .p-session__row {
    padding-top: 40px;
  }

  .p-session__term {
    width: 184px;
  }

  .p-session__term > .time {
    font-size: 1rem;
    line-height: 1;
  }

  .p-session__term > .time::before {
    top: -3px;
    right: 0;
    left: inherit;
  }

  .p-session__desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 1;
    margin-left: 50px;
  }

  .p-session__desc > .title {
    font-size: 1.5rem;
    line-height: 1.6667;
    margin-top: -12px;
  }

  .p-session__desc.-comming {
    font-size: 2rem;
    line-height: 1;
    margin-top: -11px;
  }

  .p-session__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 12px;
  }

  .p-session__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: block;
    width: calc((240 / 884) * 100%);
  }

  .p-session__item.-commong .name {
    padding-top: 10px;
    height: 100%;
    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;
  }

  .p-session__item > .figure {
    width: 120px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-session__item > .figure::before {
    font-size: 1rem;
    line-height: 1;
  }

  .p-session__itemText {
    padding-top: 0;
    margin-left: 26px;
  }

  .p-session__itemText .position {
    text-align: center;
    padding-top: 34px;
    font-size: 0.8125rem;
    line-height: 1.6923;
  }

  .p-session__itemText .name {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-session__itemText .name span {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-left: 6px;
  }

  .p-session__button {
    margin-top: 40px;
  }

  .p-session__button button:hover::before {
    right: -10px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }

  .p-session__button button::before {
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    width: 32px;
    height: 6px;
  }

  .p-ttable {
    padding-bottom: 20px;
    padding-top: 52px;
  }

  .p-ttable__inner {
    max-width: 1121px;
  }

  .p-ttable__box {
    overflow: scroll;
  }

  .p-ttable__wrapper {
    background-image: url(../image/ttable_time.svg);
    padding-bottom: 5px;
    margin-top: 62px;
    width: 1121px;
  }

  .p-ttable__body {
    padding-left: 76px;
    padding-right: 10px;
    width: auto;
  }

  .p-ttable__row > td:nth-of-type(1) {
    width: 600px;
  }

  .p-ttable__row > td:nth-of-type(2) {
    width: 400px;
  }

  .p-ttable__row .area {
    padding: 24px 30px;
    font-size: 1.75rem;
    line-height: 1;
  }

  .p-ttable__row:nth-of-type(1) {
    margin-bottom: 129px;
  }

  .p-ttable__row:nth-of-type(2) .p-ttable__button {
    margin-top: 50px;
    height: 188px;
  }

  .p-ttable__row:nth-of-type(2) > td .opening {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 24px;
    height: 84px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-ttable__row:nth-of-type(2) > td .time {
    font-size: 1rem;
    line-height: 1;
  }

  .p-ttable__row:nth-of-type(2) > td .name {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0;
    margin-left: 20px;
  }

  .p-ttable__row:last-of-type > td .party {
    height: 322px;
    padding: 21px 29px 26px;
  }

  .p-ttable__row:last-of-type > td .time {
    font-size: 1rem;
    line-height: 1;
  }

  .p-ttable__row:last-of-type > td .title {
    font-size: 1.5rem;
    line-height: 1;
  }

  .p-ttable__button {
    padding: 21px 74px 26px 23px;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
    height: 150px;
    margin-top: 19px;
  }

  .p-ttable__button:hover {
    border: 1px solid #fe3a95;
    -webkit-transition: border 0.3s ease, color 0.3s ease;
    transition: border 0.3s ease, color 0.3s ease;
  }

  .p-ttable__button:hover .title {
    color: #fe3a95;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .p-ttable__button:hover .toggle {
    background-color: #a38958;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }

  .p-ttable__button:hover .toggle::after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  .p-ttable__button .title {
    font-size: 1.5rem;
    line-height: 1.5;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .p-ttable__button .title + .title {
    margin-top: 18px;
  }

  .p-ttable__button .toggle {
    width: 42px;
    height: 42px;
    right: 19px;
    top: 0;
    bottom: 0;
  }

  .p-ttable__button .toggle::before,
  .p-ttable__button .toggle::after {
    width: 18px;
    height: 4px;
  }

  .p-ttable__rowspan::before {
    height: 520px;
  }

  .p-ttable__rowspan .exchange {
    top: 10px;
    padding: 11px 10px 27px 26px;
  }

  .p-ttable__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 9px;
  }

  .p-ttable__info .about {
    font-size: 0.875rem;
    line-height: 1;
    margin-right: 10px;
    padding: 4px 10px;
  }

  .p-ttable__info .time {
    font-size: 1rem;
    line-height: 1;
    margin-top: 0;
  }

  .p-ttable .booth {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  ._sp {
    display: none !important;
  }

  ._tab {
    display: none !important;
  }

  ._pc {
    display: block !important;
  }
}

@media screen and (min-width: 1280px) {
  .l-gnav__logo {
    width: 362px;
  }

  .p-session__list {
    padding-top: 12px;
  }
}

@media screen and (max-width: 767px) {
  .l-header {
    border-radius: 30px;
    width: 96%;
    margin: auto;
    right: 0;
  }

  .l-header__logo {
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }

  .c-hdl.-map {
    display: block;
  }

  .c-hdl.-map .c-hdl__sub {
    margin-left: 0;
  }

  .c-hdl__sub > span {
    display: block;
    margin-left: 0;
  }

  .p-about__item + .p-about__item {
    margin-top: 20px;
  }

  .p-instance__item:nth-child(2n) {
    margin-left: 16px;
  }

  .p-instance__item:nth-child(n+3) {
    margin-top: 24px;
  }

  .p-instance__item:nth-child(n+3) .category {
    height: 54px;
    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;
  }

  .p-session__item + .p-session__item {
    margin-top: 36px;
  }

  ._sp-only {
    display: block;
  }
}

@media print, screen and (min-width: 1024px) {
  .l-header__logo a {
    width: 242px;
  }

  .l-header__link {
    font-size: 0.875rem;
    line-height: 1.4286;
    padding: 15px 24px;
  }

  ._pc-only {
    display: block;
  }
}

@media print, screen and (min-width: 321px) {
  ._se {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  ._tablet-only {
    display: block;
  }
}
