/*! 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: 80%;
}

/**
 * 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
====================================================================== */
:root {
  --font_jp: "Noto Sans JP", sans-serif;
  --font_en: "Roboto Condensed", sans-serif;
  --color_base: #222222;
  --color_red: #dc2e2d;
  --color_blue: #2b5296;
  --color_link: #1e63d6;
  --heading_lg: 4.2rem;
  --heading_md: 3.2rem;
  --heading_sm: 2.8rem;
  --pc_adjust: 1200px;
  --sp_adjust: 20px;
}
@media screen and (max-width: 768px) {
  :root {
    --heading_lg: 3rem;
    --heading_md: 2.6rem;
    --heading_sm: 2.2rem;
  }
}/* ------------------------------------------------------------
 * tag setting
------------------------------------------------------------ */
html {
  font-size: 10px;
}

body {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color_base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

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

a {
  color: var(--color_link);
}
@media screen and (min-width: 769px) {
  /* a {
    transition: opacity 0.3s;
  } */
  a:hover {
    opacity: 0.5;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 1em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

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

button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}@charset "UTF-8";
/* ======================================================================
 * デフォルトのモジュールを拡張したい場合など、必要なものは要確認,
====================================================================== */@charset "UTF-8";
/* ======================================================================
 * dndセクション初期設定
====================================================================== */
.dnd-section {
  padding: 100px var(--sp_adjust);
}
.dnd-section > .row-fluid {
  max-width: var(--pc_adjust);
  margin-inline: auto;
}
.dnd-section:has(.cmn02_banner) {
  padding: 0;
}@charset "UTF-8";
/* ======================================================================
 * layout初期設定
====================================================================== */
.row-fluid {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.row-fluid [class*=span] {
  display: block;
  width: 100%;
}
.row-fluid .span12 {
  width: 100%;
}
.row-fluid .span11 {
  width: 91.489361693%;
}
.row-fluid .span10 {
  width: 82.978723396%;
}
.row-fluid .span9 {
  width: 74.468085099%;
}
.row-fluid .span8 {
  width: 65.957446802%;
}
.row-fluid .span7 {
  width: 57.446808505%;
}
.row-fluid .span6 {
  width: 48.936170208%;
}
.row-fluid .span5 {
  width: 40.425531911%;
}
.row-fluid .span4 {
  width: 31.914893614%;
}
.row-fluid .span3 {
  width: 23.404255317%;
}
.row-fluid .span2 {
  width: 14.89361702%;
}
.row-fluid .span1 {
  width: 6.382978723%;
}/* ======================================================================
 * adjust-width
====================================================================== */
.adjust-width {
  width: 95%;
  max-width: var(--pc_adjust);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .adjust-width {
    width: 100%;
    padding-inline: var(--sp_adjust);
  }
}@charset "UTF-8";
/* ======================================================================
 * ボタンスタイル
====================================================================== */
/* ------------------------------------------------------------
 * c-button
------------------------------------------------------------ */
.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: min(32.7rem, 100%);
  max-width: 100%;
  height: 6.4rem;
  background: var(--color_blue);
  text-decoration: none;
  transition: background-color 0.2s ease-out;
  border: 1px solid var(--color_blue);
  padding-left: 2rem;
  padding-right: 2rem;
}
.c-button:hover {
  opacity: 1;
  background-color: #fff;
}
.c-button:hover .text {
  color: var(--color_blue);
}
.c-button:hover .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8.20224 11.5364' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.640185 0.768221L6.64019 5.76823L0.640185 10.7682' stroke='%232B5296' stroke-width='2'/%3E%3C/svg%3E");
}
.c-button .text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
.c-button .icon,
.c-button .icon-image {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.c-button .icon {
  width: 0.8rem;
  height: 1.2rem;
  background: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8.20224 11.5364' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.640185 0.768221L6.64019 5.76823L0.640185 10.7682' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
}
.c-button .icon-image {
  display: flex;
  align-items: center;
  transform: none;
}
.c-button.-icon-left .icon,
.c-button.-icon-left .icon-image {
  right: auto;
  left: 2rem;
}
.c-button--red {
  background: #dc2e2d;
  border-color: #dc2e2d;
}
.c-button--red:hover {
  background-color: #fff;
}
.c-button--red:hover .text {
  color: #dc2e2d;
}
.c-button--red:hover .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8.20224 11.5364' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.640185 0.768221L6.64019 5.76823L0.640185 10.7682' stroke='%23dc2e2d' stroke-width='2'/%3E%3C/svg%3E");
}
.c-button--white {
  background: transparent;
  border-color: #fff;
  transition: background 0.2s ease;
}
.c-button--white:hover {
  background-color: white;
}
.c-button--white:hover .text {
  color: var(--color_blue);
}
.c-button--white:hover .icon {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8.20224 11.5364' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.640185 0.768221L6.64019 5.76823L0.640185 10.7682' stroke='%232B5296' stroke-width='2'/%3E%3C/svg%3E");
}/* ======================================================================
 * hs form
====================================================================== */
form fieldset {
  max-width: 100% !important;
  padding: 0;
}
form label {
  display: block;
}
form .form-columns-2,
form .form-columns-3 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  form .form-columns-2,
  form .form-columns-3 {
    flex-direction: column;
  }
}
form .form-columns-2 .hs-form-field,
form .form-columns-3 .hs-form-field {
  width: 100% !important;
}
form .form-columns-2 .hs-richtext,
form .form-columns-3 .hs-richtext {
  width: 100%;
}
@media screen and (min-width: 769px) {
  form .form-columns-2 .hs-form-field {
    width: calc(50% - 1.6rem) !important;
  }
}
@media screen and (min-width: 769px) {
  form .form-columns-3 .hs-form-field {
    width: calc((100% - 6.4rem) / 3) !important;
  }
}
form .hs-form-field {
  margin-bottom: 2em;
}
form .hs-form-field .input {
  margin-right: 0 !important;
}
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 .hs-form-required {
  color: #f00;
}
form .hs-error-msg,
form .hs-error-msgs {
  color: #f00;
}
form .hs_error_rollup {
  margin: 3em auto -2em;
  text-align: center;
}
form .hs_error_rollup .inputs-list li {
  margin: 0;
}
form .hs-field-desc {
  margin-bottom: 0.2em;
  font-size: 1.4rem;
}
form select,
form textarea, form input[type=text], form input[type=email], form input[type=password], form input[type=tel], form input[type=phone], form input[type=number], form input[type=file], form input[type=search], form input[type=date] {
  width: 100% !important;
  padding: 0.5em 1em;
  line-height: 1.5;
  background: #fff;
  border: 1px solid #333;
  border-radius: 0;
}
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=phone]::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=phone]:focus, form input[type=number]:focus, form input[type=file]:focus, form input[type=search]:focus, form input[type=date]:focus {
  outline: 2px solid var(--color-base);
}
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=phone]: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: 13px;
  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);
}
form .hs-fieldtype-select .input select {
  padding-right: 34px;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: inherit;
}
form .hs-fieldtype-select .input select::-ms-expand {
  display: none;
}
form textarea {
  display: block;
  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] {
  width: 0 !important;
  height: 0 !important;
  opacity: 0;
}
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;
  border: 1px solid #000;
}
form input[type=checkbox] + span::after {
  top: 0.8rem;
  left: 0.4rem;
  width: 1.2rem;
  height: 0.7rem;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  opacity: 0;
  transform: rotate(-45deg);
}
form input[type=checkbox]:checked + span::after {
  opacity: 1;
}
form input[type=radio] {
  width: 0 !important;
  height: 0 !important;
  opacity: 0;
}
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;
  border: 1px solid #000;
}
form input[type=radio] + span::after {
  top: 0.8rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #000;
  opacity: 0;
}
form input[type=radio]:checked + span::after {
  opacity: 1;
}
form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0 !important;
}
form .grecaptcha-badge {
  margin: 30px auto;
}
form .hs-submit {
  width: 90%;
  max-width: 350px;
  margin: 3em auto 0;
}
form input[type=submit] {
  display: block;
  width: 100%;
  padding: 0.5em 1em;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #000;
  border: none;
  outline: none;
}

.submitted-message {
  text-align: center;
}

.form-title {
  margin: 0;
}@charset "UTF-8";
/* ======================================================================
 * Header
====================================================================== */
/* 管理画面用 */
.is-in-editor {
  padding-top: 0;
}
.is-in-editor .c-header {
  position: relative;
}
@media screen and (min-width: 769px) {
  .is-in-editor .c-header.is-row1-hidden {
    transform: none;
  }
}
.is-in-editor .c-header .gnav-overlay {
  display: none;
}
.is-in-editor .c-body {
  padding-top: 0;
}
@media screen and (min-width: 769px) {
  .is-in-editor .c-body.is-row1-hidden {
    transform: none;
    padding-top: 0;
  }
  .is-in-editor .c-body.is-row1-hidden::after {
    display: none;
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  transition: transform 0.35s ease;
}
@media screen and (min-width: 769px) {
  .c-header.is-row1-hidden {
    transform: translateY(-72px);
  }
  .c-header.is-row1-hidden::after {
    display: none;
  }
}
.c-header::after {
  content: "";
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e5e5;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-header::after {
    display: none;
  }
}
.c-header .gnav-overlay {
  position: fixed;
  top: 150px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 150px);
  visibility: hidden;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-header .gnav-overlay {
    top: 5.8rem;
    height: calc(100dvh - 5.8rem);
  }
}
.c-header .gnav-overlay.-js-opened {
  visibility: visible;
  opacity: 1;
}

