@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 #5bc8ff;
  }

  100% {
    opacity: 0;
    border: 1px solid #5bc8ff;
    -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 #5bc8ff;
  }

  100% {
    opacity: 0;
    border: 1px solid #5bc8ff;
    -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: #0b3358;
  overflow-x: hidden;
  font-size: 0.875rem;
  line-height: 2.1429;
  background-color: #5bc8ff;
  counter-reset: caseTitle caseLabel;
  letter-spacing: 0.02em;
}

html {
  overflow-x: hidden;
}

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-footer {
  padding-bottom: 64px;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}

.l-footer::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

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

.l-footer__list {
  padding-bottom: 40px;
  padding-left: 0;
  list-style-type: none;
  margin-top: 40px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.l-footer__item.-saga {
  width: 137px;
}

.l-footer__item.-ryofubase {
  width: 271px;
}

.l-footer__item.-hipro {
  width: 183px;
}

.l-gnav {
  height: 100%;
}

.l-gnav__inner {
  width: calc((340 / 390) * 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: 52px;
  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: 60px;
  padding-bottom: 60px;
}

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

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

.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(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.3333;
  font-weight: bold;
}

.l-gnav__link .ja {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  padding-top: 4px;
  color: color(text);
}

.l-gnav__formList {
  padding-top: 32px;
}

.l-gnav__formItem + .l-gnav__formItem {
  margin-top: 16px;
}

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

.l-gnav__button .c-button__link {
  width: 280px;
  height: 50px;
}

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

.l-hipro {
  background-size: 10px 10px;
  background-position: 0 0;
  background-image: url(/image/page_bg.png);
  background-repeat: repeat;
  z-index: -1;
  position: absolute;
  width: 100%;
}

.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-open .l-header__wrapper {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: transparent;
  border: none;
}

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

.l-header__wrapper {
  padding: 10px 10px 12px 18px;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.65);
  border: 1px solid #fff;
}

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

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

.l-header__item a {
  color: #0b3358;
  -webkit-transform: color 0.3s ease;
  transform: color 0.3s ease;
  padding: 0 10px;
}

.l-header__item a:hover {
  color: #0669ff;
  -webkit-transform: color 0.3s ease;
  transform: color 0.3s ease;
}

.l-header__nav {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__formList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style-type: none;
}

.l-header__formItem + .l-header__formItem {
  margin-left: 10px;
}

.l-header__formItem a {
  border: 1px solid #0669ff;
  background-color: #0669ff;
  border-radius: 36px;
  color: #fff;
  padding: 6px 20px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.l-header__formItem a:hover {
  background-color: #fff;
  color: #0669ff;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.l-header__formItem.-white a {
  background-color: #fff;
  color: #0669ff;
}

.l-header__formItem.-white a:hover {
  background-color: #0669ff;
  color: #fff;
}

.l-header__button {
  width: 48px;
  height: 35px;
  position: relative;
  border: 1px solid #0669ff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: transparent;
  border-radius: 20px;
  margin: 11px 6px;
  background-color: #fff;
}

.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: 16px;
}

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

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

.l-header__buttonLine {
  width: 16px;
  height: 1px;
  display: block;
  position: absolute;
  border-radius: 50px;
  background-color: #0669ff;
  -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: 14px;
}

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

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

.l-header__buttonLine:nth-of-type(3) {
  top: 22px;
}

.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.-primary {
  border: 2px solid #fff;
}

.c-button.-primary .c-button__link {
  background-color: #0669ff;
}

.c-button.-primary .c-button__link .round::before {
  background: #fff;
}

.c-button.-primary .c-button__link .text {
  color: #fff;
}

.c-button__link {
  background-color: #fff;
  width: 360px;
  height: 68px;
  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, #1168d9, #44c9d0);
  -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: 1.125rem;
  line-height: 1;
  font-weight: bold;
}

.c-title2 {
  font-size: 1.75rem;
  line-height: 1.4286;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-title2.-white .en {
  -webkit-text-fill-color: #fff;
}

.c-title2.-white .ja {
  color: #fff;
}

.c-title2 .en {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  line-height: 1.25;
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.07em;
}

.c-title2 .ja {
  font-size: 1rem;
  line-height: 2.125;
  color: #0087d6;
}

.p-case {
  padding-top: 32px;
  padding-bottom: 32px;
}

.p-case__cont {
  max-width: 1280px;
  width: calc(360 / 400 * 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: 22px;
}

.p-case__group {
  list-style-type: none;
  margin: 0 auto;
  padding-left: 0;
}

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

.p-case .tab {
  border-bottom: none;
  border: #c5d5dd;
  background-color: #c5d5dd;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
  color: #4d6071;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 15px 16px 10px 20px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  min-height: 74px;
}

.p-case .tab[aria-selected="true"] {
  border: none;
  background-color: #fff;
  border-top: #c5d5dd;
  border-left: #c5d5dd;
  border-right: #c5d5dd;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  color: #0b3358;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.p-case .tab[aria-selected="true"] span {
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-case .tab[aria-selected="true"] span::before {
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-case .tab span {
  counter-increment: caseTitle;
  font-size: 0.625rem;
  line-height: 1;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  position: relative;
  margin-right: 10px;
  display: block;
  width: 52px;
  padding-top: 4px;
  white-space: nowrap;
}

.p-case .tab span::before {
  position: absolute;
  content: "0" counter(caseTitle);
  font-size: 1.375rem;
  line-height: 1;
  top: 16px;
  left: 0;
  letter-spacing: -0.07em;
}

.p-case__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: none;
  padding-top: 16px;
}

.p-case .panel {
  display: none;
  padding: 24px 0;
  background: #f5f5f5;
  text-align: center;
  width: 100%;
  border-radius: 10px;
}

.p-case .panel[aria-hidden="false"] {
  display: block;
  background: #fff;
  border-left: 1px solid #cad3d9;
  border-right: 1px solid #cad3d9;
  border-bottom: 1px solid #cad3d9;
  -webkit-animation: show 0.4s ease;
  animation: show 0.4s ease;
}

.p-case__panelInner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.p-case__label {
  background-color: #eaf7ff;
  border-radius: 8px;
  font-size: 1.375rem;
  line-height: 1.4546;
  font-weight: bold;
  padding: 64px 10px 20px 10px;
  position: relative;
  font-weight: bold;
}

.p-case__label > span {
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.625rem;
  line-height: 1;
  top: 17px;
  left: 0;
  right: 0;
  margin: auto;
  counter-increment: caseLabel;
}

.p-case__label > span .num {
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
  top: 11px;
  left: 0;
  right: 0;
  margin: auto;
}

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

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

.p-case__flowItem {
  border: 1px solid #cad3d9;
  border-radius: 8px;
  padding: 6px;
}

.p-case__flowItem + .p-case__flowItem {
  margin-top: 32px;
  position: relative;
}

.p-case__flowItem + .p-case__flowItem::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 36px 0 36px 11px;
  border-color: transparent transparent transparent #b1d6ec;
  position: absolute;
  top: -54px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-case__flowItem.-result {
  border: 2px solid #0095d8;
  background-image: linear-gradient(118deg, #1168d9, #44c9d0);
}

.p-case__flowItem.-result .p-case__flowInner {
  background-color: #fff;
}

.p-case__flowItem.-result .p-case__flowTitle span {
  color: #fff;
  background-image: linear-gradient(118deg, #1168d9, #44c9d0);
}

.p-case__flowItem.-result .p-case__sampleItem {
  padding-left: 32px;
}

.p-case__flowItem.-result .p-case__sampleItem::before {
  content: "";
  background-image: url(/image/icon_check.png);
  width: 16px;
  height: 16px;
  background-size: contain;
  left: 6px;
  top: 3px;
}

.p-case__flowInner {
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  height: 100%;
}

.p-case__flowTitle span {
  color: #0b3358;
  background-color: #eaf1f4;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
}

.p-case__flowText {
  font-size: 0.875rem;
  line-height: 1.5714;
  padding-top: 16px;
  text-align: left;
}

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

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

.p-case__sampleItem {
  -moz-text-align-last: left;
  text-align-last: left;
  position: relative;
  padding-left: 1em;
  font-size: 0.8125rem;
  line-height: 1.8462;
}

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

@-webkit-keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.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 / 400) * 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-contact {
  padding-top: 72px;
  padding-bottom: 88px;
  position: relative;
  background-image: linear-gradient(118deg, #1168d9, #44c9d0);
  border-radius: 24px;
}

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

.p-contact__button {
  padding-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.p-faq {
  padding-top: 74px;
  padding-bottom: 80px;
}

.p-faq__inner {
  margin-left: auto;
  margin-right: auto;
  width: calc(353 / 400 * 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: 22px;
}

.p-faq__row {
  background-color: #fff;
  border-radius: 10px;
}

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

.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::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  content: "q.";
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
  left: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.p-faq__question button {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 18px 44px 15px 53px;
  width: 100%;
  border: none;
  background-color: transparent;
  color: #0087d6;
  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: 22px;
  top: 29px;
  background-image: linear-gradient(118deg, #1168d9, #44c9d0);
  -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.8462;
  font-weight: 500;
  margin-left: 0;
  padding: 5px 17px 16px 55px;
  color: #000;
  display: none;
}

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

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

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

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

.p-mv__copy {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  top: calc(429 / 400 * 100vw);
  left: calc(19 / 400 * 100vw);
  opacity: 0;
}

.p-mv__copy .bg {
  background-color: #fff;
  display: inline-block;
  line-height: 1.8;
}

.p-mv__copy .text {
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1;
  font-size: calc(18 / 400 * 100vw);
  padding: 4px;
}

.p-mv__title {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.25;
  font-size: calc(40 / 400 * 100vw);
  position: absolute;
  top: calc(499 / 400 * 100vw);
  left: calc(19 / 400 * 100vw);
  color: #fff;
  letter-spacing: 0;
  opacity: 0;
}

.p-mv__button {
  position: absolute;
  top: calc(721 / 400 * 100vw);
  left: calc(21 / 400 * 100vw);
  opacity: 0;
}

.p-mv__button .c-button__link .text {
  font-size: calc(18 / 400 * 100vw);
}

.p-mv__button .c-button__link .round {
  width: calc(9 / 400 * 100vw);
  height: calc(9 / 400 * 100vw);
  margin-top: calc(2 / 400 * 100vw);
  margin-right: calc(17 / 400 * 100vw);
}

.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 {
  padding-top: 74px;
}

.p-outline__inner {
  background: #eff7fb;
  padding-top: 48px;
  padding-bottom: 52px;
  width: calc(360 / 400 * 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

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

.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: 13px 15px;
}

.p-outline__detailDeadline {
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -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.25rem;
  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.875rem;
  line-height: 1;
  margin-right: 4px;
}

.p-outline__wrapper {
  width: calc((312 / 360) * 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: 11px;
}

.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: 20px;
  font-weight: bold;
}

.p-outline__text p + p {
  padding-top: 15px;
}

.p-outline__text a {
  color: #0870cb;
  text-decoration: underline;
}

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

.p-outline__text .small {
  font-size: 0.8125rem;
  line-height: 1.6923;
  font-weight: normal;
}

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

.p-outline__button .c-button__link {
  width: 312px;
}

.p-program {
  padding-top: 72px;
  padding-bottom: 80px;
  background-color: #fff;
  border-radius: 24px;
}

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

.p-program__subtitle {
  font-size: 1.375rem;
  line-height: 1.6364;
  font-weight: 500;
  font-weight: bold;
  text-align: center;
  padding-top: 24px;
}

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

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

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

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

.p-program__detailItem {
  background-color: #fff;
  padding: 66px 22px 24px 22px;
  position: relative;
  counter-increment: title;
  border: 1px solid #dbe7ee;
  border-radius: 16px;
}

.p-program__detailItem + .p-program__detailItem {
  margin-top: 20px;
}

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

.p-program__detailTitle {
  font-size: 1.375rem;
  line-height: 1.2727;
  font-weight: bold;
  position: relative;
}

.p-program__detailTitle::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background-image: linear-gradient(118deg, #1168d9, #44c9d0);
  left: 0;
  bottom: -25px;
}

.p-program__detailText {
  font-size: 0.875rem;
  line-height: 1.5714;
  font-weight: 500;
  padding-top: 50px;
  margin-top: auto;
}

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

.p-relation__inner {
  text-align: center;
  width: calc(353 / 400 * 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(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -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, #1168d9, #44c9d0);
  width: calc(100% - 114px);
  height: 1px;
}

.p-relation__label::after {
  content: "0" counter(label);
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -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 {
  background-color: #fff;
  padding-bottom: 80px;
  border-radius: 24px;
  margin-top: 48px;
}

.p-schedule__inner {
  margin-left: auto;
  margin-right: auto;
  width: calc((353 / 400) * 100%);
  padding-top: 74px;
}

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

.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% - 24px);
}

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

.p-schedule__dlist::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-image: linear-gradient(118deg, #1168d9, #44c9d0);
  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: 1.25rem;
  line-height: 1.4;
  background: -webkit-gradient(linear, left top, right top, from(#1168d9), to(#44c9d0));
  background: linear-gradient(90deg, #1168d9, #44c9d0);
  -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-talent {
  padding-top: 76px;
  padding-bottom: 40px;
}

.p-talent__cont {
  max-width: 954px;
  margin-left: auto;
  margin-right: auto;
  width: calc(360 / 400 * 100%);
  padding-top: 20px;
}

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

.p-talent__item {
  background-color: #fff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 25px 25px 25px 31px;
}

.p-talent__item + .p-talent__item {
  margin-top: 16px;
}

.p-talent__item::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(118deg, #1168d9, #44c9d0);
}

.p-talent__image {
  width: 112px;
  margin-left: auto;
  margin-right: auto;
}

.p-talent__box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  padding-top: 22px;
}

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

.p-talent__pro span {
  background-color: #2996d5;
  color: #fff;
  font-size: 0.6875rem;
  line-height: 1.8182;
  padding: 0 4px;
}

.p-talent__person {
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.4546;
  padding-top: 5px;
  text-align: center;
}

.p-talent__text {
  font-size: 0.875rem;
  line-height: 1.5714;
  padding-top: 10px;
}

.p-talent__category {
  padding-top: 18px;
}

.p-talent__categoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style-type: none;
}

.p-talent__categoryItem {
  color: #034e8c;
  border: 1px solid #85b8d4;
  background-color: rgba(6, 73, 111, 0.1);
  border-radius: 20px;
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.6875rem;
  line-height: 1.1818;
}

.p-talent__categoryItem + .p-talent__categoryItem {
  margin-left: 6px;
}

.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: #0669ff;
  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 #5bc8ff;
}

.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: #5bc8ff;
}

.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: #5bc8ff;
}

.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 #5bc8ff;
}

.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: #5bc8ff;
  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 #5bc8ff;
  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: #5bc8ff;
  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: #0669ff;
  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: #0669ff;
  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 #5bc8ff;
  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: #5bc8ff;
  margin-top: 7px;
}

.p-ttable .booth {
  color: #5bc8ff;
  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-footer {
    padding-top: 122px;
    padding-bottom: 64px;
  }

  .l-footer__inner {
    width: 95%;
  }

  .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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

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

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

  .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-header {
    top: 16px;
  }

  .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: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 13px 12px 13px 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__nav {
    position: static;
    top: 5px;
    right: 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 #0669ff;
    -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: #0669ff;
    -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-title2 {
    font-size: 3.125rem;
    line-height: 1.5;
  }

  .c-title2 .en {
    font-size: 4.5rem;
    line-height: 1.2778;
  }

  .c-title2 .ja {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-top: 4px;
  }

  .p-case {
    padding-top: 68px;
    padding-bottom: 128px;
  }

  .p-case__cont {
    padding-top: 56px;
  }

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

  .p-case__groupButton {
    width: 33%;
  }

  .p-case__groupButton + .p-case__groupButton {
    margin-left: 6px;
    margin-top: 0;
  }

  .p-case .tab {
    border-radius: 10px 10px 0 0;
  }

  .p-case .tab span {
    font-size: 0.8125rem;
    line-height: 1;
  }

  .p-case__panel {
    padding-top: 0;
    margin-top: -1px;
  }

  .p-case .panel {
    border-radius: 0 0 12px 12px;
    padding: 34px 0;
  }

  .p-case .panel[aria-hidden="false"] {
    border-radius: 0 0 12px 12px;
  }

  .p-case__panelInner {
    padding-right: 40px;
    padding-left: 40px;
  }

  .p-case__label {
    font-size: 2rem;
    line-height: 1.3125;
    text-align: left;
    padding: 21px 10px 20px 90px;
  }

  .p-case__label > span {
    top: 24px;
    left: 25px;
    right: inherit;
    width: 60px;
  }

  .p-case__label > span .num {
    font-size: 1.5rem;
    line-height: 1;
    right: inherit;
  }

  .p-case__flow {
    padding-top: 24px;
  }

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

  .p-case__flowItem {
    width: 33%;
  }

  .p-case__flowItem + .p-case__flowItem {
    margin-left: 36px;
    margin-top: 0;
  }

  .p-case__flowItem + .p-case__flowItem::before {
    top: 0;
    left: -24px;
    bottom: 0;
    right: inherit;
    -webkit-transform: inherit;
    transform: inherit;
  }

  .p-case__flowInner {
    padding: 22px 18px;
  }

  .p-case__flowText {
    padding-top: 11px;
  }

  .p-case__sampleItem {
    font-size: 0.875rem;
    line-height: 1.7143;
  }

  .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-contact {
    padding-top: 110px;
    padding-bottom: 140px;
    border-radius: 48px;
  }

  .p-contact__inner {
    width: calc(1120 / 1280 * 100%);
    max-width: 1120px;
  }

  .p-contact__button {
    padding-top: 60px;
  }

  .p-faq {
    padding-top: 104px;
    padding-bottom: 118px;
  }

  .p-faq__inner {
    width: 95%;
    max-width: 954px;
  }

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

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

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

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

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

  .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: 24px 100px 28px 70px;
  }

  .p-faq__question button:hover {
    color: #0669ff;
    -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: #0669ff;
    -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: 30px;
    top: 37px;
    width: 24px;
    height: 3px;
  }

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

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

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

  .p-mv__copy {
    top: calc(463 / 1440 * 100vw);
    left: calc(50 / 1440 * 100vw);
  }

  .p-mv__copy .bg {
    padding: 4px 8px;
    letter-spacing: 0.15em;
  }

  .p-mv__copy .text {
    font-size: calc(28 / 1440 * 100vw);
  }

  .p-mv__title {
    font-size: calc(64 / 1440 * 100vw);
    top: calc(518 / 1440 * 100vw);
    left: calc(50 / 1440 * 100vw);
    letter-spacing: -0.1em;
  }

  .p-mv__button {
    top: calc(696 / 1440 * 100vw);
    left: calc(50 / 1440 * 100vw);
  }

  .p-mv__button .c-button__link {
    width: calc(394 / 1440 * 100vw);
  }

  .p-mv__button .c-button__link .text {
    font-size: calc(22 / 1440 * 100vw);
  }

  .p-mv__button .c-button__link .round {
    width: calc(9 / 1440 * 100vw);
    height: calc(9 / 1440 * 100vw);
    margin-top: calc(2 / 1440 * 100vw);
    margin-right: calc(17 / 1440 * 100vw);
  }

  .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-top: 132px;
  }

  .p-outline__inner {
    max-width: 1280px;
    width: 95%;
    padding-top: 54px;
    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 {
    padding-top: 120px;
    margin-top: calc((-54 / 1440) * 100vw);
    border-radius: 48px;
    padding-bottom: 126px;
  }

  .p-program__inner {
    width: calc((1296 / 1440) * 100%);
    max-width: 1296px;
  }

  .p-program__subtitle {
    font-size: 2.5rem;
    line-height: 1.575;
    padding-top: 48px;
  }

  .p-program__copy {
    padding-top: 40px;
    font-size: 1.375rem;
    line-height: 2;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .p-program__detailList {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 46px;
  }

  .p-program__detailItem {
    padding: 76px 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__detailItem + .p-program__detailItem {
    margin-top: 0;
  }

  .p-program__detailItem::before {
    top: 32px;
    left: 34px;
  }

  .p-program__detailTitle {
    font-size: 1.375rem;
    line-height: 1.4546;
  }

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

  .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: 90px;
    border-radius: 48px;
  }

  .p-schedule__inner {
    width: 95%;
    max-width: 940px;
    padding-top: 91px;
  }

  .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-talent {
    padding-top: 110px;
  }

  .p-talent__cont {
    padding-top: 46px;
  }

  .p-talent__item {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-talent__item + .p-talent__item {
    margin-top: 24px;
  }

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

  .p-talent__image {
    width: 140px;
  }

  .p-talent__box {
    padding-left: 40px;
    padding-top: 0;
  }

  .p-talent__pro {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-talent__person {
    font-size: 1.625rem;
    line-height: 1.5385;
    padding-top: 6px;
    text-align: left;
  }

  .p-talent__text {
    font-size: 1rem;
    line-height: 1.625;
  }

  .p-talent__category {
    padding-top: 18px;
  }

  .p-talent__categoryItem + .p-talent__categoryItem {
    margin-left: 8px;
  }

  .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 #0669ff;
    -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: #0669ff;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .p-ttable__button:hover .toggle {
    background-color: #5bc8ff;
    -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;
  }
}

@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;
  }

  ._sp-only {
    display: block;
  }
}

@media print, screen and (min-width: 1024px) {
  .l-header__logo a {
    width: 242px;
  }

  ._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;
  }
}
