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

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

  100% {
    opacity: 0;
    border: 1px solid #c74f23;
    -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-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  min-width: 320px;
  color: #1a2d59;
  overflow-x: hidden;
  font-size: 0.875rem;
  line-height: 2.1429;
  background-color: #fff;
  counter-reset: faqTitle faqText;
}

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

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

figure {
  margin: 0;
}

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

p {
  margin: 0;
}

button:hover {
  cursor: pointer;
}

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

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

.l-inner {
  width: calc((340 / 390) * 100%);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.l-footer {
  background-color: #1a2d59;
  padding-bottom: 54px;
  margin-top: -1px;
  position: relative;
  z-index: 1;
}

.l-footer__list {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.l-footer__item {
  width: 120px;
  text-align: center;
}

.l-footer__link {
  display: block;
  color: #fff;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 500;
  padding: 7px 0;
}

.l-footer__copyright p {
  font-size: 0.625rem;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding-top: 12px;
}

.l-gnav__inner {
  width: calc((340 / 390) * 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: 58px;
}

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

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

.l-gnav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #1a2d59;
  position: relative;
  padding-left: 20px;
}

.l-gnav__link::before {
  position: absolute;
  content: "";
  background-image: url(/image/hdl_icon.svg);
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -1px;
  top: 15px;
}

.l-gnav__textEn {
  font-family: 'Unbounded', cursive;
  font-size: 1.625rem;
  line-height: 1;
  font-weight: 500;
  display: block;
}

.l-gnav__textJa {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 900;
  margin-left: 12px;
  display: block;
}

.l-header {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 5;
}

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

.l-header__main {
  display: none;
}

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

.l-header__item:not(:first-child) .l-header__link {
  background-image: url(/image/header_line.svg);
  background-size: 2px 18px;
  background-position: left center;
  background-repeat: no-repeat;
}

.l-header__link span {
  font-family: 'Unbounded', cursive;
}

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

.l-header__button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1a2d59;
  position: relative;
  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: 18px;
}

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

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

.l-header__buttonLine {
  width: 16px;
  height: 2px;
  display: block;
  position: absolute;
  border-radius: 50px;
  background-color: #fff;
  -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;
  right: 11px;
}

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

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

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

.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: #fff6eb;
  z-index: 4;
}

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

.l-hipro .mktoForm * {
  font-family: 'Noto Sans JP', sans-serif;
}

.l-hipro .mktoForm input[type=text],
.l-hipro .mktoForm input[type=url],
.l-hipro .mktoForm input[type=email],
.l-hipro .mktoForm input[type=tel],
.l-hipro .mktoForm input[type=number],
.l-hipro .mktoForm input[type=date],
.l-hipro .mktoForm select.mktoField,
.l-hipro .mktoForm textarea.mktoField {
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  padding: 8px 12px 10px;
}

.c-button.l-header__application .c-button__link {
  font-size: 13px !important;
  width: 178px;
}