.c-body {
  padding-top: 150px;
  transition: padding-top 0.35s ease;
}
.c-body.is-row1-hidden {
  padding-top: 78px;
}
@media screen and (max-width: 768px) {
  .c-body {
    padding-top: 5.8rem;
    transition: none;
  }
}

/* ======================================================================
 * c-gnav
====================================================================== */
.c-gnav__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  height: 72px;
  max-width: var(--pc_adjust);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-gnav__top {
    height: 5.8rem;
    max-width: none;
    padding: 1.6rem 0 1.6rem 2.4rem;
    border-bottom: 1px solid #2b5296;
  }
}
.c-gnav__logo-link {
  display: block;
  line-height: 0;
}
.c-gnav__logo-img {
  width: auto;
}
@media screen and (max-width: 768px) {
  .c-gnav__logo-img {
    height: 2.8rem;
  }
}
.c-gnav__controls {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 1200px) {
  .c-gnav__controls {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__controls {
    gap: 16px;
  }
}
.c-gnav__buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-gnav__buttons {
    display: none;
  }
}
.c-gnav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.2rem;
  height: 3.2rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 1200px) {
  .c-gnav__btn {
    width: 10rem;
    font-size: 1.2rem;
  }
}
.c-gnav__btn:hover {
  color: #fff;
  opacity: 0.5;
}
.c-gnav__btn--red {
  background: #dc2e2d;
}
.c-gnav__btn--blue {
  background: #2b5296;
}
.c-gnav__lang {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .c-gnav__lang {
    display: none;
  }
}
.c-gnav__lang-current {
  position: relative;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #2b5296;
}
.c-gnav__lang-current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2b5296;
}
.c-gnav__lang-divider {
  display: block;
  flex-shrink: 0;
  width: 1px;
  height: 18px;
  background: #e5e5e5;
}
.c-gnav__lang-other {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}
.c-gnav__lang-other:hover {
  color: #2b5296;
}
@media screen and (max-width: 768px) {
  .c-gnav__search {
    display: none;
  }
}
.c-gnav__search-form {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 184px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid #e5e5e5;
}
.c-gnav__search-form input[type=text] {
  border: none;
  height: 100%;
  padding: 0;
}
.c-gnav__search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #222;
}
.c-gnav__search-input::-moz-placeholder {
  color: #767676;
}
.c-gnav__search-input::-webkit-input-placeholder {
  color: #767676;
}
.c-gnav__search-input:-ms-input-placeholder {
  color: #767676;
}
.c-gnav__search-btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  line-height: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.c-gnav__search-btn:hover {
  opacity: 0.7;
}
.c-gnav__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-shrink: 0;
    width: 5.8rem;
    height: 5.8rem;
    padding: 0;
    background: #2b5296;
    border: none;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__hamburger-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
