/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  /* stylelint-disable-next-line font-family-no-duplicate-names */
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

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

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */ /* stylelint-disable-line */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 2 */
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

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

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

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}@charset "UTF-8";
/* ======================================================================
 * setting
====================================================================== */@charset "UTF-8";
/* ------------------------------------------------------------
 * tag setting
------------------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 1em;
  font-weight: normal;
  line-height: 1.47;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 3rem;
  font-weight: 500;
}

h2 {
  margin: 1em 0;
  font-size: 3.2rem;
}
h2.fsize-small {
  margin-bottom: 40px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  h2.fsize-small {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}

h3 {
  font-size: 2.4rem;
  color: #195d8e;
}

p,
ul,
ol,
table {
  margin: 1em 0;
}
p:last-child,
ul:last-child,
ol:last-child,
table:last-child {
  margin-bottom: 0;
}
p:first-child,
ul:first-child,
ol:first-child,
table:first-child {
  margin-top: 0;
}

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #000;
}

input,
select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

html {
  font-size: 10px;
}

body {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  background-color: #fffdf8;
}

a {
  color: #4285f4;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    transition: opacity 0.3s;
  }
}

button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}@charset "UTF-8";
/* ======================================================================
 * デフォルトのモジュールを拡張したい場合など、必要なものは要確認,
====================================================================== */@charset "UTF-8";
/* ======================================================================
 * dndセクション初期設定
====================================================================== */
.dnd-section {
  padding: 0 1.5rem;
}
.dnd-section > .row-fluid {
  margin-right: auto;
  margin-left: auto;
}@charset "UTF-8";
/* ======================================================================
 * layout初期設定
====================================================================== */
.row-fluid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .row-fluid {
    flex-direction: column;
    gap: 0;
  }
}
.row-fluid [class*=span] {
  display: block;
  width: 100%;
}
.row-fluid .span12 {
  width: 100%;
}
.row-fluid .span11 {
  width: 91.6666666667%;
}
.row-fluid .span10 {
  width: 83.3333333333%;
}
.row-fluid .span9 {
  width: 75%;
}
.row-fluid .span8 {
  width: 66.6666666667%;
}
.row-fluid .span7 {
  width: 58.3333333333%;
}
.row-fluid .span6 {
  width: 50%;
}
.row-fluid .span5 {
  width: 41.6666666667%;
}
.row-fluid .span4 {
  width: 33.3333333333%;
}
.row-fluid .span3 {
  width: 25%;
}
.row-fluid .span2 {
  width: 16.6666666667%;
}
.row-fluid .span1 {
  width: 8.3333333333%;
}
@media screen and (max-width: 768px) {
  .row-fluid [class*=span] {
    display: block;
    width: auto;
  }
}

.c-container {
  padding-top: 100px;
}
@media screen and (max-width: 991px) {
  .c-container {
    padding-top: 60px;
  }
}

