@charset "UTF-8";
/* font-sizeレスポンシブ */
@keyframes active-menu-bar {
  100% {
    height: 0;
  }
}
@keyframes scroll-down {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(-100%);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(100%);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slideLeft {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn, .slideInUp, .slideInRight, .slideInLeft, .slideInDown {
  opacity: 0;
}

.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out both;
}

.slideInUp.is-animated {
  animation: slideInUp 0.6s ease-in-out both;
}

.slideInDown.is-animated {
  animation: slideInDown 0.6s ease-in-out both;
}

.slideInRight.is-animated {
  animation: slideInRight 0.6s ease-in-out both;
}

.slideInLeft.is-animated {
  animation: slideInLeft 0.6s ease-in-out both;
}

@keyframes updown {
  0% {
    top: 0;
  }
  50% {
    top: -10px;
  }
  100% {
    top: 0;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes katakata {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes blink {
  /* 最初の0%から49%までは不透明（表示） */
  0%, 49.9% {
    opacity: 0;
  }
  /* 50%から100%までは透明（非表示） */
  50%, 100% {
    opacity: 1;
  }
}
@keyframes blink-fade {
  /* 最初の0%から49%までは不透明（表示） */
  0% {
    opacity: 0;
  }
  /* 50%から100%までは透明（非表示） */
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bg-slider {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: -1982px bottom;
  } /* 1518pxとは使用した背景画像の長さ */
}
@keyframes fixedPauseSlide {
  0%, 20% {
    transform: translate(-7%, 13%);
  }
  30% {
    transform: translate(0, 0); /* 移動後の位置 */
  }
  90% {
    transform: translate(0, 0); /* 移動後の位置 */
  }
  100% {
    transform: translate(-7%, 13%);
  }
}
@keyframes float-horizontal {
  /* 0% (0秒): 最初の位置 */
  0% {
    /* わずかに右へ移動し、少し時計回りに回転 */
    /* Y軸の値 (5px) を 0 に変更 */
    transform: translate(0.5%, 0) rotate(3deg);
  }
  /* 50% (5秒): 中間点 */
  50% {
    /* わずかに左へ移動し、少し反時計回りに回転 */
    /* Y軸の値 (-5px) を 0 に変更 */
    transform: translate(-0.5%, 0) rotate(-3deg);
  }
  /* 100% (10秒): 元の位置に戻る */
  100% {
    /* 最初の位置に戻り、ループする */
    transform: translate(0.5%, 0) rotate(3deg);
  }
}
@keyframes float-complex-motion {
  /* 0% (0秒): 最初の位置 */
  0% {
    /* 右に3px、下に5px移動し、時計回りに1度回転 */
    transform: translate(0.5%, 0.5%);
  }
  /* 50% (5秒): 中間点 */
  25% {
    /* 左に3px、上に5px移動し、反時計回りに1度回転 */
    /* これにより、0%から50%で下に5px沈み込み、100%に向かって元の位置に戻ります */
    transform: translate(0, 0);
  }
  50% {
    /* 左に3px、上に5px移動し、反時計回りに1度回転 */
    /* これにより、0%から50%で下に5px沈み込み、100%に向かって元の位置に戻ります */
    transform: translate(-0.5%, 0.5%);
  }
  75% {
    /* 左に3px、上に5px移動し、反時計回りに1度回転 */
    /* これにより、0%から50%で下に5px沈み込み、100%に向かって元の位置に戻ります */
    transform: translate(0, 0);
  }
  /* 100% (10秒): 元の位置に戻る */
  100% {
    /* 最初の位置に戻り、ループする */
    transform: translate(0.5%, 0.5%);
  }
}
@keyframes fixedPauseSlide2 {
  0%, 20% {
    transform: translateX(-10%) rotate(-30deg);
  }
  30% {
    transform: translateX(0) rotate(0); /* 移動後の位置 */
  }
  90% {
    transform: translateX(0) rotate(0); /* 移動後の位置 */
  }
  100% {
    transform: translateX(-10%) rotate(-30deg);
  }
}
@keyframes fixedPauseSlide3 {
  0%, 20% {
    transform: translate(0, 15%);
  }
  30% {
    transform: translate(0, 0); /* 移動後の位置 */
  }
  90% {
    transform: translate(0, 0); /* 移動後の位置 */
  }
  100% {
    transform: translate(0, 15%);
  }
}
@keyframes flashInterval {
  /* --- 点滅エリア (0% ~ 20%) --- */
  0% {
    opacity: 1;
  }
  5% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  /* --- 待機エリア (21% ~ 100%) --- */
  /* ここは変化を指定しないことで、20%の状態(opacity:1)を維持します */
  100% {
    opacity: 1;
  }
}
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/* resset.dev • v5.0.2 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
  color: inherit; /* Correct border color in Firefox. */
}

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

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

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

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

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

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

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

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

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

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

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

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

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

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

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* ==================================
base
================================== */
html {
  font-size: 16px;
}

body {
  color: #4f4c4b;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.75;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  body {
    font-size: calc(12px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  body {
    font-size: 1rem;
  }
}

#wrapper {
  overflow-x: clip;
  position: relative;
}

#main {
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: bold;
  letter-spacing: 0.075em;
}

h1, h2, .h1, .h2 {
  font-size: 1.125rem;
}
@media screen and (min-width: 375px) {
  h1, h2, .h1, .h2 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  h1, h2, .h1, .h2 {
    font-size: 1.75rem;
  }
}

h3, .h3 {
  font-size: 1.0625rem;
}
@media screen and (min-width: 375px) {
  h3, .h3 {
    font-size: calc(17px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  h3, .h3 {
    font-size: 1.3125rem;
  }
}

h4, .h4 {
  font-size: 1rem;
}
@media screen and (min-width: 375px) {
  h4, .h4 {
    font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  h4, .h4 {
    font-size: 1.125rem;
  }
}

h5, .h5 {
  font-size: 0.875rem;
}
@media screen and (min-width: 375px) {
  h5, .h5 {
    font-size: calc(14px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  h5, .h5 {
    font-size: 1rem;
  }
}

h6, .h6 {
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  h6, .h6 {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  h6, .h6 {
    font-size: 0.875rem;
  }
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
img.aligncenter, svg.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
img.alignright, svg.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft, svg.alignleft {
  display: block;
  margin-right: auto;
}

table {
  border-collapse: collapse;
}

ul, ol {
  margin-left: 1.3em;
}

a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

.youtube, .gmap {
  max-width: 100%;
  position: relative;
}
.youtube:before, .gmap:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.youtube > iframe, .gmap > iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.l-editor h2:not(:first-child), .l-editor h3:not(:first-child), .l-editor h4:not(:first-child), .l-editor h5:not(:first-child), .l-editor h6:not(:first-child) {
  margin-top: 1rem;
}
.l-editor h2 + h2, .l-editor h2 + h3, .l-editor h2 + h4, .l-editor h2 + h5, .l-editor h2 + h6, .l-editor h2 + p, .l-editor h2 + dl, .l-editor h2 + ol, .l-editor h2 + ul, .l-editor h2 + table, .l-editor h2 + hr, .l-editor h2 .youtube, .l-editor h2 .gmap, .l-editor h2 + div, .l-editor h3 + h2, .l-editor h3 + h3, .l-editor h3 + h4, .l-editor h3 + h5, .l-editor h3 + h6, .l-editor h3 + p, .l-editor h3 + dl, .l-editor h3 + ol, .l-editor h3 + ul, .l-editor h3 + table, .l-editor h3 + hr, .l-editor h3 .youtube, .l-editor h3 .gmap, .l-editor h3 + div, .l-editor h4 + h2, .l-editor h4 + h3, .l-editor h4 + h4, .l-editor h4 + h5, .l-editor h4 + h6, .l-editor h4 + p, .l-editor h4 + dl, .l-editor h4 + ol, .l-editor h4 + ul, .l-editor h4 + table, .l-editor h4 + hr, .l-editor h4 .youtube, .l-editor h4 .gmap, .l-editor h4 + div, .l-editor h5 + h2, .l-editor h5 + h3, .l-editor h5 + h4, .l-editor h5 + h5, .l-editor h5 + h6, .l-editor h5 + p, .l-editor h5 + dl, .l-editor h5 + ol, .l-editor h5 + ul, .l-editor h5 + table, .l-editor h5 + hr, .l-editor h5 .youtube, .l-editor h5 .gmap, .l-editor h5 + div, .l-editor h6 + h2, .l-editor h6 + h3, .l-editor h6 + h4, .l-editor h6 + h5, .l-editor h6 + h6, .l-editor h6 + p, .l-editor h6 + dl, .l-editor h6 + ol, .l-editor h6 + ul, .l-editor h6 + table, .l-editor h6 + hr, .l-editor h6 .youtube, .l-editor h6 .gmap, .l-editor h6 + div {
  margin-top: 0.5rem !important;
}
.l-editor p:not(:first-child), .l-editor dl:not(:first-child), .l-editor ol:not(:first-child), .l-editor ul:not(:first-child), .l-editor table:not(:first-child), .l-editor hr:not(:first-child), .l-editor .youtube:not(:first-child), .l-editor .gmap:not(:first-child), .l-editor > div:not(:first-child) {
  margin-top: 1rem;
}
.l-editor ol ol, .l-editor ol ul, .l-editor ul ol, .l-editor ul ul {
  margin-top: 0 !important;
}
.l-editor ol ol ol, .l-editor ol ul ol, .l-editor ul ol ol, .l-editor ul ul ol {
  list-style: none;
  counter-reset: number;
  margin-left: 0;
}
.l-editor ol ol ol li, .l-editor ol ul ol li, .l-editor ul ol ol li, .l-editor ul ul ol li {
  position: relative;
  padding-left: 2.3em;
}
.l-editor ol ol ol li:before, .l-editor ol ul ol li:before, .l-editor ul ol ol li:before, .l-editor ul ul ol li:before {
  content: "（" counter(number) "）";
  counter-increment: number;
  position: absolute;
  left: 0;
}
.l-editor ol li::marker {
  font-weight: bold;
}
.l-editor a {
  text-decoration: underline;
  transition: 0.2s ease-in-out;
}
.l-editor dl > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-editor dl > div dt {
  padding: 0.5em 1em;
  width: 10em;
}
.l-editor dl > div dd {
  padding: 0.5em 1em;
  flex: 1;
}
.l-editor dl dt, .l-editor dl dd {
  font-weight: 500;
  width: 100%;
}
.l-editor dl > dd + dt {
  margin-top: 1rem;
}
.l-editor input, .l-editor textarea, .l-editor fieldset, .l-editor select, .l-editor button {
  border: 1px solid #6d6d6d;
  border-radius: 0;
  padding: 0 0.5em;
  max-width: 100%;
  background-color: #FFFFFF;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-editor input, .l-editor textarea, .l-editor fieldset, .l-editor select, .l-editor button {
    font-size: calc(16px + 2 * (100vw - 768px) / 442);
  }
}
@media screen and (min-width: 1210px) {
  .l-editor input, .l-editor textarea, .l-editor fieldset, .l-editor select, .l-editor button {
    font-size: 1.125rem;
  }
}
.l-editor input::placeholder, .l-editor textarea::placeholder, .l-editor fieldset::placeholder, .l-editor select::placeholder, .l-editor button::placeholder {
  color: #4f4c4b;
}
.l-editor table {
  width: auto;
  max-width: 100%;
}
.l-editor table thead tr th, .l-editor table thead tr td {
  background-color: #036eb7 !important;
}
.l-editor table tr:nth-of-type(2n+1) th, .l-editor table tr:nth-of-type(2n+1) td {
  background-color: #036eb7;
}
.l-editor table tr th, .l-editor table tr td {
  border: none;
  padding: 3px 1em;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .l-editor table tr th, .l-editor table tr td {
    font-size: calc(12px + 5 * (100vw - 768px) / 442);
  }
}
@media screen and (min-width: 1210px) {
  .l-editor table tr th, .l-editor table tr td {
    font-size: 1.0625rem;
  }
}
.l-editor table tr th {
  white-space: nowrap;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* --------------------------------
l-header
----------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
header.is-scrolled .l-header-logo {
  animation: fadeIn 1s ease-in-out both;
  visibility: visible;
}

.l-header-logo {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  width: 3.75rem;
  margin-top: 0.9375rem;
  margin-left: 0.625rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 375px) {
  .l-header-logo {
    width: calc(60px + 74 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-header-logo {
    width: 8.375rem;
  }
}
@media screen and (min-width: 375px) {
  .l-header-logo {
    margin-top: calc(15px + 15 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-header-logo {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 375px) {
  .l-header-logo {
    margin-left: calc(10px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-header-logo {
    margin-left: 1.875rem;
  }
}

/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.l-inner-wide {
  width: 62.5%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .l-inner-wide {
    width: 90%;
  }
}
.l-inner-wide .l-inner {
  width: 80%;
}

/* --------------------------------
l-footer
----------------------------------- */
.home footer {
  position: relative;
  padding-bottom: 0;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .home footer {
    justify-content: center;
  }
}
.home #to-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
}
.home #to-top > a {
  width: 5.21vw;
}
.home #to-top.visible {
  opacity: 1;
  visibility: visible;
}
.home #to-top.docked {
  position: absolute;
  bottom: 100% !important;
  width: 100%;
}
.home .l-footer .l-footer-link {
  text-align: left;
}

footer {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  display: flex;
  justify-content: end;
  padding-bottom: 10px;
  z-index: 110;
}
@media only screen and (max-width: 991px) {
  footer {
    position: static;
    justify-content: center;
    width: 100%;
  }
}
footer > * {
  pointer-events: auto;
}

.l-footer {
  font-size: 0.625rem;
  font-weight: bold;
  color: #4f4c4b;
  position: relative;
  padding-right: 30px;
}
@media screen and (min-width: 1200px) {
  .l-footer {
    font-size: calc(10px + 4 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .l-footer {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 991px) {
  .l-footer {
    text-align: center;
    padding-right: 0;
  }
}
.l-footer .l-footer-link {
  padding-right: 1em;
}
@media only screen and (max-width: 991px) {
  .l-footer .l-footer-link {
    padding-right: 0;
    text-align: center;
  }
}

#to-top {
  display: flex;
  align-items: end;
  justify-content: end;
  flex-wrap: wrap;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
}
#to-top.docked {
  position: absolute;
  bottom: 100% !important;
}
#to-top > a {
  width: 3.125rem;
}
@media screen and (min-width: 375px) {
  #to-top > a {
    width: calc(50px + 50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #to-top > a {
    width: 6.25rem;
  }
}
@media only screen and (max-width: 991px) {
  #to-top > a {
    display: none;
  }
}

#post-box {
  width: 3.375rem;
}
@media screen and (min-width: 375px) {
  #post-box {
    width: calc(54px + 56 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #post-box {
    width: 6.875rem;
  }
}
@media only screen and (max-width: 991px) {
  #post-box {
    position: fixed;
    z-index: 1;
    top: 6.1875rem;
    right: 14px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 375px) {
  #post-box {
    top: calc(99px + 22 * (100vw - 375px) / 617);
  }
}
@media only screen and (max-width: 991px) and (min-width: 992px) {
  #post-box {
    top: 7.5625rem;
  }
}

.l-footer-home {
  padding-bottom: 276px;
  background: url("../images/top/footer-bg.png");
  background-size: auto 276px;
  background-repeat: repeat-x;
  animation: bg-slider 30s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-footer-home {
    padding-bottom: 0;
    background: none;
  }
}
.l-footer-home .l-footer-logo {
  display: block;
  width: 6.75rem;
  margin-bottom: 0.625rem;
  margin-top: 40px;
}
@media screen and (min-width: 375px) {
  .l-footer-home .l-footer-logo {
    width: calc(108px + 60 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-footer-home .l-footer-logo {
    width: 10.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-home .l-footer-logo {
    margin-bottom: calc(10px + 30 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .l-footer-home .l-footer-logo {
    margin-bottom: 2.5rem;
  }
}
.l-footer-home .l-footer-link {
  display: none;
  font-size: 0.625rem;
  font-weight: bold;
}
@media only screen and (max-width: 1199px) {
  .l-footer-home .l-footer-link {
    display: block;
    text-align: center;
  }
}
.l-footer-home .l-footer-copyright {
  display: none;
  font-size: 0.625rem;
  font-weight: bold;
}
@media only screen and (max-width: 1199px) {
  .l-footer-home .l-footer-copyright {
    display: block;
    margin-bottom: 20px;
  }
}
.l-footer-home .l-footer-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .l-footer-home .l-footer-img {
    position: static;
    width: 100%;
    transform: none;
  }
}

body.home footer {
  display: block;
}
body.home .l-footer {
  margin-top: calc(-2em * 1.75);
  width: 12.5%;
  margin-left: auto;
  padding-right: 0;
}
@media only screen and (max-width: 1199px) {
  body.home .l-footer {
    display: none;
  }
}
body.home .l-footer .l-footer-link {
  padding-right: 0;
}

/* --------------------------------
l-page
----------------------------------- */
#page-bg-svg {
  pointer-events: none;
  position: relative;
}
@media only screen and (max-width: 991px) {
  #page-bg-svg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
#page-bg-svg a {
  pointer-events: auto;
}
#page-bg-svg.slowwalk-town #page-bg-character1 {
  transform-origin: 14.17% 15.97%;
  animation: float-horizontal 2s infinite linear both;
}
#page-bg-svg.slowwalk-town #page-bg-character2 {
  animation: fixedPauseSlide 6s infinite linear both;
  transform-origin: 20.31% 46.72%;
}
#page-bg-svg.slowwalk-town #page-bg-character3 {
  transform-origin: 70.21% 11.64%;
  animation: katakata 2s infinite linear both;
}
#page-bg-svg.slowwalk-town #page-bg-character4 {
  transform-origin: 79.9% 44.63%;
  animation: float-complex-motion 2s infinite linear both;
}
@media only screen and (max-width: 991px) {
  #page-bg-svg.slowwalk-town #page-bg-left, #page-bg-svg.slowwalk-town #page-bg-right {
    height: 346px;
  }
}
@media only screen and (max-width: 767px) {
  #page-bg-svg.slowwalk-town #page-bg-left, #page-bg-svg.slowwalk-town #page-bg-right {
    transform: translateY(35%);
  }
}
@media only screen and (max-width: 571px) {
  #page-bg-svg.slowwalk-town #page-bg-left, #page-bg-svg.slowwalk-town #page-bg-right {
    width: 90%;
    height: auto;
  }
}
#page-bg-svg.column #page-bg-character1 {
  transform-origin: 40.73% 42.29%;
  animation: fixedPauseSlide2 6s 0.5s infinite linear both;
}
#page-bg-svg.column #page-bg-character2 {
  animation: fixedPauseSlide2 6s infinite linear both;
  transform-origin: 38.65% 59.59%;
}
#page-bg-svg.column #page-bg-character3 {
  transform-origin: 71.67% 13.36%;
  animation: float-complex-motion 1.5s infinite linear both;
}
#page-bg-svg.column #page-bg-character4 {
  transform-origin: 83.23% 28.6%;
  animation: float-horizontal 2s infinite linear both;
}
@media only screen and (max-width: 991px) {
  #page-bg-svg.column #page-bg-left, #page-bg-svg.column #page-bg-right {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  #page-bg-svg.column #page-bg-left, #page-bg-svg.column #page-bg-right {
    transform: translateY(25%);
  }
}
@media only screen and (max-width: 571px) {
  #page-bg-svg.column #page-bg-left, #page-bg-svg.column #page-bg-right {
    width: 90%;
    height: auto;
  }
}
#page-bg-svg.faq {
  position: absolute;
  left: 0;
  width: 100%;
  top: 9.375rem;
}
@media screen and (min-width: 768px) {
  #page-bg-svg.faq {
    top: calc(150px + -150 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  #page-bg-svg.faq {
    top: 0rem;
  }
}
@media only screen and (max-width: 991px) {
  #page-bg-svg.faq {
    position: fixed;
    top: auto;
    bottom: 0;
  }
}
#page-bg-svg.faq #page-bg-character1 {
  transform-origin: 28.02% 46.83%;
  animation: float-horizontal 2s infinite linear both;
}
#page-bg-svg.faq #page-bg-character2 {
  animation: float-complex-motion 3s infinite linear both;
  transform-origin: 39.58% 66%;
}
#page-bg-svg.faq #page-bg-character3 {
  transform-origin: 66.25% 60.83%;
  animation: fixedPauseSlide3 6s infinite linear both;
}
#page-bg-svg.faq #page-bg-character4 {
  transform-origin: 85.73% 52.33%;
  animation: katakata 2s infinite linear both;
}
@media only screen and (max-width: 991px) {
  #page-bg-svg.faq #page-bg-left, #page-bg-svg.faq #page-bg-right {
    top: auto;
    bottom: 0;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  #page-bg-svg.faq #page-bg-left, #page-bg-svg.faq #page-bg-right {
    height: 240px;
    width: auto;
  }
}
@media only screen and (max-width: 571px) {
  #page-bg-svg.faq #page-bg-left, #page-bg-svg.faq #page-bg-right {
    width: 90%;
    height: auto;
  }
}
#page-bg-svg.faq .faq-bg-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  #page-bg-svg.faq .faq-bg-sp {
    display: block;
  }
}