.c-button.-subprimary .c-button__link {
  background-color: #c74f23;
  color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.c-button.-white .c-button__link {
  background-color: #fff;
  color: #c74f23;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.c-button.-white .c-button__link::before,
.c-button.-white .c-button__link::after {
  width: 22px;
  height: 22px;
}

.c-button.-white .c-button__link::before {
  background-image: url(/image/arrow_primary1.svg);
  opacity: 0;
}

.c-button.-white .c-button__link::after {
  opacity: 1;
}

.c-button.p-fixed__button .c-button__link {
  font-size: 12px !important;
}

.c-button .mktoButton {
  background-color: #1a2d59 !important;
  color: #fff !important;
  width: 282px !important;
  font-size: 20px !important;
}

.c-button .mktoButton::before,
.c-button .mktoButton::after {
  width: 26px !important;
  height: 26px !important;
}

.c-button .mktoButton::before {
  background-image: url(/image/arrow_primary1.svg) !important;
}

.c-button .mktoButton::after {
  background-image: url(/image/arrow_primary2.svg) !important;
}

.c-button__link,
.c-button .mktoButton {
  font-weight: 900;
  padding: 18px 10px 18px 20px !important;
  border-radius: 50px;
  position: relative;
  background-color: #c74f23;
  color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background-image: none !important;
  font-size: 1.125rem;
  line-height: 1;
}

.c-button__link::before,
.c-button__link::after,
.c-button .mktoButton::before,
.c-button .mktoButton::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-button__link::before,
.c-button .mktoButton::before {
  background-image: url(/image/arrow_subprimary1.svg);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-button__link::after,
.c-button .mktoButton::after {
  background-image: url(/image/arrow_subprimary2.svg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.mktoForm .mktoButtonWrap.mktoInset.-subprimary .mktoForm .mktoButtonWrap.mktoInset__link {
  background-color: #c74f23;
  color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.mktoForm .mktoButtonWrap.mktoInset.-white .mktoForm .mktoButtonWrap.mktoInset__link {
  background-color: #fff;
  color: #c74f23;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mktoForm .mktoButtonWrap.mktoInset.-white .mktoForm .mktoButtonWrap.mktoInset__link::before,
.mktoForm .mktoButtonWrap.mktoInset.-white .mktoForm .mktoButtonWrap.mktoInset__link::after {
  width: 26px;
  height: 26px;
}

.mktoForm .mktoButtonWrap.mktoInset.-white .mktoForm .mktoButtonWrap.mktoInset__link::before {
  background-image: url(/image/arrow_primary1.svg);
  opacity: 0;
}

.mktoForm .mktoButtonWrap.mktoInset.-white .mktoForm .mktoButtonWrap.mktoInset__link::after {
  opacity: 1;
}

.mktoForm .mktoButtonWrap.mktoInset .mktoButton {
  background-color: #1a2d59 !important;
  color: #fff !important;
  width: 282px !important;
  font-size: 20px !important;
}

.mktoForm .mktoButtonWrap.mktoInset .mktoButton::before,
.mktoForm .mktoButtonWrap.mktoInset .mktoButton::after {
  width: 26px !important;
  height: 26px !important;
}

.mktoForm .mktoButtonWrap.mktoInset .mktoButton::before {
  background-image: url(/image/arrow_primary1.svg) !important;
}

.mktoForm .mktoButtonWrap.mktoInset .mktoButton::after {
  background-image: url(/image/arrow_primary2.svg) !important;
}

.mktoForm .mktoButtonWrap.mktoInset__link,
.mktoForm .mktoButtonWrap.mktoInset .mktoButton {
  font-weight: 900;
  padding: 18px 10px 18px 20px !important;
  border-radius: 50px;
  position: relative;
  background-color: #c74f23;
  color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background-image: none !important;
  font-size: 1.125rem;
  line-height: 1;
}

.mktoForm .mktoButtonWrap.mktoInset__link::before,
.mktoForm .mktoButtonWrap.mktoInset__link::after,
.mktoForm .mktoButtonWrap.mktoInset .mktoButton::before,
.mktoForm .mktoButtonWrap.mktoInset .mktoButton::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mktoForm .mktoButtonWrap.mktoInset__link::before,
.mktoForm .mktoButtonWrap.mktoInset .mktoButton::before {
  background-image: url(/image/arrow_subprimary1.svg);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.mktoForm .mktoButtonWrap.mktoInset__link::after,
.mktoForm .mktoButtonWrap.mktoInset .mktoButton::after {
  background-image: url(/image/arrow_subprimary2.svg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

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

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

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

.c-hdl__main {
  font-size: 2rem;
  line-height: 1.3125;
  font-weight: 500;
  font-family: 'Unbounded', cursive;
  color: #1a2d59;
  position: relative;
  display: inline-block;
}

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

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

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

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

.c-hdl2__main {
  color: #c74f23;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  display: block;
  padding-bottom: 12px;
  font-family: 'Unbounded', cursive;
}

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

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

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

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

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

.c-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

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

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

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

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

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

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

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

.c-modal__main > .title {
  color: #c74f23;
  font-family: 'Unbounded', cursive;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  padding-top: 33px;
}

.c-modal__main > .commingsoon {
  color: #c74f23;
  font-family: 'Unbounded', cursive;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

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

.c-modal__closeButton button {
  color: #959595;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  padding: 5px 28px;
  border-radius: 20px;
  background-color: transparent;
  text-transform: uppercase;
  font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid #959595;
  letter-spacing: 0.1em;
}

.c-modal__info .time {
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  font-family: 'Unbounded', cursive;
  position: relative;
  padding-left: 19px;
}

.c-modal__info .time::before {
  position: absolute;
  content: "";
  background-color: #f6835b;
  width: 11px;
  height: 11px;
  left: 0;
  top: 5px;
  border-radius: 50%;
}

.c-modal__title {
  font-size: 1.125rem;
  line-height: 1.4444;
  font-weight: 900;
}

.c-modal__subtitle {
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1;
  position: relative;
  padding-left: 20px;
  margin-top: 26px;
}

.c-modal__subtitle::before {
  position: absolute;
  content: "";
  background-image: url(/image/hdl_icon.svg);
  width: 15px;
  height: 15px;
  left: 0;
  background-size: contain;
}

.c-modal__text {
  font-size: 0.75rem;
  line-height: 1.6667;
  font-weight: 500;
  padding-top: 12px;
}

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

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

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

.c-modal__item.-commingsoon {
  color: #1a2d59;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: bold;
  font-family: 'Unbounded', cursive;
}

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

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

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

.c-modal__figure::before {
  position: absolute;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1;
  border-radius: 50px;
  left: 127px;
  top: 7px;
  font-family: 'Unbounded', cursive;
  text-align: center;
  padding: 4px 6px;
  min-width: 82px;
}

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

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

.c-modal__figure.-panelist::before {
  background-color: #5b99d3;
  content: "panelist";
}

.c-modal__desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  border: 1px solid #1a2d59;
  margin-left: 20px;
  border-radius: 19px;
  max-width: 498px;
  padding: 40px 20px;
  display: contents;
}

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

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

.c-modal__intro .position {
  font-size: 0.625rem;
  line-height: 1.6;
  font-weight: 600;
}

.c-modal__intro .name {
  font-size: 1.125rem;
  line-height: 1.4444;
  font-weight: bold;
}

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

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

.c-modal__detail p {
  font-size: 0.625rem;
  line-height: 1.6;
}

.index-contact a {
  height: 768px;
  font-size: 6.875rem;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #1a2d59;
  font-family: 'Unbounded', cursive;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

.index-intro .title {
  font-size: 1.625rem;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  font-family: 'Unbounded', cursive;
}

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

.index-kv {
  height: 100vh;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.index-news .time {
  font-size: 0.875rem;
  line-height: 1;
  font-family: 'Unbounded', cursive;
  letter-spacing: 0.05em;
  width: 160px;
  margin-top: 10px;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.branding-wrap .brand > .title {
  font-size: 1.625rem;
  line-height: 1;
  color: #403c33;
  font-family: 'Unbounded', cursive;
  letter-spacing: 0.03em;
}

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

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

.p-about {
  background-color: #ffe4c3;
  padding-top: 10px;
  padding-bottom: 42px;
  position: relative;
  z-index: 1;
}

.p-about::before {
  position: absolute;
  content: "";
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  left: 0;
  height: 100px;
  top: -76px;
  background-image: url(/image/about_bg_sp.svg);
  z-index: -1;
}

.p-about__inner {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  width: calc((340 / 390) * 100%);
}

.p-about__title {
  text-align: center;
  color: #c74f23;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 900;
}

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

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

.p-about__item .title {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 900;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-about__box {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 28px 26px;
  margin-top: -46px;
  height: calc(100% - 170px);
}

.p-about__box .subtitle {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}

.p-about__box .detail {
  font-size: 0.8125rem;
  line-height: 1.6923;
  font-weight: 500;
}

.p-accept {
  margin-top: -80px;
  position: relative;
  height: calc((400 / 390) * 100vw);
  background-image: url(/image/bg_noise.png);
  background-size: 400px 400px;
  background-repeat: repeat;
}

.p-accept::before {
  position: absolute;
  content: "";
  background-image: url(/image/accept_bg_sp.svg);
  height: calc((100 / 390) * 100vw);
  width: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
}

.p-accept__inner {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  position: relative;
  padding-top: 50px;
}

.p-accept__box {
  background-image: url(/image/accept_illust_sp.svg);
  background-size: 366px 213px;
  background-position: center center;
  width: 366px;
  height: 213px;
}

.p-accept__title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  line-height: 1.5625;
  font-weight: bold;
  padding-bottom: 24px;
  padding-top: 16px;
}

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

.p-accept__button .c-button__link {
  font-size: 1.25rem;
  line-height: 1;
  width: 282px;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

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

.p-access__inner {
  z-index: 1;
}

.p-access__wrapper {
  margin-top: 30px;
}

.p-access__wrapper .text {
  font-size: 0.75rem;
  line-height: 1.6667;
  margin-bottom: 8px;
}

.p-access__wrapper .map {
  height: 0;
  overflow: hidden;
  padding-bottom: calc((227 / 340) * 100%);
  position: relative;
  border-radius: 18px;
}

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

.p-application {
  padding-top: 54px;
  padding-bottom: 128px;
}

.p-concept {
  background-color: #f8ebdb;
  padding-top: 30px;
  padding-bottom: 103px;
  position: relative;
}

.p-concept::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  background-image: url(/image/concept_bg_sp.svg);
  background-size: cover;
  background-position: center;
  top: -100px;
  left: 0;
}

.p-concept__illust {
  position: absolute;
}

.p-concept__illust.-cloud {
  width: 77px;
  top: -45px;
}

.p-concept__illust.-star1 {
  width: 13px;
  left: 23px;
  top: -32px;
}

.p-concept__illust.-illust1 {
  width: 67px;
  bottom: -19px;
  right: -8px;
}

.p-concept__illust.-illust2 {
  width: 58px;
  bottom: -19px;
  left: -12px;
}

.p-concept__inner {
  width: calc(340 / 390 * 100%);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.p-concept__main {
  position: relative;
  z-index: 1;
}

.p-concept__main > .title {
  font-size: 1.625rem;
  line-height: 1.5385;
  font-weight: 900;
  padding-bottom: 74px;
  position: relative;
}

.p-concept__main > .title::before {
  position: absolute;
  content: "";
  background-color: #c74f23;
  border-radius: 50px;
  left: 0;
  bottom: 30px;
  width: 67px;
  height: 4px;
}

.p-concept__main > .text {
  font-size: 0.75rem;
  line-height: 2.25;
  font-weight: 500;
}

.p-concept__image {
  width: 213px;
  position: absolute;
  top: 52px;
  right: -20px;
}

.p-faq {
  padding-top: 14px;
  padding-bottom: 40px;
  background-color: #f2ede6;
  position: relative;
}

.p-faq::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  background-image: url(/image/faq_bg_sp.svg);
  left: 0;
  top: -99px;
  background-size: cover;
  background-position: center;
}

.p-faq__inner > .c-hdl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
}

.p-faq__wrapper {
  padding-top: 22px;
}

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

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

.p-faq__row > dt::before,
.p-faq__row dd::before {
  position: absolute;
  font-family: 'Unbounded', cursive;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  left: 20px;
  top: 16px;
  text-transform: uppercase;
}

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

.p-faq__row > dt::before {
  content: "";
  color: #1a2d59;
  counter-increment: faqTitle 1;
  content: "q" counter(faqTitle);
}

.p-faq__row > dt::after {
  background-color: #1a2d59;
}

.p-faq__row > dd::before {
  content: "";
  color: #c74f23;
  counter-increment: faqText 1;
  content: "a" counter(faqText);
  left: 20px;
  top: 11px;
}

.p-faq__row > dd::after {
  background-color: #c74f23;
  left: 19px;
  top: 27px;
}

.p-faq__title {
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 26px 11px 51px;
  font-size: 0.875rem;
  line-height: 1.7143;
  font-weight: bold;
}

.p-faq__text {
  font-size: 0.75rem;
  line-height: 1.8333;
  font-weight: 500;
  padding-left: 48px;
  margin-left: 0;
  padding-top: 10px;
}

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

.p-fixed {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

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

.p-fixed__button {
  width: 182px;
  margin-left: auto;
  margin-right: auto;
}

.p-fixed__button .c-button__link {
  padding: 16px 35px 16px 20px !important;
}

.p-form {
  background-color: #fff6eb;
  padding-top: 100px;
  padding-bottom: 180px;
}

.p-form__wrapper {
  margin-top: 30px;
  background-color: #fbf8f4;
  border-radius: 12px;
  padding-top: 30px;
  padding-bottom: 35px;
}

.p-form__wrapper > .notes {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6667;
  font-weight: 500;
}

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

.p-form__form form {
  max-width: 760px;
  width: 94% !important;
  margin-left: auto;
  margin-right: auto;
}

.p-form__form .mktoForm .mktoRequiredField .mktoAsterix {
  float: none;
  display: inline-block !important;
}

.p-form__form .mktoForm .mktoGutter {
  height: 0;
}

.p-form__form .mktoForm * {
  color: #1a2d59;
  font-family: "Noto Sans JP", sans-serif !important;
}

.p-form__form .mktoForm a {
  display: inline-block;
  text-decoration: underline;
}

.p-form__form .mktoForm input[type=text],
.p-form__form .mktoForm input[type=url],
.p-form__form .mktoForm input[type=email],
.p-form__form .mktoForm input[type=tel],
.p-form__form .mktoForm input[type=number],
.p-form__form .mktoForm input[type=date],
.p-form__form .mktoForm select.mktoField,
.p-form__form .mktoForm textarea.mktoField {
  color: #1a2d59;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 600;
  height: 46px;
}

.p-form__form .mktoForm .mktoRadioList > label,
.p-form__form .mktoForm .mktoCheckboxList > label {
  color: #1a2d59;
  font-size: 0.875rem;
  line-height: 1.4286;
  font-weight: 600;
}

.p-form__form .mktoForm input[type=checkbox] + label::before,
.p-form__form .mktoForm input[type=radio] + label::before {
  font-size: 1rem;
  line-height: 1.25;
}

.p-form__form .mktoForm .mktoLabel {
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 600;
}

.p-form__form .mktoForm .privacy h2 {
  line-height: 1;
}

.p-form__form .mktoForm .privacy span {
  font-size: 1rem;
  line-height: 1.625;
}

.p-form__form .mktoForm .privacy a {
  display: inline-block;
}

.p-form__form .mktoForm .mktoButtonRow {
  padding-top: 40px;
  width: 100%;
  text-align: center;
}

.p-form__form .mktoForm .mktoButtonRow .mktoButtonWrap.mktoInset {
  margin-left: auto !important;
}

.p-instance {
  background-color: #ffe4c3;
  padding-bottom: 30px;
}

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

.p-instance__title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 900;
  color: #1a2d59;
  margin-left: 7px;
}

.p-instance__main {
  background-color: #1a2d59;
  border-radius: 20px;
  margin-top: 32px;
  padding-top: 48px;
  padding-bottom: 40px;
}

.p-instance__subtitle {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 900;
  color: #fff;
  position: relative;
  padding-bottom: 18px;
  text-align: center;
}

.p-instance__subtitle::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 250px;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 10px;
}

.p-instance__list {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(280 / 340 * 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.p-instance__item .category {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 900;
  padding-bottom: 14px;
}

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

.p-instance__item .pro {
  color: #fff;
  font-size: 0.625rem;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 9px;
}

.p-instance__item .name {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.7143;
  font-weight: 900;
}

.p-instance__more {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 900;
  font-family: 'Unbounded', cursive;
  text-align: center;
  padding-top: 26px;
}

.p-map {
  background-color: #ffe4c3;
  padding-top: 70px;
  padding-bottom: 152px;
}

.p-map__inner {
  width: calc(364 / 390 * 100%);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.p-map__inner .image {
  margin-top: 56px;
}

.p-map__title {
  font-size: 2.625rem;
  line-height: 1;
  font-weight: 900;
  color: #1a2d59;
  font-family: 'Unbounded', cursive;
  text-align: center;
}

.p-mv {
  background-color: #fff6eb;
  padding-bottom: 100px;
}

.p-mv__inner {
  background-image: url(/image/mv_sp.png);
  height: calc(700 / 390 * 100vw);
  background-size: contain;
  background-repeat: no-repeat;
}

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

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

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

.p-notes__item {
  position: relative;
  color: #1a2d59;
  font-size: 0.75rem;
  line-height: 1.5;
  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: 0;
  padding-bottom: 70px;
  background-color: #1a2d59;
  position: relative;
}

.p-outline::before {
  position: absolute;
  content: "";
  background-image: url(/image/outline_bg_sp.svg);
  width: 100%;
  height: calc((200 / 390) * 100%);
  top: -100px;
  left: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.p-outline__inner {
  z-index: 1;
  position: relative;
}

.p-outline__inner > .c-hdl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
}

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

.p-outline__row {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.p-outline__title {
  color: #fff;
  font-weight: 900;
  font-size: 0.8125rem;
  line-height: 1.6923;
  width: 130px;
}

.p-outline__text {
  margin-left: 0;
  color: #fff;
  font-weight: 400;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  font-size: 0.8125rem;
  line-height: 1.6923;
}

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

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

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

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

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

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

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

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

.p-session {
  background-color: #1a2d59;
  padding-top: 55px;
  padding-bottom: 123px;
  position: relative;
}

.p-session::before {
  position: absolute;
  background-image: url(/image/session_bg_sp.svg);
  width: 100%;
  height: calc((400 / 390) * 100vw);
  content: "";
  left: 0;
  top: calc((-30 / 390) * 100vw);
  z-index: 1;
  pointer-events: none;
  background-size: cover;
}

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

.p-session__title {
  font-family: 'Unbounded', cursive;
  color: #fff;
  font-size: 2.625rem;
  line-height: 1;
  font-weight: 500;
}

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

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

.p-session__term > .time {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.1429;
  font-family: 'Unbounded', cursive;
  font-weight: 500;
  position: relative;
  padding-left: 28px;
  text-align: left;
  display: block;
}

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

.p-session__term > .title {
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.6364;
  text-align: left;
  margin-top: 4px;
}

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

.p-session__desc.-comming {
  text-align: center;
  font-family: 'Unbounded', cursive;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  font-weight: 900;
  height: 200px;
  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;
}

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

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

.p-session__item::before {
  position: absolute;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1;
  border-radius: 50px;
  left: 135px;
  top: 4px;
  font-family: 'Unbounded', cursive;
  padding: 6px 9px;
  min-width: 84px;
}

.p-session__item.-moderator::before {
  background-color: #f6835b;
  content: "moderator";
}

.p-session__item.-speaker::before {
  background-color: #f6835b;
  content: "speaker";
}

.p-session__item.-panelist::before {
  background-color: #5b99d3;
  content: "panelist";
}

.p-session__item.-commong .name {
  font-family: 'Unbounded', cursive;
  padding-top: 20px;
  font-size: 1rem;
  line-height: 1;
}

.p-session__item > .figure {
  width: 112px;
}

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

.p-session__itemText .position {
  font-size: 0.625rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  color: #fff;
  padding-top: 13px;
}

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

.p-session__itemText .name span {
  font-size: 0.875rem;
  line-height: 2.5714;
}

.p-session__button {
  margin-top: 15px;
  text-align: center;
}

.p-session__button button {
  background-color: transparent;
  border: none;
  font-family: 'Unbounded', cursive;
  color: #fff;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
  cursor: pointer;
}

.p-session__button button::before {
  position: absolute;
  content: "";
  background-image: url(/image/button_arrow.svg);
  width: 100px;
  height: 16px;
  bottom: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  width: 76px;
  height: 13px;
}

.p-thanks {
  padding-top: 140px;
  padding-bottom: 200px;
  background-color: #fff6eb;
}

.p-thanks__inner .text {
  font-size: 1.125rem;
  line-height: 1.5556;
  font-weight: 900;
  text-align: center;
}

.p-thanks__button {
  width: 182px;
  padding-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.p-thanks__button .c-button__link {
  font-size: 12px !important;
  text-align: center;
  padding-right: 30px !important;
}

.p-ttable {
  background-color: #f2ede6;
  padding-top: 20px;
  padding-bottom: calc((94 / 390) * 100vw);
  position: relative;
}

.p-ttable::before {
  position: absolute;
  content: "";
  background-image: url(/image/ttable_bg_sp.svg);
  width: 100%;
  height: calc((200 / 390) * 100vw);
  left: 0;
  top: calc((-99 / 390) * 100vw);
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.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: 'Unbounded', cursive;
  color: #1a2d59;
  font-size: 2.625rem;
  line-height: 1;
  font-weight: 500;
}

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

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

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

.p-ttable__row > td {
  border-radius: 8px;
}

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

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

.p-ttable__row .area {
  background-color: #c74f23;
  color: #fff;
  padding: 15px 10px;
  font-size: 1rem;
  line-height: 1;
  font-family: 'Unbounded', cursive;
  font-weight: 500;
}

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

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

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

.p-ttable__row:last-of-type > td .party {
  position: relative;
  height: 196px;
  width: 100%;
  margin-top: 12px;
  color: #fff;
  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;
  z-index: 1;
}

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

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

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

.p-ttable__row:last-of-type > td .time {
  font-family: 'Unbounded', cursive;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 500;
}

.p-ttable__row:last-of-type > td .name {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 900;
  margin-top: 12px;
}

.p-ttable__button {
  border-radius: 8px;
  border: 2px solid #1a2d59;
  padding: 19px 13px 27px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  position: relative;
  width: 100%;
  margin-top: 32px;
  background-color: #fff;
  height: 140px;
}

.p-ttable__button .title {
  color: #1a2d59;
  font-size: 0.75rem;
  line-height: 1.6667;
  font-weight: 900;
  position: relative;
  padding-left: 10px;
}

.p-ttable__button .title::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #c74f23;
  border-radius: 50%;
  left: 0;
  top: 8px;
}

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

.p-ttable__button .more {
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 500;
  color: #c74f23;
  position: absolute;
  font-family: 'Unbounded', cursive;
  bottom: 14px;
  right: 30px;
}

.p-ttable__button .toggle {
  display: block;
  position: absolute;
  bottom: 14px;
  margin: auto;
  right: 12px;
  width: 12px;
  height: 12px;
  background-color: #c74f23;
  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;
}

.p-ttable__rowspan::before {
  position: absolute;
  content: "";
  border: 2px solid #1a2d59;
  width: 100%;
  height: 560px;
  border-radius: 8px;
  left: 0;
  bottom: 0;
  background-color: #fff;
}

.p-ttable__rowspan .exchange {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 390px;
}

.p-ttable__rowspan .exchange .p-ttable__info {
  display: block;
}

.p-ttable__info {
  padding-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-ttable__info .about {
  border: 1px solid #1a2d59;
  border-radius: 3px;
  color: #1a2d59;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 600;
  padding: 2px 4px;
  margin-right: 4px;
}

.p-ttable__info .time {
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 500;
  font-family: 'Unbounded', cursive;
  color: #1a2d59;
}

.p-ttable__info .booth {
  color: #1a2d59;
  font-size: 0.875rem;
  line-height: 1.4286;
  font-weight: 900;
  text-align: center;
}

._se {
  display: block !important;
}

._sp {
  display: block !important;
}

._tab {
  display: block !important;
}

._pc {
  display: none !important;
}

._tablet-only {
  display: none;
}

._pc-only {
  display: none;
}

._sp-only {
  display: none;
}

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

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

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

  .l-inner {
    width: 86%;
  }

  .l-footer {
    padding-bottom: 20px;
  }

  .l-footer__item {
    width: auto;
  }

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

  .l-footer__link {
    padding: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

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

  .l-header {
    top: 20px;
  }

  .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: 94%;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 12px;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff6eb;
    border-radius: 50px;
  }

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

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

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

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

  .l-header__link {
    color: #1a2d59;
    font-size: 0.75rem;
    line-height: 1.6667;
    font-weight: 700;
    padding: 10px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

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

  .c-button.-white .c-button__link:hover {
    background-color: #1a2d59;
    color: #fff;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .c-button.-white .c-button__link:hover::before {
    opacity: 1;
  }

  .c-button.-white .c-button__link:hover::after {
    opacity: 0;
  }

  .c-button.-white .c-button__link::before,
  .c-button.-white .c-button__link::after {
    width: 26px;
    height: 26px;
  }

  .c-button .mktoButton {
    width: 344px !important;
  }

  .c-button .mktoButton:hover {
    background-color: #fff !important;
    color: #1a2d59 !important;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .c-button__link::before,
  .c-button__link::after,
  .c-button .mktoButton::before,
  .c-button .mktoButton::after {
    right: 10px;
  }

  .c-button__link:hover,
  .c-button .mktoButton:hover {
    background-color: #fff;
    color: #c74f23;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

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

  .mktoForm .mktoButtonWrap.mktoInset.-white .mktoForm .mktoButtonWrap.mktoInset__link:hover {
    background-color: #1a2d59;
    color: #fff;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .mktoForm .mktoButtonWrap.mktoInset.-white .mktoForm .mktoButtonWrap.mktoInset__link:hover::before {
    opacity: 1;
  }

  .mktoForm .mktoButtonWrap.mktoInset.-white .mktoForm .mktoButtonWrap.mktoInset__link:hover::after {
    opacity: 0;
  }

  .mktoForm .mktoButtonWrap.mktoInset .mktoButton {
    width: 344px !important;
  }

  .mktoForm .mktoButtonWrap.mktoInset .mktoButton:hover {
    background-color: #fff !important;
    color: #1a2d59 !important;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .mktoForm .mktoButtonWrap.mktoInset__link:hover,
  .mktoForm .mktoButtonWrap.mktoInset .mktoButton:hover {
    background-color: #fff;
    color: #c74f23;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .mktoForm .mktoButtonWrap.mktoInset__link:hover::after,
  .mktoForm .mktoButtonWrap.mktoInset .mktoButton:hover::after {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

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

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

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

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

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

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

  .c-modal__container {
    border-radius: 36px;
  }

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

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

  .c-modal__close::before,
  .c-modal__close::after {
    width: 40px;
  }

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

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

  .c-modal__title {
    margin-top: 6px;
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .c-modal__text {
    font-size: 0.875rem;
    line-height: 1.5714;
  }

  .c-modal__list {
    margin-top: 50px;
  }

  .c-modal__item {
    margin-left: 25px;
  }

  .c-modal__figure {
    width: 140px;
  }

  .c-modal__figure::before {
    font-size: 0.75rem;
    line-height: 1;
    padding: 8px 14px;
    min-width: 115px;
    left: -20px;
    top: -14px;
  }

  .c-modal__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 34px 20px 28px;
  }

  .c-modal__intro {
    width: 130px;
    padding-top: 5px;
    margin-left: 0;
  }

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

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

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

  .p-about::before {
    background-image: url(/image/about_bg.svg);
    height: calc((146 / 1360) * 100vw);
    top: calc((-144 / 1360) * 100vw);
  }

  .p-about__inner {
    width: 94%;
  }

  .p-about__title {
    font-size: 2.0625rem;
    line-height: 1.3939;
  }

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

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

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

  .p-about__item .title {
    width: 244px;
    height: 244px;
    background-color: #c74f23;
    border-radius: 50%;
    overflow: hidden;
    font-size: 1.75rem;
    line-height: 1;
  }

  .p-about__box {
    border-radius: 32px;
    padding: 90px 22px 35px;
    margin-top: -70px;
  }

  .p-about__box .subtitle {
    font-size: 1.125rem;
    line-height: 1.5556;
    margin-bottom: 34px;
  }

  .p-about__box .detail {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 0.875rem;
    line-height: 1.5714;
  }

  .p-accept {
    height: 568px;
  }

  .p-accept::before {
    background-image: url(/image/accept_bg.svg);
    height: 150px;
    width: 100%;
  }

  .p-accept__inner {
    padding-top: 110px;
  }

  .p-accept__box {
    background-image: url(/image/accept_illust.svg);
    width: 704px;
    height: 306px;
    background-size: 704px 306px;
  }

  .p-accept__title {
    font-size: 2.75rem;
    line-height: 1.3636;
    padding-bottom: 44px;
  }

  .p-accept__button .c-button__link {
    width: 344px;
  }

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

  .p-access__wrapper {
    margin-top: 48px;
  }

  .p-access__wrapper .text {
    font-size: 1.125rem;
    line-height: 1.5556;
  }

  .p-access__wrapper .map {
    padding-bottom: calc((457 / 960) * 100%);
  }

  .p-application {
    padding-top: 80px;
    padding-bottom: calc((240 / 1360) * 100vw);
  }

  .p-concept {
    padding-top: calc((72 / 1360) * 100vw);
    padding-bottom: calc((180 / 1360) * 100vw);
  }

  .p-concept::before {
    height: calc((100 / 1360) * 100vw);
    top: calc((-100 / 1360) * 100vw);
    background-image: url(/image/concept_bg.svg);
  }

  .p-concept__illust.-cloud {
    left: -68px;
    top: -18px;
    width: 105px;
    z-index: -1;
  }

  .p-concept__illust.-star1 {
    width: 18px;
    left: -68px;
    top: 212px;
  }

  .p-concept__inner {
    width: calc(1220 / 1360 * 100%);
    max-width: 1220px;
  }

  .p-concept__main {
    margin-left: 78px;
    margin-right: 0;
    width: calc(542 / 1220 * 100%);
  }

  .p-concept__main > .title {
    font-size: 2rem;
    line-height: 1.5625;
    padding-bottom: 60px;
  }

  .p-concept__main > .title::before {
    width: 72px;
    height: 5px;
    bottom: 36px;
  }

  .p-concept__main > .text {
    font-size: 0.875rem;
    line-height: 2.0714;
  }

  .p-concept__image {
    width: calc(700 / 1220 * 100%);
    top: 30px;
    right: -8px;
  }

  .p-faq {
    padding-top: 160px;
    padding-bottom: 130px;
  }

  .p-faq::before {
    height: calc((150 / 1360) * 100vw);
    top: calc((-150 / 1360) * 100vw);
    background-image: url(/image/faq_bg.svg);
  }

  .p-faq__wrapper {
    width: 100%;
  }

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

  .p-faq__row > dt::before,
  .p-faq__row dd::before {
    top: 20px;
    font-size: 0.875rem;
    line-height: 1.4286;
  }

  .p-faq__row > dt::after,
  .p-faq__row dd::after {
    top: 39px;
  }

  .p-faq__row > dd::before {
    top: 20px;
  }

  .p-faq__row > dd::after {
    top: 39px;
  }

  .p-faq__title {
    padding: 17px 28px 17px 60px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-faq__text {
    padding-left: 60px;
    padding-top: 22px;
    font-size: 0.875rem;
    line-height: 1.5714;
  }

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

  .p-fixed {
    display: none;
  }

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

  .p-form__wrapper {
    padding-top: 80px;
    margin-top: 54px;
    border-radius: 35px;
    padding-bottom: 85px;
  }

  .p-form__wrapper > .notes {
    font-size: 0.875rem;
    line-height: 1.7143;
  }

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

  .p-instance__title {
    font-size: 2.0625rem;
    line-height: 1.3939;
    margin-left: 0;
  }

  .p-instance__main {
    border-radius: 37px;
    margin-top: 70px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .p-instance__subtitle {
    font-size: 2rem;
    line-height: 1.3125;
    padding-bottom: 0;
  }

  .p-instance__subtitle::after {
    display: none;
  }

  .p-instance__list {
    width: calc(1110 / 1160 * 100%);
    padding-top: 66px;
  }

  .p-instance__item {
    width: calc(222 / 1110 * 100%);
  }

  .p-instance__item + .p-instance__item .category {
    position: relative;
  }

  .p-instance__item + .p-instance__item .category::after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 2px;
    border-radius: 10px;
    height: calc(100% + 2px);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }

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

  .p-instance__item .image {
    width: calc(130 / 222 * 100%);
  }

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

  .p-instance__more {
    font-size: 2rem;
    line-height: 1;
    padding-top: 74px;
  }

  .p-map {
    padding-top: 48px;
    padding-bottom: calc((100 / 1360 * 100vw) + 140px);
  }

  .p-map__inner {
    max-width: 1160px;
    width: 94%;
  }

  .p-map__inner .image {
    margin-top: 108px;
  }

  .p-map__title {
    font-size: 4.6875rem;
    line-height: 1;
  }

  .p-mv {
    padding-bottom: 70px;
  }

  .p-mv__inner {
    background-image: url(/image/mv.png);
    height: calc(763 / 1280 * 100vw);
  }

  .p-notes {
    padding-bottom: calc((166 / 1360) * 100vw);
    padding-top: 16px;
  }

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

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

  .p-outline {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .p-outline::before {
    background-image: url(/image/outline_bg.svg);
    height: calc((700 / 1360) * 100vw);
    top: calc((-100 / 1360) * 100vw);
  }

  .p-outline__wrapper {
    width: 100%;
  }

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

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

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

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

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

  .p-session::before {
    background-image: url(/image/session_bg.svg);
    top: calc((-100 / 1360) * 100vw);
    height: calc((926 / 1360) * 100vw);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .p-session__title {
    font-size: 4.6875rem;
    line-height: 1;
  }

  .p-session__flow {
    padding-top: 146px;
  }

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

  .p-session__term > .time {
    font-size: 1.125rem;
    line-height: 1;
    padding-left: 33px;
  }

  .p-session__term > .time::before {
    width: 22px;
    height: 22px;
    top: -3px;
  }

  .p-session__term > .title {
    font-size: 1.875rem;
    line-height: 1.6;
  }

  .p-session__list {
    padding-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
  }

  .p-session__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc((200 / 940) * 100%);
  }

  .p-session__item::before {
    font-size: 0.9375rem;
    line-height: 1;
    min-width: 126px;
    left: -20px;
    top: -20px;
    padding: 12px 14px;
  }

  .p-session__item:not(:nth-of-type(4n+1)) {
    margin-left: calc((50 / 940) * 100%);
  }

  .p-session__item:nth-of-type(n+5) {
    margin-top: 40px;
  }

  .p-session__item.-commong .name {
    padding-top: 10px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-session__item > .figure {
    width: auto;
  }

  .p-session__itemText {
    margin-left: 0;
    padding-top: 0;
  }

  .p-session__itemText .name {
    margin-top: 0;
  }

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

  .p-session__button button {
    font-size: 0.75rem;
    line-height: 1;
  }

  .p-session__button button:hover::before {
    left: 10px;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
  }

  .p-session__button button::before {
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    width: 100px;
    height: 16px;
  }

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

  .p-thanks__inner .text {
    font-size: 1.625rem;
    line-height: 1.4615;
  }

  .p-thanks__button {
    padding-top: 140px;
  }

  .p-ttable {
    padding-top: calc((160 / 1360) * 100vw);
    padding-bottom: 160px;
  }

  .p-ttable::before {
    height: calc((400 / 1360) * 100vw);
    top: calc((-100 / 1360) * 100vw);
    background-image: url(/image/ttable_bg.svg);
  }

  .p-ttable__inner {
    max-width: 874px;
  }

  .p-ttable__title {
    font-size: 4.6875rem;
    line-height: 1;
  }

  .p-ttable__box {
    overflow: scroll;
  }

  .p-ttable__wrapper {
    background-image: url(/image/ttable_time.svg);
    padding-bottom: 77px;
    margin-top: 128px;
    width: 874px;
  }

  .p-ttable__body {
    padding-left: 102px;
    padding-right: 10px;
    width: auto;
  }

  .p-ttable__row > td {
    border-radius: 12px;
  }

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

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

  .p-ttable__row .area {
    padding: 30px;
    font-size: 1.5rem;
    line-height: 1;
  }

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

  .p-ttable__row:last-of-type > td .party::before,
  .p-ttable__row:last-of-type > td .party::after {
    border-radius: 12px;
  }

  .p-ttable__row:last-of-type > td .time {
    font-size: 1rem;
    line-height: 1;
  }

  .p-ttable__row:last-of-type > td .name {
    font-size: 1.125rem;
    line-height: 1;
  }

  .p-ttable__button {
    padding: 21px 29px 26px;
    border-radius: 12px;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
    height: 144px;
    margin-top: 36px;
  }

  .p-ttable__button:hover {
    border: 2px solid #c74f23;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
  }

  .p-ttable__button:hover .toggle {
    background-color: #1a2d59;
    -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.125rem;
    line-height: 1.4444;
    padding-left: 20px;
  }

  .p-ttable__button .title::before {
    width: 10px;
    height: 10px;
  }

  .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 {
    height: 400px;
  }

  .p-ttable__rowspan::before {
    border-radius: 12px;
    height: 585px;
  }

  .p-ttable__rowspan .exchange {
    top: 430px;
  }

  .p-ttable__info {
    padding-bottom: 20px;
  }

  .p-ttable__info .about {
    font-size: 0.875rem;
    line-height: 1;
    border-radius: 6px;
  }

  .p-ttable__info .time {
    font-size: 1rem;
    line-height: 1;
  }

  .p-ttable__info .booth {
    font-size: 1.125rem;
    line-height: 1.5556;
  }

  ._sp {
    display: none !important;
  }

  ._tab {
    display: none !important;
  }

  ._pc {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__list {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .l-footer__item:nth-child(n+4) {
    margin-top: 10px;
  }

  .l-header {
    background-color: #fff6eb;
    border-radius: 30px;
    width: 94%;
    margin: auto;
    right: 0;
    padding: 8px 10px;
  }

  .c-hdl.-map {
    display: block;
  }

  .c-hdl.-map .c-hdl__sub {
    margin-left: 0;
  }

  .c-hdl__sub > span {
    display: block;
    margin-left: 0;
  }

  .c-modal__detail {
    margin-top: 10px;
    padding: 10px 18px;
    border: 1px solid #1a2d59;
    border-radius: 10px;
  }

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

  .p-about__item .title {
    background-image: url(/image/about_title.svg);
    width: 290px;
    height: 58px;
  }

  .p-concept__illust.-cloud {
    right: -6px;
  }

  .p-form__form .mktoForm .mktoHasWidth {
    width: 94% !important;
  }

  .p-form__form .mktoForm .mktoLabel {
    margin-bottom: 10px;
  }

  .p-instance__item:nth-child(2n) {
    margin-left: 30px;
  }

  .p-instance__item:nth-child(n+3) {
    margin-top: 32px;
  }

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

  ._sp-only {
    display: block;
  }
}

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

  .l-header__link {
    font-size: 0.875rem;
    line-height: 1.4286;
    padding: 20px 19px;
  }

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

  .p-faq__wrapper {
    width: 640px;
    padding-top: 10px;
  }

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

  .p-outline__wrapper {
    width: 640px;
  }

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