.c-container.-col2 {
  padding-top: 0;
}
@media screen and (min-width: 993px) {
  .c-container.-col2 {
    display: flex;
  }
  .c-container.-col2 > *:first-child {
    position: fixed;
    flex: 0 0 260px;
    width: 260px;
    height: 100%;
    overflow: hidden;
  }
  .c-container.-col2 .c-main {
    width: 100%;
    padding-left: 260px;
  }
}/* ======================================================================
 * adjust-width
====================================================================== */
.adjust-width {
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .adjust-width {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}@charset "UTF-8";
/* ======================================================================
 * ボタンスタイル
====================================================================== */
/* ------------------------------------------------------------
 * c-button
------------------------------------------------------------ */
.c-button {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 220px;
  padding: 5px 30px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background: #333;
  transition: opacity 0.4s;
}
.c-button:link, .c-button:visited, .c-button:active {
  color: #fff;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button::after {
  position: absolute;
  right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f105" !important;
}
.c-button > * {
  display: block;
  width: 100%;
}
.c-button svg {
  fill: #fff;
  transition: fill 0.25s;
}
.c-button.-blue {
  background: #5260a4;
}
.c-button.-red {
  background: #f00;
}
.c-button.-corporate {
  background: transparent;
}
.c-button i {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  margin: auto 0;
}
.c-button i::before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.2em;
  font-style: normal;
  font-weight: 900;
}
.c-button i.-right {
  right: 15px;
}
.c-button i.-left {
  left: 15px;
}
.c-button i.-arrow.-right::before {
  font-size: 26px;
  content: "\f105";
}
.c-button i.-arrow.-left::before {
  font-size: 26px;
  content: "\f104";
}
@media screen and (max-width: 768px) {
  .c-button {
    min-height: 60px;
    font-size: 1.5rem;
  }
  .c-button i.-right {
    right: 10px;
  }
  .c-button i.-left {
    left: 10px;
  }
}@charset "UTF-8";
/* ======================================================================
 * hs form
====================================================================== */
form fieldset {
  max-width: 100% !important;
  padding: 0;
}
form label {
  display: block;
}
@media screen and (max-width: 768px) {
  form label br {
    display: none !important;
  }
}
form .form-columns-2 .hs-form-field {
  width: 48% !important;
}
form .form-columns-2 .hs-form-field:last-child {
  margin-left: 4%;
}
@media screen and (min-width: 769px) {
  form .hs-form-field {
    display: grid;
    grid-template-rows: min-content;
    grid-template-columns: 249px auto;
    border-bottom: 1px solid #ddd;
  }
  form .hs-form-field:first-of-type {
    border-top: 1px solid #ddd;
  }
}
form .hs-form-field > label {
  display: flex;
  grid-row: 1/2;
  grid-column: 1/2;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px 15px 20px;
  margin-top: auto;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  form .hs-form-field > label {
    width: 100%;
    padding: 5px 50px 5px 10px;
    background: #f1f1f1;
  }
}
form .hs-form-field .input {
  grid-row: 1/3;
  grid-column: 2/3;
  padding: 15px 20px;
  margin-right: 0 !important;
}
@media screen and (max-width: 768px) {
  form .hs-form-field .input {
    padding: 5px 10px 15px;
  }
}
form .form-columns-0 .hs-richtext {
  margin-bottom: 2em;
}
form .hs-richtext {
  margin-bottom: 0.5em;
}
form .hs-richtext img {
  max-width: 100% !important;
  height: auto;
}
form .inputs-list {
  padding: 0;
  list-style: none;
}
form .inputs-list li {
  display: block;
  margin: 0.7rem 0;
}
form .inputs-list li.hs-form-radio {
  display: inline-block;
  margin: 0;
}
form .inputs-list li.hs-form-radio:not(:last-child) {
  margin-right: 1em;
}
form .hs-form-required {
  position: relative;
  color: transparent;
}
form .hs-form-required::after {
  position: absolute;
  top: 6px;
  right: -50px;
  display: inline-block;
  padding: 3px 10px;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  content: "必須";
  background: #c00;
}
@media screen and (max-width: 768px) {
  form .hs-form-required::after {
    right: -40px;
  }
}
form .hs-error-msg,
form .hs-error-msgs {
  color: #b3142c !important;
}
form .hs-error-msgs {
  grid-row: 3/4;
  grid-column: 2/3;
  padding: 0 20px;
  margin: -20px 0 0;
}
@media screen and (max-width: 768px) {
  form .hs-error-msgs {
    padding: 0 10px;
  }
}
form .hs_error_rollup {
  margin: 3em auto -2em;
  text-align: center;
}
form .hs_error_rollup .inputs-list li {
  margin: 0;
}
form .hs-field-desc {
  grid-row: 2/3;
  grid-column: 1/2;
  padding: 0 50px 15px 20px;
  /* place-content: center; */
  margin-bottom: auto;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  form .hs-field-desc {
    padding: 15px 10px 0;
  }
}
form select,
form textarea, form input[type=text], form input[type=email], form input[type=password], form input[type=tel], form input[type=number], form input[type=file], form input[type=search], form input[type=date] {
  width: 100% !important;
  max-width: 100%;
  height: 2.625em;
  padding: 0.5em;
  font-size: 1em;
  font-weight: normal;
  color: #333;
  -webkit-appearance: none;
  appearance: none;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: border-color 0.25s, color 0.25s;
}
form select::placeholder,
form textarea::placeholder, form input[type=text]::placeholder, form input[type=email]::placeholder, form input[type=password]::placeholder, form input[type=tel]::placeholder, form input[type=number]::placeholder, form input[type=file]::placeholder, form input[type=search]::placeholder, form input[type=date]::placeholder {
  color: #ccc;
}
form select:focus,
form textarea:focus, form input[type=text]:focus, form input[type=email]:focus, form input[type=password]:focus, form input[type=tel]:focus, form input[type=number]:focus, form input[type=file]:focus, form input[type=search]:focus, form input[type=date]:focus {
  background-color: #fff;
}
form select:focus::placeholder,
form textarea:focus::placeholder, form input[type=text]:focus::placeholder, form input[type=email]:focus::placeholder, form input[type=password]:focus::placeholder, form input[type=tel]:focus::placeholder, form input[type=number]:focus::placeholder, form input[type=file]:focus::placeholder, form input[type=search]:focus::placeholder, form input[type=date]:focus::placeholder {
  color: transparent;
}
form .hs-fieldtype-select .input {
  position: relative;
}
form .hs-fieldtype-select .input::after {
  position: absolute;
  top: 50%;
  right: 33px;
  z-index: 1;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -9px;
  pointer-events: none;
  content: "";
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
  form .hs-fieldtype-select .input::after {
    margin-top: -14px;
  }
}
form .hs-fieldtype-select .input select {
  padding-right: 34px;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: #f9f9f9;
}
form .hs-fieldtype-select .input select::-ms-expand {
  display: none;
}
form textarea {
  display: block;
  height: auto;
  min-height: 100px;
  line-height: 1.5em;
  resize: vertical;
}
form input[type=file] {
  padding: initial;
  cursor: pointer;
  background-color: transparent;
  border: initial;
}
form .fn-date-picker .pika-button {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
form .fn-date-picker .pika-button:hover, form .fn-date-picker .pika-button:focus {
  color: #fff;
  background: #000 !important;
  border-radius: 0 !important;
}
form .fn-date-picker .is-today .pika-button {
  color: #000;
}
form .fn-date-picker .is-selected .pika-button {
  background: #000;
  border-radius: 0 !important;
  box-shadow: none;
}
form input[type=checkbox] {
  display: none;
}
form input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 2.5rem;
  cursor: pointer;
}
form input[type=checkbox] + span::before, form input[type=checkbox] + span::after {
  position: absolute;
  box-sizing: border-box;
  display: block;
  content: "";
}
form input[type=checkbox] + span::before {
  top: 0.3rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
}
form input[type=checkbox] + span::after {
  top: 0.8rem;
  left: 0.4rem;
  width: 1.2rem;
  height: 0.7rem;
  border-bottom: 2px solid #5260a4;
  border-left: 2px solid #5260a4;
  opacity: 0;
  transform: rotate(-45deg);
}
form input[type=checkbox]:checked + span::after {
  opacity: 1;
}
form input[type=radio] {
  display: none;
}
form input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 2.5rem;
  cursor: pointer;
}
form input[type=radio] + span::before, form input[type=radio] + span::after {
  position: absolute;
  box-sizing: border-box;
  display: block;
  content: "";
  border-radius: 50%;
}
form input[type=radio] + span::before {
  top: 0.3rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
}
form input[type=radio] + span::after {
  top: 0.8rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #5260a4;
  opacity: 0;
}
form input[type=radio]:checked + span::after {
  opacity: 1;
}
form .legal-consent-container .hs-form-field {
  display: block;
  text-align: center;
}
form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0 !important;
}
form .legal-consent-container .hs-form-required::after {
  top: 0;
}
form .grecaptcha-badge {
  margin: 30px auto;
}
form .hs-submit {
  margin-top: 50px;
}
form .actions {
  display: flex;
  justify-content: center;
}
form input[type=submit] {
  position: relative;
  display: inline-block;
  width: 80%;
  max-width: 640px;
  padding: 15px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  background: #f1764b;
  border: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  form input[type=submit] {
    width: 100%;
    padding: 15px 5px;
    font-size: 1.4rem;
  }
}
form input[type=submit]:hover {
  opacity: 0.8;
}
form .submitted-message {
  text-align: center;
}