#page-bg-left {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 991px) {
  #page-bg-left {
    top: auto;
    bottom: 0;
    width: auto;
  }
}

#page-bg-right {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 991px) {
  #page-bg-right {
    top: auto;
    bottom: 0;
    width: auto;
  }
}

.l-page {
  padding-bottom: 100px;
}

.l-page-content {
  background: #efefef;
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  min-height: 16.5rem;
}
@media screen and (min-width: 375px) {
  .l-page-content {
    padding-top: calc(20px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-page-content {
    padding-top: 1.875rem;
  }
}
@media screen and (min-width: 375px) {
  .l-page-content {
    padding-bottom: calc(20px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-page-content {
    padding-bottom: 1.875rem;
  }
}
@media screen and (min-width: 375px) {
  .l-page-content {
    padding-right: calc(20px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-page-content {
    padding-right: 2.8125rem;
  }
}
@media screen and (min-width: 375px) {
  .l-page-content {
    padding-left: calc(20px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-page-content {
    padding-left: 2.8125rem;
  }
}
@media screen and (min-width: 375px) {
  .l-page-content {
    min-height: calc(264px + 264 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-page-content {
    min-height: 33rem;
  }
}
.l-page-content:before {
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  transform: translateX(12.79%);
  bottom: 0;
  background: url("../images/common/page-character.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 2.75rem;
  height: 100%;
}
@media screen and (min-width: 375px) {
  .l-page-content:before {
    width: calc(44px + 42 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-page-content:before {
    width: 5.375rem;
  }
}

.l-page-eyecatch {
  background: #FFFFFF;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
.l-page-eyecatch h1, .l-page-eyecatch .h1 {
  font-size: 1.125rem;
  color: #036eb7;
  text-align: center;
  padding-top: 3.75rem;
  margin-bottom: 40px;
}
@media screen and (min-width: 375px) {
  .l-page-eyecatch h1, .l-page-eyecatch .h1 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-page-eyecatch h1, .l-page-eyecatch .h1 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 375px) {
  .l-page-eyecatch h1, .l-page-eyecatch .h1 {
    padding-top: calc(60px + 60 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-page-eyecatch h1, .l-page-eyecatch .h1 {
    padding-top: 7.5rem;
  }
}
.l-page-eyecatch h1 img, .l-page-eyecatch .h1 img {
  display: block;
  margin: 0 auto;
}

.l-page-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-page-eyecatch-inner {
    width: 60%;
  }
}

/* -----------------------------------------------
* component エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-hamburger
----------------------------------- */
.c-hamburger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: absolute;
  pointer-events: auto;
  z-index: 120;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  outline: none;
  background: #036eb7;
  padding: 0;
  margin: 0;
  color: #FFFFFF;
  right: 0.625rem;
  top: 0.9375rem;
  width: 4.25rem;
  height: 4.25rem;
  border-width: 0.125rem;
}
@media screen and (min-width: 375px) {
  .c-hamburger {
    right: calc(10px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger {
    right: 1.25rem;
  }
}
@media screen and (min-width: 375px) {
  .c-hamburger {
    top: calc(15px + 5 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger {
    top: 1.25rem;
  }
}
@media screen and (min-width: 375px) {
  .c-hamburger {
    width: calc(68px + 40 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger {
    width: 6.75rem;
  }
}
@media screen and (min-width: 375px) {
  .c-hamburger {
    height: calc(68px + 40 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger {
    height: 6.75rem;
  }
}
@media screen and (min-width: 375px) {
  .c-hamburger {
    border-width: calc(2px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger {
    border-width: 0.25rem;
  }
}
.c-hamburger:after {
  content: "MENU";
  display: inline-block;
  line-height: 1;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  display: inline-block;
  bottom: 0.75rem;
  font-size: 0.6875rem;
}
@media screen and (min-width: 375px) {
  .c-hamburger:after {
    bottom: calc(12px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger:after {
    bottom: 1rem;
  }
}
@media screen and (min-width: 375px) {
  .c-hamburger:after {
    font-size: calc(11px + 7 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger:after {
    font-size: 1.125rem;
  }
}

.c-hamburger__line {
  display: block;
  background: #FFFFFF;
  position: absolute;
  width: 2.125rem;
  height: 0.1875rem;
}
@media screen and (min-width: 375px) {
  .c-hamburger__line {
    width: calc(34px + 21 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger__line {
    width: 3.4375rem;
  }
}
@media screen and (min-width: 375px) {
  .c-hamburger__line {
    height: calc(3px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger__line {
    height: 0.3125rem;
  }
}
.c-hamburger__line:nth-of-type(1) {
  top: 0.875rem;
}
@media screen and (min-width: 375px) {
  .c-hamburger__line:nth-of-type(1) {
    top: calc(14px + 7 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger__line:nth-of-type(1) {
    top: 1.3125rem;
  }
}
.c-hamburger__line:nth-of-type(2) {
  top: 1.4375rem;
}
@media screen and (min-width: 375px) {
  .c-hamburger__line:nth-of-type(2) {
    top: calc(23px + 13 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger__line:nth-of-type(2) {
    top: 2.25rem;
  }
}
.c-hamburger__line:nth-of-type(3) {
  top: 2rem;
}
@media screen and (min-width: 375px) {
  .c-hamburger__line:nth-of-type(3) {
    top: calc(32px + 19 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger__line:nth-of-type(3) {
    top: 3.1875rem;
  }
}

.c-hamburger[aria-expanded=true] {
  background: #FFFFFF;
  color: #036eb7;
}
.c-hamburger[aria-expanded=true] .c-hamburger__line {
  position: absolute;
  background: #036eb7;
  height: 0.25rem;
}
@media screen and (min-width: 375px) {
  .c-hamburger[aria-expanded=true] .c-hamburger__line {
    height: calc(4px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger[aria-expanded=true] .c-hamburger__line {
    height: 0.375rem;
  }
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(1) {
  top: 1.4375rem;
  transform: skewY(-30deg);
}
@media screen and (min-width: 375px) {
  .c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(1) {
    top: calc(23px + 13 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(1) {
    top: 2.25rem;
  }
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(3) {
  top: 1.4375rem;
  transform: skewY(30deg);
}
@media screen and (min-width: 375px) {
  .c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(3) {
    top: calc(23px + 13 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(3) {
    top: 2.25rem;
  }
}

.c-hamburger-logo {
  display: block;
  margin-bottom: 10px;
  width: 3.125rem;
}
@media screen and (min-width: 375px) {
  .c-hamburger-logo {
    width: calc(50px + 14 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger-logo {
    width: 4rem;
  }
}

.c-hamburger-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
}

.c-hamburger-contact__title {
  color: #2ca6e0;
  font-size: 0.75rem;
  font-weight: 500;
  border-top: 1px solid #2ca6e0;
  border-bottom: 1px solid #2ca6e0;
  padding: 5px 30px;
}
@media screen and (min-width: 375px) {
  .c-hamburger-contact__title {
    font-size: calc(12px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger-contact__title {
    font-size: 1rem;
  }
}

.c-hamburger-contact__tel {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", "Noto Sans JP", serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 375px) {
  .c-hamburger-contact__tel {
    font-size: calc(32px + 8 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger-contact__tel {
    font-size: 2.5rem;
  }
}
.c-hamburger-contact__tel a {
  color: #036eb7;
  text-decoration: none;
}

.c-hamburger-contact__hour {
  font-size: 0.875rem;
  color: #036eb7;
  font-weight: bold;
  font-family: "Zen Maru Gothic", "Noto Sans JP", serif;
  line-height: 1.5;
}
@media screen and (min-width: 375px) {
  .c-hamburger-contact__hour {
    font-size: calc(14px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger-contact__hour {
    font-size: 1.125rem;
  }
}

.c-hamburger-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
}

#drawer {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: 540px;
  max-width: 100%;
  height: 0;
  max-height: 100vh;
  visibility: hidden;
  pointer-events: none;
  border: 6px solid #036eb7;
  transition: 0.3s ease-in-out;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #FFFFFF;
  border-bottom-left-radius: 80px 60px;
  border-bottom-right-radius: 4.375rem;
  border-width: 0.25rem;
}
@media screen and (min-width: 375px) {
  #drawer {
    padding-left: calc(16px + 34 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #drawer {
    padding-left: 3.125rem;
  }
}
@media screen and (min-width: 375px) {
  #drawer {
    padding-right: calc(16px + 34 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #drawer {
    padding-right: 3.125rem;
  }
}
@media screen and (min-width: 375px) {
  #drawer {
    border-bottom-right-radius: calc(70px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #drawer {
    border-bottom-right-radius: 5.625rem;
  }
}
@media screen and (min-width: 375px) {
  #drawer {
    border-width: calc(4px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #drawer {
    border-width: 0.375rem;
  }
}
@media only screen and (max-width: 767px) {
  #drawer {
    border-bottom-left-radius: 70px 50px;
  }
}
#drawer > * {
  opacity: 0;
}

.is-drawerActive #drawer {
  visibility: visible;
  pointer-events: auto;
  height: 800px;
  overflow-y: auto;
}
.is-drawerActive #drawer > * {
  opacity: 1;
  transition: 0.5s 0.2s ease-in-out;
}
.is-drawerActive .c-hamburger-overlay {
  pointer-events: auto;
}
.is-drawerActive footer {
  z-index: 0;
}

.l-header-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.l-header-nav-menu li {
  font-size: 0.875rem;
  margin-top: 10px;
  margin-left: 5px;
  padding-left: 2em;
  position: relative;
  line-height: 1.5;
}
@media screen and (min-width: 375px) {
  .l-header-nav-menu li {
    font-size: calc(14px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-header-nav-menu li {
    font-size: 1.125rem;
  }
}
.l-header-nav-menu li:before {
  content: "ー";
  position: absolute;
  left: 0;
  top: 0;
}
.l-header-nav-menu li.menu-slowwalk {
  font-size: 1.125rem;
  font-weight: bold;
  padding-left: 0;
  margin-left: 0;
  line-height: inherit;
}
@media screen and (min-width: 375px) {
  .l-header-nav-menu li.menu-slowwalk {
    font-size: calc(18px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-header-nav-menu li.menu-slowwalk {
    font-size: 1.375rem;
  }
}
.l-header-nav-menu li.menu-slowwalk:before {
  content: none;
}
.l-header-nav-menu li.menu-slowwalk a {
  display: block;
  color: #036eb7;
  position: relative;
  border-bottom: 3px solid #efefef;
  padding-left: 2px;
  padding-right: 1.375rem;
}
@media screen and (min-width: 375px) {
  .l-header-nav-menu li.menu-slowwalk a {
    padding-right: calc(22px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-header-nav-menu li.menu-slowwalk a {
    padding-right: 1.5rem;
  }
}
.l-header-nav-menu li.menu-slowwalk a:before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 1rem;
  background: url("../images/common/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}
@media screen and (min-width: 375px) {
  .l-header-nav-menu li.menu-slowwalk a:before {
    width: calc(10px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-header-nav-menu li.menu-slowwalk a:before {
    width: 0.75rem;
  }
}
@media screen and (min-width: 375px) {
  .l-header-nav-menu li.menu-slowwalk a:before {
    height: calc(16px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .l-header-nav-menu li.menu-slowwalk a:before {
    height: 1.25rem;
  }
}
.l-header-nav-menu li a {
  color: #6d6d6d;
}
.l-header-nav-menu li ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.l-header-nav-menu li ul li {
  margin-left: 0;
  padding-left: 0;
}
.l-header-nav-menu li ul li:before {
  content: "・";
  position: static;
}

#hamburger-character {
  position: absolute;
  right: 3.7%;
  top: 60%;
  width: 31.48%;
  z-index: -1;
  transform: translateZ(0);
}

#hamburger-character-zzz {
  animation: blink-fade 4s infinite;
}

/* --------------------------------
c-more-btn
----------------------------------- */
@media only screen and (max-width: 767px) {
  .c-more-btn, .wpcf7cp-btns {
    text-align: center;
  }
}
.c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
  display: inline-block;
  font-size: 1rem;
  color: #FFFFFF;
  background: #036eb7;
  border: 4px solid #FFFFFF;
  border-radius: 999px;
  max-width: 100%;
  transition: 0.1s ease-in-out;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 3.5em;
  min-width: 16.25rem;
  height: 3.125rem;
  line-height: 2.625rem;
  position: relative;
}
@media screen and (min-width: 375px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 375px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    min-width: calc(260px + 90 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    min-width: 21.875rem;
  }
}
@media screen and (min-width: 375px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    height: calc(50px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    height: 4.375rem;
  }
}
@media screen and (min-width: 375px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    line-height: calc(42px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    line-height: 3.875rem;
  }
}
@media only screen and (max-width: 571px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    min-width: calc(12em + 8px);
    padding: 0 2em;
  }
}
.c-more-btn a:after, .c-more-btn input:after, .c-more-btn button:after, .wpcf7cp-btns a:after, .wpcf7cp-btns input:after, .wpcf7cp-btns button:after {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  background: url("../images/common/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 5%;
  top: calc(50% - 10px);
  transition: 0.2s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .c-more-btn a:after, .c-more-btn input:after, .c-more-btn button:after, .wpcf7cp-btns a:after, .wpcf7cp-btns input:after, .wpcf7cp-btns button:after {
    content: none;
  }
}
.c-more-btn a:hover:after, .c-more-btn input:hover:after, .c-more-btn button:hover:after, .wpcf7cp-btns a:hover:after, .wpcf7cp-btns input:hover:after, .wpcf7cp-btns button:hover:after {
  right: 4%;
}
.c-more-btn--gray a, .c-more-btn--gray input, .c-more-btn--gray button, .wpcf7cp-btns--gray a, .wpcf7cp-btns--gray input, .wpcf7cp-btns--gray button {
  background: #4f4c4b;
}

.c-more-btn-inner {
  display: inline-block;
  position: relative;
}
.c-more-btn-inner:after {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  background: url("../images/common/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 5%;
  top: calc(50% - 10px);
  transition: 0.2s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .c-more-btn-inner:after {
    content: none;
  }
}
.c-more-btn-inner:hover:after {
  right: 4%;
}

.wpcf7cp-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.wpcf7cp-btns button {
  margin: 0 10px 20px;
}
@media only screen and (max-width: 571px) {
  .wpcf7cp-btns button {
    padding: 0 2em;
  }
}
.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background: #4f4c4b;
}

/* --------------------------------
c-pagination
----------------------------------- */
.c-pagination {
  padding-top: 70px;
}

.c-pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.c-pagination__num {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.c-pagination__item a, .c-pagination__item span {
  display: inline-block;
  color: inherit;
  font-weight: 600;
  transition: 0.2s ease-in-out;
  line-height: 1;
  padding: 0 0.5em;
}
.c-pagination__item a.dots, .c-pagination__item span.dots {
  pointer-events: none;
  padding: 0;
  margin: 0 -10px;
}
.c-pagination__item a.current, .c-pagination__item a:hover, .c-pagination__item span.current, .c-pagination__item span:hover {
  color: #036eb7;
}

.c-pagination__prev, .c-pagination__next {
  height: 1em;
  width: 1em;
  line-height: 1;
}
.c-pagination__prev > a, .c-pagination__prev > span, .c-pagination__next > a, .c-pagination__next > span {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  background: url("../images/common/arrow-black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.c-pagination__prev {
  margin-right: 0.5em;
}
.c-pagination__prev > a, .c-pagination__prev > span {
  transform: scale(-1);
}

.c-pagination__next {
  margin-left: 0.5em;
}

.c-pager {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.c-pager__all {
  text-align: center;
}
.c-pager__all a {
  display: inline-block;
  padding: 0.5em 2.5em 0.5em 1.5em;
  position: relative;
  border-radius: 999px;
  background: #036eb7;
  color: #FFFFFF;
  font-weight: bold;
}
.c-pager__all a:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background: url("../images/common/arrow-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.c-pager__prev, .c-pager__next {
  width: 3.5em;
}
.c-pager__prev a, .c-pager__next a {
  display: inline-block;
  width: 100%;
  position: relative;
  color: #036eb7;
  font-weight: bold;
}

.c-pager__prev {
  margin-right: 2em;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .c-pager__prev {
    margin-right: 1em;
  }
}
.c-pager__prev a:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  background: url("../images/common/arrow.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%) scale(-1);
}

.c-pager__next {
  margin-left: 2em;
}
@media only screen and (max-width: 767px) {
  .c-pager__next {
    margin-left: 1em;
  }
}
.c-pager__next a:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../images/common/arrow.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

/* --------------------------------
c-modal
----------------------------------- */
/* モーダル（オーバーレイ）の基本スタイル */
.c-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out;
}

/* JavaScriptで表示状態になったときに適用されるクラス */
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* ポップアップのコンテンツ本体（デザインはお好みで） */
.c-modal-content {
  background-color: rgba(254, 254, 254, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 600px;
  max-width: 90%;
  max-height: 90%;
  border-radius: 55px;
  position: relative;
  border: 5px solid #c6c6c6;
  overflow: hidden;
  color: #FFFFFF;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  .c-modal-content {
    padding-right: 0;
  }
}

/* 閉じるボタン */
.c-modal-close-btn {
  display: inline-block;
  line-height: 1;
  color: #c6c6c6;
  font-size: 2.125rem;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.c-modal-open-modal-btn {
  display: block;
  width: 28.06%;
  max-width: 78px;
  position: relative;
  margin: 0 auto;
  background: #036eb7;
  border-radius: 50%;
}
.c-modal-open-modal-btn:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.c-modal-open-modal-btn img {
  width: 41.03%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-modal-popup-body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* --------------------------------
p-top
----------------------------------- */
#fv {
  position: relative;
  margin-bottom: -11.9791666667%;
}
@media only screen and (max-width: 991px) {
  #fv {
    margin-bottom: -120px;
  }
}
#fv:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/top/fv-bg-universe.png");
  background-color: #151528;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
}
@media only screen and (max-width: 767px) {
  #fv:before {
    background-image: url("../images/top/fv-bg-universe-sp.png");
  }
}

#parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: calc(100vh + 358px - 1px);
  background: url("../images/top/fv-bg-earth.png");
  background-size: 1920px auto;
  background-repeat: no-repeat;
  background-position: center 100vh;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  #parallax-bg {
    background-size: 1150px auto;
    padding-top: calc(100vh + 70px - 1px);
  }
}
#parallax-bg:after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #46b4b2;
}

.parallax-text {
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .parallax-text {
    justify-content: start;
    padding-top: 45.33vw;
  }
}
.parallax-text.is-animated {
  animation: fadeIn 4s 0.2s ease-in-out both;
}

.parallax-scroll-down {
  display: inline-block;
  margin-top: 50px;
  animation: flashInterval 3s infinite;
}
@media only screen and (max-width: 767px) {
  .parallax-scroll-down {
    display: none;
  }
}

#parallax-content {
  position: relative;
}

#slowwalk-town {
  position: relative;
  font-size: 1.125rem;
}
@media only screen and (max-width: 991px) {
  #slowwalk-town {
    height: 1836px;
    position: relative;
    font-size: 0.875rem;
  }
}

@media only screen and (max-width: 991px) {
  #slowwalk-town-pc {
    display: none;
  }
}

#slowwalk-town-sp {
  display: none;
}
@media only screen and (max-width: 991px) {
  #slowwalk-town-sp {
    display: block;
    height: 1836px;
    max-width: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

#slowwalk-town-comment {
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
}

#slowwalk-town-comment-sp {
  color: #FFFFFF;
  font-weight: bold;
}

#slowwalk-town-animate, #slowwalk-town-animate-sp {
  animation: blink 6s infinite;
}

.p-top-main {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 233px, #FFFFFF 233px, #FFFFFF 100%);
}

.p-top-main h2 {
  color: #036eb7;
  text-align: center;
  margin-bottom: 1em;
  font-size: 1.125rem;
}
@media screen and (min-width: 375px) {
  .p-top-main h2 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-main h2 {
    font-size: 1.75rem;
  }
}
.p-top-main h2 img {
  display: block;
  margin: 0 auto 10px;
  max-width: 63%;
}

.p-top-character {
  padding-top: 7.5rem;
  position: relative;
}
@media screen and (min-width: 375px) {
  .p-top-character {
    padding-top: calc(120px + 80 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-character {
    padding-top: 12.5rem;
  }
}

#p-top-character-separator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  width: 1920px;
  height: 234px;
  fill: #FFFFFF;
}
#p-top-character-separator ~ * {
  position: relative;
}

.p-top-character__description {
  display: flex;
  justify-content: center;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 0 16px;
  font-size: 0.875rem;
}
@media screen and (min-width: 375px) {
  .p-top-character__description {
    font-size: calc(14px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-character__description {
    font-size: 1.125rem;
  }
}
.p-top-character__description p {
  text-align: center;
}

.p-top-character-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 8px;
}

.p-top-character-item {
  width: 278px;
  max-width: 100%;
  padding: 40px 8px 16px;
  position: relative;
}
@media only screen and (max-width: 571px) {
  .p-top-character-item {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 36px;
  }
}
.p-top-character-item:nth-child(1) .p-top-character-box {
  background: #feefdb;
}
.p-top-character-item:nth-child(1) .p-top-character-balloon__bg {
  fill: #e9ac33;
}
.p-top-character-item:nth-child(1) .p-top-character-good-title, .p-top-character-item:nth-child(1) .p-top-character-bad-title {
  background: #e9ac33;
}
.p-top-character-item:nth-child(1) .p-top-character-good, .p-top-character-item:nth-child(1) .p-top-character-bad {
  color: #e9ac33;
}
.p-top-character-item:nth-child(2) .p-top-character-box {
  background: rgba(255, 83, 83, 0.08);
}
.p-top-character-item:nth-child(2) .p-top-character-balloon__bg {
  fill: #ed7977;
}
.p-top-character-item:nth-child(2) .p-top-character-good-title, .p-top-character-item:nth-child(2) .p-top-character-bad-title {
  background: #ed7977;
}
.p-top-character-item:nth-child(2) .p-top-character-good, .p-top-character-item:nth-child(2) .p-top-character-bad {
  color: #ed7977;
}
.p-top-character-item:nth-child(3) .p-top-character-box {
  background: rgba(130, 177, 195, 0.12);
}
.p-top-character-item:nth-child(3) .p-top-character-balloon__bg {
  fill: #82b1c3;
}
.p-top-character-item:nth-child(3) .p-top-character-good-title, .p-top-character-item:nth-child(3) .p-top-character-bad-title {
  background: #82b1c3;
}
.p-top-character-item:nth-child(3) .p-top-character-good, .p-top-character-item:nth-child(3) .p-top-character-bad {
  color: #82b1c3;
}
.p-top-character-item:nth-child(4) .p-top-character-box {
  background: rgba(145, 189, 126, 0.18);
}
.p-top-character-item:nth-child(4) .p-top-character-balloon__bg {
  fill: #91bd7e;
}
.p-top-character-item:nth-child(4) .p-top-character-good-title, .p-top-character-item:nth-child(4) .p-top-character-bad-title {
  background: #91bd7e;
}
.p-top-character-item:nth-child(4) .p-top-character-good, .p-top-character-item:nth-child(4) .p-top-character-bad {
  color: #91bd7e;
}
.p-top-character-item:nth-child(5) .p-top-character-box {
  background: rgba(255, 181, 181, 0.18);
}
.p-top-character-item:nth-child(5) .p-top-character-balloon__bg {
  fill: #f093a1;
}
.p-top-character-item:nth-child(5) .p-top-character-good-title, .p-top-character-item:nth-child(5) .p-top-character-bad-title {
  background: #f093a1;
}
.p-top-character-item:nth-child(5) .p-top-character-good, .p-top-character-item:nth-child(5) .p-top-character-bad {
  color: #f093a1;
}
.p-top-character-item:hover .p-top-character-balloon {
  transform: translateX(-50%) scale(1.2);
}
.p-top-character-item:hover .p-top-character-balloon__bg {
  fill: #FFFFFF;
}
.p-top-character-item:hover:nth-child(1) .p-top-character-balloon__bg {
  stroke: #e9ac33;
}
.p-top-character-item:hover:nth-child(1) .p-top-character-balloon-inner {
  color: #e9ac33;
}
.p-top-character-item:hover:nth-child(2) .p-top-character-balloon__bg {
  stroke: #ed7977;
}
.p-top-character-item:hover:nth-child(2) .p-top-character-balloon-inner {
  color: #ed7977;
}
.p-top-character-item:hover:nth-child(3) .p-top-character-balloon__bg {
  stroke: #82b1c3;
}
.p-top-character-item:hover:nth-child(3) .p-top-character-balloon-inner {
  color: #82b1c3;
}
.p-top-character-item:hover:nth-child(4) .p-top-character-balloon__bg {
  stroke: #91bd7e;
}
.p-top-character-item:hover:nth-child(4) .p-top-character-balloon-inner {
  color: #91bd7e;
}
.p-top-character-item:hover:nth-child(5) .p-top-character-balloon__bg {
  stroke: #f093a1;
}
.p-top-character-item:hover:nth-child(5) .p-top-character-balloon-inner {
  color: #f093a1;
}
.p-top-character-item:hover .p-top-character-img {
  transform: scale(-1, 1);
}

.p-top-character-box {
  padding: 210px 30px 60px;
  border-radius: 9999px;
  height: 100%;
}
@media only screen and (max-width: 571px) {
  .p-top-character-box {
    display: flex;
    align-items: start;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
    border-radius: 50px;
  }
}

.p-top-character-balloon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
}
@media only screen and (max-width: 571px) {
  .p-top-character-balloon {
    width: 194px;
    height: 194px;
    left: 0;
    transform: none !important;
  }
}

.p-top-character-balloon-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
}

.p-top-character-balloon__bg {
  stroke: #FFFFFF;
  stroke-width: 5.6693;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: absolute;
  width: 100%;
  height: 100%;
}

.p-top-character-type {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media only screen and (max-width: 571px) {
  .p-top-character-type {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }
}
.p-top-character-type strong {
  font-size: 1.75rem;
}
@media only screen and (max-width: 571px) {
  .p-top-character-type strong {
    font-size: 1.125rem;
  }
}

.p-top-character-personality {
  font-size: 0.875rem;
  color: #4f4c4b;
  margin-bottom: 10px;
}
@media only screen and (max-width: 571px) {
  .p-top-character-personality {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }
}

.p-top-character-introduction {
  font-size: 0.8125rem;
  line-height: 1.7;
  margin-bottom: 5px;
}
@media only screen and (max-width: 571px) {
  .p-top-character-introduction {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}

.p-top-character-name {
  font-size: 1.75rem;
  font-weight: bold;
  color: #4f4c4b;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 130px;
  max-width: 100%;
}
@media only screen and (max-width: 571px) {
  .p-top-character-name {
    max-width: 60%;
    font-size: 1.25rem;
  }
}

.p-top-character-good-title, .p-top-character-bad-title {
  color: #FFFFFF;
  border-radius: 9999px;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
@media only screen and (max-width: 571px) {
  .p-top-character-good-title, .p-top-character-bad-title {
    width: 8em;
    margin: 0 auto 5px;
    font-size: 0.75rem;
  }
}

.p-top-character-good, .p-top-character-bad {
  margin-bottom: 10px;
  font-size: 0.9375rem;
  min-height: calc(1em * 1.75 * 4);
}
@media only screen and (max-width: 571px) {
  .p-top-character-good, .p-top-character-bad {
    margin-bottom: 20px;
    font-size: 0.75rem;
  }
}

.p-top-character-img-box {
  position: relative;
  overflow: hidden;
  width: 180px;
  max-width: 100%;
  margin: 0 auto;
}
.p-top-character-img-box:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.p-top-character-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 571px) {
  .p-top-character-box__left {
    width: 140px;
    padding-top: 40px;
    margin-right: 16px;
  }
}

@media only screen and (max-width: 571px) {
  .p-top-character-box__right {
    flex: 1;
  }
}

.p-top-slowwalk {
  padding-top: 3.375rem;
  padding-bottom: 234px;
  margin-bottom: -234px;
}
@media screen and (min-width: 375px) {
  .p-top-slowwalk {
    padding-top: calc(54px + 76 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-slowwalk {
    padding-top: 8.125rem;
  }
}

.p-top-slowwalk-inner {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background: #efefef;
  border-radius: 14vw;
  position: relative;
  margin-bottom: 4.375rem;
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 375px) {
  .p-top-slowwalk-inner {
    margin-bottom: calc(70px + 70 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-slowwalk-inner {
    margin-bottom: 8.75rem;
  }
}
@media screen and (min-width: 375px) {
  .p-top-slowwalk-inner {
    padding-top: calc(40px + 40 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-slowwalk-inner {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 375px) {
  .p-top-slowwalk-inner {
    padding-bottom: calc(50px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-slowwalk-inner {
    padding-bottom: 4.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-slowwalk-inner {
    border-radius: 0;
    justify-content: center;
  }
}
.p-top-slowwalk-inner:before {
  content: "";
  display: block;
  width: 50vw;
  height: 100%;
  background: #efefef;
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
}

.p-top-slowwalk-img {
  width: 436px;
  max-width: 31.6%;
  margin-left: 5.8%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top-slowwalk-img {
    margin-left: 0;
    max-width: 77%;
  }
}

.p-top-slowwalk-img__bg {
  stroke: #FFFFFF;
  stroke-width: 5.6693;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transform-origin: center;
}
@media only screen and (max-width: 767px) {
  .p-top-slowwalk-img__bg {
    transform: rotate(90deg);
  }
}

#balloon-clip {
  transform-origin: center; /* 回転の基準位置 */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  #balloon-clip {
    transform: rotate(90deg);
  }
}

.p-top-slowwalk-text {
  flex: 1;
  position: relative;
  padding: 0 calc(16px * 2);
  max-width: 560px;
}
@media only screen and (max-width: 767px) {
  .p-top-slowwalk-text {
    flex: none;
    max-width: 100%;
  }
}
.p-top-slowwalk-text h2 {
  text-align: left;
  margin-bottom: 0.5em;
}
.p-top-slowwalk-text .c-more-btn {
  margin-top: 30px;
}

.p-top-spot {
  position: relative;
  padding-top: 7.5rem;
  background: linear-gradient(to bottom, rgba(239, 239, 239, 0) 0, rgba(239, 239, 239, 0) 233px, #efefef 233px, #efefef 100%);
  padding-bottom: 234px;
  margin-bottom: -234px;
}
@media screen and (min-width: 375px) {
  .p-top-spot {
    padding-top: calc(120px + 80 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-spot {
    padding-top: 12.5rem;
  }
}

#p-top-spot-separator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  width: 1920px;
  height: 234px;
  fill: #efefef;
}
#p-top-spot-separator ~ * {
  position: relative;
}

.p-top-town-comment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 375px) {
  .p-top-town-comment {
    padding-bottom: calc(50px + 50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-town-comment {
    padding-bottom: 6.25rem;
  }
}
.p-top-town-comment:after {
  content: "";
  display: block;
  width: 172px;
  max-width: 28%;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .p-top-town-comment:after {
    content: none;
  }
}
.p-top-town-comment img {
  width: 172px;
  max-width: 28%;
  height: auto;
  margin-left: 10px;
}
.p-top-town-comment p {
  flex: 1;
  border-radius: 50px;
  background: #FFFFFF;
  padding: 2em;
  position: relative;
  max-width: 544px;
  margin-left: 1.3125rem;
}
@media screen and (min-width: 375px) {
  .p-top-town-comment p {
    margin-left: calc(21px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-town-comment p {
    margin-left: 1.6875rem;
  }
}
.p-top-town-comment p:before {
  content: "";
  display: inline-block;
  width: 1.375rem;
  height: 60px;
  background: url("../images/common/balloon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(1px, -50%);
}
@media screen and (min-width: 375px) {
  .p-top-town-comment p:before {
    width: calc(22px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-town-comment p:before {
    width: 1.75rem;
  }
}

.p-top-town-text {
  display: flex;
  justify-content: center;
  padding-bottom: 0rem;
}
@media screen and (min-width: 375px) {
  .p-top-town-text {
    padding-bottom: calc(0px + 60 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-town-text {
    padding-bottom: 3.75rem;
  }
}
.p-top-town-text p {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 375px) {
  .p-top-town-text p {
    font-size: calc(14px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-town-text p {
    font-size: 1.125rem;
  }
}

.p-top-spot-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.p-top-spot-item {
  width: 23.125rem;
  padding-bottom: 60px;
}
@media screen and (min-width: 375px) {
  .p-top-spot-item {
    width: calc(370px + 96 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-spot-item {
    width: 29.125rem;
  }
}
.p-top-spot-item .c-more-btn {
  text-align: center;
}

.p-top-spot-item__balloon {
  position: relative;
  padding-top: 3.125rem;
}
@media screen and (min-width: 375px) {
  .p-top-spot-item__balloon {
    padding-top: calc(50px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-spot-item__balloon {
    padding-top: 3.75rem;
  }
}
.p-top-spot-item__balloon:after {
  content: "";
  display: block;
  width: 3.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #d8d8d8;
  margin: 0 auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 375px) {
  .p-top-spot-item__balloon:after {
    width: calc(50px + 12 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-spot-item__balloon:after {
    width: 3.875rem;
  }
}
@media screen and (min-width: 375px) {
  .p-top-spot-item__balloon:after {
    height: calc(18px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-spot-item__balloon:after {
    height: 1.375rem;
  }
}

.p-top-spot-item__bg {
  stroke: #FFFFFF;
  stroke-width: 5.6693;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: #2ca6e0;
}

.p-top-spot-item__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.p-top-spot-item__inner h3 {
  font-size: 1.125rem;
  color: #036eb7;
}
@media screen and (min-width: 375px) {
  .p-top-spot-item__inner h3 {
    font-size: calc(18px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-spot-item__inner h3 {
    font-size: 1.5rem;
  }
}
.p-top-spot-item__inner img {
  width: 100%;
}

.p-top-spot-item__target {
  display: inline-block;
  background: #FFFFFF;
  color: #036eb7;
  border-radius: 999px;
  font-weight: bold;
  padding: 0 1em;
  margin-bottom: 10px;
  line-height: 1.5;
}

.p-top-spot-item__text {
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.5;
}
@media screen and (min-width: 375px) {
  .p-top-spot-item__text {
    font-size: calc(14px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-spot-item__text {
    font-size: 1.125rem;
  }
}

.p-top-news {
  position: relative;
  padding-top: 6.25rem;
  padding-bottom: 234px;
  margin-bottom: -234px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 233px, #FFFFFF 233px, #FFFFFF 100%);
}
@media screen and (min-width: 375px) {
  .p-top-news {
    padding-top: calc(100px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-news {
    padding-top: 7.5rem;
  }
}

#p-top-news-separator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  width: 1920px;
  height: 234px;
  fill: #FFFFFF;
}
#p-top-news-separator ~ * {
  position: relative;
}

.p-top-news-title {
  width: 220px;
  max-width: 40%;
  margin: 0 auto 30px;
}

.p-top-news-box {
  max-width: calc(1100px + 16px * 2);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  padding: 0 16px;
  padding-bottom: 2.8125rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .p-top-news-box {
    padding-bottom: calc(45px + 45 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-news-box {
    padding-bottom: 5.625rem;
  }
}
@media screen and (min-width: 375px) {
  .p-top-news-box {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-news-box {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-news-box {
    flex-direction: column;
    align-items: center;
  }
}
.p-top-news-box > ol {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 820px;
  flex: 1;
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  .p-top-news-box > ol {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.p-top-news-box > ol li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #d8d8d8;
  padding: 10px;
}
.p-top-news-box > a {
  display: inline-block;
  color: inherit;
  padding-right: 1.8em;
  position: relative;
}
.p-top-news-box > a:after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background: url("../images/common/arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 0.4em);
  right: 0;
}

.p-top-news__date {
  color: #7f7f7f;
  width: 4.375rem;
}
@media screen and (min-width: 375px) {
  .p-top-news__date {
    width: calc(70px + 100 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-news__date {
    width: 10.625rem;
  }
}

.p-top-news__category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14em;
  background: #2ca6e0;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  margin-right: 1em;
  font-size: 0.6875rem;
}
@media screen and (min-width: 375px) {
  .p-top-news__category {
    font-size: calc(11px + 3 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-news__category {
    font-size: 0.875rem;
  }
}

.p-top-news__title {
  display: flex;
  flex: 1;
  color: inherit;
  position: relative;
  min-width: 0;
  padding-right: 1.8em;
}
@media only screen and (max-width: 767px) {
  .p-top-news__title {
    flex: none;
    width: 100%;
    padding-top: 5px;
  }
}
.p-top-news__title:after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background: url("../images/common/arrow-gray.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 0.4em);
  right: 0;
}
.p-top-news__title a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}

.p-top-movie-column {
  position: relative;
  font-size: 1rem;
  margin-bottom: -16.6666666667%;
}
@media only screen and (max-width: 991px) {
  .p-top-movie-column {
    height: 974px;
    position: relative;
    font-size: 0.75rem;
    margin-bottom: -160px;
  }
}

@media only screen and (max-width: 991px) {
  #movie-column-pc {
    display: none;
  }
}

#movie-column-sp {
  display: none;
}
@media only screen and (max-width: 991px) {
  #movie-column-sp {
    display: block;
    height: 974px;
    max-width: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

#movie-column-animate, #movie-column-animate-sp {
  animation: blink 6s infinite;
}

.p-top-faq {
  position: relative;
  padding-top: 90px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5rem;
}
@media screen and (min-width: 1200px) {
  .p-top-faq {
    padding-bottom: calc(80px + 110 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-faq {
    padding-bottom: 11.875rem;
  }
}
.p-top-faq h2 {
  margin-bottom: 20px;
}
.p-top-faq p {
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (min-width: 375px) {
  .p-top-faq p {
    font-size: calc(14px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-faq p {
    font-size: 1.125rem;
  }
}
.p-top-faq img {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .p-top-faq img {
    width: 356px;
    margin: 20px 0;
  }
}

.p-top-contact {
  margin-right: 12.5%;
  margin-left: 0rem;
  padding-top: 5rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .p-top-contact {
    margin-left: calc(0px + 260 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-contact {
    margin-left: 16.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-contact {
    padding-top: calc(80px + 110 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-contact {
    padding-top: 11.875rem;
  }
}
@media only screen and (max-width: 1199px) {
  .p-top-contact {
    width: 100%;
  }
}

.p-top-contact-gmap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-top-contact-gmap {
    width: 100%;
    flex: none;
    margin-top: 20px;
    order: 1;
  }
  .p-top-contact-gmap:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%;
  }
}
.p-top-contact-gmap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-top-contact-info {
  width: 540px;
  max-width: 50%;
  margin-left: 1.25rem;
  margin-right: 16px;
}
@media screen and (min-width: 1200px) {
  .p-top-contact-info {
    margin-left: calc(20px + 50 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-contact-info {
    margin-left: 4.375rem;
  }
}
@media only screen and (max-width: 991px) {
  .p-top-contact-info {
    max-width: 100%;
    margin-left: 16px;
  }
}

.p-top-contact-entry {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #d8eef7;
  padding: 20px 30px;
  position: relative;
  border-radius: 3.125rem;
}
@media screen and (min-width: 375px) {
  .p-top-contact-entry {
    border-radius: calc(50px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-contact-entry {
    border-radius: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-contact-entry {
    padding-top: 140px;
    margin-top: 38px;
  }
}

.p-top-contact-entry__img {
  width: 178px;
  position: relative;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-top-contact-entry__img {
    margin-right: 0;
    margin-bottom: 20px;
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-top-contact-entry__img img {
  width: 156px;
}

.p-top-contact-entry__text {
  flex: 1;
  color: #036eb7;
}
@media only screen and (max-width: 767px) {
  .p-top-contact-entry__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-top-contact-entry__text strong {
  font-size: 1.125rem;
}
@media screen and (min-width: 375px) {
  .p-top-contact-entry__text strong {
    font-size: calc(18px + 3 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-contact-entry__text strong {
    font-size: 1.3125rem;
  }
}

.p-top-contact-text {
  font-size: 0.625rem;
  color: #6d6d6d;
  text-align: center;
  margin-top: 0.9375rem;
  margin-bottom: 15px;
}
@media screen and (min-width: 375px) {
  .p-top-contact-text {
    font-size: calc(10px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-contact-text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 375px) {
  .p-top-contact-text {
    margin-top: calc(15px + 65 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-contact-text {
    margin-top: 5rem;
  }
}

.p-top-contact-post-box {
  display: none;
  width: 82px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .p-top-contact-post-box {
    display: block;
    padding-bottom: 15px;
  }
}

.p-top-contact-tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 571px) {
  .p-top-contact-tel {
    flex-direction: column;
  }
}

.p-top-contact-tel__title {
  padding-right: 1.5em;
}
@media only screen and (max-width: 571px) {
  .p-top-contact-tel__title {
    margin: 5px 0;
    padding-right: 0;
  }
}
.p-top-contact-tel__title p {
  border-top: 1px solid #2ca6e0;
  border-bottom: 1px solid #2ca6e0;
  color: #2ca6e0;
  text-align: center;
  font-weight: 500;
  padding: 0.5em 1.5em;
}

.p-top-contact-tel__num {
  font-family: "Zen Maru Gothic", "Noto Sans JP", serif;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 375px) {
  .p-top-contact-tel__num {
    font-size: calc(28px + 12 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-contact-tel__num {
    font-size: 2.5rem;
  }
}
.p-top-contact-tel__num a {
  color: #036eb7;
  display: inline-block;
}

.p-top-contact-hour {
  font-family: "Zen Maru Gothic", "Noto Sans JP", serif;
  color: #036eb7;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 375px) {
  .p-top-contact-hour {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-contact-hour {
    font-size: 1.125rem;
  }
}

/* --------------------------------
p-404
----------------------------------- */
.p-404 {
  min-height: 100vh;
}
.p-404 .c-more-btn {
  margin-top: 60px;
}

.p-404-eyecatch {
  background: #FFFFFF;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
.p-404-eyecatch h1, .p-404-eyecatch .h1 {
  font-size: 0.875rem;
  color: #036eb7;
  text-align: center;
  padding-top: 6.25rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 375px) {
  .p-404-eyecatch h1, .p-404-eyecatch .h1 {
    font-size: calc(14px + 28 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-404-eyecatch h1, .p-404-eyecatch .h1 {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 375px) {
  .p-404-eyecatch h1, .p-404-eyecatch .h1 {
    padding-top: calc(100px + 100 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-404-eyecatch h1, .p-404-eyecatch .h1 {
    padding-top: 12.5rem;
  }
}
.p-404-eyecatch h1 img, .p-404-eyecatch .h1 img {
  display: block;
  margin: 0 auto;
}

.p-404-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}

/* --------------------------------
p-news
----------------------------------- */
.p-news-eyecatch {
  background: #FFFFFF;
  position: relative;
  text-align: center;
}
.p-news-eyecatch h1, .p-news-eyecatch .h1 {
  font-size: 1.125rem;
  color: #036eb7;
  text-align: center;
  padding-top: 3.75rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 375px) {
  .p-news-eyecatch h1, .p-news-eyecatch .h1 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-eyecatch h1, .p-news-eyecatch .h1 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 375px) {
  .p-news-eyecatch h1, .p-news-eyecatch .h1 {
    padding-top: calc(60px + 60 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-eyecatch h1, .p-news-eyecatch .h1 {
    padding-top: 7.5rem;
  }
}
.p-news-eyecatch h1 img, .p-news-eyecatch .h1 img {
  display: block;
  margin: 0 auto;
}

.p-news-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}

.p-news {
  padding-top: 20px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 991px) {
  .p-news {
    padding-bottom: 100px;
  }
}

.p-news-category-list {
  padding-bottom: 55px;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .p-news-category-list {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-category-list {
    font-size: 1.125rem;
  }
}
.p-news-category-list ul {
  list-style: none;
  margin: 0 -12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.p-news-category-list ul li {
  padding: 0 12px 1em;
  width: 33.3333333333%;
}
@media only screen and (max-width: 1699px) {
  .p-news-category-list ul li {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .p-news-category-list ul li {
    width: 100%;
  }
}
.p-news-category-list ul li a {
  display: block;
  background: #036eb7;
  color: #FFFFFF;
  border-radius: 5px;
  padding: 0 2em 0 0.5em;
  position: relative;
}
.p-news-category-list ul li a:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url("../images/common/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  position: absolute;
  right: 0.5em;
  top: calc(50% - 0.5em);
}
.p-news-category-list ul li.p-news-category-list--all {
  text-align: right;
  display: flex;
  justify-content: end;
  flex: 1;
}
.p-news-category-list ul li.p-news-category-list--all a {
  display: inline-block;
  background: none;
  color: #036eb7;
}
.p-news-category-list ul li.p-news-category-list--all a:after {
  background-image: url("../images/common/arrow.svg");
}

.p-news-post-list h1 {
  text-align: center;
  margin-bottom: 10px;
}
.p-news-post-list ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-news-post-list ol li {
  display: flex;
  flex-wrap: wrap;
  padding: 0.625rem;
}
@media screen and (min-width: 375px) {
  .p-news-post-list ol li {
    padding: calc(10px + 15 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-post-list ol li {
    padding: 1.5625rem;
  }
}
.p-news-post-list ol li:nth-child(2n+1) {
  background: #efefef;
}

.p-news-post-list__date {
  color: #7f7f7f;
  width: 4.375rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .p-news-post-list__date {
    width: calc(70px + 50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-post-list__date {
    width: 7.5rem;
  }
}
@media screen and (min-width: 375px) {
  .p-news-post-list__date {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-post-list__date {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 571px) {
  .p-news-post-list__date {
    width: 100%;
    margin-bottom: 5px;
  }
}

.p-news-post-list__category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14em;
  background: #2ca6e0;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  margin-right: 2em;
  font-size: 0.625rem;
}
@media screen and (min-width: 375px) {
  .p-news-post-list__category {
    font-size: calc(10px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-post-list__category {
    font-size: 0.875rem;
  }
}

.p-news-post-list__title {
  display: flex;
  flex: 1;
  color: inherit;
  position: relative;
  min-width: 0;
  padding-right: 1.8em;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 375px) {
  .p-news-post-list__title {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-post-list__title {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  .p-news-post-list__title {
    flex: none;
    width: 100%;
    padding-top: 5px;
  }
}
.p-news-post-list__title:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/common/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
}
.p-news-post-list__title a {
  display: inline-block;
  max-width: 100%;
  min-width: 0;
}

.p-news-post {
  background: #efefef;
  border-radius: 10px;
}
@media only screen and (max-width: 1199px) {
  .p-news-post {
    margin-top: 50px;
  }
}
.p-news-post h1 {
  margin-bottom: 20px;
}
.p-news-post > .l-inner {
  position: relative;
}

.p-news-post__meta {
  position: absolute;
  bottom: calc(100% + 40px);
  right: 0;
  width: calc((100% - 184px) / 2);
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .p-news-post__meta {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-post__meta {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  .p-news-post__meta {
    bottom: calc(100% + 10px);
    width: 100%;
  }
}

.p-news-post__date {
  color: #7f7f7f;
}

.p-news-post__category {
  margin-left: 1em;
}
.p-news-post__category a {
  display: inline-block;
  border-radius: 5px;
  color: #FFFFFF;
  background: #036eb7;
  padding: 0 1em;
}

.p-news-post-box {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 375px) {
  .p-news-post-box {
    padding-top: calc(15px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-post-box {
    padding-top: 2.5rem;
  }
}
@media screen and (min-width: 375px) {
  .p-news-post-box {
    padding-bottom: calc(15px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-news-post-box {
    padding-bottom: 2.5rem;
  }
}

/* --------------------------------
p-slowwalk-town
----------------------------------- */
@media only screen and (max-width: 991px) {
  body.town footer {
    background: #efefef;
    width: 62.5%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  body.town footer {
    padding-bottom: 10rem;
    width: 90%;
  }
}
@media only screen and (max-width: 767px) and (min-width: 572px) {
  body.town footer {
    padding-bottom: calc(160px + -160 * (100vw - 572px) / 196);
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  body.town footer {
    padding-bottom: 0rem;
  }
}
@media only screen and (max-width: 571px) {
  body.town footer {
    padding-bottom: 7.5rem;
  }
}
@media only screen and (max-width: 571px) and (min-width: 375px) {
  body.town footer {
    padding-bottom: calc(120px + 40 * (100vw - 375px) / 197);
  }
}
@media only screen and (max-width: 571px) and (min-width: 572px) {
  body.town footer {
    padding-bottom: 10rem;
  }
}

#message, #character, #floor, #partner {
  padding-top: 40px;
  margin-top: -40px;
}

.p-slowwalk-town-eyecatch {
  background: #FFFFFF;
  position: relative;
}
.p-slowwalk-town-eyecatch h1 {
  font-size: 1.125rem;
  color: #036eb7;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 10px;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-eyecatch h1 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-eyecatch h1 {
    font-size: 1.75rem;
  }
}
.p-slowwalk-town-eyecatch h1 img {
  display: block;
  margin: 0 auto;
}
.p-slowwalk-town-eyecatch p {
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 1em;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-eyecatch p {
    font-size: calc(12px + 9 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-eyecatch p {
    font-size: 1.3125rem;
  }
}

.p-slowwalk-town-eyecatch-img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-town-eyecatch-img {
    width: auto;
    max-width: none;
    height: 268px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-slowwalk-town-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}

.p-slowwalk-town {
  background: #efefef;
  padding-bottom: 100px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-town {
    margin-top: -2.5rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 375px) {
  .p-slowwalk-town {
    margin-top: calc(-40px + 40 * (100vw - 375px) / 393);
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  .p-slowwalk-town {
    margin-top: 0rem;
  }
}

#p-slowwalk-town-separator {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  fill: #efefef;
}
#p-slowwalk-town-separator + * {
  padding-top: 2.5rem;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-town-separator + * {
    padding-top: calc(40px + -40 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-town-separator + * {
    padding-top: 0rem;
  }
}
#p-slowwalk-town-separator + * h2 {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-town-separator + * h2 {
    top: calc(0px + -100 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-town-separator + * h2 {
    top: -6.25rem;
  }
}

.p-slowwalk-town-message {
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-message {
    padding-bottom: calc(30px + 30 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-message {
    padding-bottom: 3.75rem;
  }
}
.p-slowwalk-town-message h2 {
  text-align: center;
  margin-bottom: 1.5em;
}

.p-slowwalk-town-message-text {
  font-size: 0.75rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-message-text {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-message-text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-message-text {
    margin-bottom: calc(40px + 40 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-message-text {
    margin-bottom: 5rem;
  }
}

.p-slowwalk-town-message-balloon {
  margin: 0 -0.68vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-message-balloon {
    padding-bottom: calc(40px + 40 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-message-balloon {
    padding-bottom: 5rem;
  }
}

.p-slowwalk-town-message-balloon-item {
  width: 248px;
  max-width: 25%;
  position: relative;
  background-image: url("../images/common/balloon-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 2.8225%;
}
@media only screen and (max-width: 1199px) {
  .p-slowwalk-town-message-balloon-item {
    max-width: 50%;
    margin-bottom: 5.645%;
  }
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-town-message-balloon-item {
    max-width: 100%;
    margin-bottom: 11.29%;
  }
}
.p-slowwalk-town-message-balloon-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-slowwalk-town-message-balloon-item:after {
  content: "";
  display: block;
  width: 16.13%;
  height: 5.65%;
  background: #d8d8d8;
  border-radius: 50%;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.p-slowwalk-town-message-balloon-item > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.94vw;
  font-weight: 500;
  color: #036eb7;
  white-space: nowrap;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 8.06%;
}
@media only screen and (max-width: 1199px) {
  .p-slowwalk-town-message-balloon-item > p {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 966px) {
  .p-slowwalk-town-message-balloon-item > p {
    font-size: 1.86vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-town-message-balloon-item > p {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 483px) {
  .p-slowwalk-town-message-balloon-item > p {
    font-size: 3.72vw;
  }
}

.p-slowwalk-town-character h2 {
  text-align: center;
  margin-bottom: 1.5em;
}

.p-slowwalk-town-mayor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-mayor {
    padding-bottom: calc(60px + 60 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-mayor {
    padding-bottom: 7.5rem;
  }
}

.p-slowwalk-town-mayor__left {
  width: 346px;
  max-width: 45%;
  margin-right: 10%;
}
@media only screen and (max-width: 991px) {
  .p-slowwalk-town-mayor__left {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.p-slowwalk-town-mayor__img {
  margin-bottom: 10px;
}

.p-slowwalk-town-mayor__name {
  width: 160px;
  max-width: 100%;
  margin: 0 auto 10px;
}

.p-slowwalk-town-mayor__right {
  flex: 1;
}
@media only screen and (max-width: 991px) {
  .p-slowwalk-town-mayor__right {
    flex: none;
    width: 100%;
  }
}

.p-slowwalk-town-mayor__greeting {
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-mayor__greeting {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-mayor__greeting {
    font-size: 1.125rem;
  }
}

.p-slowwalk-town-character-container {
  display: flex;
  justify-content: space-around;
  align-items: end;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-character-container {
    padding-bottom: calc(20px + 30 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-character-container {
    padding-bottom: 3.125rem;
  }
}

.p-slowwalk-town-character-box {
  width: 298px;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-character-box {
    margin-bottom: calc(40px + 50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-character-box {
    margin-bottom: 5.625rem;
  }
}

.p-slowwalk-town-character__img {
  text-align: center;
  margin-bottom: 10px;
}

.p-slowwalk-town-character__name {
  margin: 0 auto 10px;
  width: 160px;
  max-width: 100%;
}

.p-slowwalk-town-character__bg {
  fill: #FFFFFF;
}

.p-slowwalk-town-character-modal {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
}

.p-slowwalk-town-character-modal__left {
  max-width: 50%;
  width: 218px;
  padding: 10px 20px;
  text-align: center;
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-town-character-modal__left {
    max-width: 100%;
    padding: 10px 0 20px;
  }
}

.p-slowwalk-town-character-modal__img {
  margin-bottom: 20px;
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-town-character-modal__img {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-slowwalk-town-character-modal__title {
  margin-bottom: 10px;
}

.p-slowwalk-town-character-modal__name {
  line-height: 1;
  width: 160px;
  max-width: 100%;
  margin: 0 auto;
}
.p-slowwalk-town-character-modal__name img {
  vertical-align: top;
  filter: invert(100%) brightness(200%);
}

.p-slowwalk-town-character-modal__right {
  flex: 1;
  padding: 10px 20px 10px 0;
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-town-character-modal__right {
    flex: none;
    width: 100%;
    padding: 20px 0 0;
  }
}
.p-slowwalk-town-character-modal__right > dl {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
.p-slowwalk-town-character-modal__right > dl dt {
  padding-right: 10px;
  padding-bottom: 5px;
  margin: 0;
}
.p-slowwalk-town-character-modal__right > dl dd {
  padding-bottom: 5px;
  margin: 0;
}

#p-slowwalk-town-separator2 {
  width: 100%;
  fill: #FFFFFF;
}
#p-slowwalk-town-separator2 + * {
  margin-top: -1px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-town-separator2 + * {
    padding-top: calc(50px + -50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-town-separator2 + * {
    padding-top: 0rem;
  }
}
#p-slowwalk-town-separator2 + * h2 {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-town-separator2 + * h2 {
    top: calc(0px + -100 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-town-separator2 + * h2 {
    top: -6.25rem;
  }
}

.p-slowwalk-town-floor {
  position: relative;
  background: #FFFFFF;
}
.p-slowwalk-town-floor h2 {
  text-align: center;
  margin-bottom: 1.5em;
}

.p-slowwalk-town-floor-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-floor-text {
    padding-bottom: calc(50px + 50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-floor-text {
    padding-bottom: 6.25rem;
  }
}
.p-slowwalk-town-floor-text:after {
  content: "";
  display: block;
  width: 154px;
  max-width: 28%;
  margin-right: 10px;
}
@media only screen and (max-width: 1399px) {
  .p-slowwalk-town-floor-text:after {
    content: none;
  }
}
.p-slowwalk-town-floor-text img {
  width: 154px;
  max-width: 28%;
  height: auto;
  margin-left: 10px;
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-town-floor-text img {
    order: 1;
  }
}
.p-slowwalk-town-floor-text p {
  flex: 1;
  border-radius: 60px;
  background: #efefef;
  padding: 2em;
  position: relative;
  max-width: 555px;
  margin-left: 1.3125rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-floor-text p {
    margin-left: calc(21px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-floor-text p {
    margin-left: 1.6875rem;
  }
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-floor-text p {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-floor-text p {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-town-floor-text p {
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 31px;
  }
}
.p-slowwalk-town-floor-text p:before {
  content: "";
  display: inline-block;
  width: 1.375rem;
  height: 60px;
  background: url("../images/common/balloon-gray.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(1px, -50%);
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-floor-text p:before {
    width: calc(22px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-floor-text p:before {
    width: 1.75rem;
  }
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-town-floor-text p:before {
    transform: translateX(50%) translateY(50%) rotate(-90deg) translateX(-50%) translateX(1px);
    top: auto;
    bottom: 0;
    right: 50%;
  }
}

.p-slowwalk-town-floor-map {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.p-slowwalk-town-floor-map-item {
  width: 308px;
  max-width: 33.3333333333%;
  padding: 0 10px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-floor-map-item {
    margin-bottom: calc(20px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-floor-map-item {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  .p-slowwalk-town-floor-map-item {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-town-floor-map-item {
    max-width: 100%;
  }
}

.p-slowwalk-town-floor-map__img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.p-slowwalk-town-floor-map__img:before {
  content: "";
  display: block;
  padding-top: 86.1111111111%;
}
.p-slowwalk-town-floor-map__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.p-slowwalk-town-floor-map__caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  min-width: 6em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-floor-map__caption {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-floor-map__caption {
    font-size: 0.875rem;
  }
}
.p-slowwalk-town-floor-map__caption:before {
  content: "";
  width: 100%;
  height: 200%;
  background: #FFFFFF;
  border-radius: 999px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-slowwalk-town-floor-character {
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-floor-character {
    padding-top: calc(40px + 50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-floor-character {
    padding-top: 5.625rem;
  }
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-floor-character {
    padding-bottom: calc(40px + 40 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-floor-character {
    padding-bottom: 5rem;
  }
}

#p-slowwalk-town-arc {
  width: 100%;
  fill: #efefef;
}
#p-slowwalk-town-arc + * {
  margin-top: -1px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-town-arc + * {
    padding-top: calc(50px + -50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-town-arc + * {
    padding-top: 0rem;
  }
}
#p-slowwalk-town-arc + * h2 {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-town-arc + * h2 {
    top: calc(0px + -60 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-town-arc + * h2 {
    top: -3.75rem;
  }
}

.p-slowwalk-town-partner {
  background: #FFFFFF;
  position: relative;
}
.p-slowwalk-town-partner h2 {
  font-size: 1.0625rem;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-partner h2 {
    font-size: calc(17px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-partner h2 {
    font-size: 1.3125rem;
  }
}

.p-slowwalk-town-partner-inner {
  background: #efefef;
  position: relative;
}

.p-slowwalk-town-partner-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 10px;
}

.p-slowwalk-town-partner-bnr {
  width: 434px;
  max-width: 100%;
  padding: 0 10px 20px;
}
.p-slowwalk-town-partner-bnr img {
  box-shadow: 5px 5px 0 #d3d1d1;
  border-radius: 1.5625rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-town-partner-bnr img {
    border-radius: calc(25px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-town-partner-bnr img {
    border-radius: 2.1875rem;
  }
}

/* --------------------------------
p-faq
----------------------------------- */
/* FAQ ページスタイル */
body.faq {
  background: #014419;
}
@media only screen and (max-width: 767px) {
  body.faq {
    padding-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 572px) {
  body.faq {
    padding-bottom: calc(60px + -60 * (100vw - 572px) / 196);
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  body.faq {
    padding-bottom: 0rem;
  }
}
@media only screen and (max-width: 571px) {
  body.faq {
    padding-bottom: 7.5rem;
  }
}
@media only screen and (max-width: 571px) and (min-width: 375px) {
  body.faq {
    padding-bottom: calc(120px + 40 * (100vw - 375px) / 197);
  }
}
@media only screen and (max-width: 571px) and (min-width: 572px) {
  body.faq {
    padding-bottom: 10rem;
  }
}
body.faq .l-footer {
  color: #FFFFFF;
}

/* ヘッダー */
.p-faq-eyecatch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-faq-eyecatch h1 {
  font-size: 1.125rem;
  color: #FFFFFF;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 375px) {
  .p-faq-eyecatch h1 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-faq-eyecatch h1 {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-faq-eyecatch h1 {
    display: block;
  }
}
.p-faq-eyecatch h1 img {
  display: block;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .p-faq-eyecatch h1 img {
    margin: 0 auto;
  }
}

.p-faq-eyecatch-img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-faq-eyecatch-img {
    width: auto;
    max-width: none;
    height: 130px;
  }
}

.p-faq-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}

.faq-description {
  font-size: 0.75rem;
  margin-bottom: 30px;
  color: #FFFFFF;
}
@media screen and (min-width: 375px) {
  .faq-description {
    font-size: calc(12px + 9 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-description {
    font-size: 1.3125rem;
  }
}

.p-faq {
  color: #FFFFFF;
  padding-top: 60px;
  padding-bottom: 100px;
}
.p-faq h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* カテゴリータブ */
.faq-category-tabs {
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 375px) {
  .faq-category-tabs {
    padding-bottom: calc(40px + 60 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-category-tabs {
    padding-bottom: 6.25rem;
  }
}

.faq-tabs-list {
  list-style: none;
  margin: 0 -12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.faq-tabs-list .faq-tab-item {
  padding: 0 12px 1em;
  min-width: 25%;
}
@media only screen and (max-width: 1699px) {
  .faq-tabs-list .faq-tab-item {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .faq-tabs-list .faq-tab-item {
    width: 100%;
  }
}
.faq-tabs-list .faq-tab-item.active .faq-tab-button {
  color: #036eb7;
  background-color: #FFFFFF;
}
.faq-tabs-list .faq-tab-item.active .faq-tab-button:after {
  background-image: url(../images/common/arrow.svg) !important;
}
.faq-tabs-list .faq-tab-item.all {
  text-align: right;
  display: flex;
  justify-content: end;
  flex: 1;
  text-align: right;
}
.faq-tabs-list .faq-tab-item.all .faq-tab-button {
  background: none;
  display: inline-block;
  width: auto;
}
.faq-tabs-list .faq-tab-item .faq-tab-button {
  display: block;
  width: 100%;
  background: #036eb7;
  color: #FFFFFF;
  border-radius: 5px;
  padding: 5px 1.5em 5px 1em;
  position: relative;
  text-align: left;
}
.faq-tabs-list .faq-tab-item .faq-tab-button:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url("../images/common/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  position: absolute;
  right: 0.5em;
  top: calc(50% - 0.5em);
}

/* FAQ項目 */
.faq-item.hidden {
  display: none;
}

/* 質問部分 */
.faq-category-name {
  margin-bottom: 1em;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 0.25em;
}

.faq-question {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  user-select: none;
  background-color: #036eb7;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: bold;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (min-width: 375px) {
  .faq-question {
    font-size: calc(12px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-question {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 375px) {
  .faq-question {
    padding-left: calc(10px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-question {
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 375px) {
  .faq-question {
    padding-right: calc(10px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-question {
    padding-right: 1.25rem;
  }
}
.faq-question.active > .faq-toggle {
  transform: rotate(180deg);
}
.faq-question.active + .faq-answer {
  max-height: 100vh;
  transition: 0.5s ease-in-out;
}

.faq-question-text {
  display: flex;
  align-items: flex-start;
  color: #FFFFFF;
  flex: 1;
}
.faq-question-text p {
  flex: 1;
  padding-top: 0.125rem;
}
@media screen and (min-width: 375px) {
  .faq-question-text p {
    padding-top: calc(2px + 3 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-question-text p {
    padding-top: 0.3125rem;
  }
}

.faq-q-icon,
.faq-a-icon {
  margin-right: 0.3125rem;
}
@media screen and (min-width: 375px) {
  .faq-q-icon,
  .faq-a-icon {
    margin-right: calc(5px + 5 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-q-icon,
  .faq-a-icon {
    margin-right: 0.625rem;
  }
}
.faq-q-icon img,
.faq-a-icon img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 375px) {
  .faq-q-icon img,
  .faq-a-icon img {
    width: calc(24px + 24 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-q-icon img,
  .faq-a-icon img {
    width: 3rem;
  }
}
@media screen and (min-width: 375px) {
  .faq-q-icon img,
  .faq-a-icon img {
    height: calc(24px + 24 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-q-icon img,
  .faq-a-icon img {
    height: 3rem;
  }
}

/*.faq-q-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #4a90e2;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}*/
.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
}

.faq-toggle-icon {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}

/* 回答部分 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .faq-answer {
    margin-bottom: calc(20px + 30 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-answer {
    margin-bottom: 3.125rem;
  }
}

.faq-answer-content {
  display: flex;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 375px) {
  .faq-answer-content {
    padding-left: calc(10px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-answer-content {
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 375px) {
  .faq-answer-content {
    padding-right: calc(10px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-answer-content {
    padding-right: 1.25rem;
  }
}

/*.faq-a-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #5cb85c;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 20px;
}*/
.faq-answer-text {
  flex: 1;
  color: #FFFFFF;
  padding-top: 0.125rem;
}
@media screen and (min-width: 375px) {
  .faq-answer-text {
    padding-top: calc(2px + 8 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .faq-answer-text {
    padding-top: 0.625rem;
  }
}

/* 結果なしメッセージ */
.faq-no-results p {
  text-align: center;
}

/* --------------------------------
p-column
----------------------------------- */
body.post-type-archive-column, body.tax-column-category, body.single-column {
  background: #efefef;
}
@media only screen and (max-width: 767px) {
  body.post-type-archive-column, body.tax-column-category, body.single-column {
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 572px) {
  body.post-type-archive-column, body.tax-column-category, body.single-column {
    padding-bottom: calc(160px + -160 * (100vw - 572px) / 196);
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  body.post-type-archive-column, body.tax-column-category, body.single-column {
    padding-bottom: 0rem;
  }
}
@media only screen and (max-width: 571px) {
  body.post-type-archive-column, body.tax-column-category, body.single-column {
    padding-bottom: 7.5rem;
  }
}
@media only screen and (max-width: 571px) and (min-width: 375px) {
  body.post-type-archive-column, body.tax-column-category, body.single-column {
    padding-bottom: calc(120px + 40 * (100vw - 375px) / 197);
  }
}
@media only screen and (max-width: 571px) and (min-width: 572px) {
  body.post-type-archive-column, body.tax-column-category, body.single-column {
    padding-bottom: 10rem;
  }
}

body.single-column .p-column-eyecatch {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  body.single-column .p-column-eyecatch {
    padding-bottom: calc(60px + 90 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  body.single-column .p-column-eyecatch {
    padding-bottom: 9.375rem;
  }
}

.p-column-eyecatch {
  background: #FFFFFF;
  position: relative;
  text-align: center;
}
.p-column-eyecatch h1, .p-column-eyecatch .h1 {
  font-size: 1.125rem;
  color: #036eb7;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 20px;
}
@media screen and (min-width: 375px) {
  .p-column-eyecatch h1, .p-column-eyecatch .h1 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-eyecatch h1, .p-column-eyecatch .h1 {
    font-size: 1.75rem;
  }
}
.p-column-eyecatch h1 img, .p-column-eyecatch .h1 img {
  display: block;
  margin: 0 auto;
}
.p-column-eyecatch p {
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 1em;
}
@media screen and (min-width: 375px) {
  .p-column-eyecatch p {
    font-size: calc(12px + 9 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-eyecatch p {
    font-size: 1.3125rem;
  }
}
@media only screen and (max-width: 571px) {
  .p-column-eyecatch p br {
    display: none;
  }
}

.p-column-eyecatch-img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-column-eyecatch-img {
    width: auto;
    max-width: none;
    height: 158px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-column-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}

#p-column-separator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 100%;
  fill: #efefef;
}
@media only screen and (max-width: 767px) {
  #p-column-separator {
    height: 124px;
    width: auto;
    max-width: none;
  }
}

.p-column {
  padding-top: 1.875rem;
  padding-bottom: 200px;
  position: relative;
}
@media screen and (min-width: 375px) {
  .p-column {
    padding-top: calc(30px + 40 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column {
    padding-top: 4.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-column {
    padding-bottom: 6.25rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 375px) {
  .p-column {
    padding-bottom: calc(100px + 100 * (100vw - 375px) / 393);
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  .p-column {
    padding-bottom: 12.5rem;
  }
}

.p-column-category-list {
  padding-bottom: 20px;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .p-column-category-list {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-category-list {
    font-size: 1.125rem;
  }
}
.p-column-category-list ul {
  list-style: none;
  margin: 0 -12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.p-column-category-list ul li {
  padding: 0 12px 1em;
  min-width: 33.3333333333%;
}
@media only screen and (max-width: 1699px) {
  .p-column-category-list ul li {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .p-column-category-list ul li {
    width: 100%;
  }
}
.p-column-category-list ul li a {
  display: block;
  background: #036eb7;
  color: #FFFFFF;
  border-radius: 5px;
  padding: 0 2em 0 0.5em;
  position: relative;
}
.p-column-category-list ul li a:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url("../images/common/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  position: absolute;
  right: 0.5em;
  top: calc(50% - 0.5em);
}
.p-column-category-list ul li.p-column-category-list--all {
  text-align: right;
  display: flex;
  justify-content: end;
  flex: 1;
}
.p-column-category-list ul li.p-column-category-list--all a {
  display: inline-block;
  background: none;
  color: #036eb7;
}
.p-column-category-list ul li.p-column-category-list--all a:after {
  background-image: url("../images/common/arrow.svg");
}

.p-column-post-list h1 {
  text-align: center;
  margin-bottom: 10px;
}
.p-column-post-list ol {
  list-style: none;
  padding: 0;
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}
.p-column-post-list ol li {
  padding: 0 8px;
  margin-bottom: 1.25rem;
  width: 33.3333333333%;
}
@media screen and (min-width: 375px) {
  .p-column-post-list ol li {
    margin-bottom: calc(20px + 30 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-post-list ol li {
    margin-bottom: 3.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  .p-column-post-list ol li {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .p-column-post-list ol li {
    width: 100%;
  }
}

.p-column-post-list__img {
  border-radius: 10px;
  border: 5px solid #FFFFFF;
  overflow: hidden;
}
.p-column-post-list__img a {
  display: block;
  width: 100%;
  position: relative;
}
.p-column-post-list__img a:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
}
.p-column-post-list__img a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-column-post-list__date {
  color: #7f7f7f;
  width: 4.375rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .p-column-post-list__date {
    width: calc(70px + 50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-post-list__date {
    width: 7.5rem;
  }
}
@media screen and (min-width: 375px) {
  .p-column-post-list__date {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-post-list__date {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 571px) {
  .p-column-post-list__date {
    width: 100%;
    margin-bottom: 5px;
  }
}

.p-column-post-list__title {
  display: flex;
  flex: 1;
  color: inherit;
  position: relative;
  min-width: 0;
  padding-right: 1.8em;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 375px) {
  .p-column-post-list__title {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-post-list__title {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  .p-column-post-list__title {
    flex: none;
    width: 100%;
    padding-top: 5px;
  }
}
.p-column-post-list__title a {
  display: inline-block;
  max-width: 100%;
  min-width: 0;
}

.p-column-post-list__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-column-post {
  padding-top: 0.5rem;
}
@media screen and (min-width: 375px) {
  .p-column-post {
    padding-top: calc(8px + 52 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-post {
    padding-top: 3.75rem;
  }
}
.p-column-post h1 {
  margin-bottom: 20px;
  border-bottom: 1px solid #4f4c4b;
  font-size: 1.125rem;
}
@media screen and (min-width: 375px) {
  .p-column-post h1 {
    font-size: calc(18px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-post h1 {
    font-size: 1.375rem;
  }
}

.p-column-post__meta {
  position: absolute;
  bottom: calc(100% + 40px);
  right: 0;
  width: calc((100% - 184px) / 2);
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .p-column-post__meta {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-column-post__meta {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  .p-column-post__meta {
    bottom: calc(100% + 10px);
    width: 100%;
  }
}

.p-column-post__date {
  color: #7f7f7f;
}

.p-column-post__category {
  margin-left: 1em;
}
.p-column-post__category a {
  display: inline-block;
  border-radius: 5px;
  color: #FFFFFF;
  background: #036eb7;
  padding: 0 1em;
}

/* --------------------------------
p-slowwalk-challenge
----------------------------------- */
body.challenge {
  background: #efefef;
}
@media only screen and (max-width: 767px) {
  body.challenge {
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 572px) {
  body.challenge {
    padding-bottom: calc(160px + -160 * (100vw - 572px) / 196);
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  body.challenge {
    padding-bottom: 0rem;
  }
}
@media only screen and (max-width: 571px) {
  body.challenge {
    padding-bottom: 7.5rem;
  }
}
@media only screen and (max-width: 571px) and (min-width: 375px) {
  body.challenge {
    padding-bottom: calc(120px + 40 * (100vw - 375px) / 197);
  }
}
@media only screen and (max-width: 571px) and (min-width: 572px) {
  body.challenge {
    padding-bottom: 10rem;
  }
}

.p-slowwalk-challenge-eyecatch {
  background: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-slowwalk-challenge-eyecatch h1 {
  font-size: 1.125rem;
  color: #036eb7;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-eyecatch h1 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-eyecatch h1 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-eyecatch h1 {
    margin-bottom: calc(10px + 50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-eyecatch h1 {
    margin-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-challenge-eyecatch h1 {
    display: block;
  }
}
.p-slowwalk-challenge-eyecatch h1 img {
  display: block;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-challenge-eyecatch h1 img {
    margin: 0 auto;
  }
}

.p-slowwalk-challenge-sub-title {
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-sub-title {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-sub-title {
    font-size: 1.125rem;
  }
}

.p-slowwalk-challenge-sub-title-inner {
  display: flex;
  justify-content: center;
  border-radius: 999px;
  background: #2ca6e0;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .p-slowwalk-challenge-sub-title-inner {
    flex-direction: column;
    background: none;
  }
}

.p-slowwalk-challenge-type {
  display: inline-block;
  padding: 0 1em;
}
@media only screen and (max-width: 1199px) {
  .p-slowwalk-challenge-type {
    border-radius: 999px;
    background: #2ca6e0;
    margin-bottom: 5px;
  }
}

.p-slowwalk-challenge-target {
  display: inline-block;
  padding: 0 1em;
  border-radius: 999px;
  background: #036eb7;
}

.p-slowwalk-challenge-text {
  text-align: center;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-text {
    font-size: calc(12px + 9 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-text {
    font-size: 1.3125rem;
  }
}

.p-slowwalk-challenge-eyecatch-img {
  width: 100%;
  margin-top: 0rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-eyecatch-img {
    margin-top: calc(0px + -180 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-eyecatch-img {
    margin-top: -11.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-challenge-eyecatch-img {
    width: auto;
    max-width: none;
    height: 180px;
    margin-top: -3.75rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 375px) {
  .p-slowwalk-challenge-eyecatch-img {
    margin-top: calc(-60px + 60 * (100vw - 375px) / 197);
  }
}
@media only screen and (max-width: 767px) and (min-width: 572px) {
  .p-slowwalk-challenge-eyecatch-img {
    margin-top: 0rem;
  }
}

.p-slowwalk-challenge-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}

.p-slowwalk-challenge {
  background: #efefef;
  padding-bottom: 100px;
  position: relative;
  padding-top: 2.5rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge {
    padding-top: calc(40px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge {
    padding-top: 3.75rem;
  }
}

#p-slowwalk-challenge-separator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 100%;
  fill: #efefef;
}
#p-slowwalk-challenge-separator + * {
  position: relative;
}

.p-slowwalk-challenge-about h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-about h2 {
    margin-bottom: calc(20px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-about h2 {
    margin-bottom: 2.5rem;
  }
}
.p-slowwalk-challenge-about > p {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-about > p {
    padding: calc(20px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-about > p {
    padding: 1.875rem;
  }
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-about > p {
    margin-bottom: calc(60px + 70 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-about > p {
    margin-bottom: 8.125rem;
  }
}

.p-slowwalk-challenge-comment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-comment {
    padding-bottom: calc(20px + 30 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-comment {
    padding-bottom: 3.125rem;
  }
}
.p-slowwalk-challenge-comment:after {
  content: "";
  display: block;
  width: 154px;
  max-width: 28%;
  margin-right: 10px;
}
@media only screen and (max-width: 1399px) {
  .p-slowwalk-challenge-comment:after {
    content: none;
  }
}
.p-slowwalk-challenge-comment img {
  width: 154px;
  max-width: 28%;
  height: auto;
  margin-left: 10px;
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-challenge-comment img {
    order: 1;
    margin-left: 0;
  }
}
.p-slowwalk-challenge-comment p {
  flex: 1;
  border-radius: 60px;
  background: #FFFFFF;
  padding: 2em;
  position: relative;
  max-width: 555px;
  margin-left: 1.3125rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-comment p {
    margin-left: calc(21px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-comment p {
    margin-left: 1.6875rem;
  }
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-comment p {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-comment p {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-challenge-comment p {
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 31px;
  }
}
.p-slowwalk-challenge-comment p:before {
  content: "";
  display: inline-block;
  width: 1.375rem;
  height: 60px;
  background: url("../images/common/balloon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(1px, -50%);
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-comment p:before {
    width: calc(22px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-comment p:before {
    width: 1.75rem;
  }
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-challenge-comment p:before {
    transform: translateX(50%) translateY(50%) rotate(-90deg) translateX(-50%) translateX(1px);
    top: auto;
    bottom: 0;
    right: 50%;
  }
}

#p-slowwalk-challenge-separator2 {
  width: 100%;
  fill: #FFFFFF;
}
#p-slowwalk-challenge-separator2 + * {
  margin-top: -1px;
  position: relative;
  padding-top: 4.375rem;
  background: #FFFFFF;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-challenge-separator2 + * {
    padding-top: calc(70px + -70 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-challenge-separator2 + * {
    padding-top: 0rem;
  }
}
#p-slowwalk-challenge-separator2 + * h2 {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-challenge-separator2 + * h2 {
    top: calc(0px + -140 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-challenge-separator2 + * h2 {
    top: -8.75rem;
  }
}

.p-slowwalk-challenge-support h2 {
  text-align: center;
}
.p-slowwalk-challenge-support h2 img {
  display: block;
  margin: 0 auto;
  width: 2.3125rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-challenge-support h2 img {
    width: calc(37px + 37 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support h2 img {
    width: 4.625rem;
  }
}

.p-slowwalk-challenge-support-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-inner {
    padding-bottom: calc(60px + 60 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-inner {
    padding-bottom: 7.5rem;
  }
}

.p-slowwalk-challenge-support__left {
  max-width: 50%;
  padding-right: 10px;
}
@media only screen and (max-width: 991px) {
  .p-slowwalk-challenge-support__left {
    max-width: 100%;
    padding-right: 0;
  }
}

.p-slowwalk-challenge-support__right {
  max-width: 50%;
  margin-left: auto;
  padding-left: 10px;
  padding-top: 20px;
}
@media only screen and (max-width: 991px) {
  .p-slowwalk-challenge-support__right {
    max-width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
}

.p-slowwalk-challenge-support-table:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 14.2201834862%;
  background: url("../images/common/memo-bg.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
.p-slowwalk-challenge-support-table dl {
  margin-top: -1px;
  background: #fcf8eb;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-table dl {
    padding-left: calc(10px + 40 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-table dl {
    padding-left: 3.125rem;
  }
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-table dl {
    padding-right: calc(10px + 20 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-table dl {
    padding-right: 1.875rem;
  }
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-table dl {
    margin-bottom: calc(20px + 20 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-table dl {
    margin-bottom: 2.5rem;
  }
}
.p-slowwalk-challenge-support-table dl > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 7px;
  padding-top: 10px;
  background: repeating-linear-gradient(-55deg, #d8d8d8, #d8d8d8 1px, rgba(216, 216, 216, 0) 1px, rgba(216, 216, 216, 0) 4px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 7px;
}
.p-slowwalk-challenge-support-table dl > div dt {
  font-size: 0.75rem;
  color: #036eb7;
  font-weight: bold;
  width: 6em;
  padding-bottom: 10px;
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-table dl > div dt {
    font-size: calc(12px + 9 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-table dl > div dt {
    font-size: 1.3125rem;
  }
}
.p-slowwalk-challenge-support-table dl > div dd {
  flex: 1;
  padding-bottom: 10px;
  line-height: 1.3;
}
.p-slowwalk-challenge-support-table dl > div dd * + .p-slowwalk-challenge-support-schedule__name {
  margin-top: 20px;
}

.p-slowwalk-challenge-support-target {
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-target {
    font-size: calc(12px + 9 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-target {
    font-size: 1.3125rem;
  }
}

.p-slowwalk-challenge-support-schedule__name {
  color: #2ca6e0;
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-schedule__name {
    font-size: calc(12px + 9 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-schedule__name {
    font-size: 1.3125rem;
  }
}

.p-slowwalk-challenge-support-schedule__date {
  margin-top: 5px;
}

.p-slowwalk-challenge-support-schedule__hour {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-schedule__hour {
    font-size: calc(16px + 14 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-schedule__hour {
    font-size: 1.875rem;
  }
}
.p-slowwalk-challenge-support-schedule__hour small {
  font-size: 0.75rem;
  vertical-align: bottom;
  margin-left: 5px;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-schedule__hour small {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-schedule__hour small {
    font-size: 1.125rem;
  }
}
.p-slowwalk-challenge-support-schedule__hour span {
  display: inline-block;
  margin-right: 10px;
  border-radius: 10px;
  background: #2ca6e0;
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 0 0.5em;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-schedule__hour span {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-schedule__hour span {
    font-size: 1.125rem;
  }
}

.p-slowwalk-challenge-support-program ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-slowwalk-challenge-support-program ul li {
  background: #efefef;
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 0 1.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-program ul li {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-program ul li {
    font-size: 1.125rem;
  }
}
.p-slowwalk-challenge-support-program ul li:nth-child(2n+1) {
  background: #fcf8eb;
}

.p-slowwalk-challenge-support-program-title {
  text-align: center;
  margin-bottom: 15px;
}
.p-slowwalk-challenge-support-program-title span {
  display: inline-block;
  padding: 0 1em;
  border-radius: 999px;
  border-radius: 999px;
  background: #2ca6e0;
  color: #FFFFFF;
  border-radius: 999px;
}

.p-slowwalk-challenge-support-text {
  margin-bottom: 1.875rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-text {
    margin-bottom: calc(30px + 40 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-text {
    margin-bottom: 4.375rem;
  }
}
@media screen and (min-width: 992px) {
  .p-slowwalk-challenge-support-text {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-challenge-support-text {
    font-size: 1.125rem;
  }
}

.p-slowwalk-challenge-support-img {
  text-align: center;
}

#p-slowwalk-challenge-arc {
  width: 100%;
  fill: #efefef;
  position: relative;
  bottom: -1px;
}

.p-slowwalk-challenge-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-slowwalk-challenge-link .c-more-btn {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
}

/* --------------------------------
p-slowwalk
----------------------------------- */
body.school {
  background: #efefef;
}
@media only screen and (max-width: 767px) {
  body.school {
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width: 767px) and (min-width: 572px) {
  body.school {
    padding-bottom: calc(160px + -160 * (100vw - 572px) / 196);
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  body.school {
    padding-bottom: 0rem;
  }
}
@media only screen and (max-width: 571px) {
  body.school {
    padding-bottom: 7.5rem;
  }
}
@media only screen and (max-width: 571px) and (min-width: 375px) {
  body.school {
    padding-bottom: calc(120px + 40 * (100vw - 375px) / 197);
  }
}
@media only screen and (max-width: 571px) and (min-width: 572px) {
  body.school {
    padding-bottom: 10rem;
  }
}

.p-slowwalk-eyecatch {
  background: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-slowwalk-eyecatch h1 {
  font-size: 1.125rem;
  color: #036eb7;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-eyecatch h1 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-eyecatch h1 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 375px) {
  .p-slowwalk-eyecatch h1 {
    margin-bottom: calc(10px + 50 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-eyecatch h1 {
    margin-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-eyecatch h1 {
    display: block;
  }
}
.p-slowwalk-eyecatch h1 img {
  display: block;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-eyecatch h1 img {
    margin: 0 auto;
  }
}

.p-slowwalk-sub-title {
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-sub-title {
    font-size: calc(12px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-sub-title {
    font-size: 1.125rem;
  }
}

.p-slowwalk-sub-title-inner {
  display: flex;
  justify-content: center;
  border-radius: 999px;
  background: #2ca6e0;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .p-slowwalk-sub-title-inner {
    flex-direction: column;
    background: none;
  }
}

.p-slowwalk-type {
  display: inline-block;
  padding: 0 1em;
}
@media only screen and (max-width: 1199px) {
  .p-slowwalk-type {
    border-radius: 999px;
    background: #2ca6e0;
    margin-bottom: 5px;
  }
}

.p-slowwalk-target {
  display: inline-block;
  padding: 0 1em;
  border-radius: 999px;
  background: #036eb7;
}

.p-slowwalk-text {
  text-align: center;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-text {
    font-size: calc(12px + 9 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-text {
    font-size: 1.3125rem;
  }
}

.p-slowwalk-eyecatch-img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-slowwalk-eyecatch-img {
    width: auto;
    max-width: none;
    height: 168px;
  }
}

.p-slowwalk-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}

.p-slowwalk-school {
  background: #efefef;
  padding-bottom: 100px;
  position: relative;
  padding-top: 2.5rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-school {
    padding-top: calc(40px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-school {
    padding-top: 3.75rem;
  }
}

#p-slowwalk-separator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 100%;
  fill: #efefef;
}
#p-slowwalk-separator + * {
  position: relative;
}

.p-slowwalk-about h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-about h2 {
    margin-bottom: calc(20px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-about h2 {
    margin-bottom: 2.5rem;
  }
}
.p-slowwalk-about > p {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-about > p {
    padding: calc(20px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-about > p {
    padding: 1.875rem;
  }
}
@media screen and (min-width: 375px) {
  .p-slowwalk-about > p {
    margin-bottom: calc(60px + 70 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-about > p {
    margin-bottom: 8.125rem;
  }
}

.p-slowwalk-comment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-comment {
    padding-bottom: calc(20px + 30 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-comment {
    padding-bottom: 3.125rem;
  }
}
.p-slowwalk-comment:after {
  content: "";
  display: block;
  width: 172px;
  max-width: 18%;
  margin-right: 10px;
}
@media only screen and (max-width: 1199px) {
  .p-slowwalk-comment:after {
    content: none;
  }
}
.p-slowwalk-comment img {
  width: 172px;
  max-width: 18%;
  height: auto;
  margin-left: 10px;
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-comment img {
    order: 1;
    margin-left: 0;
    max-width: 28%;
  }
}
.p-slowwalk-comment p {
  flex: 1;
  border-radius: 50px;
  background: #FFFFFF;
  padding: 2em;
  position: relative;
  max-width: 355px;
  margin-left: 1.3125rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-comment p {
    margin-left: calc(21px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-comment p {
    margin-left: 1.6875rem;
  }
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-comment p {
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 31px;
  }
}
.p-slowwalk-comment p:before {
  content: "";
  display: inline-block;
  width: 1.375rem;
  height: 60px;
  background: url("../images/common/balloon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(1px, -50%);
}
@media screen and (min-width: 375px) {
  .p-slowwalk-comment p:before {
    width: calc(22px + 6 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-comment p:before {
    width: 1.75rem;
  }
}
@media only screen and (max-width: 571px) {
  .p-slowwalk-comment p:before {
    transform: translateX(50%) translateY(50%) rotate(-90deg) translateX(-50%) translateX(1px);
    top: auto;
    bottom: 0;
    right: 50%;
  }
}

#p-slowwalk-separator2 {
  width: 100%;
  fill: #FFFFFF;
}
#p-slowwalk-separator2 + * {
  margin-top: -1px;
  position: relative;
  padding-top: 4.375rem;
  background: #FFFFFF;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-separator2 + * {
    padding-top: calc(70px + -70 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-separator2 + * {
    padding-top: 0rem;
  }
}
#p-slowwalk-separator2 + * h2 {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 375px) {
  #p-slowwalk-separator2 + * h2 {
    top: calc(0px + -140 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #p-slowwalk-separator2 + * h2 {
    top: -8.75rem;
  }
}

.p-slowwalk-support h2 {
  text-align: center;
}
.p-slowwalk-support h2 img {
  display: block;
  margin: 0 auto;
  width: 2.3125rem;
}
@media screen and (min-width: 375px) {
  .p-slowwalk-support h2 img {
    width: calc(37px + 37 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support h2 img {
    width: 4.625rem;
  }
}

.p-slowwalk-support-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-inner {
    padding-bottom: calc(60px + 60 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-inner {
    padding-bottom: 7.5rem;
  }
}

.p-slowwalk-support__left {
  max-width: 50%;
  padding-right: 10px;
}
@media only screen and (max-width: 991px) {
  .p-slowwalk-support__left {
    max-width: 100%;
    padding-right: 0;
  }
}

.p-slowwalk-support__right {
  max-width: 50%;
  margin-left: auto;
  padding-left: 10px;
  padding-top: 20px;
}
@media only screen and (max-width: 991px) {
  .p-slowwalk-support__right {
    max-width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
}

.p-slowwalk-support-table:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 14.2201834862%;
  background: url("../images/common/memo-bg.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
.p-slowwalk-support-table dl {
  margin-top: -1px;
  background: #fcf8eb;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-table dl {
    padding-left: calc(10px + 40 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-table dl {
    padding-left: 3.125rem;
  }
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-table dl {
    padding-right: calc(10px + 20 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-table dl {
    padding-right: 1.875rem;
  }
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-table dl {
    margin-bottom: calc(20px + 20 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-table dl {
    margin-bottom: 2.5rem;
  }
}
.p-slowwalk-support-table dl > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 7px;
  padding-top: 10px;
  background: repeating-linear-gradient(-55deg, #d8d8d8, #d8d8d8 1px, rgba(216, 216, 216, 0) 1px, rgba(216, 216, 216, 0) 4px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 7px;
}
.p-slowwalk-support-table dl > div dt {
  font-size: 0.75rem;
  color: #036eb7;
  font-weight: bold;
  width: 6em;
  padding-bottom: 10px;
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-table dl > div dt {
    font-size: calc(12px + 9 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-table dl > div dt {
    font-size: 1.3125rem;
  }
}
.p-slowwalk-support-table dl > div dd {
  flex: 1;
  padding-bottom: 10px;
  line-height: 1.3;
}
.p-slowwalk-support-table dl > div dd * + .p-slowwalk-support-schedule__name {
  margin-top: 20px;
}

.p-slowwalk-support-target {
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-target {
    font-size: calc(12px + 9 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-target {
    font-size: 1.3125rem;
  }
}

.p-slowwalk-support-schedule__name {
  color: #2ca6e0;
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-schedule__name {
    font-size: calc(12px + 9 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-schedule__name {
    font-size: 1.3125rem;
  }
}

.p-slowwalk-support-schedule__date {
  margin-top: 5px;
}

.p-slowwalk-support-schedule__hour {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9375rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-schedule__hour {
    font-size: calc(15px + 15 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-schedule__hour {
    font-size: 1.875rem;
  }
}
.p-slowwalk-support-schedule__hour small {
  font-size: 0.75rem;
  vertical-align: bottom;
  margin-left: 5px;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-schedule__hour small {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-schedule__hour small {
    font-size: 1.125rem;
  }
}
.p-slowwalk-support-schedule__hour span {
  display: inline-block;
  margin-right: 10px;
  border-radius: 10px;
  background: #2ca6e0;
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 0 0.5em;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-schedule__hour span {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-schedule__hour span {
    font-size: 1.125rem;
  }
}

.p-slowwalk-support-program ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-slowwalk-support-program ul li {
  background: #efefef;
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 0 1.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-program ul li {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-program ul li {
    font-size: 1.125rem;
  }
}
.p-slowwalk-support-program ul li:nth-child(2n+1) {
  background: #fcf8eb;
}

.p-slowwalk-support-program-title {
  text-align: center;
  margin-bottom: 15px;
}
.p-slowwalk-support-program-title span {
  display: inline-block;
  padding: 0 1em;
  border-radius: 999px;
  border-radius: 999px;
  background: #2ca6e0;
  color: #FFFFFF;
  border-radius: 999px;
}

.p-slowwalk-support-text {
  margin-bottom: 1.875rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-text {
    margin-bottom: calc(30px + 40 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-text {
    margin-bottom: 4.375rem;
  }
}
@media screen and (min-width: 992px) {
  .p-slowwalk-support-text {
    font-size: calc(12px + 6 * (100vw - 992px) / 928);
  }
}
@media screen and (min-width: 1920px) {
  .p-slowwalk-support-text {
    font-size: 1.125rem;
  }
}

.p-slowwalk-support-img {
  text-align: center;
}

#p-slowwalk-arc {
  width: 100%;
  fill: #efefef;
  position: relative;
  bottom: -1px;
}

.p-slowwalk-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-slowwalk-link .c-more-btn {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
}

/* --------------------------------
p-contact
----------------------------------- */
.p-contact-eyecatch {
  background: #FFFFFF;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
.p-contact-eyecatch h1, .p-contact-eyecatch .h1 {
  font-size: 1.125rem;
  color: #036eb7;
  text-align: center;
  padding-top: 3.75rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 375px) {
  .p-contact-eyecatch h1, .p-contact-eyecatch .h1 {
    font-size: calc(18px + 10 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-eyecatch h1, .p-contact-eyecatch .h1 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 375px) {
  .p-contact-eyecatch h1, .p-contact-eyecatch .h1 {
    padding-top: calc(60px + 60 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-eyecatch h1, .p-contact-eyecatch .h1 {
    padding-top: 7.5rem;
  }
}
.p-contact-eyecatch h1 img, .p-contact-eyecatch .h1 img {
  display: block;
  margin: 0 auto;
}

.p-contact-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}

.p-contact {
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .p-contact {
    padding-bottom: 140px;
  }
}
.p-contact .c-more-btn {
  text-align: center;
}

.p-contact-text {
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 375px) {
  .p-contact-text {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-text {
    font-size: 0.875rem;
  }
}

.p-contact-text--confirm {
  display: none;
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 375px) {
  .p-contact-text--confirm {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-text--confirm {
    font-size: 0.875rem;
  }
}

.wpcf7-spinner {
  display: none;
}

.p-contact-form {
  background: #efefef;
  position: relative;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 375px) {
  .p-contact-form {
    padding-top: calc(10px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-form {
    padding-top: 1.875rem;
  }
}
@media screen and (min-width: 375px) {
  .p-contact-form {
    padding-bottom: calc(10px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-form {
    padding-bottom: 1.875rem;
  }
}
@media screen and (min-width: 375px) {
  .p-contact-form {
    padding-right: calc(20px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-form {
    padding-right: 2.8125rem;
  }
}
@media screen and (min-width: 375px) {
  .p-contact-form {
    padding-left: calc(20px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-form {
    padding-left: 2.8125rem;
  }
}
@media screen and (min-width: 375px) {
  .p-contact-form {
    margin-bottom: calc(30px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-form {
    margin-bottom: 3.125rem;
  }
}
.p-contact-form:before {
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  transform: translateX(12.79%);
  bottom: 0;
  background: url("../images/common/page-character.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 2.75rem;
  height: 100%;
}
@media screen and (min-width: 375px) {
  .p-contact-form:before {
    width: calc(44px + 42 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-form:before {
    width: 5.375rem;
  }
}
.p-contact-form dl > div {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid #4f4c4b;
}
.p-contact-form dl > div:last-child {
  border: none;
}
.p-contact-form dl dt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 16em;
  margin-right: 1em;
  padding: 10px 0;
  line-height: 2.25;
}
@media only screen and (max-width: 1199px) {
  .p-contact-form dl dt {
    justify-content: start;
    padding: 0;
  }
}
.p-contact-form dl dt .required {
  background: #c20009;
  color: #FFFFFF;
  display: inline-block;
  border-radius: 2px;
  font-size: 0.625rem;
  padding: 0 0.3em;
  line-height: 1.4;
  margin-left: 0.5em;
}
@media screen and (min-width: 375px) {
  .p-contact-form dl dt .required {
    font-size: calc(10px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-form dl dt .required {
    font-size: 0.875rem;
  }
}
.p-contact-form dl dd {
  padding: 10px 0;
  flex: 1;
}
@media only screen and (max-width: 1199px) {
  .p-contact-form dl dd {
    width: 100%;
    flex: none;
  }
}
.p-contact-form dl dd input, .p-contact-form dl dd textarea {
  background: #FFFFFF;
  font-size: 1rem;
  width: 100%;
  padding: 5px 0.5em;
}

.p-contact-form-acceptance {
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 2em;
}
@media screen and (min-width: 375px) {
  .p-contact-form-acceptance {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-contact-form-acceptance {
    font-size: 0.875rem;
  }
}

#wpcf7cpcnf {
  background: #efefef !important;
  position: relative;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  z-index: 1 !important;
}
@media screen and (min-width: 375px) {
  #wpcf7cpcnf {
    padding-top: calc(10px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #wpcf7cpcnf {
    padding-top: 1.875rem;
  }
}
@media screen and (min-width: 375px) {
  #wpcf7cpcnf {
    padding-bottom: calc(10px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #wpcf7cpcnf {
    padding-bottom: 1.875rem;
  }
}
@media screen and (min-width: 375px) {
  #wpcf7cpcnf {
    padding-right: calc(20px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #wpcf7cpcnf {
    padding-right: 2.8125rem;
  }
}
@media screen and (min-width: 375px) {
  #wpcf7cpcnf {
    padding-left: calc(20px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #wpcf7cpcnf {
    padding-left: 2.8125rem;
  }
}
#wpcf7cpcnf:before {
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  transform: translateX(12.79%);
  bottom: 0;
  background: url("../images/common/page-character.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 2.75rem;
  height: 100%;
}
@media screen and (min-width: 375px) {
  #wpcf7cpcnf:before {
    width: calc(44px + 42 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #wpcf7cpcnf:before {
    width: 5.375rem;
  }
}
#wpcf7cpcnf table {
  max-width: 100%;
  margin: 0 auto;
}
#wpcf7cpcnf table tr {
  border-bottom: 1px solid #4f4c4b;
}
#wpcf7cpcnf table tr th, #wpcf7cpcnf table tr td {
  padding: 20px 1em;
}
@media only screen and (max-width: 767px) {
  #wpcf7cpcnf table tr th, #wpcf7cpcnf table tr td {
    display: block;
  }
}
#wpcf7cpcnf table tr th {
  text-align: left;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #wpcf7cpcnf table tr th {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #wpcf7cpcnf table tr td {
    padding-top: 0;
  }
}

/* --------------------------------
p-coming-soon
----------------------------------- */
.p-coming-soon {
  min-height: 100vh;
}

.p-coming-soon-eyecatch {
  background: #FFFFFF;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
.p-coming-soon-eyecatch h1, .p-coming-soon-eyecatch .h1 {
  font-size: 0.875rem;
  color: #036eb7;
  text-align: center;
  padding-top: 12.5rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 375px) {
  .p-coming-soon-eyecatch h1, .p-coming-soon-eyecatch .h1 {
    font-size: calc(14px + 28 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-coming-soon-eyecatch h1, .p-coming-soon-eyecatch .h1 {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 375px) {
  .p-coming-soon-eyecatch h1, .p-coming-soon-eyecatch .h1 {
    padding-top: calc(200px + 100 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  .p-coming-soon-eyecatch h1, .p-coming-soon-eyecatch .h1 {
    padding-top: 18.75rem;
  }
}
.p-coming-soon-eyecatch h1 img, .p-coming-soon-eyecatch .h1 img {
  display: block;
  margin: 0 auto;
}

.p-coming-soon-eyecatch-inner {
  width: 50%;
  margin: 0 auto;
}

/* --------------------------------
utility
----------------------------------- */
@media only screen and (max-width: 1399px) {
  .u-d-xxl {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .u-d-xl {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .u-d-lg {
    display: none;
  }
}
.u-center {
  text-align: center !important;
}

.u-right {
  text-align: right !important;
}

.u-left {
  text-align: left !important;
}

.u-w100 {
  width: 100% !important;
  max-width: 100% !important;
}

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

.u-table {
  overflow-x: auto;
}
.u-table table {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .u-table table {
    max-width: none;
  }
}
@media only screen and (max-width: 767px) {
  .u-table table tr th, .u-table table tr td {
    white-space: nowrap;
  }
}

.u-underline {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */