/*! 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
====================================================================== */.ff-en {
  font-family: "Anton", "Zen Kaku Gothic New", sans-serif;
}/* ------------------------------------------------------------
 * tag setting
------------------------------------------------------------ */
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

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

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

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

h2 {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.8rem;
  }
}

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

html {
  font-size: 10px
}
@media screen and (max-width: 990px) and (min-width: 769px) {
  html {
    font-size: min(1.1vw, 8px);
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.c-container {
  overflow: hidden;
}

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

button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}@charset "UTF-8";
/* ======================================================================
 * デフォルトのモジュールを拡張したい場合など、必要なものは要確認,
====================================================================== */@charset "UTF-8";
/* ======================================================================
 * dndセクション初期設定
====================================================================== */
.dnd-section {
  padding: 120px 20px;
}
@media screen and (max-width: 768px) {
  .dnd-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.dnd-section > .row-fluid {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}@charset "UTF-8";
/*======================================================================
 * layout初期設定
======================================================================*/
.row-fluid {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .row-fluid {
    flex-direction: column;
  }
}
.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%;
}
@media screen and (max-width: 768px) {
  .row-fluid [class*=span] {
    width: auto;
  }
}/* ======================================================================
 * adjust-width
====================================================================== */
.adjust-width {
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.adjust-width.-large {
  max-width: 1260px;
}@charset "UTF-8";
/* ======================================================================
 * ボタンスタイル
====================================================================== */
/* ------------------------------------------------------------
 * c-button
------------------------------------------------------------ */
.c-button {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  min-height: 8.8rem;
  padding: 1.4rem 3.6rem;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
  text-decoration: none;
  border-radius: 4.4rem;
  box-shadow: 0 5px 0 #cb6019;
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  background-color: #f88038;
}
@media screen and (max-width: 768px) {
  .c-button {
    gap: 0.4rem;
    min-height: 7.5rem;
    padding: 1.4rem 2rem;
    font-size: 2.4rem;
  }
}
.c-button svg {
  display: block;
  height: auto;
  fill: currentcolor;
}
@media screen and (max-width: 768px) {
  .c-button svg {
    max-width: 1.125em;
  }
}
.c-button:hover {
  box-shadow: 0 2px 0 #cb6019;
  opacity: 1;
  transform: translateY(3px);
}
.c-button.-icon-left {
  flex-direction: row-reverse;
}/* ======================================================================
 * card
====================================================================== */
.c-card {
  padding: 0.8rem;
  line-height: 1.4;
  background-color: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.c-card .image {
  margin: 0;
}
.c-card .image > img {
  display: block;
  width: 100%;
  border-radius: 0.8rem;
}
.c-card .content {
  padding: 1.6rem 2rem;
}
.c-card .title {
  margin: 0;
  font-weight: bold;
  text-align: center;
}
.c-card .text {
  font-weight: 500;
  line-height: 1.4;
}@charset "UTF-8";
/* ======================================================================
 * hs form
====================================================================== */
.form-title {
  margin-bottom: 5.2rem;
  font-size: 4rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form-title {
    margin-bottom: 5rem;
    font-size: 2.8rem;
  }
}

form fieldset {
  max-width: 100% !important;
  padding: 0;
}
form .form-columns-2 .hs-form-field {
  width: 48% !important;
}
@media screen and (max-width: 768px) {
  form .form-columns-2 .hs-form-field {
    float: none;
    width: 100% !important;
  }
}
form .form-columns-2 .hs-form-field:last-child {
  margin-left: 4%;
}
@media screen and (max-width: 768px) {
  form .form-columns-2 .hs-form-field:last-child {
    margin-left: 0;
  }
}
form .hs-form-field {
  margin-bottom: 2rem;
}
form .hs-form-field > label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  form .hs-form-field > label {
    font-size: 2rem;
  }
}
form .hs-form-field > label:not(:has(.hs-form-required)) span:last-child::after {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  margin-left: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  content: "任意";
  background-color: #efefef;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  form .hs-form-field > label:not(:has(.hs-form-required)) span:last-child::after {
    font-size: 1.4rem;
  }
}
form .hs-form-field .input {
  margin-right: 0 !important;
}
form .form-columns-0 .hs-richtext {
  margin-bottom: 2rem;
}
form .hs-form-required {
  font-size: 0;
}
form .hs-form-required::after {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  margin-left: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #e9413c;
  content: "必須";
  background-color: #efefef;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  form .hs-form-required::after {
    font-size: 1.4rem;
  }
}
form .hs-field-desc {
  margin-bottom: 0.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
}
form .hs-richtext {
  margin-bottom: 0.2rem;
}
form .hs-richtext img {
  max-width: 100% !important;
  height: auto;
}
form .inputs-list {
  padding: 0;
  list-style: none;
}
form .hs-error-msgs {
  margin: 0.8rem 0 0;
  font-weight: 500;
  line-height: 1.25;
  color: #f00;
}
form .hs_error_rollup {
  margin-top: 2rem;
  text-align: center;
}
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;
  padding: 0.5em 1em;
  line-height: 1.25;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 0.4rem;
  outline: none;
}
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::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: calc(50% - 1rem);
  right: 1.6rem;
  z-index: 1;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  pointer-events: none;
  content: "";
  border-top: 2px solid #bbb;
  border-right: 2px solid #bbb;
  transform: rotate(135deg);
}
form .hs-fieldtype-select .input select {
  padding-right: 3.6rem;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: inherit;
}
form .hs-fieldtype-select .input select::-ms-expand {
  display: none;
}
form textarea {
  display: block;
  min-height: 5em;
  resize: vertical;
}
form input[type=file] {
  padding: initial;
  cursor: pointer;
  background-color: transparent;
  border: initial;
}
form input[type=checkbox] {
  display: none;
}
form input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
  line-height: 1.4;
  cursor: pointer;
}
form input[type=checkbox] + span::before, form input[type=checkbox] + span::after {
  position: absolute;
  top: calc(0.7em - 0.9rem);
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  content: "";
}
@media screen and (max-width: 768px) {
  form input[type=checkbox] + span::before, form input[type=checkbox] + span::after {
    top: calc(0.7em - 1.2rem);
  }
}
form input[type=checkbox] + span::before {
  border: 2px solid #bbb;
  border-radius: 0.4rem;
}
form input[type=checkbox] + span::after {
  background: no-repeat center center;
  background-size: contain;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24" style="fill: %23bbb;"><path d="M10.5,16.3l-4.2-4.2c-.4-.4-.4-1,0-1.4s1-.4,1.4,0l2.8,2.8,5.7-5.7c.4-.4,1-.4,1.4,0s.4,1,0,1.4l-7.1,7.1Z"/></svg>');
}
form input[type=checkbox]:checked + span::before {
  background-color: #049a6e;
  border-color: #049a6e;
}
form input[type=checkbox]:checked + span::after {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24" style="fill: %23fff;"><path d="M10.5,16.3l-4.2-4.2c-.4-.4-.4-1,0-1.4s1-.4,1.4,0l2.8,2.8,5.7-5.7c.4-.4,1-.4,1.4,0s.4,1,0,1.4l-7.1,7.1Z"/></svg>');
}
form input[type=radio] {
  display: none;
}
form input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
  line-height: 1.4;
  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: calc(0.7em - 1.2rem);
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid #bbb;
}
form input[type=radio] + span::after {
  top: calc(0.7em - 0.6rem);
  left: 0.6rem;
  width: 1.2rem;
  height: 1.2rem;
  background: #049a6e;
  opacity: 0;
}
form input[type=radio]:checked + span::before {
  border-color: #049a6e;
}
form input[type=radio]:checked + span::after {
  opacity: 1;
}
form .legal-consent-container > *:not(:last-child) {
  margin-bottom: 0.6rem;
}
form .legal-consent-container .hs-richtext {
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
}
@media screen and (max-width: 768px) {
  form .legal-consent-container .hs-richtext {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
form .legal-consent-container .hs-form-booleancheckbox-display {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  form .legal-consent-container .hs-form-booleancheckbox-display {
    font-size: 1.8rem;
  }
}
form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0 !important;
}
form .legal-consent-container .hs-form-booleancheckbox-display a {
  color: inherit;
}
form .grecaptcha-badge {
  margin: 3rem auto;
}
form .hs-submit {
  margin-top: 5.6rem;
}
form input[type=submit] {
  display: block;
  width: 100%;
  max-width: 60rem;
  padding: 2.2rem 4rem;
  margin: 0 auto;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.539;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 4.4rem;
  box-shadow: 0 5px 0 #cb6019;
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  background-color: #f88038;
}
@media screen and (max-width: 768px) {
  form input[type=submit] {
    padding: 2rem;
    font-size: 2.4rem;
  }
}
form input[type=submit]:hover {
  box-shadow: 0 2px 0 #cb6019;
  transform: translateY(3px);
}

.submitted-message {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}@charset "UTF-8";
/* ======================================================================
 * Header
====================================================================== */
/* ------------------------------------------------------------
 * 管理画面用 css
------------------------------------------------------------ */
.is-in-editor .c-header {
  position: absolute;
}

/* ------------------------------------------------------------
 * header
------------------------------------------------------------ */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 0 4rem;
  background-color: #fff;
  transition: background 0.3s ease-out;
}
@media screen and (max-width: 1270px) {
  .c-header {
    padding: 0 min(2vw, 4rem);
  }
}
@media screen and (max-width: 768px) {
  .c-header {
    position: absolute;
    padding: 0 2rem;
  }
}
.c-header.-js-fixed {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-header.-js-fixed {
    background-color: none;
  }
  .c-header.-js-fixed .header-contact {
    transform: translateY(0);
  }
}
.c-header .header-logo {
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 1270px) {
  .c-header .header-logo {
    font-size: 1.2rem;
  }
}
.c-header .header-logo img {
  max-width: 30vw;
}
@media screen and (max-width: 768px) {
  .c-header .header-logo img {
    max-width: 22rem;
  }
}
.c-header .header-contact {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-header .header-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    justify-content: center;
    width: 100%;
    height: 8rem;
    padding: 0 1.6rem;
    background: #fff;
    transition: transform 0.3s ease-out;
    transform: translateY(100%);
  }
}
.c-header .info {
  display: flex;
}
@media screen and (min-width: 769px) {
  .c-header .info {
    gap: 0.4rem;
    align-items: center;
    padding: 1rem 2.4rem;
    background-color: #fff;
    border-radius: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-header .info {
    flex-wrap: wrap;
    column-gap: 1rem;
  }
}
@media screen and (max-width: 560px) {
  .c-header .info {
    display: block;
  }
}
.c-header .info .tel {
  flex: 0 0 auto;
  margin: 0;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  color: #049a6e;
}
@media screen and (max-width: 1270px) {
  .c-header .info .tel {
    font-size: 2.8rem;
  }
}
.c-header .info .tel span {
  font-size: 2rem;
}
@media screen and (max-width: 1270px) {
  .c-header .info .tel span {
    display: none;
  }
}
.c-header .info .tel a {
  color: inherit;
  text-decoration: none;
}
.c-header .info .note {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 1270px) {
  .c-header .info .note {
    font-size: 1rem;
    line-height: 1.3;
  }
}
.c-header .info .note strong {
  font-size: 1.6rem;
}
@media screen and (max-width: 1270px) {
  .c-header .info .note strong {
    font-size: 1.3rem;
  }
}
.c-header .info .note small {
  font-size: 1.2rem;
}
@media screen and (max-width: 1270px) {
  .c-header .info .note small {
    font-size: 1em;
  }
}
.c-header .cmn01_button .c-button {
  gap: 1.2rem;
  min-height: 5.6rem;
  font-size: 2rem;
  border-radius: 2.8rem;
}
@media screen and (max-width: 1270px) {
  .c-header .cmn01_button .c-button {
    min-height: 4.8rem;
    font-size: 1.6rem;
    border-radius: 2.4rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .c-header .cmn01_button .c-button {
    padding-right: min(1.8vw, 3.6rem);
    padding-left: min(1.8vw, 3.6rem);
  }
}
@media screen and (max-width: 1270px) {
  .c-header .cmn01_button .c-button .icon {
    display: none;
  }
}
.c-header .cmn01_button .c-button svg {
  width: 1.6rem;
  height: auto;
}@charset "UTF-8";
/* ======================================================================
 * footer
====================================================================== */
.c-footer {
  background: #333333;
  padding: 4.4rem 20px 4rem;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-footer {
    padding: 68px 20px 100px;
    text-align: center;
  }
}
.c-footer a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .c-footer .row-group {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
  }
}
.c-footer .row-group:not(:last-child) {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-footer .row-group:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer .row-group > *:not(:last-child) {
    margin-bottom: 1.6rem;
  }
}
.c-footer .fotter-menu ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-footer .fotter-menu ul {
    justify-content: center;
  }
}
.c-footer .fotter-menu ul li:not(:last-child)::after {
  display: inline-block;
  margin: 0 0.5rem;
  content: "｜";
}
.c-footer .footer-info {
  font-size: 1.4rem;
}
.c-footer .copyright {
  font-size: 1.4rem;
}@charset "UTF-8";
/* ======================================================================
 * セクション
====================================================================== */
/* ------------------------------------------------------------
 * メール送信完了
------------------------------------------------------------ */
.c-body .c-thanks-section {
  background-repeat: repeat !important;
}

.c-thanks-section {
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #5fc673;
}
@media screen and (max-width: 768px) {
  .c-thanks-section {
    font-size: 1.6rem;
  }
}
.c-thanks-section > .row-fluid > .dnd-column {
  padding: 4.8rem;
  background-color: #fff;
  border-radius: 4rem;
}
@media screen and (max-width: 768px) {
  .c-thanks-section > .row-fluid > .dnd-column {
    padding: 4.2rem 2rem;
    border-radius: 2rem;
  }
}
.c-thanks-section > .row-fluid > .dnd-column > .dnd-row {
  max-width: 81rem;
  margin: 0 auto;
}
.c-thanks-section h1 {
  margin-bottom: 3.2rem;
  font-size: 4rem;
  line-height: 1.43;
}
@media screen and (max-width: 768px) {
  .c-thanks-section h1 {
    margin-bottom: 2.8rem;
    font-size: 2.8rem;
  }
}
.c-thanks-section p {
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-thanks-section p {
    margin-bottom: 2.8rem;
  }
}
.c-thanks-section p:last-child {
  margin-bottom: 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: 48px;
}
.u-mt-default {
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  .u-mt-default {
    margin-top: 56px;
  }
}
.u-mt-large {
  margin-top: 120px;
}

.u-mb-none {
  margin-bottom: 0;
}
.u-mb-small {
  margin-bottom: 48px;
}
.u-mb-default {
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .u-mb-default {
    margin-bottom: 56px;
  }
}
.u-mb-large {
  margin-bottom: 120px;
}

/* ------------------------------------------------------------
 * 画像
------------------------------------------------------------ */
.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;
}