.form-title {
  margin: 0;
}

.hs-zip .input {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hs-zip .input::before {
  display: inline-block;
  content: "〒";
}

.privacypolicy-content {
  height: 20rem;
  padding: 2rem;
  margin: 50px 0;
  overflow-y: scroll;
  font-size: 1.4rem;
  border: 1px solid #ddd;
}
.privacypolicy-content .number dt {
  margin-top: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #5260a4;
}
.privacypolicy-content .number dd {
  margin: 8px 0;
}
.privacypolicy-content .number dd p {
  margin-bottom: 0;
}
.privacypolicy-content .number ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.privacypolicy-content .number ul li {
  padding-left: 30px;
  margin-bottom: 0;
  text-indent: -30px;
}
.privacypolicy-content .number ul li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 13px 12px;
  text-align: center;
  text-indent: 0;
  vertical-align: bottom;
  content: "";
  background-color: #5260a4;
  border-radius: 100%;
}
.privacypolicy-content .number .notes {
  display: block;
  padding-left: 30px;
  font-size: 1.4rem;
  color: #515151;
  text-indent: -30px;
}
.privacypolicy-content .number .notes::before {
  display: inline-block;
  width: 1em;
  height: auto;
  margin: 0 8px;
  text-align: center;
  text-indent: 0;
  content: "※";
}
.privacypolicy-content .number table {
  border-collapse: collapse;
}
.privacypolicy-content .number table th,
.privacypolicy-content .number table td {
  padding: 0.5em;
  border: 1px solid #e5e5e5;
}

