@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 infinity-scroll-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bg-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1920px 0;
  }
}
@keyframes bg-scroll2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2880px 0;
  }
}
@keyframes float-heavy {
  0% {
    transform: translateY(1%) translateX(1.45%) rotate(-0.5deg);
  }
  100% {
    /* 移動量はそこそこ、傾きはごくわずか */
    transform: translateY(-3.51%) translateX(0) rotate(1deg);
  }
}
@keyframes float-light {
  0% {
    transform: translateY(0.5%) translateX(-2.45%) rotate(-4deg);
  }
  100% {
    /* 移動量を大きく、傾きも大きく（逆方向に傾けて波に翻弄される感） */
    transform: translateY(-1.5%) translateX(2.45%) rotate(4deg);
  }
}
@keyframes fly-hover {
  0% {
    /* 初期位置 */
    transform: translateY(1.5%) rotate(0.5deg);
  }
  100% {
    /* 上に少し上がり、機首を少し上げる（揚力を表現） */
    transform: translateY(-4.9%) rotate(-1deg);
  }
}
/* -----------------------------------------------
* 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: 10px;
}

body {
  color: #504F4F;
  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: 1.2rem;
}
@media screen and (min-width: 375px) {
  body {
    font-size: calc(12px + 6 * (100vw - 375px) / 799);
  }
}
@media screen and (min-width: 1174px) {
  body {
    font-size: 1.8rem;
  }
}

#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.8rem;
}
@media screen and (min-width: 375px) {
  h1, h2, .h1, .h2 {
    font-size: calc(18px + 10 * (100vw - 375px) / 799);
  }
}
@media screen and (min-width: 1174px) {
  h1, h2, .h1, .h2 {
    font-size: 2.8rem;
  }
}

h3, .h3 {
  font-size: 1.7rem;
}
@media screen and (min-width: 375px) {
  h3, .h3 {
    font-size: calc(17px + 4 * (100vw - 375px) / 799);
  }
}
@media screen and (min-width: 1174px) {
  h3, .h3 {
    font-size: 2.1rem;
  }
}

h4, .h4 {
  font-size: 1.6rem;
}
@media screen and (min-width: 375px) {
  h4, .h4 {
    font-size: calc(16px + 2 * (100vw - 375px) / 799);
  }
}
@media screen and (min-width: 1174px) {
  h4, .h4 {
    font-size: 1.8rem;
  }
}

h5, .h5 {
  font-size: 1.4rem;
}
@media screen and (min-width: 375px) {
  h5, .h5 {
    font-size: calc(14px + 2 * (100vw - 375px) / 799);
  }
}
@media screen and (min-width: 1174px) {
  h5, .h5 {
    font-size: 1.6rem;
  }
}

h6, .h6 {
  font-size: 1.2rem;
}
@media screen and (min-width: 375px) {
  h6, .h6 {
    font-size: calc(12px + 2 * (100vw - 375px) / 799);
  }
}
@media screen and (min-width: 1174px) {
  h6, .h6 {
    font-size: 1.4rem;
  }
}

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: 0;
}

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 #504F4F;
  border-radius: 0;
  padding: 0 0.5em;
  max-width: 100%;
  background-color: #FFFFFF;
  font-size: 1.6rem;
}
@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) / 406);
  }
}
@media screen and (min-width: 1174px) {
  .l-editor input, .l-editor textarea, .l-editor fieldset, .l-editor select, .l-editor button {
    font-size: 1.8rem;
  }
}
.l-editor input::placeholder, .l-editor textarea::placeholder, .l-editor fieldset::placeholder, .l-editor select::placeholder, .l-editor button::placeholder {
  color: #6d6d6d;
}
.l-editor table {
  width: auto;
  max-width: 100%;
}
.l-editor table thead tr th, .l-editor table thead tr td {
  background-color: var(--color_main) !important;
}
.l-editor table tr:nth-of-type(2n+1) th, .l-editor table tr:nth-of-type(2n+1) td {
  background-color: var(--color_main);
}
.l-editor table tr th, .l-editor table tr td {
  border: none;
  padding: 3px 1em;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #FFFFFF;
}
@media screen and (min-width: 375px) {
  .l-editor table tr th, .l-editor table tr td {
    font-size: calc(12px + 5 * (100vw - 375px) / 799);
  }
}
@media screen and (min-width: 1174px) {
  .l-editor table tr th, .l-editor table tr td {
    font-size: 1.7rem;
  }
}
.l-editor table tr th {
  white-space: nowrap;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* --------------------------------
l-header
----------------------------------- */
.l-header__inner, .l-fixHeader__inner {
  max-width: 100%;
  padding-right: 0;
  padding-left: 1rem;
}
@media screen and (min-width: 960px) {
  .l-header__inner, .l-fixHeader__inner {
    padding-left: calc(10px + 30 * (100vw - 960px) / 440);
  }
}
@media screen and (min-width: 1400px) {
  .l-header__inner, .l-fixHeader__inner {
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 959px) {
  .l-header__inner, .l-fixHeader__inner {
    padding-left: 0;
  }
}
.l-header__inner .l-header__logo, .l-header__inner .l-fixHeader__logo, .l-fixHeader__inner .l-header__logo, .l-fixHeader__inner .l-fixHeader__logo {
  margin-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 960px) {
  .l-header__inner .l-header__logo, .l-header__inner .l-fixHeader__logo, .l-fixHeader__inner .l-header__logo, .l-fixHeader__inner .l-fixHeader__logo {
    margin-right: calc(10px + 10 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .l-header__inner .l-header__logo, .l-header__inner .l-fixHeader__logo, .l-fixHeader__inner .l-header__logo, .l-fixHeader__inner .l-fixHeader__logo {
    margin-right: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .l-header__inner .l-header__logo, .l-header__inner .l-fixHeader__logo, .l-fixHeader__inner .l-header__logo, .l-fixHeader__inner .l-fixHeader__logo {
    padding-top: calc(5px + 11 * (100vw - 960px) / 440);
  }
}
@media screen and (min-width: 1400px) {
  .l-header__inner .l-header__logo, .l-header__inner .l-fixHeader__logo, .l-fixHeader__inner .l-header__logo, .l-fixHeader__inner .l-fixHeader__logo {
    padding-top: 1.6rem;
  }
}
@media screen and (min-width: 960px) {
  .l-header__inner .l-header__logo, .l-header__inner .l-fixHeader__logo, .l-fixHeader__inner .l-header__logo, .l-fixHeader__inner .l-fixHeader__logo {
    padding-bottom: calc(5px + 11 * (100vw - 960px) / 440);
  }
}
@media screen and (min-width: 1400px) {
  .l-header__inner .l-header__logo, .l-header__inner .l-fixHeader__logo, .l-fixHeader__inner .l-header__logo, .l-fixHeader__inner .l-fixHeader__logo {
    padding-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 959px) {
  .l-header__inner .l-header__logo, .l-header__inner .l-fixHeader__logo, .l-fixHeader__inner .l-header__logo, .l-fixHeader__inner .l-fixHeader__logo {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.l-header__inner .c-headLogo, .l-fixHeader__inner .c-headLogo {
  margin-right: 0;
  max-width: 6.8rem;
}
@media screen and (min-width: 960px) {
  .l-header__inner .c-headLogo, .l-fixHeader__inner .c-headLogo {
    max-width: calc(68px + 68 * (100vw - 960px) / 440);
  }
}
@media screen and (min-width: 1400px) {
  .l-header__inner .c-headLogo, .l-fixHeader__inner .c-headLogo {
    max-width: 13.6rem;
  }
}
@media only screen and (max-width: 959px) {
  .l-header__inner .c-headLogo, .l-fixHeader__inner .c-headLogo {
    max-width: 100%;
  }
}
.l-header__inner .c-gnav, .l-fixHeader__inner .c-gnav {
  margin-left: 0;
}
.l-header__inner .c-gnav > .menu-item.wrap a .ttl span, .l-fixHeader__inner .c-gnav > .menu-item.wrap a .ttl span {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.l-header__inner .c-gnav > .menu-item a, .l-fixHeader__inner .c-gnav > .menu-item a {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 960px) {
  .l-header__inner .c-gnav > .menu-item a, .l-fixHeader__inner .c-gnav > .menu-item a {
    padding-left: calc(10px + 10 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .l-header__inner .c-gnav > .menu-item a, .l-fixHeader__inner .c-gnav > .menu-item a {
    padding-left: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .l-header__inner .c-gnav > .menu-item a, .l-fixHeader__inner .c-gnav > .menu-item a {
    padding-right: calc(10px + 10 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .l-header__inner .c-gnav > .menu-item a, .l-fixHeader__inner .c-gnav > .menu-item a {
    padding-right: 2rem;
  }
}
.l-header__inner .c-gnav > .menu-item a .ttl, .l-fixHeader__inner .c-gnav > .menu-item a .ttl {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .l-header__inner .c-gnav > .menu-item a .ttl, .l-fixHeader__inner .c-gnav > .menu-item a .ttl {
    font-size: calc(10px + 6 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .l-header__inner .c-gnav > .menu-item a .ttl, .l-fixHeader__inner .c-gnav > .menu-item a .ttl {
    font-size: 1.6rem;
  }
}
.l-header__inner .c-gnav > .menu-item.header-contact, .l-fixHeader__inner .c-gnav > .menu-item.header-contact {
  padding-left: 1rem;
}
@media screen and (min-width: 960px) {
  .l-header__inner .c-gnav > .menu-item.header-contact, .l-fixHeader__inner .c-gnav > .menu-item.header-contact {
    padding-left: calc(10px + 10 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .l-header__inner .c-gnav > .menu-item.header-contact, .l-fixHeader__inner .c-gnav > .menu-item.header-contact {
    padding-left: 2rem;
  }
}
.l-header__inner .c-gnav > .menu-item.header-contact a, .l-fixHeader__inner .c-gnav > .menu-item.header-contact a {
  background: var(--color_main);
  color: #FFFFFF;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 960px) {
  .l-header__inner .c-gnav > .menu-item.header-contact a, .l-fixHeader__inner .c-gnav > .menu-item.header-contact a {
    padding-left: calc(10px + 21 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .l-header__inner .c-gnav > .menu-item.header-contact a, .l-fixHeader__inner .c-gnav > .menu-item.header-contact a {
    padding-left: 3.1rem;
  }
}
@media screen and (min-width: 960px) {
  .l-header__inner .c-gnav > .menu-item.header-contact a, .l-fixHeader__inner .c-gnav > .menu-item.header-contact a {
    padding-right: calc(10px + 21 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .l-header__inner .c-gnav > .menu-item.header-contact a, .l-fixHeader__inner .c-gnav > .menu-item.header-contact a {
    padding-right: 3.1rem;
  }
}

.c-spnav .wrap span {
  display: block;
}
.c-spnav a {
  font-size: 1.6rem;
}

/* --------------------------------
l-inner
----------------------------------- */
/* --------------------------------
l-footer
----------------------------------- */
.w-beforeFooter {
  position: relative;
  margin-top: 0;
}
.w-beforeFooter:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 15.625%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("../images/common/footer-before-bg_01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 1;
}
@media only screen and (max-width: 599px) {
  .w-beforeFooter:before {
    padding-top: 150px;
    background-size: cover;
  }
}
.w-beforeFooter:after {
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  position: absolute;
  left: 0;
  top: 80px;
  background-image: url("../images/common/footer-before-bg_02.png");
  background-size: 2880px 500px;
  background-repeat: repeat-x;
  animation: bg-scroll2 90s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.w-beforeFooter-container {
  padding-top: 70px !important;
  padding-bottom: 90px !important;
  padding-left: 4vw;
  padding-right: 4vw;
}
@media only screen and (max-width: 959px) {
  .w-beforeFooter-container {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
  }
}

.l-footer {
  position: relative;
  z-index: 1;
}
.l-footer .copyright {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}
@media screen and (min-width: 375px) {
  .l-footer .copyright {
    font-size: calc(10px + 4 * (100vw - 375px) / 585);
  }
}
@media screen and (min-width: 960px) {
  .l-footer .copyright {
    font-size: 1.4rem;
  }
}

.l-footer__widgetArea {
  padding-top: 3rem;
  padding-bottom: 13rem;
}
@media screen and (min-width: 960px) {
  .l-footer__widgetArea {
    padding-top: calc(30px + 80 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .l-footer__widgetArea {
    padding-top: 11rem;
  }
}
@media screen and (min-width: 960px) {
  .l-footer__widgetArea {
    padding-bottom: calc(130px + 100 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .l-footer__widgetArea {
    padding-bottom: 23rem;
  }
}
.l-footer__widgetArea .w-footer__box {
  padding: 1rem;
}
@media screen and (min-width: 960px) {
  .l-footer__widgetArea .w-footer__box {
    padding: calc(10px + 10 * (100vw - 960px) / 440);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer__widgetArea .w-footer__box {
    padding: 2rem;
  }
}
@media only screen and (max-width: 959px) {
  .l-footer__widgetArea .w-footer__box {
    padding: 1em 10px;
  }
}
.l-footer__widgetArea .menu {
  margin-left: 0;
}
.l-footer__widgetArea .c-listMenu a {
  border-bottom-color: #231815;
  font-size: 1.6rem;
}

@media only screen and (max-width: 959px) {
  .l-footer-info {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.l-footer-info-text {
  width: 48%;
  margin-left: auto;
}

.l-footer-info-gmap a {
  vertical-align: middle;
}

.l-footer__foot {
  font-size: 1rem;
  padding-top: 0.5em;
  padding-bottom: 1.7em;
  display: flex;
  justify-content: end;
}
@media screen and (min-width: 375px) {
  .l-footer__foot {
    font-size: calc(10px + 4 * (100vw - 375px) / 585);
  }
}
@media screen and (min-width: 960px) {
  .l-footer__foot {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1199px) {
  .l-footer__foot {
    justify-content: center;
  }
}
.l-footer__foot .l-container {
  margin: 0 1.5rem;
}

.l-footer__nav {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  justify-content: start;
}
@media only screen and (max-width: 1199px) {
  .l-footer__nav {
    justify-content: center;
  }
}
.l-footer__nav li {
  display: inline-block;
}
.l-footer__nav li + li:before {
  content: "|";
  display: inline;
  margin: 0 0.25em;
}
.l-footer__nav a {
  display: inline-block;
  border: none !important;
  font-size: 1rem;
  padding: 0;
}
@media screen and (min-width: 375px) {
  .l-footer__nav a {
    font-size: calc(10px + 4 * (100vw - 375px) / 585);
  }
}
@media screen and (min-width: 960px) {
  .l-footer__nav a {
    font-size: 1.4rem;
  }
}

[data-scrolled=true] .l-footer-fixed {
  opacity: 1;
  visibility: visible;
}

.l-footer-fixed {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  pointer-events: none;
}
.l-footer-fixed:before {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  background-image: url("../images/common/wave.svg");
  background-size: 1920px 100%;
  background-repeat: repeat-x;
  animation: bg-scroll 30s linear infinite;
  z-index: 1;
}
.l-footer-fixed:after {
  content: "";
  display: block;
  width: 100%;
  height: 5.7rem;
  background: var(--color_main);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .l-footer-fixed:after {
    height: calc(57px + 23 * (100vw - 375px) / 585);
  }
}
@media screen and (min-width: 960px) {
  .l-footer-fixed:after {
    height: 8rem;
  }
}

.l-footer-fixed-character--01 {
  position: absolute;
  width: 8.65%;
  max-width: 166px;
  left: 0.63%;
  bottom: 100%;
  transform: translateY(-115.69%);
}
@media only screen and (max-width: 959px) {
  .l-footer-fixed-character--01 {
    max-width: 50%;
    width: 84px;
  }
}
.l-footer-fixed-character--01 img {
  animation: fly-hover 1s ease-in-out infinite alternate;
}

.l-footer-fixed-character--02 {
  position: absolute;
  width: 10.64%;
  max-width: 204px;
  left: 6.67%;
  bottom: 100%;
  transform: translateY(16.3%);
}
@media only screen and (max-width: 959px) {
  .l-footer-fixed-character--02 {
    max-width: 50%;
    width: 102px;
  }
}
.l-footer-fixed-character--02 img {
  animation: float-light 1.5s ease-in-out infinite alternate;
}

.l-footer-fixed-character--03 {
  position: absolute;
  width: 18.02%;
  max-width: 346px;
  right: 0;
  bottom: 100%;
  transform: translateY(18.42%);
}
@media only screen and (max-width: 959px) {
  .l-footer-fixed-character--03 {
    max-width: 50%;
    width: 172px;
  }
}
.l-footer-fixed-character--03 img {
  animation: float-heavy 3s ease-in-out infinite alternate;
}

.p-fixBtnWrap {
  right: 10px;
  bottom: 10px;
}

/* --------------------------------
l-page
----------------------------------- */
.post_content {
  line-height: 1.75;
}

#breadcrumb {
  display: none;
}

.page .c-pageTitle, .error404 .c-pageTitle {
  display: none;
}
.page #content, .error404 #content {
  padding-top: 0;
  margin-bottom: 0;
}
.page .l-mainContent__inner > .post_content, .error404 .l-mainContent__inner > .post_content {
  margin: 0;
}

#lp-content .post_content, #main_content .post_content {
  font-size: 1em;
}

.l-page-title {
  background-color: #1791D1 !important;
  background-position: center top;
  background-image: url("../images/common/page-title-bg.png");
  background-size: auto 544px;
  padding-bottom: 2rem !important;
}
@media screen and (min-width: 600px) {
  .l-page-title {
    padding-bottom: calc(20px + 20 * (100vw - 600px) / 574) !important;
  }
}
@media screen and (min-width: 1174px) {
  .l-page-title {
    padding-bottom: 4rem !important;
  }
}
@media only screen and (max-width: 1199px) {
  .l-page-title {
    background-size: 160% auto !important;
  }
}
@media only screen and (max-width: 599px) {
  .l-page-title {
    background-size: 960px auto !important;
  }
}
.l-page-title h1 {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .l-page-title h1 {
    font-size: calc(20px + 15 * (100vw - 600px) / 574);
  }
}
@media screen and (min-width: 1174px) {
  .l-page-title h1 {
    font-size: 3.5rem;
  }
}

.post_content .is-style-section_ttl.has-background {
  margin-left: -2vw;
  margin-right: -2vw;
  max-width: none;
  padding: 0.25em 2vw;
}

.post_content h1 {
  font-size: 1.75em;
}

.c-postTitle__date {
  white-space: nowrap;
}

/* -----------------------------------------------
* component エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-more-btn
----------------------------------- */
[class*=is-style-btn_] {
  --the-padding: 1px 1.5em;
  --the-min-width: 244px;
}
[class*=is-style-btn_] a {
  letter-spacing: 0;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (min-width: 375px) {
  [class*=is-style-btn_] a {
    font-size: calc(14px + 4 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  [class*=is-style-btn_] a {
    font-size: 1.8rem;
  }
}

.is-style-btn_line a {
  background: #FFFFFF;
  border-width: 2px;
}

@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: 1.4rem;
  color: #FFFFFF;
  background: var(--color_main);
  border-radius: 999px;
  max-width: 100%;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  padding: 1px 1.5em;
  min-width: 244px;
  transition: 0.25s;
  line-height: 1.5;
}
@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(14px + 4 * (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.8rem;
  }
}
@media only screen and (max-width: 599px) {
  .c-more-btn a, .c-more-btn input, .c-more-btn button, .wpcf7cp-btns a, .wpcf7cp-btns input, .wpcf7cp-btns button {
    min-width: 0;
  }
}
.c-more-btn a:hover, .c-more-btn input:hover, .c-more-btn button:hover, .wpcf7cp-btns a:hover, .wpcf7cp-btns input:hover, .wpcf7cp-btns button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 12px 24px -12px rgba(0, 0, 0, 0.2);
}

.wpcf7cp-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: start;
}
.wpcf7cp-btns button {
  margin: 0 10px 20px;
}
.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background: #504F4F;
}

.is-style-balloon_box {
  width: 100%;
  text-align: center !important;
  border-radius: 10px;
}
.is-style-balloon_box:before {
  border-bottom-right-radius: 5px;
  background: var(--color_main);
  transform: skewY(40deg) translateY(-15px);
  border: none;
  width: 20px;
  height: 15px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* --------------------------------
p-top
----------------------------------- */
.home #header {
  display: none;
}
@media only screen and (max-width: 959px) {
  .home #header {
    display: block;
  }
}
.home .l-footer-fixed {
  opacity: 0;
  visibility: hidden;
}
.home .l-footer-fixed.scrolled {
  opacity: 1;
  visibility: visible;
}

.top #content {
  padding-top: 0;
}

.p-top-fv {
  overflow: hidden;
  background: linear-gradient(to bottom, #008DD7 0, #008DD7 290px, #FFFFFF 580px);
  position: relative;
}
@media only screen and (max-width: 1399px) {
  .p-top-fv {
    padding-top: 50px !important;
    background: linear-gradient(to bottom, #008DD7 0, #008DD7 390px, #FFFFFF 780px);
  }
}
.p-top-fv:after {
  content: "";
  display: block;
  width: 100%;
  height: 1198px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/top/fv-cloud.png");
  background-size: 2880px 1198px;
  background-repeat: repeat-x;
  animation: bg-scroll2 90s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.p-top-fv-logo {
  position: absolute;
  top: 48px;
  left: 58px;
}
@media only screen and (max-width: 1399px) {
  .p-top-fv-logo {
    position: static;
  }
}

.p-top-fv-text {
  padding-top: 100px !important;
  padding-bottom: 30px !important;
  position: relative;
}
@media only screen and (max-width: 1399px) {
  .p-top-fv-text {
    padding-top: 0 !important;
    padding-bottom: 140px !important;
  }
}
.p-top-fv-text p {
  font-weight: bold;
}
@media only screen and (max-width: 959px) {
  .p-top-fv-text__img img {
    max-width: 76.25vw;
  }
}
.p-top-fv-text .swell-block-fullWide__inner {
  position: static;
}

.p-top-fv-character--01 {
  position: absolute;
  left: 4rem;
  bottom: 70px;
  width: 242px;
  max-width: 12.6%;
}
@media screen and (min-width: 960px) {
  .p-top-fv-character--01 {
    left: calc(40px + 174 * (100vw - 960px) / 960);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-fv-character--01 {
    left: 21.4rem;
  }
}
@media only screen and (max-width: 959px) {
  .p-top-fv-character--01 {
    max-width: 120px;
    bottom: 30px;
  }
}
.p-top-fv-character--01 img {
  animation: fly-hover 1s ease-in-out infinite alternate;
}

.p-top-fv-character--02 {
  position: absolute;
  left: 23.7%;
  top: 0;
  width: 220px;
  max-width: 11.47%;
  transform: translateY(46.94%);
}
@media only screen and (max-width: 959px) {
  .p-top-fv-character--02 {
    max-width: 110px;
    left: 2rem;
  }
}
@media only screen and (max-width: 959px) and (min-width: 375px) {
  .p-top-fv-character--02 {
    left: calc(20px + 208 * (100vw - 375px) / 585);
  }
}
@media only screen and (max-width: 959px) and (min-width: 960px) {
  .p-top-fv-character--02 {
    left: 22.8rem;
  }
}
.p-top-fv-character--02 img {
  animation: float-light 1.5s ease-in-out infinite alternate;
}

.p-top-fv-character--03 {
  position: absolute;
  width: 426px;
  max-width: 22.2%;
  right: 0;
  top: 0;
  transform: translate(-3.76%, -5.56%);
}
@media only screen and (max-width: 959px) {
  .p-top-fv-character--03 {
    max-width: 212px;
  }
}
.p-top-fv-character--03 img {
  animation: float-heavy 3s ease-in-out infinite alternate;
}

.p-top-fv-sea {
  background-color: rgba(0, 173, 230, 0) !important;
  background: url("../images/top/fv-bg.svg"), linear-gradient(to bottom, rgba(0, 173, 230, 0) 0, rgba(0, 173, 230, 0) 161px, #00ADE6 161px);
  background-size: auto 162px, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: top center, top center;
  position: relative;
  padding-top: 70px !important;
  padding-bottom: 20px !important;
}
@media only screen and (max-width: 959px) {
  .p-top-fv-sea {
    padding-top: 140px !important;
  }
}
@media only screen and (max-width: 599px) {
  .p-top-fv-sea {
    padding-top: 20px !important;
  }
}
.p-top-fv-sea:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/top/fv-wave.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 959px) {
  .p-top-fv-sea:before {
    background-size: 960px auto;
    background-position: bottom center;
  }
}
@media only screen and (max-width: 599px) {
  .p-top-fv-sea:before {
    background-position: top 55% center;
  }
}
.p-top-fv-sea .swell-block-fullWide__inner {
  position: static;
}

.p-top-fv-container {
  padding: 0 4vw;
  position: relative;
}
.p-top-fv-container .swell-block-columns__inner {
  justify-content: center;
}

@media only screen and (max-width: 959px) {
  .p-top-fv--3 .wp-block-spacer {
    display: none;
  }
}

.top-greeting-inner {
  position: relative;
  padding-top: 2rem;
}
.top-greeting-inner p {
  width: 49em;
  max-width: 100%;
}
.top-greeting-inner:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 562px;
  max-width: 50%;
  height: 100%;
  background-image: url("../images/common/logo-bg.svg");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

#top-slider {
  position: relative;
}
#top-slider:after {
  content: "";
  display: block;
  width: 1284px;
  height: 234px;
  max-width: 90%;
  background-image: url("../images/top/mori-plans.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.loop-slider {
  display: flex;
  overflow: hidden;
  gap: 10px; /* 画像間の余白を指定 */
  padding-top: 10px;
}
.loop-slider .wp-block-group__inner-container, .loop-slider .swell-block-columns {
  display: contents;
}
.loop-slider .swell-block-columns__inner {
  flex-wrap: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0); /* または translateZ(0) */
  backface-visibility: hidden;
  animation: infinity-scroll-left 30s infinite linear; /* アニメーションの時間を指定 */
}
.loop-slider .swell-block-column figure {
  width: 15rem;
  position: relative;
}
@media screen and (min-width: 375px) {
  .loop-slider .swell-block-column figure {
    width: calc(150px + 250 * (100vw - 375px) / 799);
  }
}
@media screen and (min-width: 1174px) {
  .loop-slider .swell-block-column figure {
    width: 40rem;
  }
}
.loop-slider .swell-block-column figure:before {
  padding-top: 62.5%; /* 画像の縦横比を指定 */
  display: block;
  content: "";
}
.loop-slider .swell-block-column figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

.loop-slider--reverse {
  padding-bottom: 10px;
}
.loop-slider--reverse .swell-block-columns__inner {
  animation: infinity-scroll-right 30s infinite linear; /* アニメーションの時間を指定 */
}

.p-top-seminar p {
  font-size: 1.4rem;
  text-align: justify;
}
@media screen and (min-width: 375px) {
  .p-top-seminar p {
    font-size: calc(14px + 6 * (100vw - 375px) / 799);
  }
}
@media screen and (min-width: 1174px) {
  .p-top-seminar p {
    font-size: 2rem;
  }
}

/* --------------------------------
p-company
----------------------------------- */
dl.p-company-president-history > dt.swell-block-dl__dt, dl.p-company-president-history > dd.swell-block-dl__dd {
  padding-top: 0;
  padding-bottom: 0;
  font-weight: normal;
  font-size: 1.2rem;
}
@media screen and (min-width: 375px) {
  dl.p-company-president-history > dt.swell-block-dl__dt, dl.p-company-president-history > dd.swell-block-dl__dd {
    font-size: calc(12px + 2 * (100vw - 375px) / 225);
  }
}
@media screen and (min-width: 600px) {
  dl.p-company-president-history > dt.swell-block-dl__dt, dl.p-company-president-history > dd.swell-block-dl__dd {
    font-size: 1.4rem;
  }
}
dl.p-company-president-history > dt.swell-block-dl__dt {
  padding-right: 2em;
}
dl.p-company-president-history > dt.swell-block-dl__dt:after {
  content: none;
}

.p-company-president-name {
  font-size: 1.4rem;
}
@media screen and (min-width: 375px) {
  .p-company-president-name {
    font-size: calc(14px + 2 * (100vw - 375px) / 225);
  }
}
@media screen and (min-width: 600px) {
  .p-company-president-name {
    font-size: 1.6rem;
  }
}

.p-company-president-info {
  font-size: 1.3rem;
}
@media screen and (min-width: 375px) {
  .p-company-president-info {
    font-size: calc(13px + 2 * (100vw - 375px) / 225);
  }
}
@media screen and (min-width: 600px) {
  .p-company-president-info {
    font-size: 1.5rem;
  }
}

.p-company-mission .wp-block-media-text {
  gap: 30px;
  grid-template-columns: 130px auto !important;
  margin-bottom: 4rem !important;
}
@media screen and (min-width: 375px) {
  .p-company-mission .wp-block-media-text {
    margin-bottom: calc(40px + 90 * (100vw - 375px) / 1545) !important;
  }
}
@media screen and (min-width: 1920px) {
  .p-company-mission .wp-block-media-text {
    margin-bottom: 13rem !important;
  }
}
@media only screen and (max-width: 600px) {
  .p-company-mission .wp-block-media-text {
    grid-template-columns: 23.55% auto !important;
    gap: 20px;
  }
}
.p-company-mission .wp-block-media-text.has-media-on-the-right {
  grid-template-columns: auto 130px !important;
}
@media only screen and (max-width: 600px) {
  .p-company-mission .wp-block-media-text.has-media-on-the-right {
    grid-template-columns: auto 23.55% !important;
  }
}
.p-company-mission .wp-block-media-text > .wp-block-media-text__content {
  padding-top: 0;
}

.p-company-info dl dt {
  color: var(--color_main);
}
.p-company-info dl.p-company-profile dd {
  padding: 0 0 0.37em;
  margin: 0;
  border-bottom: 1px solid #504F4F;
}
.p-company-info dl.p-company-history {
  display: flex;
  flex-wrap: wrap;
}
.p-company-info dl.p-company-history dt {
  width: 8em;
  border-bottom: 1px solid #504F4F;
  padding: 1em 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.p-company-info dl.p-company-history dd {
  width: calc(100% - 8em);
  border-bottom: 1px solid #504F4F;
  padding: 1em 0;
  margin: 0;
}
.p-company-info dl.p-company-philosophy {
  line-height: 1.5;
}
.p-company-info dl.p-company-philosophy dt {
  border-bottom: 1px solid #504F4F;
  padding: 0.25em 0;
}
.p-company-info dl.p-company-philosophy dd {
  padding: 0.25em 0;
  margin: 0;
}
.p-company-info dl.p-company-philosophy dd + dt {
  margin-top: 1.5em;
}

.p-company-action [class*=is-style-btn_] a {
  background: #FFFFFF;
  color: #00b6ee;
}
.p-company-action p {
  font-size: 1.2rem;
}
@media screen and (min-width: 375px) {
  .p-company-action p {
    font-size: calc(12px + 8 * (100vw - 375px) / 825);
  }
}
@media screen and (min-width: 1200px) {
  .p-company-action p {
    font-size: 2rem;
  }
}

/* --------------------------------
p-plans
----------------------------------- */
.l-page-title.p-plans-title {
  background-image: url("../images/plans/plans-title-bg.png");
  background-size: auto 242px;
  padding-top: 13rem !important;
}
@media screen and (min-width: 600px) {
  .l-page-title.p-plans-title {
    padding-top: calc(130px + 40 * (100vw - 600px) / 574) !important;
  }
}
@media screen and (min-width: 1174px) {
  .l-page-title.p-plans-title {
    padding-top: 17rem !important;
  }
}
@media only screen and (max-width: 599px) {
  .l-page-title.p-plans-title {
    background-position-x: -11rem !important;
  }
}
@media only screen and (max-width: 599px) and (min-width: 375px) {
  .l-page-title.p-plans-title {
    background-position-x: calc(-110px + 110 * (100vw - 375px) / 225) !important;
  }
}
@media only screen and (max-width: 599px) and (min-width: 600px) {
  .l-page-title.p-plans-title {
    background-position-x: 0rem !important;
  }
}

.p-plans h2 {
  display: flex;
  align-items: center;
}
.p-plans h2 img {
  width: 2em !important;
  margin-right: 0.5em;
}
.p-plans p.u-radius100 {
  padding: 0.5em;
}

.p-plans-2 {
  padding: 4em 2em !important;
}
@media only screen and (max-width: 960px) {
  .p-plans-2 {
    padding: 3em 1.5em !important;
  }
}
.p-plans-2 .p-plans-2-box .wp-block-group {
  width: 250px;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  position: relative;
}
.p-plans-2 .p-plans-2-box .wp-block-group:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color_main);
  opacity: 0.33;
  z-index: -1;
}
.p-plans-2 .p-plans-2-box .wp-block-group:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.p-plans-2 .p-plans-2-box .wp-block-group p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4em);
}
.p-plans-2 .p-plans-2-text p span.swl-bg-color {
  display: inline-block;
  font-size: 0.89em;
  border-radius: 9999px;
  padding: 0 0.25em;
  margin-right: 0.25em;
}

.p-plans-4 .swell-block-columns__inner {
  justify-content: space-around;
  flex-wrap: wrap;
}
.p-plans-4 .p-plans-4-item {
  width: 450px;
  max-width: 75%;
}
.p-plans-4 .p-plans-4-item__text {
  padding-left: 1em;
  padding-right: 1em;
}

/* --------------------------------
p-education
----------------------------------- */
.l-page-title.p-education-title {
  background-image: url("../images/education/education-title-bg.png");
  background-size: auto 242px;
  padding-top: 13rem !important;
}
@media screen and (min-width: 600px) {
  .l-page-title.p-education-title {
    padding-top: calc(130px + 40 * (100vw - 600px) / 574) !important;
  }
}
@media screen and (min-width: 1174px) {
  .l-page-title.p-education-title {
    padding-top: 17rem !important;
  }
}
@media only screen and (max-width: 599px) {
  .l-page-title.p-education-title {
    background-position-x: -39rem;
  }
}
@media only screen and (max-width: 599px) and (min-width: 375px) {
  .l-page-title.p-education-title {
    background-position-x: calc(-390px + 120 * (100vw - 375px) / 225);
  }
}
@media only screen and (max-width: 599px) and (min-width: 600px) {
  .l-page-title.p-education-title {
    background-position-x: -27rem;
  }
}

.p-education-box {
  border: 8px solid #F5ECE8;
}
.p-education-box__img img {
  border-radius: 0.5em;
}
.p-education-box__title {
  width: 4em !important;
}
.p-education-box__title p {
  padding: 0 1em !important;
  border-radius: 0.667em;
}
.p-education-box__info {
  flex: 1;
}
.p-education-box__sns {
  width: 80px !important;
}
@media only screen and (max-width: 599px) {
  .p-education-box__sns {
    width: 100% !important;
  }
}
.p-education-box__sns ul {
  gap: 4px !important;
}

.p-education-inner {
  border-radius: 1em;
}

/* --------------------------------
p-seminar
----------------------------------- */
.l-page-title.p-seminar-title {
  background-image: url("../images/seminar/seminar-title-bg.png");
  background-size: auto 326px;
  background-position: center top;
  padding-top: 15rem !important;
}
@media screen and (min-width: 600px) {
  .l-page-title.p-seminar-title {
    padding-top: calc(150px + 20 * (100vw - 600px) / 574) !important;
  }
}
@media screen and (min-width: 1174px) {
  .l-page-title.p-seminar-title {
    padding-top: 17rem !important;
  }
}
@media only screen and (max-width: 1199px) {
  .l-page-title.p-seminar-title {
    background-size: 160% auto;
  }
}
@media only screen and (max-width: 599px) {
  .l-page-title.p-seminar-title {
    background-size: 960px auto;
    background-position-x: -48rem;
  }
}
@media only screen and (max-width: 599px) and (min-width: 375px) {
  .l-page-title.p-seminar-title {
    background-position-x: calc(-480px + 120 * (100vw - 375px) / 225);
  }
}
@media only screen and (max-width: 599px) and (min-width: 600px) {
  .l-page-title.p-seminar-title {
    background-position-x: -36rem;
  }
}

.p-seminar h3 img {
  margin-bottom: 0.5em;
  width: 2rem !important;
}
@media screen and (min-width: 375px) {
  .p-seminar h3 img {
    width: calc(20px + 18 * (100vw - 375px) / 799) !important;
  }
}
@media screen and (min-width: 1174px) {
  .p-seminar h3 img {
    width: 3.8rem !important;
  }
}

/* --------------------------------
p-opening-support
----------------------------------- */
.l-page-title.p-opening-support-title {
  padding-top: 6rem !important;
}
@media screen and (min-width: 600px) {
  .l-page-title.p-opening-support-title {
    padding-top: calc(60px + 100 * (100vw - 600px) / 574) !important;
  }
}
@media screen and (min-width: 1174px) {
  .l-page-title.p-opening-support-title {
    padding-top: 16rem !important;
  }
}
@media only screen and (max-width: 599px) {
  .l-page-title.p-opening-support-title {
    background-position-x: -48rem;
    padding-top: 20px !important;
  }
}
@media only screen and (max-width: 599px) and (min-width: 375px) {
  .l-page-title.p-opening-support-title {
    background-position-x: calc(-480px + 120 * (100vw - 375px) / 225);
  }
}
@media only screen and (max-width: 599px) and (min-width: 600px) {
  .l-page-title.p-opening-support-title {
    background-position-x: -36rem;
  }
}

.p-opening-support-title-inner {
  position: relative;
}
.p-opening-support-title-inner .swell-block-columns__inner {
  justify-content: center;
}

.p-opening-support-title-float {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.2rem;
}
@media screen and (min-width: 375px) {
  .p-opening-support-title-float {
    font-size: calc(12px + 8 * (100vw - 375px) / 1025);
  }
}
@media screen and (min-width: 1400px) {
  .p-opening-support-title-float {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1399px) {
  .p-opening-support-title-float {
    transform: translateX(-2vw);
  }
}
@media only screen and (max-width: 599px) {
  .p-opening-support-title-float {
    position: static;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    text-align: center;
  }
}
.p-opening-support-title-float .swl-bg-color {
  display: inline-block;
  margin-left: 0.25em;
  border-radius: 0;
  padding: 0.5em 0;
  line-height: 2;
}
@media only screen and (max-width: 599px) {
  .p-opening-support-title-float .swl-bg-color {
    margin-bottom: 0.25em;
    margin-left: 0;
    padding: 0 0.5em;
  }
}

.p-opening-support-like-this {
  border-left: 1px solid var(--color_main);
}
@media only screen and (max-width: 959px) {
  .p-opening-support-like-this {
    border-left: none;
    border-top: 1px solid var(--color_main);
  }
}

.p-opening-support-wheel-box .swell-block-columns__inner {
  justify-content: space-around;
}
.p-opening-support-wheel-box .wp-block-cover {
  padding: 0 !important;
}

.p-opening-support-cta {
  padding: 0 !important;
  background-size: 1920px auto !important;
}
@media only screen and (max-width: 1399px) {
  .p-opening-support-cta {
    background-size: 100% auto !important;
  }
}
.p-opening-support-cta .swell-block-fullWide__inner {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  min-height: 890px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1399px) {
  .p-opening-support-cta .swell-block-fullWide__inner {
    padding-top: 4em;
    padding-bottom: 46.88vw;
    min-height: 0;
  }
}
.p-opening-support-cta__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.p-opening-support-cta__text p + p {
  margin-right: 1em;
}
.p-opening-support-cta__link {
  width: 100%;
}

/* --------------------------------
p-bizstorm
----------------------------------- */
.l-page-title.p-bizstorm-title {
  padding-top: 6rem !important;
}
@media screen and (min-width: 600px) {
  .l-page-title.p-bizstorm-title {
    padding-top: calc(60px + 100 * (100vw - 600px) / 574) !important;
  }
}
@media screen and (min-width: 1174px) {
  .l-page-title.p-bizstorm-title {
    padding-top: 16rem !important;
  }
}
@media only screen and (max-width: 599px) {
  .l-page-title.p-bizstorm-title {
    background-position-x: -48rem;
    padding-top: 20px !important;
  }
}
@media only screen and (max-width: 599px) and (min-width: 375px) {
  .l-page-title.p-bizstorm-title {
    background-position-x: calc(-480px + 120 * (100vw - 375px) / 225);
  }
}
@media only screen and (max-width: 599px) and (min-width: 600px) {
  .l-page-title.p-bizstorm-title {
    background-position-x: -36rem;
  }
}

.p-bizstorm-title-inner {
  position: relative;
}
.p-bizstorm-title-inner .swell-block-columns__inner {
  justify-content: center;
}

.p-bizstorm-title-float {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.2rem;
}
@media screen and (min-width: 375px) {
  .p-bizstorm-title-float {
    font-size: calc(12px + 8 * (100vw - 375px) / 1025);
  }
}
@media screen and (min-width: 1400px) {
  .p-bizstorm-title-float {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1399px) {
  .p-bizstorm-title-float {
    transform: translateX(-2vw);
  }
}
@media only screen and (max-width: 599px) {
  .p-bizstorm-title-float {
    position: static;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    text-align: center;
  }
}
.p-bizstorm-title-float .swl-bg-color {
  display: inline-block;
  margin-left: 0.25em;
  border-radius: 0;
  padding: 0.5em 0;
  line-height: 2;
}
@media only screen and (max-width: 599px) {
  .p-bizstorm-title-float .swl-bg-color {
    margin-bottom: 0.25em;
    margin-left: 0;
    padding: 0 0.5em;
  }
}

.p-bizstorm-num h2 img {
  margin-bottom: 0.5em;
  width: 2rem !important;
}
@media screen and (min-width: 375px) {
  .p-bizstorm-num h2 img {
    width: calc(20px + 18 * (100vw - 375px) / 799) !important;
  }
}
@media screen and (min-width: 1174px) {
  .p-bizstorm-num h2 img {
    width: 3.8rem !important;
  }
}

.p-bizstorm-cta {
  padding: 0 !important;
  background-size: 1920px auto !important;
}
@media only screen and (max-width: 1399px) {
  .p-bizstorm-cta {
    background-size: 100% auto !important;
  }
}
.p-bizstorm-cta .swell-block-fullWide__inner {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  min-height: 838px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1399px) {
  .p-bizstorm-cta .swell-block-fullWide__inner {
    padding-top: 4em;
    padding-bottom: 43.65vw;
    min-height: 0;
  }
}
.p-bizstorm-cta__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.p-bizstorm-cta__text p + p {
  margin-right: 1em;
}
.p-bizstorm-cta__link {
  width: 100%;
}

/* --------------------------------
p-contact
----------------------------------- */
.p-contact .c-more-btn {
  text-align: center;
}

.wpcf7-spinner {
  display: none;
}

.p-contact-form {
  background: #EFEFEF;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-bottom: 3rem;
}
@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: 3rem;
  }
}
@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: 3rem;
  }
}
@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: 4.5rem;
  }
}
@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: 4.5rem;
  }
}
@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: 5rem;
  }
}
.p-contact-form dl > div {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid #504F4F;
}
.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: 1rem;
  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: 1.4rem;
  }
}
.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: 1.6rem;
  width: 100%;
  padding: 5px 0.5em;
}

.p-contact-form-acceptance {
  text-align: center;
  font-size: 1.2rem;
  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: 1.4rem;
  }
}

#wpcf7cpcnf {
  background: #EFEFEF !important;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
  padding-left: 2rem;
  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: 3rem;
  }
}
@media screen and (min-width: 375px) {
  #wpcf7cpcnf {
    padding-bottom: calc(10px + 20 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #wpcf7cpcnf {
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 375px) {
  #wpcf7cpcnf {
    padding-right: calc(20px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #wpcf7cpcnf {
    padding-right: 4.5rem;
  }
}
@media screen and (min-width: 375px) {
  #wpcf7cpcnf {
    padding-left: calc(20px + 25 * (100vw - 375px) / 1545);
  }
}
@media screen and (min-width: 1920px) {
  #wpcf7cpcnf {
    padding-left: 4.5rem;
  }
}
#wpcf7cpcnf table {
  max-width: 100%;
  margin: 0 auto;
  border-spacing: unset;
  line-height: inherit;
}
#wpcf7cpcnf table tr {
  border-bottom: 1px solid #504F4F;
}
#wpcf7cpcnf table tr th, #wpcf7cpcnf table tr td {
  padding: 20px 1em;
  border: none;
}
@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;
  background-color: transparent;
  color: inherit;
  font-weight: inherit;
}
@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;
  }
}

/* --------------------------------
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: 959px) {
  .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;
  }
}

:root :where(.wp-block-image.is-style-rounded img, .wp-block-image .is-style-rounded img) {
  border-radius: 1rem;
}

.u-radius100 {
  border-radius: 9999px;
}

.swell-block-columns.u-justify-content-center .swell-block-columns__inner {
  justify-content: center;
}

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