.c-gnav__hamburger-bar {
  display: block;
  height: 1px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
}
.c-gnav__hamburger-bar:nth-child(1), .c-gnav__hamburger-bar:nth-child(3) {
  width: 2.8rem;
}
.c-gnav__hamburger-bar:nth-child(2) {
  width: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-gnav__hamburger-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.05em;
  }
}
.c-gnav__hamburger-label--close {
  display: none;
}
.c-gnav__hamburger.-js-opened .c-gnav__hamburger-label--menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__hamburger.-js-opened .c-gnav__hamburger-label--close {
    display: block;
  }
}
.c-gnav__hamburger.-js-opened .c-gnav__hamburger-bar {
  height: 2px;
}
.c-gnav__hamburger.-js-opened .c-gnav__hamburger-bar:nth-child(1) {
  width: 1.8rem;
  transform: translateY(6px) rotate(45deg);
}
.c-gnav__hamburger.-js-opened .c-gnav__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.c-gnav__hamburger.-js-opened .c-gnav__hamburger-bar:nth-child(3) {
  width: 1.8rem;
  transform: translateY(-6px) rotate(-45deg);
}
.c-gnav__nav {
  max-width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-gnav__nav {
    display: none;
    position: fixed;
    top: 5.8rem;
    left: 0;
    width: 100%;
    height: calc(100dvh - 5.8rem);
    overflow-y: auto;
    background: #fff;
    z-index: 900;
    padding: 4rem 0;
  }
  .c-gnav__nav.-js-opened {
    display: block;
  }
}
.c-gnav__list {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: stretch;
  max-width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-gnav__list {
    flex-direction: column;
  }
}
.c-gnav__item {
  position: relative;
  flex: 1;
}
.c-gnav__item::after {
  content: "";
  position: absolute;
  top: 2.4rem;
  right: 0;
  bottom: 2.4rem;
  width: 1px;
  background: #e5e5e5;
}
.c-gnav__item:last-child::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: none;
    width: 100%;
    border-bottom: 2px solid #e5e5e5;
  }
  .c-gnav__item::after {
    display: none;
  }
}
.c-gnav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 78px;
  padding: 0 8px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #222;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease;
}
.c-gnav__link::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #2b5296;
  transition: width 0.2s ease;
}
.has-child:hover > .c-gnav__link, .has-child.is-open > .c-gnav__link {
  color: #2b5296;
}
.has-child:hover > .c-gnav__link::after, .has-child.is-open > .c-gnav__link::after {
  width: 60%;
}
.c-gnav__link:hover {
  color: #2b5296;
  opacity: 1;
}
.c-gnav__link:hover::after {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .c-gnav__link {
    flex: 1;
    justify-content: flex-start;
    height: auto;
    min-height: 5.6rem;
    line-height: 1.5;
    padding: 1.6rem 2.4rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b5296;
  }
  .c-gnav__link::after {
    display: none;
  }
}
.c-gnav__sub-list {
  padding: 0;
  list-style: none;
  position: fixed;
  margin: 0;
  top: 150px;
  left: 0;
  right: 0;
  width: 100%;
  background: #f5f5f2;
  z-index: 995;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 4rem max(1.6rem, (100% - var(--pc_adjust)) / 2);
}
.has-child:hover > .c-gnav__sub-list, .has-child.is-open > .c-gnav__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .c-gnav__sub-list {
    position: static;
    display: none;
    flex-basis: 100%;
    padding: 0;
    background: #fff;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    border-top: 2px solid #e5e5e5;
  }
}
.c-gnav__sub-item {
  flex: 0 0 28.8rem;
}
@media screen and (max-width: 1200px) {
  .c-gnav__sub-item {
    flex: 0 0 calc(33.333% - 11px);
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__sub-item {
    flex: none;
    border-bottom: 1px solid #e5e5e5;
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__sub-item:last-of-type {
    border-bottom: none;
  }
}
.c-gnav__toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__toggle {
    position: relative;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-right: 2.4rem;
    background: #2b5296;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }
  .c-gnav__toggle::before, .c-gnav__toggle::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: opacity 0.2s ease;
  }
  .c-gnav__toggle::before {
    width: 1.2rem;
    height: 0.2rem;
  }
  .c-gnav__toggle::after {
    width: 0.2rem;
    height: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__toggle.is-open::after {
    opacity: 0;
  }
}
.c-gnav__sp-buttons {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__sp-buttons {
    display: flex;
    gap: 0.8rem;
    padding: 0 2.4rem;
    margin-bottom: 1.68rem;
  }
}
.c-gnav__sp-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__sp-btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 0.98rem 0;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  .c-gnav__sp-btn:hover {
    color: #fff;
    opacity: 0.8;
  }
  .c-gnav__sp-btn--red {
    background: #dc2e2d;
  }
  .c-gnav__sp-btn--blue {
    background: #2b5296;
  }
}
.c-gnav__sp-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__sp-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    padding: 4rem 2.4rem;
  }
  .c-gnav__sp-footer .c-gnav__search-form {
    width: 100%;
    height: 5.2rem;
    padding: 0 1.6rem;
  }
  .c-gnav__sp-footer .c-gnav__search-form input[type=text] {
    border: none;
    height: 100%;
    padding: 0;
  }
  .c-gnav__sp-footer .c-gnav__lang {
    display: flex;
  }
}
.c-gnav__sp-login {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__sp-login {
    display: flex;
    justify-content: center;
    padding: 0 2.4rem 2.4rem;
  }
}
.c-gnav__login {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.c-gnav__login:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-gnav__login {
    display: none;
  }
}
.c-gnav__sp-login .c-gnav__login {
  display: flex;
  flex-direction: row;
  background-color: var(--color_red);
  padding: 1.5rem 1rem;
  width: 100%;
  justify-content: center;
}
.c-gnav__login-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #dc2e2d;
  padding: 0.6rem 0.8rem 0.6rem 0.7rem;
}
@media screen and (max-width: 768px) {
  .c-gnav__login-icon {
    padding: 0;
  }
}
.c-gnav__login-icon img {
  width: 1.5rem;
  height: auto;
  filter: brightness(0) invert(1);
}
.c-gnav__login-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #dc2e2d;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-gnav__login-text {
    color: #fff;
    font-size: 1.4rem;
  }
}
.c-gnav__sub-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6.4rem;
  padding: 0 16px 0 32px;
  border: 1px solid #2b5296;
  background: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: #222;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.c-gnav__sub-link::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.2rem solid #2b5296;
  border-right: 0.2rem solid #2b5296;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s ease;
}
.c-gnav__sub-link:hover {
  background: #2b5296;
  color: #fff;
  opacity: 1;
}
.c-gnav__sub-link:hover::before {
  border-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-gnav__sub-link {
    justify-content: flex-start;
    height: auto;
    min-height: 5.2rem;
    border: none;
    padding: 1.4rem 0.8rem 1.4rem 3.2rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: #222;
    white-space: normal;
  }
  .c-gnav__sub-link::before {
    left: auto;
    right: 2.4rem;
    width: 0.9rem;
    height: 1.2rem;
    border: none;
    background: url("data:image/svg+xml,%3Csvg width='9' height='12' viewBox='0 0 9 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.640625 0.768311L6.64062 5.76832L0.640625 10.7683' stroke='%23767676' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
    transform: translateY(-50%);
  }
  .c-gnav__sub-link:hover {
    background: #f0f4ff;
    color: #2b5296;
  }
  .c-gnav__sub-link:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='12' viewBox='0 0 9 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.640625 0.768311L6.64062 5.76832L0.640625 10.7683' stroke='%232B5296' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
  }
}/* ======================================================================
 * footer
====================================================================== */
.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: 60px;
  height: 60px;
  padding: 18px 20px;
  margin: 0;
  cursor: pointer;
  background: #e20001;
}
.pagetop:not([data-dom-fader-id]) {
  display: none;
}
.pagetop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 16px;
  margin: -4px 0 0 -8px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