.privacypolicy-text {
  text-align: center;
}

.entry-text-wrapper ul {
  padding: 0;
  list-style: none;
  margin-bottom: 3.2rem;
}
.entry-text-wrapper ul:not([class]) li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 13px 12px;
  text-align: center;
  text-indent: 0;
  vertical-align: bottom;
  content: "";
  background-color: #5260a4;
  border-radius: 100%;
}
.entry-text-wrapper ul li {
  padding-left: 30px;
  text-indent: -30px;
}
.entry-text-wrapper ul li:not(:last-child) {
  margin-bottom: 8px;
}
.entry-text-wrapper ul.notes {
  margin-bottom: 0;
}
.entry-text-wrapper ul.notes li {
  padding-left: 30px;
  font-size: 1.4rem;
  color: #515151;
  text-indent: -30px;
}
.entry-text-wrapper ul.notes li::before {
  margin: 0 8px;
  content: "※";
}
@media screen and (max-width: 768px) {
  .entry-text-wrapper ul.notes li {
    font-size: 1.2rem;
  }
}

h2.heading {
  margin: 80px auto;
  font-size: 3.8rem;
  font-weight: 700;
  color: #5260a4;
  text-align: center;
}

.hs-main-font-element h3 {
  margin: 40px 0 20px;
}@charset "UTF-8";
/* ======================================================================
 * Header
====================================================================== */
@media screen and (max-width: 992px) {
  body.-js-fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

/* ------------------------------------------------------------
 * 管理画面用 css
------------------------------------------------------------ */
.-is-in-editor .c-header {
  position: relative;
}
.-is-in-editor .c-header .gnav-overlay {
  display: none;
}

/* ------------------------------------------------------------
 * header
------------------------------------------------------------ */
@media screen and (min-width: 993px) {
  .c-header {
    width: calc(100% + 17px);
    height: 100%;
    padding-right: 17px;
    overflow-y: scroll;
    background: linear-gradient(0deg, #d3e7f9, #fff);
  }
}
@media screen and (max-width: 992px) {
  .c-header {
    position: relative;
    padding-right: 50px;
  }
}
@media screen and (min-width: 993px) {
  .c-header .header-inner {
    padding-bottom: 40px;
    overflow-x: hidden;
  }
}
.c-header .logo-wrap {
  padding: 10px;
}
@media screen and (min-width: 993px) {
  .c-header .logo-wrap {
    margin-bottom: 20px;
  }
}
.c-header .logo-wrap .logo {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1480px;
  margin: 0 auto;
}
@media screen and (min-width: 993px) {
  .c-header .logo-wrap .logo {
    display: block;
  }
}
.c-header .logo-wrap .logo a {
  display: flex;
  align-items: center;
  font-size: 2rem;
}
@media screen and (min-width: 993px) {
  .c-header .logo-wrap .logo a {
    display: block;
  }
}
.c-header .logo-wrap .logo a:hover {
  opacity: 1;
}
@media screen and (min-width: 993px) {
  .c-header .logo-wrap .logo a .image {
    display: block;
    margin: 10px 0;
    text-align: center;
  }
  .c-header .logo-wrap .logo a .image img {
    width: 122px;
  }
}
@media screen and (max-width: 992px) {
  .c-header .logo-wrap .logo a .image img {
    max-width: 100px;
    max-height: 50px;
    padding-right: 15px;
    vertical-align: middle;
  }
}
.c-header .logo-wrap .logo a .text {
  display: block;
  font-weight: normal;
  line-height: 1.2;
  color: #000000;
  text-align: center;
  white-space: pre-line;
}
@media screen and (min-width: 993px) {
  .c-header .logo-wrap .logo a .text {
    padding: 0 10px;
  }
}
.c-header ul {
  padding: 0;
  list-style: none;
  display: block;
}
.c-header ul li {
  display: block;
}
.c-header ul li a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 993px) {
  .c-header .toggle-btn {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .c-header .toggle-btn {
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 40px;
    height: 100%;
    padding: 0;
    background: transparent;
    border: none;
  }
  .c-header .toggle-btn.-js-opened i:nth-child(1) {
    bottom: 0;
    transform: rotate(-45deg);
  }
  .c-header .toggle-btn.-js-opened i:nth-child(2) {
    opacity: 0;
  }
  .c-header .toggle-btn.-js-opened i:nth-child(3) {
    top: 0;
    transform: rotate(45deg);
  }
  .c-header .toggle-btn span {
    position: relative;
    width: 100%;
    height: 23px;
  }
  .c-header .toggle-btn i {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 3px;
    margin: auto;
    background: #000;
    transition: all 0.3s;
  }
  .c-header .toggle-btn i:nth-child(1) {
    bottom: auto;
  }
  .c-header .toggle-btn i:nth-child(3) {
    top: auto;
  }
}
@media screen and (max-width: 992px) {
  .c-header .navigation-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    max-width: 460px;
    height: 100%;
    padding-bottom: 35px;
    overflow: auto;
    background: linear-gradient(to top, #d3e7f9, #fff);
    transition: 0.5s ease-in-out;
    transform: translateX(-105%);
  }
  .c-header .navigation-menu.-js-opened {
    z-index: 9999;
    width: 82%;
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
    transform: translateX(0%);
  }
}
@media screen and (min-width: 993px) {
  .c-header .gnav {
    margin-right: -15px;
  }
}
.c-header .gnav ul li a {
  display: block;
  padding: 15px 30px;
  color: #000;
  white-space: nowrap;
}
.c-header .gnav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 993px) {
  .c-header .gnav-overlay {
    z-index: -1 !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
.c-header .gnav-overlay.-js-opened {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}
.c-header .button-menu {
  max-width: 260px;
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
  .c-header .button-menu {
    max-width: none;
    padding: 0 20px;
    margin-top: 32px;
  }
}
.c-header .button-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 993px) {
  .c-header .button-menu ul {
    padding: 0 10px;
  }
  .c-header .button-menu ul li a {
    padding: 8px 20px;
  }
}
.c-header .button-menu ul li a.c-button.-red {
  background-color: #e6010e;
}
@media screen and (max-width: 992px) {
  .c-header .button-menu ul li a {
    justify-content: center;
  }
}
@media screen and (min-width: 993px) {
  .c-header .corporate-link {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 992px) {
  .c-header .corporate-link {
    padding: 10px 20px 0;
  }
}
.c-header .corporate-link a {
  padding: 8px 20px;
}
@media screen and (min-width: 993px) {
  .c-header .corporate-link a {
    color: #333;
    background-color: transparent;
  }
}
@media screen and (max-width: 992px) {
  .c-header .corporate-link a {
    justify-content: center;
    color: #fff;
    background-color: #f00;
  }
}

/* ------------------------------------------------------------
  * シンプルヘッダー
------------------------------------------------------------ */
.c-header.-simple {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 30px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 991px) {
  .c-header.-simple {
    height: 60px;
    padding: 0 15px;
  }
}
.c-header.-simple .header-inner {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .c-header.-simple .group-logo {
    width: 82px;
  }
}
@media screen and (max-width: 768px) {
  .c-header.-simple .company-logo {
    width: 150px;
  }
}
.c-header.-simple a {
  display: flex;
}@charset "UTF-8";
/* ======================================================================
 * footer
====================================================================== */
.c-footer {
  background: #d9d9d9;
}
@media screen and (max-width: 992px) {
  .c-footer {
    padding: 30px 25px 10px;
  }
}
.c-footer .copyright {
  padding: 10px 0;
  margin-top: 30px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .c-footer .copyright {
    margin-top: 60px;
  }
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: -50px;
  z-index: 300;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  transition: all 0.3s;
}
@media screen and (max-width: 992px) {
  .pagetop {
    right: 0;
  }
}
.pagetop.-js-show {
  bottom: 140px;
}
@media screen and (max-width: 992px) {
  .pagetop.-js-show {
    bottom: 110px;
  }
}
.pagetop::before {
  position: absolute;
  inset: 0;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  content: "\f106";
}

@media screen and (min-width: 993px) {
  .footer-inner {
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

.footer-nav ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .footer-nav ul li {
    max-width: calc(33.3333333333% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .footer-nav ul li {
    width: 100%;
  }
}
.footer-nav a {
  justify-content: center;
  width: 100%;
  min-width: 260px;
  max-width: 590px;
  padding: 20px 30px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .footer-nav a {
    width: auto;
    min-width: 200px;
  }
}
.footer-nav .button-menu {
  margin-bottom: 40px;
}
@media screen and (min-width: 993px) {
  .footer-nav .button-menu {
    padding-top: 40px;
  }
}
.footer-nav .corporate-link {
  display: flex;
  justify-content: center;
}
.footer-nav .corporate-link a {
  width: 280px;
  padding: 10px 30px;
  color: inherit;
  background-color: transparent;
  border: 2px solid currentcolor;
}
@media screen and (min-width: 993px) {
  .footer-nav .corporate-link a {
    width: 240px;
  }
}
.footer-nav .corporate-link a::after {
  content: none !important;
}

/* ------------------------------------------------------------
  * シンプルフッター
------------------------------------------------------------ */
.c-footer.-simple {
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  background: #001e38;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 991px) {
  .c-footer.-simple {
    padding-bottom: 3em;
  }
}
.c-footer.-simple .copyright {
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.7;
}

.pagetop.-simple {
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  text-align: center;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  background-color: rgba(0, 94, 184, 0.7);
  border-radius: 4px;
  opacity: 0;
}
.pagetop.-simple.-js-show {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .pagetop.-simple {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border-radius: 2px;
  }
}
.pagetop.-simple::before {
  position: absolute;
  inset: 50% 0 0;
  width: 16.66667px;
  height: 16.66667px;
  margin: -4px auto 0;
  vertical-align: middle;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .pagetop.-simple::before {
    width: 13.33333px;
    height: 13.33333px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}/* ======================================================================
 * pager
====================================================================== */
.c-pagination .inner {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.c-pagination a,
.c-pagination span {
  display: inline-block;
  padding: 10px;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  transition: opacity 0.3s;
}
.c-pagination a:hover,
.c-pagination span:hover {
  opacity: 0.7;
}
.c-pagination .number-link.-current {
  color: #000;
  background-color: #fff;
}@charset "UTF-8";
/* ======================================================================
 * ブログ一覧レイアウト
====================================================================== */
.post-data.-listing {
  display: flex;
  gap: 30px;
}
.post-data.-listing article a {
  color: inherit;
  text-decoration: none;
}

.tag-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 5px;
  margin: 0;
}
.tag-list li {
  display: block;
}
.tag-list li a,
.tag-list li span {
  padding: 0.3em 1em;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  text-decoration: none;
  background: #000;
}@charset "UTF-8";
/* ======================================================================
 * ブログ記事レイアウト
====================================================================== */
.col2-container {
  padding: 80px 20px;
}
@media screen and (min-width: 769px) {
  .col2-container {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .col2-container .main-content {
    width: calc(100% - 380px);
  }
}
.col2-container .post-body::after {
  content: " ";
  display: table;
  clear: both;
}
.col2-container .sidebar {
  width: 100%;
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .col2-container .sidebar {
    position: sticky;
    top: 100px;
    width: 330px;
    height: 100%;
    margin-top: 0;
  }
}@charset "UTF-8";
/* ------------------------------------------------------------
 * responsive
------------------------------------------------------------ */
@media screen and (min-width: 769px) {
  /* PC/SP表示切替 */
  .u-sp-only {
    display: none;
  }
  /* href="tel:〜"の場合、PC/タブレットではリンク判定無しを前提とする */
  a[href^="tel:"] {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 768px) {
  /* PC/SP表示切替 */
  .u-pc-only {
    display: none;
  }
}
/* ------------------------------------------------------------
 * margin
 * カスタムモジュールの共通余白設定用
------------------------------------------------------------ */
.u-mt-none {
  margin-top: 0;
}
.u-mt-small {
  margin-top: 16px;
}
.u-mt-default {
  margin-top: 32px;
}
.u-mt-large {
  margin-top: 48px;
}

.u-mb-none {
  margin-bottom: 0;
}
.u-mb-small {
  margin-bottom: 16px;
}
.u-mb-default {
  margin-bottom: 32px;
}
.u-mb-large {
  margin-bottom: 48px;
}

/* ------------------------------------------------------------
 * 画像
------------------------------------------------------------ */
.u-ofi {
  font-family: "object-fit: cover; object-position: 50% 50%;";
  object-fit: cover;
  object-position: 50% 50%;
}
.u-ofi.-contain {
  font-family: "object-fit: contain; object-position: 50% 50%;";
  object-fit: contain;
}

/* ------------------------------------------------------------
 * サイト内共通 js class
------------------------------------------------------------ */
.-js-slide-toggle-trig,
[data-tab-target],
[data-tab-switch] {
  -webkit-user-select: none;
  user-select: none;
}

.u-tab-switch-target,
.-js-tab-target-hide,
.-js-tab-switch-hide {
  display: none;
}

.-js-tab-target-show,
.-js-tab-switch-show {
  display: block;
  animation: fade-in 0.25s ease-out;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u-break-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.u-break-table th {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .u-break-table tr:first-child th,
  .u-break-table tr:first-child td {
    border-top: 1px solid #ddd;
  }
  .u-break-table th,
  .u-break-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
  }
}
@media screen and (max-width: 768px) {
  .u-break-table table,
  .u-break-table tbody,
  .u-break-table tr,
  .u-break-table th,
  .u-break-table td {
    display: block;
  }
  .u-break-table th {
    width: 100% !important;
    padding: 5px 10px;
    background: #f1f1f1;
    border: none !important;
  }
  .u-break-table td {
    padding: 5px 10px 15px;
  }
}

@media screen and (max-width: 768px) {
  .u-fsize-sp-14 {
    font-size: 1.4rem;
  }
}

.u-info-mail {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .u-info-mail {
    font-size: 1.4rem;
  }
}
.u-info-mail strong {
  display: inline-block;
  padding-left: 0.5em;
  font-size: 2.8rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .u-info-mail strong {
    font-size: 1.8rem;
    white-space: pre-line;
  }
}

.u-simple-table tr:first-child td {
  border-top: 1px solid #ddd;
}
.u-simple-table td {
  padding: 16px 10px 40px;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
}
.u-simple-table td:first-child {
  padding-right: 20px;
  white-space: nowrap;
}
.u-simple-table td:last-child {
  width: 100%;
}