@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: #0d2d3b;
  overflow-x: hidden;
  font-size: 0.875rem;
  line-height: 2.1429;
  background-color: #069ce0;
  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: 48px;
  padding-top: 60px;
}

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

.l-footer__notesItem {
  color: #fff;
  padding-left: 1em;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.5714;
}

.l-footer__notesItem + .l-footer__notesItem {
  margin-top: 8px;
}

.l-footer__notesItem::before {
  position: absolute;
  content: "※";
  left: 0;
}

.l-footer__notesItem a {
  color: #fff;
  text-decoration: underline;
  display: inline-block;
}

.l-footer__list {
  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-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.l-footer__item {
  width: 172px;
}

.l-footer__item a {
  color: #fff;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.3333;
}

.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: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-gnav__link .en {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #069ce0;
  font-size: 0.75rem;
  line-height: 1;
  margin-top: 8px;
}

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

.l-inner {
  width: calc((352 / 400) * 100%);
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.l-header__item a {
  color: #0d2d3b;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding: 0 12px;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 500;
}

.l-header__item a:hover {
  color: #069ce0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

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

.l-header__form {
  margin-top: 10px;
}

.l-header__form a {
  color: #fff;
  padding: 6px 13px;
  font-weight: bold;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.l-header__form a:hover::before {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-header__form a:hover::after {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-header__form a::before,
.l-header__form a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.l-header__form a::before {
  background-image: linear-gradient(118deg, #f97c00, #ffa70e);
}

.l-header__form a::after {
  background-image: linear-gradient(118deg, #ffa70e, #f97c00);
  opacity: 0;
}

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

.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(45deg);
  transform: rotate(45deg);
  top: 16px;
}

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

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

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

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

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

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

.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 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.c-button__link {
  width: 360px;
  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;
  position: relative;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  border-radius: 4px;
  overflow: hidden;
}

.c-button__link:hover::before {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-button__link:hover::after {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-button__link::before,
.c-button__link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.c-button__link::before {
  background-image: linear-gradient(118deg, #f97c00, #ffa70e);
}

.c-button__link::after {
  background-image: linear-gradient(118deg, #ffa70e, #f97c00);
  opacity: 0;
}

.c-line {
  position: relative;
}

.c-line::before {
  position: absolute;
  content: "";
  background-image: url(/saitama/image/bg_line_sp.png);
  background-position: center center;
  background-size: 100px 25px;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

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

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

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

.c-title2 .en {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  line-height: 1.0714;
  color: #069ce0;
  letter-spacing: -0.03em;
}

.c-title2 .ja {
  font-size: 0.75rem;
  line-height: 1.6667;
  color: #0d2d3b;
  margin-top: 10px;
}

.c-title3 {
  font-size: 1.625rem;
  line-height: 1.2308;
  font-weight: bold;
  text-align: center;
  color: #069ce0;
}

.c-title3.-white {
  color: #fff;
}

.c-title4 span {
  background: -webkit-gradient(linear, left top, right top, from(#0041c4), to(#009fee));
  background: linear-gradient(90deg, #0041c4, #009fee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.625rem;
  line-height: 1;
  font-weight: bold;
  position: relative;
}

.c-title4 span::before {
  position: absolute;
  content: "";
  background-image: url(/saitama/image/accent_text.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 115px;
  height: 50px;
  right: -10px;
  top: -14px;
}

.p-access {
  padding-top: 83px;
  padding-bottom: 78px;
  background-color: #f2f7f9;
}

.p-access__main {
  padding-top: 42px;
}

.p-access__info {
  background-color: #fff;
  padding: 26px;
}

.p-access__list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 24px;
  margin-top: 16px;
}

.p-access__item {
  background-color: #fff;
  padding: 26px;
}

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

.p-access__item p {
  font-size: 1rem;
  line-height: 1.625;
  color: #566c76;
}

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

.p-access__item li {
  font-size: 1rem;
  line-height: 1.625;
  color: #566c76;
  position: relative;
  padding-left: 1em;
}

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

.p-access__title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: bold;
  padding-bottom: 16px;
}

.p-access__notes {
  font-size: 0.875rem;
  line-height: 1.5714;
  color: #566c76;
  margin-top: 6px;
  margin-bottom: 24px;
}

.p-access__map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}

.p-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-concept {
  padding-top: 64px;
  padding-bottom: 74px;
  background-image: url(/saitama/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: 82px;
  padding-bottom: 88px;
}

.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: 50px;
  background-color: #f2f7f9;
}

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

.p-faq__row {
  background-color: #fff;
  border: 1px solid #dde8ed;
}

.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: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  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: "";
  content: "q";
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0d2d3b;
  top: 12px;
}

.p-faq__row > dd::before {
  content: "";
  content: "a";
  left: 26px;
  top: 6px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: #069ce0;
}

.p-faq__question {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 22px 16px 10px 53px;
}

.p-faq__text {
  font-size: 0.8125rem;
  line-height: 2;
  font-weight: 500;
  margin-left: 0;
  padding: 5px 13px 28px 55px;
  color: #000;
}

.p-features {
  padding-top: 78px;
  padding-bottom: 40px;
  background-color: #f2f7f9;
}

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

.p-features__detailItem {
  position: relative;
  counter-increment: title;
  background-color: #069ce0;
}

.p-features__detailItem + .p-features__detailItem {
  margin-top: 46px;
}

.p-features__detailItem::before {
  position: absolute;
  content: "0" counter(title);
  background: -webkit-gradient(linear, left top, right top, from(#ffa347), to(#ffd737));
  background: linear-gradient(90deg, #ffa347, #ffd737);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Bilbo Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
  top: -42px;
  left: -27px;
  font-size: 4.5rem;
  line-height: 1;
  padding: 10px;
}

.p-features__detailTitle {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding-top: 35px;
}

.p-features__detailImage {
  padding-top: 6px;
}

.p-features__detailText {
  font-size: 0.875rem;
  line-height: 1.5714;
  font-weight: 500;
  margin-top: auto;
  background-color: #fff;
  padding: 24px;
}

.p-features__rec {
  padding-top: 84px;
}

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

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

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

.p-features__recItem {
  border: 1px solid #dde8ed;
  padding: 15px 10px 14px 56px;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  background-color: #fff;
}

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

.p-features__recItem::before {
  position: absolute;
  content: "";
  background-image: url(/saitama/image/icon_check.svg);
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.p-intro {
  padding-top: 70px;
  padding-bottom: 80px;
}

.p-intro__title {
  width: calc((280 / 352) * 100%);
}

.p-intro__text {
  color: #fff;
  font-size: 1rem;
  line-height: 2;
  margin-top: 28px;
}

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

.p-mv {
  height: calc(606 / 400 * 100vw);
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}

.p-mv__image {
  position: absolute;
  right: 0;
  z-index: -1;
  overflow: hidden;
  top: calc(16 / 400 * 100vw);
  height: calc(264 / 400 * 100vw);
  width: calc(384 / 400 * 100vw);
}

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

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

.p-mv__accent {
  position: absolute;
  top: calc(24 / 400 * 100vw);
  right: calc(8 / 400 * 100vw);
  width: calc(115 / 400 * 100vw);
}

.p-mv__title {
  position: absolute;
  top: calc(216 / 400 * 100vw);
  left: calc(16 / 400 * 100vw);
  width: calc(368 / 400 * 100vw);
  opacity: 0;
}

.p-mv__box {
  opacity: 0;
}

.p-mv__info {
  position: absolute;
  top: calc(426 / 400 * 100vw);
  right: calc(16 / 400 * 100vw);
  width: calc(368 / 400 * 100vw);
}

.p-mv__button {
  position: absolute;
  top: calc(516 / 400 * 100vw);
  right: calc(21 / 400 * 100vw);
}

.p-mv__button .c-button__link {
  font-size: calc(16 / 400 * 100vw);
  width: calc(368 / 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-offer {
  padding-top: 78px;
  padding-bottom: 76px;
}

.p-offer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  padding-top: 40px;
}

.p-offer__title {
  font-size: 1.125rem;
  line-height: 1.4444;
  font-weight: bold;
  color: #fff;
  padding-top: 30px;
  text-align: center;
}

.p-offer__button {
  padding-top: 40px;
  text-align: center;
}

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

.p-offer__item {
  font-size: 0.875rem;
  line-height: 1.5714;
  color: #fff;
}

.p-outline {
  padding-top: 46px;
  background-color: #f2f7f9;
}

.p-outline__wrapper {
  background-color: #fff;
  border: 1px solid #dde8ed;
  margin-top: 32px;
}

.p-outline__desc {
  padding: 10px 25px 34px;
}

.p-outline__row {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dde8ed;
  position: relative;
}

.p-outline__row::before {
  position: absolute;
  content: "";
  background-color: #069ce0;
  width: 64px;
  height: 1px;
  left: 0;
  bottom: -1px;
}

.p-outline__dlist {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
  width: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-outline__text {
  margin-left: 0;
  font-weight: 500;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 6px;
  font-weight: bold;
  color: #566c76;
}

.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-programs {
  padding-top: 66px;
  padding-bottom: 78px;
  background-color: #f2f7f9;
}

.p-programs__inner {
  position: relative;
}

.p-programs__notes {
  color: #566c76;
  font-size: 0.875rem;
  line-height: 1.4286;
  padding-top: 32px;
}

.p-programs__cont {
  padding-top: 40px;
}

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

.p-programs__item {
  background-color: #fff;
  border: 1px solid #dde8ed;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-programs__item + .p-programs__item {
  margin-top: 32px;
}

.p-programs__pro {
  background-color: #069ce0;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4286;
  padding: 5px 14px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

.p-programs__box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  padding: 26px 24px;
}

.p-programs__person {
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.4546;
}

.p-programs__text {
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 20px;
  color: #566c76;
}

.p-programs__category {
  padding-top: 18px;
  border-top: 1px solid #dde8ed;
  position: relative;
  margin-top: 34px;
}

.p-programs__category::before {
  position: absolute;
  content: "";
  background-color: #069ce0;
  width: 64px;
  height: 1px;
  top: -1px;
  left: 0;
}

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

.p-programs__categoryItem {
  padding: 4px 20px;
  font-size: 0.875rem;
  line-height: 1.5714;
  color: #0d2d3b;
  position: relative;
}

.p-programs__categoryItem::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #069ce0;
  top: 14px;
  left: 0;
}

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

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

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

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

.p-programs__limitedItem + .p-programs__limitedItem {
  margin-top: 40px;
  position: relative;
}

.p-programs__limitedItem + .p-programs__limitedItem::before {
  position: absolute;
  content: "";
  background-image: url(/saitama/image/icon_plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 56px;
  height: 56px;
  z-index: 1;
  top: -48px;
  left: 0;
  right: 0;
  margin: auto;
}

.p-programs__limitedInfo {
  background-color: #069ce0;
}

.p-programs__limitedText {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
  padding-top: 24px;
}

.p-programs__limitedDetail {
  background-color: #fff;
  padding: 24px;
}

.p-programs__limitedDetail p {
  font-size: 0.875rem;
  line-height: 1.5714;
}

.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(#ffa347), to(#ffd737));
  background: linear-gradient(90deg, #ffa347, #ffd737);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Marcellus", 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, #f97c00, #ffa70e);
  width: calc(100% - 114px);
  height: 1px;
}

.p-relation__label::after {
  content: "0" counter(label);
  background: -webkit-gradient(linear, left top, right top, from(#ffa347), to(#ffd737));
  background: linear-gradient(90deg, #ffa347, #ffd737);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Marcellus", 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-speakers {
  padding-top: 82px;
  background-color: #f2f7f9;
  padding-bottom: 40px;
}

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

.p-speakers__title .c-title2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-speakers__main {
  padding-top: 36px;
}

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

.p-speakers__item {
  border: 1px solid #dde8ed;
  background-color: #fff;
}

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

.p-speakers__person {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  font-size: 1.125rem;
  line-height: 1.5556;
  font-weight: bold;
  padding: 17px 16px 0;
}

.p-speakers__info {
  font-size: 0.875rem;
  line-height: 1.5714;
  padding: 14px;
}

.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: "Marcellus", 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: #069ce0;
  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: "Marcellus", 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: "Marcellus", 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: "Marcellus", 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: #069ce0;
  position: absolute;
  font-family: "Marcellus", 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: #069ce0;
  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: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.p-ttable__info .time {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 900;
  font-family: "Marcellus", 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: 80px;
    padding-bottom: 80px;
  }

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

  .l-footer__notes {
    width: calc(632 / 1280 * 100%);
  }

  .l-footer__list {
    max-width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -16px;
    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;
    width: 146px;
    text-align: right;
  }

  .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-inner {
    width: 96%;
    max-width: 1280px;
  }

  .l-header {
    top: 0;
    height: 80px;
  }

  .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: 20px 12px 18px 2px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 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;
    width: 100%;
  }

  .l-header__form {
    margin-top: 0;
  }

  .l-header__form a {
    padding: 6px 20px;
  }

  .l-header__gnav {
    height: auto;
  }

  .c-button__link {
    font-size: 1.5rem;
    line-height: 1;
    height: 76px;
    max-width: 578px;
  }

  .c-line::before {
    background-image: url(/saitama/image/bg_line.png);
    background-size: 240px 10px;
  }

  .c-title2 {
    font-size: 3.125rem;
    line-height: 1.5;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }

  .c-title2 .en {
    font-size: 6.25rem;
    line-height: 1;
  }

  .c-title2 .ja {
    font-size: 1rem;
    line-height: 1;
    margin-left: 22px;
    margin-top: 0;
  }

  .c-title3 {
    font-size: 2.5rem;
    line-height: 1.325;
  }

  .c-title4 span {
    font-size: 2.5rem;
    line-height: 1;
  }

  .c-title4 span::before {
    width: 177px;
    height: 77px;
  }

  .p-access {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .p-access__inner {
    max-width: 1120px;
  }

  .p-access__main {
    padding-top: 36px;
  }

  .p-access__info {
    padding: 38px;
  }

  .p-access__list {
    display: -ms-grid;
    display: grid;
    gap: 40px;
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 32px;
    margin-top: 24px;
  }

  .p-access__item {
    padding: 38px;
  }

  .p-access__item + .p-access__item {
    margin-top: 0;
  }

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

  .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: 160px;
    padding-bottom: 140px;
  }

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

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

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

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

  .p-faq__inner .c-title2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-faq__inner .c-title2 .ja {
    margin-left: 0;
    margin-top: 20px;
  }

  .p-faq__desc {
    padding-top: 0;
    width: 880px;
    margin-left: auto;
  }

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

  .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 > dt::before {
    left: 50px;
    top: 9px;
  }

  .p-faq__row > dd::before {
    left: 51px;
    top: 3px;
  }

  .p-faq__question {
    font-size: 1.5rem;
    line-height: 1.4167;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    padding: 40px 54px 28px 88px;
  }

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

  .p-features {
    padding-top: 130px;
    padding-bottom: 80px;
  }

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

  .p-features__detailItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-features__detailItem + .p-features__detailItem {
    margin-top: 0;
  }

  .p-features__detailItem::before {
    font-size: 6rem;
    line-height: 1;
    top: -48px;
    left: -47px;
  }

  .p-features__detailTitle {
    font-size: 1.5rem;
    line-height: 1.4167;
    padding-top: 42px;
  }

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

  .p-features__detailText {
    font-size: 1rem;
    line-height: 1.625;
    margin-top: 0;
    padding: 32px;
    height: 100%;
  }

  .p-features__rec {
    padding-top: 94px;
  }

  .p-features__recBox {
    padding-top: 42px;
  }

  .p-features__recItem {
    font-size: 1.375rem;
    line-height: 1.5455;
    padding: 18px 15px 19px 77px;
  }

  .p-features__recItem::before {
    width: 36px;
    height: 36px;
    left: 20px;
  }

  .p-intro {
    padding-top: 100px;
    padding-bottom: 160px;
  }

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

  .p-intro__title {
    width: calc((443 / 1280) * 100%);
  }

  .p-intro__text {
    font-size: 1.25rem;
    line-height: 2;
    width: calc((640 / 1280) * 100%);
    margin-left: auto;
    margin-top: 0;
  }

  .p-mv {
    height: calc(670 / 1440 * 100vw);
    margin-top: 80px;
    padding-top: calc(24 / 1440 * 100vw);
  }

  .p-mv__image {
    top: calc(24 / 1440 * 100vw);
    height: calc(349 / 1440 * 100vw);
    width: calc(1416 / 1440 * 100vw);
  }

  .p-mv__copy {
    width: calc(409 / 1440 * 100vw);
    top: calc(56 / 1440 * 100vw);
    left: calc(24 / 1440 * 100vw);
  }

  .p-mv__accent {
    top: calc(48 / 1440 * 100vw);
    right: calc(24 / 1440 * 100vw);
    width: calc(200 / 1440 * 100vw);
  }

  .p-mv__title {
    top: calc(242 / 1440 * 100vw);
    left: calc(24 / 1440 * 100vw);
    width: calc(670 / 1440 * 100vw);
  }

  .p-mv__info {
    top: calc(354 / 1440 * 100vw);
    right: calc(24 / 1440 * 100vw);
    width: calc(525 / 1440 * 100vw);
  }

  .p-mv__button {
    top: calc(472 / 1440 * 100vw);
    right: calc(24 / 1440 * 100vw);
  }

  .p-mv__button .c-button__link {
    width: calc(525 / 1440 * 100vw);
    font-size: calc(24 / 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-offer {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .p-offer__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 65px;
  }

  .p-offer__box {
    width: calc((576 / 1280) * 100%);
  }

  .p-offer__title {
    font-size: 1.75rem;
    line-height: 1.4286;
    padding-top: 36px;
  }

  .p-offer__button {
    padding-top: 26px;
  }

  .p-offer__button .c-button {
    width: 100%;
  }

  .p-offer__button .c-button__link {
    width: 100%;
  }

  .p-offer__image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 1;
    margin-left: 40px;
  }

  .p-outline {
    padding-top: 96px;
    padding-bottom: 0;
  }

  .p-outline__wrapper {
    margin: 44px auto 0;
    max-width: 1120px;
    width: 95%;
  }

  .p-outline__desc {
    padding: 38px 90px 70px;
  }

  .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: 32px;
    padding-bottom: 32px;
  }

  .p-outline__row::before {
    width: 96px;
  }

  .p-outline__dlist {
    font-size: 1.125rem;
    line-height: 1.5556;
    width: 172px;
  }

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

  .p-programs {
    padding-top: 124px;
    padding-bottom: 120px;
  }

  .p-programs__notes {
    font-size: 1rem;
    line-height: 1.25;
    position: absolute;
    right: 0;
    top: 68px;
    padding-top: 0;
  }

  .p-programs__cont {
    padding-top: 84px;
  }

  .p-programs__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-programs__item + .p-programs__item {
    margin-top: 30px;
  }

  .p-programs__pro {
    font-size: 1rem;
    line-height: 1.25;
    padding: 5px 14px;
  }

  .p-programs__box {
    padding: 60px 80px;
  }

  .p-programs__person {
    font-size: 2.25rem;
    line-height: 1.2778;
    padding-top: 6px;
  }

  .p-programs__text {
    font-size: 1rem;
    line-height: 1.625;
    padding-top: 32px;
  }

  .p-programs__category {
    padding-top: 38px;
    margin-top: 42px;
  }

  .p-programs__category::before {
    width: 90px;
  }

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

  .p-programs__image {
    width: 408px;
  }

  .p-programs__limited {
    padding-top: 155px;
  }

  .p-programs__limitedBox {
    padding-top: 52px;
  }

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

  .p-programs__limitedItem {
    width: 536px;
  }

  .p-programs__limitedItem + .p-programs__limitedItem {
    margin-top: 0;
    margin-left: 48px;
  }

  .p-programs__limitedItem + .p-programs__limitedItem::before {
    width: 96px;
    height: 96px;
    top: 0;
    bottom: 0;
    right: inherit;
    left: -73px;
  }

  .p-programs__limitedInfo {
    padding-bottom: 8px;
  }

  .p-programs__limitedText {
    font-size: 2rem;
    line-height: 1.5;
    padding-top: 40px;
  }

  .p-programs__limitedDetail {
    padding: 28px 34px;
  }

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

  .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 #566c76;
    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-speakers {
    padding-top: 123px;
    padding-bottom: 60px;
  }

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

  .p-speakers__title .c-title2 .ja {
    margin-top: 40px;
    margin-left: 0;
  }

  .p-speakers__main {
    width: calc(800 / 1280 * 100%);
    padding-top: 0;
  }

  .p-speakers__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-speakers__image {
    width: 216px;
  }

  .p-speakers__person {
    padding: 0 22px;
    font-size: 1.5rem;
    line-height: 1.3333;
  }

  .p-speakers__info {
    padding: 23px;
  }

  .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 #069ce0;
    -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: #069ce0;
    -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 print, screen and (min-width: 321px) {
  ._se {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  ._tablet-only {
    display: block;
  }
}

@media print, screen and (min-width: 1024px) {
  ._pc-only {
    display: block;
  }
}

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