/*! 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;
}@charset "UTF-8";
/* ======================================================================
 * setting
====================================================================== */.ff-en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}/* ------------------------------------------------------------
 * tag setting
------------------------------------------------------------ */
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;
}

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

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

html {
  font-size: 10px;
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  html {
    font-size: min(1vw, 10px);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: 2.65vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2C2A2A;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #19A3A3;
}
@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: 60px 20px;
}
.dnd-section > .row-fluid {
  max-width: 1000px;
  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: 96%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .adjust-width {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.adjust-width.-large {
  max-width: 1200px;
}
.adjust-width.-small {
  max-width: 800px;
}@charset "UTF-8";
/* ======================================================================
 * ボタンスタイル
====================================================================== */
/* ------------------------------------------------------------
 * c-button
------------------------------------------------------------ */
.c-button {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: space-between;
  min-height: 8rem;
  padding: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: inherit;
  text-decoration: none;
  background-color: #fff;
  border-radius: 6px;
}
.c-button .icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-right: 0.5rem;
}
.c-button .icon.-arrow {
  background-color: #19A3A3;
  color: #fff;
  border-radius: 0.6rem;
}
.c-button .icon svg {
  display: block;
  height: auto;
  fill: currentcolor;
}
.c-button.-icon-left {
  flex-direction: row-reverse;
}
.c-button.-orange-grade {
  color: #fff;
  background: linear-gradient(to right, #ff692d 0%, #ffb63e 100%);
}
.c-button.-orange-grade .icon.-arrow {
  color: #ff692d;
  background-color: #fff;
}

/* ------------------------------------------------------------
 * WSV用のボタン
------------------------------------------------------------ */
.c-button-wsv {
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  min-height: 5rem;
  padding: 1.02rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.57;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(to right, #008282 0%, #19a3a3 100%);
  border-radius: 0.6rem;
}
.c-button-wsv .icon {
  flex: 0 0 auto;
}
.c-button-wsv .icon.-select {
  width: 1.1em;
}
.c-button-wsv svg {
  display: block;
  height: auto;
  fill: currentcolor;
}/* ======================================================================
 * hs form
====================================================================== */
form {
  line-height: 1.5;
}
form fieldset {
  max-width: 100% !important;
  padding: 0;
}
form .form-columns-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.6rem;
}
form .form-columns-2 .hs-richtext {
  width: 100%;
  margin-bottom: 1.6rem;
}
form .form-columns-2 .hs-form-field {
  flex: 1 1 auto;
  width: calc(50% - 0.8rem) !important;
}
@media screen and (max-width: 768px) {
  form .form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}
form .form-columns-2 .hs-form-field:last-child {
  margin-left: 0;
}
form .form-columns-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.6rem;
}
form .form-columns-3 .hs-richtext {
  width: 100%;
  margin-bottom: 1.6rem;
}
form .form-columns-3 .hs-form-field {
  flex: 1 1 auto;
  width: calc(33.3333333333% - 1.1rem) !important;
}
@media screen and (max-width: 768px) {
  form .form-columns-3 .hs-form-field {
    width: 100% !important;
  }
}
form .form-columns-3 .hs-form-field:last-child {
  margin-left: 0;
}
form .hs-form-field {
  margin-bottom: 3rem;
}
form .hs-form-field > label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
form .hs-form-field .input {
  margin-right: 0 !important;
}
form .form-columns-0 .hs-richtext {
  margin-bottom: 3rem;
}
form .hs-richtext {
  margin-bottom: 1.5rem;
}
form .hs-richtext img {
  max-width: 100% !important;
  height: auto;
}
form .inputs-list {
  padding: 0;
  list-style: none;
}
form .inputs-list li {
  display: block;
}
form .inputs-list li a {
  color: #2871cf;
}
form .inputs-list li a:focus {
  outline: 1px solid #19a3a3;
}
form .multi-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
}
form .hs-form-required {
  color: #f00;
}
form .hs-error-msg,
form .hs-error-msgs {
  font-size: 1.2rem;
  color: #f00;
  letter-spacing: 0.01em;
}
form .hs-error-msgs {
  margin-top: 0.6rem;
}
form .hs-input.error {
  border-color: #f00;
}
form .hs_error_rollup {
  text-align: center;
}
form .hs-field-desc {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: #666;
}
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=search], form input[type=date] {
  width: 100% !important;
  padding: 1.2rem 1.6rem;
  line-height: 1.43;
  background-color: #ffffff;
  border: 1px solid #e5e2e2;
  border-radius: 0.6rem;
  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=search]::placeholder, form input[type=date]::placeholder {
  color: #a8a8a8;
}
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=search]:focus::placeholder, form input[type=date]:focus::placeholder {
  color: transparent;
}
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=search]:focus, form input[type=date]:focus {
  outline: 1px solid #19a3a3;
}
form input[type=file] {
  padding: initial;
  padding-left: 2px;
  cursor: pointer;
  background-color: transparent;
  border: initial;
}
form textarea {
  display: block;
  height: 9.6rem;
  resize: vertical;
}
form .hs-fieldtype-select .input {
  position: relative;
}
form .hs-fieldtype-select .input::after {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  z-index: 1;
  display: block;
  width: 1rem;
  height: 1rem;
  margin-top: -0.7rem;
  pointer-events: none;
  content: "";
  border-top: 2px solid #19a3a3;
  border-right: 2px solid #19a3a3;
  transform: rotate(135deg);
}
form .hs-fieldtype-select .input select {
  padding-right: 3.6rem;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
}
form .hs-fieldtype-select .input select::-ms-expand {
  display: none;
}
form .fn-date-picker .pika-button {
  font-size: 14px;
  line-height: 24px;
  color: #555555;
  text-align: center;
  background-color: #f4f4f4;
}
form .fn-date-picker .pika-button:hover, form .fn-date-picker .pika-button:focus {
  color: #fff;
  background: #19a3a3 !important;
  border-radius: 0 !important;
}
form .fn-date-picker .is-today .pika-button {
  color: #19a3a3;
}
form .fn-date-picker .is-selected .pika-button {
  background: #000;
  border-radius: 0 !important;
  box-shadow: none;
}
form .hs-form-booleancheckbox-display,
form .hs-form-checkbox-display,
form .hs-form-radio-display {
  display: inline-block;
  line-height: 1.5;
  cursor: pointer;
}
form input[type=checkbox] {
  display: none;
}
form input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 3.6rem;
  color: #555;
}
form input[type=checkbox] + span::before, form input[type=checkbox] + span::after {
  position: absolute;
  top: -0.1rem;
  left: 0;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  content: "";
}
form input[type=checkbox] + span::before {
  background-color: #fff;
  border: 1px solid #e5e2e2;
  border-radius: 0.4rem;
}
form input[type=checkbox] + span::after {
  background: no-repeat 0 0/contain;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26 26"><path style="fill: #19a3a3;" d="M11.8,18.4c-.3,0-.5,0-.7-.3l-4.8-4.6c-.4-.4-.4-1,0-1.4.4-.4,1-.4,1.4,0l4,3.8,6.6-8.1c.3-.4,1-.5,1.4-.2.4.3.5,1,.2,1.4l-7.2,9c-.2.2-.4.4-.7.4,0,0,0,0,0,0Z"/></svg>');
  opacity: 0;
}
form input[type=checkbox]:checked + span::after {
  opacity: 1;
}
form input[type=checkbox]:focus + span::before {
  border-color: #19a3a3;
}
form input[type=radio] {
  display: none;
}
form input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 4rem;
  color: #555;
}
form input[type=radio] + span::before, form input[type=radio] + span::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
}
form input[type=radio] + span::before {
  top: -0.1rem;
  left: 0;
  width: 2.6rem;
  height: 2.6rem;
  background-color: #fff;
  border: 1px solid #e5e2e2;
}
form input[type=radio] + span::after {
  top: 0.6rem;
  left: 0.7rem;
  width: 1.2rem;
  height: 1.2rem;
  background: #19a3a3;
  opacity: 0;
}
form input[type=radio]:checked + span::after {
  opacity: 1;
}
form input[type=radio]:focus + span::before {
  border-color: #19a3a3;
}
form input[type=date] {
  height: 4.8rem;
  padding: 1.2rem 1.6rem;
  font-family: inherit;
  color: inherit;
  text-align-last: left;
  -webkit-appearance: none;
  appearance: none;
}
form input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
}
form .legal-consent-container {
  margin-bottom: 2.4rem;
}
form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0 !important;
  color: #333;
  letter-spacing: 0.04em;
}
form .legal-consent-container .hs-form-field {
  margin-bottom: 6px !important;
}
form .legal-consent-container .hs-richtext:not(:last-child) {
  margin-bottom: 0.6rem;
}
form .hs-recaptcha {
  margin: 1.8rem auto 2.4rem;
}
form .grecaptcha-badge {
  margin: 0 auto;
}
form .hs-submit {
  width: 90%;
  max-width: 36rem;
  margin: 2.4rem auto 0;
}
form .hs-submit .actions {
  position: relative;
}
form .hs-submit .actions::after {
  position: absolute;
  top: 0;
  right: 2.5rem;
  bottom: 0;
  display: block;
  width: 3.2rem;
  height: 3rem;
  margin: auto 0;
  content: "";
  background: #fff center center/14px auto no-repeat;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.2 12.8" width="14" style="fill: #FF692D;"><path d="M13.6,5.8c.2.1.2.3.2.6s0,.4-.2.6l-5.6,5c-.1.1-.3.2-.5.2s-.4,0-.6-.2c-.3-.3-.3-.8,0-1.1l4.1-3.7H1.1c-.4,0-.8-.3-.8-.8s.3-.8.8-.8h10L7,1.9c-.3-.3-.3-.8,0-1.1.3-.3.8-.3,1.1,0l5.6,5Z"/></svg>');
  border-radius: 0.6rem;
}
@media screen and (min-width: 769px) {
  form .hs-submit .actions {
    transition: opacity 0.3s;
  }
  form .hs-submit .actions:hover {
    opacity: 0.7;
  }
}
form input[type=submit] {
  display: block;
  width: 100%;
  padding: 2.8rem 6.5rem 2.8rem 2rem;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: linear-gradient(to right, #ff692d 0%, #ffb63e 100%);
  border: none;
  border-radius: 0.6rem;
  outline: none;
}@charset "UTF-8";
/* ======================================================================
 * Header
====================================================================== */
.c-container {
  overflow: hidden;
}
/* ------------------------------------------------------------
 * 管理画面用 css
------------------------------------------------------------ */
.-is-in-editor .c-header {
  position: absolute;
}
.-is-in-editor .c-header.-simple {
  position: static;
}

/* ------------------------------------------------------------
 * header
------------------------------------------------------------ */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 110px;
  padding: 0 clamp(2rem, 2vw, 4rem);
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 1300px) {
  .c-header {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media screen and (max-width: 1000px) {
  .c-header {
    height: 68px;
    padding: 0 1rem 0 2rem;
  }
}
.c-header.-simple {
  position: static;
}
@media screen and (min-width: 1001px) {
  .c-header.-simple .header-sub-logo {
    margin: 0 0 0 4.8%;
  }
}
.c-header .header-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  height: 100%;
}
.c-header .header-logo {
  flex: 0 1 auto;
  max-width: 12vw;
}
@media screen and (max-width: 1000px) {
  .c-header .header-logo {
    max-width: 12.5rem;
  }
}
.c-header .header-sub-logo {
  flex: 0 1 auto;
  max-width: 6vw;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .c-header .header-sub-logo {
    max-width: 7.4rem;
    margin: 0;
  }
}
.c-header .header-toggle {
  position: relative;
  z-index: 20;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0 0 0 auto;
  border-radius: 6px;
  transition: border 0.3s;
  background-color: #19A3A3;
  border: 1px solid #19A3A3;
}
@media screen and (min-width: 1001px) {
  .c-header .header-toggle {
    display: none;
  }
}
.c-header .header-toggle i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.8rem;
  height: 0.2rem;
  margin-left: -0.9rem;
  background-color: #fff;
  border-radius: 0.2rem;
  transition: transform 0.3s, margin 0.3s;
}
.c-header .header-toggle i:nth-child(1) {
  margin-top: -0.7rem;
}
.c-header .header-toggle i:nth-child(2) {
  width: 1rem;
  margin-top: -0.1rem;
}
.c-header .header-toggle i:nth-child(3) {
  margin-top: 0.5rem;
}
.c-header .header-toggle.-js-opened {
  border-color: #fff;
}
.c-header .header-toggle.-js-opened i:nth-child(1) {
  margin-top: -0.1rem;
  transform: rotate(45deg);
}
.c-header .header-toggle.-js-opened i:nth-child(2) {
  transform: scale(0);
}
.c-header .header-toggle.-js-opened i:nth-child(3) {
  margin-top: -0.1rem;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1001px) {
  .c-header .gnav {
    display: flex;
    flex-direction: row-reverse;
    column-gap: min(1vw, 3.6rem);
    align-items: center;
    margin-left: auto;
  }
}
@media screen and (min-width: 1300px) {
  .c-header .gnav {
    column-gap: 3.6rem;
  }
}
@media screen and (max-width: 1000px) {
  .c-header .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 8.8rem 4rem 4rem;
    overflow: auto;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: left 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
    background-color: #19A3A3;
  }
  .c-header .gnav.-js-opened {
    left: 0;
    visibility: visible;
    opacity: 1;
  }
}
.c-header .group-site {
  font-size: clamp(1rem, 1vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .c-header .group-site {
    margin-bottom: 4rem;
    font-size: 1.4rem;
  }
}
.c-header .group-site > *:not(:last-child) {
  margin-bottom: 1rem;
}
.c-header .group-site .hs-button {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.7rem 0.6rem 2rem;
  color: #fff;
  text-decoration: none;
  border-radius: 1.5rem;
  background-color: #2C2A2A
}
@media screen and (max-width: 1000px) {
  .c-header .group-site .hs-button {
    padding: 2rem 1.5rem;
    font-size: 1.5rem;
    background-color: #fff;
    border-radius: 6px;
    color: #2C2A2A
  }
}
.c-header .group-site .hs-button::after {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  content: "";
  background: no-repeat center center;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path style="fill: #fff;" d="M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8,8-3.6,8-8S12.4,0,8,0ZM10,8.5l-2.5,2.5c-.1.1-.3.2-.5.2s-.4,0-.5-.2c-.3-.3-.3-.8,0-1.1l2-2-2-2c-.3-.3-.3-.8,0-1.1s.8-.3,1.1,0l2.5,2.5c.3.3.3.8,0,1.1Z"/></svg>');
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  .c-header .group-site .hs-button::after {
    width: 1rem;
    height: 1rem;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.5 10.1"><path style="fill: #19A3A3;" d="M9.3,4.5L5.3.5c-.3-.3-.8-.3-1.1,0s-.3.8,0,1.1l2.7,2.7H.8c-.4,0-.8.3-.8.8s.3.8.8.8h6.2l-2.7,2.7c-.3.3-.3.8,0,1.1s.3.2.5.2.4,0,.5-.2l4-4c.3-.3.3-.8,0-1.1Z"/></svg>');
  }
}/* ======================================================================
 * footer
====================================================================== */
.c-footer {
  padding: 70px 0;
  margin-top: 150px;
  background: #f4f4f4;
  border-radius: 6rem 6rem 0 0;
}
@media screen and (max-width: 768px) {
  .c-footer {
    padding-bottom: 4rem;
    margin-top: 20px;
    border-radius: 4rem 4rem 0 0;
  }
}
.c-footer .pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: linear-gradient(to right, #ff692d 0%, #ffb63e 100%);
  border: none;
  border-radius: 50%;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-footer .pagetop {
    right: 1rem;
    bottom: 1rem;
    gap: 0.2rem;
    width: 4.6rem;
    height: 4.6rem;
    font-size: 0.9rem;
  }
}
.c-footer .pagetop svg {
  display: block;
  margin: 0 auto;
  fill: currentcolor;
}
.c-footer .pagetop:hover {
  opacity: 0.7;
}
.c-footer .footer-inner {
  display: flex;
  gap: 5rem 2rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-footer .footer-inner {
    flex-direction: column;
  }
}
.c-footer .footer-inner .footer-left {
  flex: 0 1 auto;
}
.c-footer .footer-inner .footer-right {
  flex: 0 1 auto;
}
.c-footer .footer-logo {
  margin-bottom: 2rem;
}
.c-footer .footer-info {
  margin-bottom: 4rem;
  font-size: 1.4rem;
  line-height: 1.7;
}
.c-footer .footer-info h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.c-footer .footer-info h3 + * {
  margin-top: 0;
}
.c-footer .footer-tel .tel {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
}
.c-footer .footer-tel .tel:not(:last-child) {
  margin-bottom: 1.6rem;
}
.c-footer .footer-tel .tel a {
  color: #2c2a2a;
  text-decoration: none;
}
.c-footer .footer-tel .tel .label {
  flex: 0 0 auto;
  padding: 0.6rem 1.2rem;
  color: #fff;
  border-radius: 1.2rem;
  background-color: #19A3A3;
}
.c-footer .footer-tel .tel .num {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .c-footer .footer-tel .tel .num {
    font-size: 2.6rem;
  }
}
.c-footer .footer-tel .tel .note {
  margin-left: 0.2rem;
}
.c-footer .footer-image {
  margin-top: -10rem;
}
@media screen and (max-width: 768px) {
  .c-footer .footer-image {
    margin-top: 0;
    text-align: center;
  }
}
.c-footer .footer-nav {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c-footer .footer-nav {
    margin-top: 2rem;
  }
}
.c-footer .footer-nav ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .c-footer .footer-nav ul {
    column-gap: 4rem;
    justify-content: flex-end;
  }
}
.c-footer .footer-nav a {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.c-footer .footer-nav a::after {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  content: "";
  background: no-repeat center center;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><circle style="fill: #fff;" cx="8" cy="8" r="8"/><path style="fill: #19a3a3;" d="M7,11.2c-.2,0-.4,0-.5-.2-.3-.3-.3-.8,0-1.1l2-2-2-2c-.3-.3-.3-.8,0-1.1s.8-.3,1.1,0l2.5,2.5c.3.3.3.8,0,1.1l-2.5,2.5c-.1.1-.3.2-.5.2Z"/></svg>');
  background-size: contain;
}
.c-footer .copyright {
  margin-top: 3.5rem;
  font-size: 1.2rem;
  text-align: right;
  color: #19A3A3;
}
@media screen and (max-width: 768px) {
  .c-footer .copyright {
    margin-top: 4rem;
    text-align: left;
  }
}@charset "UTF-8";
/* ======================================================================
 * カスタムセクション
====================================================================== */
.c-section-page-title {
  position: relative;
  z-index: 1;
  background: no-repeat right top #f4f4f4;
  background-image: url(https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/raw_assets/public/sunvalley/sunvalley2025/assets/images/common/page-title-shape.png);
}
@media screen and (max-width: 768px) {
  .c-section-page-title {
    background-position: center top;
    background-size: auto 156%;
  }
}
@media screen and (min-width: 769px) {
  .c-section-page-title::before, .c-section-page-title::after {
    position: absolute;
    top: 100%;
    z-index: -1;
    display: block;
    width: 60px;
    height: 60px;
    content: "";
    background: no-repeat center center;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg style="fill: #f4f4f4;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path d="M60,.3v-.3H0v60h.3C2.9,28.2,28.2,2.9,60,.3Z"/></svg>');
    background-size: contain;
  }
}
.c-section-page-title::before {
  left: 0;
}
.c-section-page-title::after {
  right: 0;
  transform: rotateY(180deg);
}
.c-section-page-title .cmn01_headline {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .c-section-page-title .cmn01_headline {
    padding-top: 0;
  }
}
.c-section-page-title .cmn01_headline .main-image {
  top: 0;
}
@media screen and (max-width: 1000px) {
  .c-section-page-title .cmn01_headline .main-image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-section-page-title .cmn01_headline .main {
    font-size: min(11vw, 4rem);
  }
}
@media screen and (max-width: 768px) {
  .c-section-page-title .cmn01_headline .sub {
    margin-top: 0.4rem;
  }
}

/* ------------------------------------------------------------
 * 採用の緑セクション
------------------------------------------------------------ */
.c-section-recruit {
  position: relative;
  z-index: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  background-color: #93d2d3;
  border-radius: 6rem;
}
@media screen and (max-width: 768px) {
  .c-section-recruit {
    border-radius: 4rem;
  }
}
.c-section-recruit::before, .c-section-recruit::after {
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 860px;
  content: "";
  background-repeat: no-repeat;
}
@media screen and (max-width: 540px) {
  .c-section-recruit::before, .c-section-recruit::after {
    background-size: 200% auto;
  }
}
.c-section-recruit::before {
  top: -54%;
  left: calc(50% - 80px);
  background-position: 0 0;
  background-image: url(https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/raw_assets/public/sunvalley/sunvalley2025/assets/images/common/recruit-bg1.png);
}
@media screen and (max-width: 768px) {
  .c-section-recruit::before {
    top: -130px;
    left: 52%;
  }
}
.c-section-recruit::after {
  right: calc(50% + 190px);
  bottom: -63%;
  background-position: 100% 0;
  background-image: url(https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/raw_assets/public/sunvalley/sunvalley2025/assets/images/common/recruit-bg2.png);
}
@media screen and (max-width: 768px) {
  .c-section-recruit::after {
    right: 10%;
    bottom: -35%;
  }
}
.c-section-recruit .row-fluid .span6:first-child {
  max-width: 48rem;
}
.c-section-recruit .row-fluid .span6:last-child {
  max-width: 57rem;
}

/* ------------------------------------------------------------
 * 採用の緑セクション
------------------------------------------------------------ */
@media screen and (min-width: 769px) {
  .shuttles-button-section .row-fluid .span8 {
    width: calc(69.092% - 15px);
  }
}
@media screen and (min-width: 769px) {
  .shuttles-button-section .row-fluid .span4 {
    width: calc(30.91% - 15px);
  }
}@charset "UTF-8";
/* ======================================================================
 * ブログ一覧レイアウト
====================================================================== */@charset "UTF-8";
/* ======================================================================
 * ブログ記事レイアウト
====================================================================== */@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-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;
  }
}