.c-footer {
  background: #fff;
  padding: 14rem 2rem 5.6rem;
}
@media screen and (max-width: 1200px) {
  .c-footer {
    padding-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer {
    padding: 10rem 0 5.6rem;
  }
}
.c-footer .ft-inner {
  display: flex;
  align-items: flex-start;
  gap: 6.4rem;
  border-top: 0.2rem solid var(--color_blue);
  padding: 4rem 0 0;
}
@media screen and (max-width: 1200px) {
  .c-footer .ft-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .c-footer .ft-inner {
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 0 0;
  }
}
.c-footer .ft-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c-footer .ft-logo a {
  display: block;
}
.c-footer .ft-logo img {
  display: block;
  max-width: 40.8rem;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .c-footer .ft-logo img {
    max-width: 32.7rem;
    width: 100% !important;
  }
}
.c-footer .ft-address {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--color_base);
}
@media screen and (max-width: 768px) {
  .c-footer .ft-address {
    font-size: 1.6rem;
  }
}
.c-footer .ft-address p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.c-footer .ft-nav {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
@media screen and (max-width: 1200px) {
  .c-footer .ft-nav {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-footer .ft-nav {
    flex-direction: column;
    width: 100%;
    gap: 1.6rem;
  }
}
.c-footer .ft-nav__col {
  padding: 0;
  list-style: none;
  margin: 0;
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 1rem 4rem 1rem 1.6rem;
  border-left: 1px solid #e5e5e5;
}
.c-footer .ft-nav__col:last-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .c-footer .ft-nav__col {
    padding: 1.3rem 2.4rem;
    border-top: none;
    border-left: 1px solid #e5e5e5;
  }
}
.c-footer .ft-nav__item {
  line-height: 1;
}
.c-footer .ft-nav__link {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--color_base);
  text-decoration: none;
  transition: opacity 0.3s ease-out, color 0.3s ease-out;
}
.c-footer .ft-nav__link:hover {
  opacity: 0.5;
}
.c-footer .ft-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3.2rem;
}
.c-footer .ft-lang {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c-footer .ft-lang {
    margin-left: auto;
    margin-right: auto;
  }
}
.c-footer .ft-lang__current {
  position: relative;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color_blue);
}
.c-footer .ft-lang__current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color_blue);
}
.c-footer .ft-lang__divider {
  display: block;
  flex-shrink: 0;
  width: 1px;
  height: 1.8rem;
  background: #e5e5e5;
}
.c-footer .ft-lang__other {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}
.c-footer .ft-lang__other:hover {
  color: var(--color_blue);
}
.c-footer .ft-copyright {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #767676;
  text-align: center;
  margin: 0;
}
.c-footer .ft-pagetop {
  display: block;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4.8rem;
  height: 4.8rem;
  text-decoration: none;
  z-index: 100;
}
.c-footer .ft-pagetop svg {
  display: block;
  width: 100%;
  height: 100%;
}@charset "UTF-8";
/* ======================================================================
 * カスタムセクション
====================================================================== */
/* ------------------------------------------------------------
 * カラム間gapなし
------------------------------------------------------------ */
.c-no-gap-columns-section > .row-fluid {
  justify-content: normal;
}
@media screen and (max-width: 768px) {
  .c-no-gap-columns-section > .row-fluid {
    flex-direction: column;
  }
}
.c-no-gap-columns-section > .row-fluid .span6 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .c-no-gap-columns-section > .row-fluid .span6 {
    width: 100%;
  }
}
.c-no-gap-columns-section > .row-fluid .span6:first-child .row-fluid-wrapper,
.c-no-gap-columns-section > .row-fluid .span6:first-child .row-fluid,
.c-no-gap-columns-section > .row-fluid .span6:first-child .span12,
.c-no-gap-columns-section > .row-fluid .span6:first-child .hs_cos_wrapper {
  height: 100%;
}
.c-no-gap-columns-section > .row-fluid .span6:first-child span[class*=hs_cos_wrapper_type_linked_image] {
  display: block;
  height: 100%;
}
.c-no-gap-columns-section > .row-fluid .span6:first-child img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.c-no-gap-columns-section > .row-fluid .span6:last-child {
  padding-right: max(5.6rem, (100vw - var(--pc_adjust)) / 2 + 5.6rem) !important;
}
@media screen and (max-width: 768px) {
  .c-no-gap-columns-section > .row-fluid .span6:last-child {
    padding-right: 2.4rem !important;
  }
}/* ======================================================================
 * pager
====================================================================== */
.c-pagination .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.c-pagination .prev-link,
.c-pagination .next-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.c-pagination .prev-link::before,
.c-pagination .next-link::before {
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 0.2rem solid var(--color_blue);
}
.c-pagination .prev-link:hover,
.c-pagination .next-link:hover {
  opacity: 0.6;
}
.c-pagination .prev-link.-disabled,
.c-pagination .next-link.-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.3;
}
.c-pagination .prev-link {
  margin-right: 1.6rem;
}
.c-pagination .prev-link::before {
  border-left: 0.2rem solid var(--color_blue);
  transform: rotate(-45deg);
}
.c-pagination .next-link {
  margin-left: 1.6rem;
}
.c-pagination .next-link::before {
  border-right: 0.2rem solid var(--color_blue);
  transform: rotate(45deg);
}
.c-pagination .number-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color_blue);
  border: 1px solid #e5e5e5;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.c-pagination .number-link:hover {
  opacity: 1;
  background: var(--color_blue);
  color: #fff;
  border-color: var(--color_blue);
}
.c-pagination .number-link.-current {
  background: var(--color_blue);
  color: #fff;
  border-color: var(--color_blue);
  pointer-events: none;
}
.c-pagination .page-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.4rem;
  color: var(--color_blue);
}/* ======================================================================
 * sidebar
====================================================================== */@charset "UTF-8";
/* ======================================================================
 * iconスタイル
====================================================================== */
/* ------------------------------------------------------------
 * c-icon-arrow-circle
------------------------------------------------------------ */
.c-icon-arrow-circle {
  width: 2.2rem;
  height: 2.2rem;
  background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='11' fill='%232B5296'/%3E%3Cpath d='M10 8L13 11L10 14' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
}@charset "UTF-8";
/* ======================================================================
 * アイコンリストスタイル
====================================================================== */
.c-icon-listing {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-icon-listing .list {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding: 2.4rem;
  border: 1px solid var(--color_blue);
}
@media screen and (max-width: 768px) {
  .c-icon-listing .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2.2rem;
  }
}
@media screen and (max-width: 374px) {
  .c-icon-listing .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-icon-listing .item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.c-icon-listing .icon {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.c-icon-listing .icon__img {
  width: auto;
  height: 1.8rem;
}
.c-icon-listing .text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color_base);
  white-space: nowrap;
}@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: 40px;
}
.u-mt-default {
  margin-top: 60px;
}
.u-mt-large {
  margin-top: 80px;
}

.u-mb-none {
  margin-bottom: 0;
}
.u-mb-small {
  margin-bottom: 40px;
}
.u-mb-default {
  margin-bottom: 60px;
}
.u-mb-large {
  margin-bottom: 80px;
}

/* ------------------------------------------------------------
 * 画像
------------------------------------------------------------ */
.u-ofi {
  object-fit: cover;
  object-position: 50% 50%;
}
.u-ofi.-contain {
  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;
  }
}