/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! 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;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * 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 */
  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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 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 {
  border-style: none;
  padding: 0;
}

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

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * 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 {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

@charset "UTF-8";

/*==================================================
    common
==================================================*/
:root {
    --colorYellow: #FFCE00;
    --colorBlack: #2C2C2C;
    --colorGray: #C3C3C8;
    --colorRed: #EB0000;

    --NotoSansJP: 'Noto Sans JP', sans-serif;
    --ZenMaruGothic: 'Zen Maru Gothic', sans-serif;
    --Quicksand: 'Quicksand', sans-serif;
    --SquarePeg: 'Square Peg', cursive;
}

html {
    font-size: 16px;
}

html * {
    box-sizing: border-box;
}

.body {
    font-family: var(--NotoSansJP);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--colorBlack);
    background-color: #ffffff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.container.width-730 {
    max-width: 730px;
}

.container.width-1040 {
    max-width: 1040px;
}

.container.width-1162 {
    max-width: 1162px;
}

.container.width-1282 {
    max-width: 1282px;
}

.container.width-1160 {
    max-width: 1160px;
}

.container.width-1280 {
    max-width: 1280px;
}

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

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
    font-weight: normal;
    margin: 0;
}

a {
    color: var(--colorBlack);
    text-decoration: none;
    transition: .3s;
    display: inline-block;
}

a:hover {
    opacity: 0.6;
}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

.is-tb-hide {
    display: none;
}

.is-sp {
    display: none;
}

.bg-gray {
    background: #F8F8F8;
}

.bg-yellow {
    background: #FFCE00;
}

.is-underline {
    text-decoration: underline;
}

.is-alphabet,
.is-illust {
    position: absolute;
}

.is-right {
    text-align: right;
}

@media (max-width: 1260px) {
    .container.width-1040 {
        max-width: 100%;
        padding: 0 4.687vw;
    }
}

@media (max-width: 1182px) {
    .container.width-1162 {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 743px) {
    .body {
        margin-top: 53px;
    }

    .is-tb-hide {
        display: block;
    }

    .is-tb-show {
        display: none;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .container.width-1040 {
        padding: 0 20px;
    }

    .is-pc {
        display: none;
    }

    .is-sp {
        display: block;
    }
}

.page__bg-yellow {
    background: var(--colorYellow);
    padding: 56px 60px 60px;
}

.btn__primary a {
    display: inline-block;
    font-family: 'Quicksand', 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: #fff;
    border: 1px solid var(--colorBlack);
    padding: 15px 0;
    width: 100%;
    max-width: 240px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn__primary a::before {
    content: "";
    width: 240px;
    height: 56px;
    border: 1px solid var(--colorBlack);
    background: var(--colorBlack);
    display: block;
    z-index: -1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-250px);
    -ms-transform: translateX(-250px);
    transform: translateX(-250px);
}

.btn__primary a::after {
    width: 10px;
    height: 10px;
    content: "";
    display: inline-block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 2px solid var(--colorBlack);
    border-left: none;
    border-bottom: none;
    margin-left: 15px;
    letter-spacing: 0;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    top: -2px;
}

.btn__primary a:hover {
    opacity: 1;
    color: #fff;
}

.btn__primary a:hover::before {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.btn__primary a:hover::after {
    -webkit-transform: translateX(0px) rotate(45deg);
    -ms-transform: translateX(0px) rotate(45deg);
    transform: translateX(0px) rotate(45deg);
    border-color: #fff;
}

.btn__primary a img {
    width: 10px;
    height: 16px;
    margin-left: 20px;
    position: relative;
    top: 2px;
}

.btn__primary.is-gray a {
    background: #595959;
    color: #fff;
}

.btn__primary.is-gray a::before {
    content: none;
}

.btn__primary.is-gray a::after {
    border-color: #fff;
}

.btn__primary.is-gray a:hover {
    background: #808080;
}

.btn__primary.is-back a {
    padding-left: 36px;
}

.btn__primary.is-back a::after {
    border: 2px solid var(--colorBlack);
    border-top: none;
    border-right: none;
    left: 66px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.btn__primary.is-back a:hover::after {
    transform: translateX(0px) translateY(-50%) rotate(45deg);
    border-color: #fff;
}

.btn__requirement a {
    display: flex;
    align-items: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    background: #fff;
    border: 1px solid var(--colorBlack);
    padding-left: 88px;
    width: 100%;
    height: 55px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn__requirement a::before {
    content: "";
    width: 100%;
    height: 56px;
    border: 1px solid var(--colorBlack);
    background: var(--colorBlack);
    display: block;
    z-index: -1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn__requirement a::after {
    width: 10px;
    height: 10px;
    content: "";
    display: inline-block;
    -webkit-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    border: 2px solid var(--colorBlack);
    border-left: none;
    border-bottom: none;
    letter-spacing: 0;
    vertical-align: middle;
    position: absolute;
    z-index: 2;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    top: 50%;
    right: 40px;
    margin-top: -2px;
}

.btn__requirement .btn__requirement--text {
    position: relative;
}

.btn__requirement .btn__requirement--text::before {
    position: absolute;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
}

.btn__requirement.is-career .btn__requirement--text::before {
    width: 46px;
    height: 24px;
    background-image: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/jobs/top/icon_career_black.svg);
    left: -69px;
}

.btn__requirement.is-newgrad .btn__requirement--text::before {
    width: 25px;
    height: 32px;
    background-image: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/jobs/top/icon_newgrad_black.svg);
    left: -59px;
}

.btn__requirement a:hover {
    opacity: 1;
    color: #fff;
}

.btn__requirement a:hover::before {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.btn__requirement a:hover::after {
    border-color: #fff;
}

.btn__requirement.is-career a:hover .btn__requirement--text::before {
    background-image: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/jobs/top/icon_career_white.svg);
}

.btn__requirement.is-newgrad a:hover .btn__requirement--text::before {
    background-image: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/jobs/top/icon_newgrad_white.svg);
}

@media (max-width: 600px) {
    .page__bg-yellow {
        padding: 25px 21px;
    }
}

/*==================================================
    entryContent
==================================================*/
.entryContent {
    background: #2C2C2C;
    padding: 60px 0 64px;
    position: relative;
    z-index: 10;
}

.entryContent .entryContent--title {
    text-align: center;
}

.entryContent .entryContent--title span {
    font-family: var(--Quicksand);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    position: relative;
    margin-left: 6px;
}

.entryContent .entryContent--title span .is-illust {
    min-width: 163px;
    max-width: 163px;
    top: -9px;
    left: -190px;
}

.entryContent .entryContent__btnArea {
    margin-top: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.entryContent .entryContent__btnArea .btn__primary a {
    width: 240px;
    height: 55px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 0 0;
    letter-spacing: 0.05em;
}

.entryContent .entryContent__btnArea .btn__primary a::after {
    margin-left: 23px;
}

.entryContent .entryContent--lead {
    margin-top: 40px;
    font-size: 14px;
    color: #FFF;
    text-align: center;
    letter-spacing: 0.1em;
}

@media (max-width: 600px) {
    .entryContent {
        padding: 44px 0 52px;
    }

    .entryContent .entryContent__btnArea {
        flex-direction: column;
        margin-top: 41px;
        gap: 26px;
    }

    .entryContent .entryContent--title span {
        font-size: 28px;
    }

    .entryContent .entryContent--title span .is-illust {
        min-width: 96px;
        max-width: 96px;
        left: -115px;
        top: -20px;
    }

    .entryContent .entryContent--lead {
        margin-top: 14px;
        line-height: 1.71;
        letter-spacing: 0;
    }

    .entryContent .entryContent__btnArea .btn__primary a::after {
        margin-left: 20px;
    }
}

/*==================================================
    top
==================================================*/
main.top .mv {
    margin-top: -4px;
}

main.top .mv__grid {
    display: grid;
    grid-template-columns: 2.58fr 1fr;
    align-items: flex-end;
    gap: 60px;
}

main.top .mv__imgArea {
    line-height: 0;
    position: relative;
    margin-left: -20px;
}

main.top .mv__imgArea img {
    border-radius: 20px;
}

main.top .mv__imgArea .is-alphabet {
    font-family: var(--SquarePeg);
    font-size: 65px;
    color: #FFCE00;
    top: -9px;
    left: 50%;
    transform: translateX(-50%) rotate(-12.616deg);
    margin-left: 16px;
}

main.top .mv__imgArea--text {
    position: absolute;
    top: 37px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ZenMaruGothic);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-left: -70px;
}

main.top .mv__imgArea--text .is-secondLine {
    margin-left: 55px;
}

main.top .mv__textArea {
    position: relative;
    padding-top: 45px;
    padding-right: 60px;
}

main.top .mv__textArea::before {
    position: absolute;
    content: "";
    background: #FFCE00;
    width: 100vw;
    top: 0;
    left: calc((50% - 50vw) - 478px);
    height: 100%;
    z-index: -1;
    border-radius: 0px 40px 0px 0px;
}

main.top .mv__textArea .is-illust {
    max-width: 216px;
    top: -163px;
    left: 20px;
}

main.top .mv .heading--title {
    font-size: 25px;
    font-family: var(--ZenMaruGothic);
    font-weight: 700;
    line-height: 1.72;
    letter-spacing: 0.15em;
}

main.top .mv .heading--lead {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: 0.05em;
    margin-top: 6px;
}

main.top .btn__requirementArea {
    margin-top: 60px;
}

main.top .btn__requirementArea .btn__requirement:nth-child(n+2) {
    margin-top: 30px;
}

main.top .topContent {
    background: #FFCE00;
    padding-top: 90px;
    overflow: hidden;
}

main.top .topContent.about {
    padding-top: 107px;
}

main.top .topContent.workstyle {
    padding-bottom: 100px;
}

main.top .topContent__grid {
    background: #fff;
    border-radius: 40px 0px 0px 40px;
    padding: 96px 0 96px 90px;
    display: grid;
    grid-template-columns: 1fr 1.29fr;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    margin: 0 60px 0 106px;
}

main.top .topContent:nth-child(even) .topContent__grid {
    border-radius: 0px 40px 40px 0px;
    padding: 96px 60px 96px 0;
}

main.top .topContent__grid::before {
    position: absolute;
    content: "";
    width: 50vw;
    height: 100%;
    background: #fff;
    right: calc(50% - 50vw);
}

main.top .topContent:nth-child(even) .topContent__grid::before {
    right: auto;
    left: calc((50% - 50vw) - 30px);
}

main.top .topContent__textArea {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 20;
    margin-left: -2px;
}

main.top .topContent__textArea .heading--subtitle {
    line-height: 1;
}

main.top .topContent__textArea .heading--subtitle span {
    background: #2C2C2C;
    border-radius: 3px;
    padding: 3px 16px;
    font-family: var(--ZenMaruGothic);
    font-size: 10px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.1em;
}

main.top .topContent__textArea .heading--title {
    font-family: var(--ZenMaruGothic);
    font-size: 35px;
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 0.05em;
}

main.top .topContent__textArea .heading--lead {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.85;
    margin-top: 18px;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

main.top .topContent__grid .btn__primary {
    margin-top: auto;
}

main.top .topContent__grid .btn__primary a {
    text-align: center;
    vertical-align: bottom;
}

main.top .topContent__imgArea {
    position: relative;
    z-index: 10;
}

main.top .topContent__imgArea .topContent__img {
    border-radius: 20px;
    vertical-align: bottom;
}

main.top .topContent .is-alphabet {
    font-family: var(--SquarePeg);
    font-size: 80px;
    color: #FFCE00;
    transform: rotate(-12.616deg);
    white-space: nowrap;
}

main.top .topContent.about .is-alphabet {
    top: -68px;
    right: 86px;
}

main.top .topContent.about .is-illust {
    width: 21.48vw;
    max-width: 275px;
    right: -154px;
    bottom: -82px;
}

main.top .topContent.job .is-alphabet {
    bottom: 12px;
    left: -44px;
}

main.top .topContent.job .is-illust {
    width: 17.96vw;
    max-width: 230px;
    left: 67px;
    bottom: -80px;
}

main.top .topContent.workstyle .is-alphabet {
    top: -63px;
    left: 102px;
}

main.top .topContent.workstyle .is-illust {
    width: 14.92vw;
    max-width: 191px;
    right: 19.5px;
    bottom: -77px;
}

@media (max-width: 1280px) {
    main.top .mv__grid {
        gap: 4.68vw;
    }

    main.top .mv__textArea {
        padding-right: 4.68vw;
    }

    main.top .mv__textArea::before {
        left: auto;
        right: 0;
    }

    main.top .topContent__grid {
        margin: 0 4.68vw 0 8.28vw;
    }

    main.top .topContent:nth-child(even) .topContent__grid {
        margin: 0 8.28vw 0 7.1vw;
    }
}

@media (max-width: 1200px) {
    main.top .mv {
        position: relative;
        padding-right: 30px;
    }

    main.top .mv::after {
        position: absolute;
        content: "";
        background: #FFCE00;
        border-radius: 0px 30px 0px 0px;
        width: 100%;
        height: 100%;
        top: 1px;
        left: 0;
        z-index: -1;
    }

    main.top .mv__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    main.top .mv__imgArea img {
        border-radius: 0px 0px 20px 0px;
    }

    main.top .mv__textArea {
        padding-top: 23px;
        padding-right: 0;
        padding-left: 9.11vw;
    }

    main.top .mv__textArea::before {
        content: none;
    }

    main.top .mv__textArea .is-illust {
        max-width: 203px;
        top: -30px;
        left: auto;
        right: 4vw;
    }

    main.top .mv .heading--lead {
        max-width: 51.82vw;
    }

    main.top .mv .heading--lead br.is-pc {
        display: none;
    }

    main.top .btn__requirementArea {
        margin-top: 30px;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    main.top .btn__requirementArea .btn__requirement:nth-child(n+2) {
        margin-top: 0;
    }

    main.top .btn__requirementArea .btn__requirement a {
        width: 36.19vw;
        min-width: 240px;
        max-width: 278px;
    }
}

@media (max-width: 1024px) {
    main.top .container {
        padding: 0;
    }
}

@media (max-width: 950px) {
    main.top .mv__textArea::before {
        border-radius: 0px 30px 0px 0px;
    }

    main.top .topContent {
        padding-top: 50px;
    }

    main.top .topContent.about {
        padding-top: 70px;
    }

    main.top .topContent__grid {
        border-radius: 30px 0px 0px 30px;
        grid-template-columns: 1fr;
        padding: 46px 0 70px 40px;
        margin: 0 0 0 6.51vw;
        gap: 0;
    }

    main.top .topContent:nth-child(even) .topContent__grid {
        border-radius: 0px 30px 30px 0px;
        padding: 46px 40px 70px 0;
        margin: 0 6.51vw 0 0;
    }

    main.top .topContent__grid::before {
        content: none;
    }

    main.top .topContent__textArea {
        padding: 0 54px;
        flex-direction: row;
        gap: 8.91vw;
    }

    main.top .topContent__textArea .heading--lead {
        margin-top: 0;
        margin-bottom: 0;
    }

    main.top .topContent__textArea .heading--lead br.is-sp {
        display: block;
    }

    main.top .topContent__grid .btn__primary.is-pc {
        display: none;
    }

    main.top .topContent__grid .btn__primary.is-sp {
        display: block;
        margin-top: 70px;
        text-align: center;
    }

    main.top .topContent__grid .btn__primary a {
        margin-right: 40px;
    }

    main.top .topContent__imgArea {
        margin-top: 47px;
        height: 54.5vw;
    }

    main.top .topContent__imgArea .topContent__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px 0 0 20px;
    }

    main.top .topContent:nth-child(even) .topContent__imgArea .topContent__img {
        border-radius: 0 20px 20px 0;
    }

    main.top .topContent .is-alphabet {
        font-size: 70px;
    }

    main.top .topContent.about .is-alphabet {
        top: -40px;
        right: 14.2vw;
    }

    main.top .topContent.about .is-illust.is-pc {
        display: none;
    }

    main.top .topContent.about .is-illust.is-sp {
        display: block;
    }

    main.top .topContent.about .is-illust {
        width: 206px;
        max-width: 206px;
        left: -27px;
        bottom: -74px;
    }

    main.top .topContent.job .is-alphabet {
        left: auto;
        right: 250px;
        bottom: -40px;
    }

    main.top .topContent.job .is-illust {
        width: 172px;
        max-width: 172px;
        left: auto;
        right: 15px;
    }

    main.top .topContent.workstyle .is-alphabet {
        top: -43px;
        left: auto;
        right: 20vw;
    }

    main.top .topContent.workstyle .is-illust {
        width: 143px;
        max-width: 143px;
        right: auto;
        left: 1vw;
    }

    main.top .topContent.workstyle {
        padding-bottom: 50px;
    }
}

@media (max-width:768px) {
    main.top .mv .heading--lead {
        max-width: 48vw;
    }
}

@media (max-width:743px) {
    main.top .mv {
        margin-top: 22px;
    }

    main.top .mv__imgArea .is-alphabet {
        top: 10px;
        font-size: 55px;
    }
}

@media (max-width: 730px) {

    main.top .mv {
        padding-right: 20px;
    }

    main.top .mv::after {
        border-radius: 0 15px 0 0;
    }

    main.top .mv__imgArea {
        margin-left: 0;
    }

    main.top .mv__imgArea img {
        border-radius: 0 0 10px 0;
    }

    main.top .mv__imgArea .is-alphabet {
        font-size: 44px;
        left: 10.5vw;
        transform: rotate(-12.616deg);
        top: 0;
    }

    main.top .mv__imgArea--text {
        font-size: 18px;
        white-space: nowrap;
        top: 20px;
        left: 39vw;
        transform: unset;
        letter-spacing: 0.03em;
    }

    main.top .mv__imgArea--text .is-secondLine {
        margin-left: 0;
    }

    main.top .mv__textArea .is-illust {
        max-width: 120px;
        right: 1vw;
        top: -70px;
    }

    main.top .mv__textArea {
        padding-top: 54px;
        padding-left: 20px;
    }

    main.top .mv .heading--title {
        font-size: 18px;
    }

    main.top .mv .heading--lead {
        max-width: 100%;
    }

    main.top .btn__requirementArea {
        flex-direction: column;
        gap: 24px;
    }

    main.top .btn__requirementArea .btn__requirement a {
        width: 74.13vw;
        min-width: 260px;
    }

    main.top .topContent {
        padding-top: 20px;
    }

    main.top .topContent.about {
        padding-top: 30px;
    }

    main.top .topContent__grid {
        border-radius: 15px 0px 0px 15px;
        padding: 35px 0 58px 30px;
        margin: 0 0 0 21px;
    }

    main.top .topContent:nth-child(even) .topContent__grid {
        border-radius: 0px 15px 15px 0px;
        padding: 35px 30px 58px 0;
        margin: 0 21px 0 0;
    }

    main.top .topContent__textArea {
        padding: 0;
        flex-direction: column;
        gap: 0;
        margin-left: 0;
    }

    main.top .topContent:nth-child(even) .topContent__textArea {
        padding-left: 30px;
    }

    main.top .topContent__textArea .heading--title {
        font-size: 25px;
        margin-top: 14px;
    }

    main.top .topContent__textArea .heading--lead {
        margin-top: 18px;
    }

    main.top .topContent__grid .btn__primary a {
        margin-right: 30px;
        max-width: 210px;
        padding: 11px 0px;
        letter-spacing: 0.08em;
    }

    main.top .topContent:nth-child(even) .topContent__grid .btn__primary a {
        margin-right: -30px;
    }

    main.top .topContent__grid .btn__primary a::after {
        margin-left: 3px;
    }

    main.top .topContent__imgArea {
        margin-top: 35px;
        height: 61.3vw;
    }

    main.top .topContent__imgArea .topContent__img {
        border-radius: 10px 0 0 10px;
    }

    main.top .topContent:nth-child(even) .topContent__imgArea .topContent__img {
        border-radius: 0 10px 10px 0;
    }

    main.top .topContent .is-alphabet {
        font-size: 44px;
    }

    main.top .topContent.about .is-alphabet {
        top: -28px;
        right: 8.1vw;
    }

    main.top .topContent.about .is-illust {
        width: 116px;
        max-width: 116px;
        bottom: -30px;
        left: -21px;
    }

    main.top .topContent.job .is-alphabet {
        right: 133px;
        bottom: -29px;
    }

    main.top .topContent.job .is-illust {
        width: 97px;
        max-width: 97px;
        bottom: -28px;
    }

    main.top .topContent.workstyle .is-alphabet {
        top: -30px;
        right: 17vw;
    }

    main.top .topContent.workstyle .is-illust {
        width: 80px;
        max-width: 80px;
        bottom: -25px;
        left: 5px;
    }

    main.top .topContent__grid .btn__primary.is-sp {
        margin-top: 50px;
    }

    main.top .topContent.workstyle {
        padding-bottom: 20px;
    }
}

/*==================================================
    common-page
==================================================*/
main.page {
    border-radius: 0 40px 0 0;
    overflow: hidden;
}

main.page .pageContent {
    max-width: 1160px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 100px 0;
}

@media (max-width: 1260px) {
    main.page .pageContent {
        padding: 7.812vw 0;
    }
}

@media (max-width: 600px) {
    main.page {
        border-radius: 0;
    }

    main.page .pageContent {
        border-radius: 10px;
        padding: 30px 0;
    }
}

/*==================================================
    requirements
==================================================*/
main.requirements .heading .heading--title {
    font-family: var(--ZenMaruGothic);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 5px;
}

main.requirements .heading .heading--subtitle {
    font-size: 15px;
    letter-spacing: 0;
}

main.requirements .anchorArea {
    margin-top: 23px;
}

main.requirements .anchorArea li:nth-child(n+2) {
    margin-top: 5px;
}

main.requirements .anchorArea a {
    position: relative;
    color: #8C8C8C;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 13px;
}

main.requirements .anchorArea a::before {
    position: absolute;
    content: "▶";
    top: 3px;
    left: 0;
    font-size: 10px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

main.requirements .anchorArea a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #8C8C8C;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 2px;
}

main.requirements .anchorArea a:hover {
    opacity: 1;
}

main.requirements .anchorArea a:hover::before {
    transform: rotate(90deg);
    left: -2px;
    top: 4px;
}

main.requirements .anchorArea a:hover::after {
    width: 100%;
}

main.requirements .reqContent {
  margin-top: 90px;
}
main.requirements .reqContent.pm {
    margin-top: 36px;
}

main.requirements .reqContent.se {
    margin-top: 94px;
}

main.requirements .reqContent.ne {
    margin-top: 86px;
}

main.requirements .reqContent.awse {
    margin-top: 89px;
}

main.requirements .reqContent--title {
    font-family: var(--ZenMaruGothic);
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 10px;
}

main.requirements .reqContent--title .is-border {
    position: relative;
}

main.requirements .reqContent--title .is-border::after {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    background: var(--colorYellow);
    width: 100%;
    height: 5px;
}

main.requirements .reqContent__leadArea {
    margin-top: 26px;
}

main.requirements .reqContent--lead {
    font-family: var(--NotoSansJP);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.85;
}

main.requirements .reqContent--lead:nth-child(n+2) {
    margin-top: 14px;
}

main.requirements .detailArea {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    margin-top: 24px;
}

main.requirements .detailBox {
    padding: 50px;
}

main.requirements .detailBox:nth-child(n+2) {
    border-top: 1px solid #cdcdcd;
}

main.requirements .detailBox dl {
    display: grid;
    grid-template-columns: 140px auto;
}

main.requirements .detailBox dl:nth-child(n+2) {
    margin-top: 30px;
}

main.requirements .detailBox dt {
    font-size: 14px;
    font-weight: 700;
}

main.requirements .detailBox dd {
    font-size: 14px;
    line-height: 1.71;
    margin-left: 0;
}

main.requirements .detailBox dd ul li {
    position: relative;
    padding-left: 14px;
}

main.requirements .detailBox dd ul li::before {
    position: absolute;
    content: "・";
    top: 0;
    left: 0;
}

main.requirements .detailBox dd ol {
    list-style: decimal;
    padding-left: 20px;
}

main.requirements .detailBox .detailBox__note {
    margin-top: 25px;
}

main.requirements .detailBox .detailBox__note--text {
    font-size: 11px;
    line-height: 1.81;
}

main.requirements .btn__primary {
    text-align: center;
    margin-top: 30px;
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .page__bg-yellow {
        padding: 4.375vw 4.687vw 4.687vw;
    }
}

@media (max-width: 600px) {

    main.requirements .heading .heading--title {
        font-size: 18px;
        flex-direction: column;
        gap: 4px;
    }

    main.requirements .anchorArea a {
        font-size: 14px;
    }

    main.requirements .detailBox {
        padding: 20px;
    }

    main.requirements .detailBox dl {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/*==================================================
    common-aboutCommon(about,job,workstyle)
==================================================*/
main.page.aboutCommon {
    overflow: unset;
    position: relative;
}

.page.aboutCommon::after {
    position: absolute;
    content: "";
    background: #fff;
    width: 50vw;
    top: 385px;
    right: 0;
    height: calc(100% - 385px);
}

.page.aboutCommon .mv {
    padding-top: 62px;
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.page.aboutCommon .mv::after {
    position: absolute;
    content: "";
    background: #FFCE00;
    width: 100vw;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    border-radius: 0px 40px 0px 0px;
}

.page.aboutCommon .mv img {
    border-radius: 20px;
}

.page.aboutCommon .container {
    position: relative;
    z-index: 10;
}

.page.aboutCommon .aboutCommon__1 {
    background: #FFCE00;
}

.page.aboutCommon .column-2 {
    display: grid;
    grid-template-columns: 230px auto;
}

.page.aboutCommon .asideNav {
    position: sticky;
    top: 0;
    padding: 90px 0;
}

.page.aboutCommon .asideNav__list .js-sideMenu {
    position: relative;
    padding: 0 10px 0 19px;
    font-family: var(--ZenMaruGothic);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.43;
}

.page.aboutCommon .asideNav__list:nth-child(n+2) {
    margin-top: 33px;
}

.page.aboutCommon .asideNav__list .js-sideMenu.is-active::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 11px;
    height: 11px;
    background: #fff;
    border-radius: 999px;
}

.page.aboutCommon .column-2__content {
    background: #fff;
    padding: 90px 103px 90px 163px;
}

.page.aboutCommon .aboutCommon__titleArea {
    display: flex;
    gap: 54px;
    margin-left: -31px;
    position: relative;
}

.page.aboutCommon .aboutCommon__titleArea .is-alphabet {
    font-family: var(--SquarePeg);
    font-size: 64px;
    color: #FFCE00;
    transform: rotate(-12.616deg);
    white-space: nowrap;
}

.page.aboutCommon .aboutCommon--title {
    font-family: var(--ZenMaruGothic);
    font-size: 25px;
    font-weight: 700;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.17em;
    line-height: 2;
    position: relative;
    z-index: 10;
}

.page.aboutCommon .aboutCommon--title span {
    -ms-writing-mode: initial;
    writing-mode: initial;
    line-height: 1;
    display: inline-block;
    margin: 0 0 5px -1px;
    letter-spacing: 0;
}

.page.aboutCommon .aboutCommon--subtitle {
    font-family: var(--NotoSansJP);
    font-size: 16px;
    font-weight: 500;
    line-height: 2.25;
    letter-spacing: 0.05em;
    text-align: justify;
    margin-top: -5px;
}

.page.aboutCommon .aboutCommon__contentArea {
    margin-top: 90px;
}

.page.aboutCommon .aboutCommon__content {
    margin-top: 160px;
}

.page.aboutCommon .aboutCommon__content:first-child {
    margin-top: 90px;
}

.page.aboutCommon .aboutCommon__content--img img {
    border-radius: 20px;
}

.page.aboutCommon .aboutCommon__content--title {
    font-family: var(--ZenMaruGothic);
    font-size: 22px;
    font-weight: 700;
    margin-top: 37px;
    letter-spacing: -0.01em;
}

.page.aboutCommon .aboutCommon__content__textArea {
    margin-top: 16px;
}

.page.aboutCommon .aboutCommon__content__textArea p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.85;
    text-align: justify;
}

.page.aboutCommon .listCard {
    margin-top: 37px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.page.aboutCommon .listCard__item {
    background: #FFCE00;
    border-radius: 6px;
    text-align: center;
    padding: 22px 5px 15px;
}

.page.aboutCommon .listCard__item--title,
.page.aboutCommon .listCard__item--text {
    font-family: var(--ZenMaruGothic);
    font-size: 17px;
    font-weight: 700;
}

.page.aboutCommon .listCard__item--text .is-big {
    font-size: 35px;
    line-height: 1;
    margin-right: 1px;
}

.page.aboutCommon .listCard--attention {
    font-size: 12px;
    margin-top: 16px;
}

@media (max-width: 1280px) {
    .page.aboutCommon .column-2__content {
        padding: 7.03vw 7.81vw 7.03vw 12.73vw;
    }

    .page.aboutCommon::after {
        top: 30.07vw;
        height: calc(100% - 30.07vw);
    }
}

@media (max-width: 1024px) {
    .page.aboutCommon .column-2 {
        grid-template-columns: 170px auto;
    }

    .page.aboutCommon .asideNav {
        padding-top: 70px;
    }

    .page.aboutCommon .asideNav__list .js-sideMenu {
        font-size: 14px;
    }

    .page.aboutCommon .column-2__content {
        padding: 9.89vw 3.9vw 13.67vw 7.81vw;
    }

    .page.aboutCommon .aboutCommon__titleArea {
        flex-direction: column;
        gap: 37px;
        margin-left: 0;
    }

    .page.aboutCommon .aboutCommon--title {
        font-size: 20px;
        -ms-writing-mode: initial;
        writing-mode: initial;
    }
}

@media (max-width: 767px) {
    .page.aboutCommon::after {
        content: none;
    }

    .page.aboutCommon .column-2__side {
        display: none;
    }

    .page.aboutCommon .column-2 {
        grid-template-columns: 1fr;
    }

    .page.aboutCommon .column-2__content {
        padding: 50px 0 0;
        background: transparent;
    }

    .page.aboutCommon .aboutCommon__titleArea .is-alphabet {
        color: #fff;
        font-size: 50px;
    }

    .page.aboutCommon .aboutCommon__contentArea {
        margin: 49px -20px 0;
        background: #fff;
    }

    .page.aboutCommon .aboutCommon__content {
        margin-top: 0;
        padding: 55px 20px 65px;
    }
}

@media (max-width: 600px) {

    .page.aboutCommon .mv {
        padding-top: 25px;
    }

    .page.aboutCommon .mv::after {
        border-radius: 0;
    }

    .page.aboutCommon .mv .container {
        height: 43vw;
        overflow: hidden;
    }

    .page.aboutCommon .mv img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page.aboutCommon .aboutCommon__titleArea {
        gap: 14px;
    }

    .page.aboutCommon .aboutCommon--title {
        font-size: 19px;
        text-align: center;
    }

    .page.aboutCommon .aboutCommon--subtitle {
        line-height: 2;
        margin-top: 0;
    }

    .page.aboutCommon .aboutCommon__content {
        border-bottom: 1px solid #CDCDCD;
    }

    .page.aboutCommon .aboutCommon__content:last-child {
        border-bottom: none;
    }

    .page.aboutCommon .aboutCommon__content--title {
        font-size: 18px;
        margin-top: 45px;
    }

    .page.aboutCommon .aboutCommon__content--img {
        height: 53.4vw;
        overflow: hidden;
    }

    .page.aboutCommon .aboutCommon__content--img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page.aboutCommon .aboutCommon__content__textArea {
        margin-top: 10px;
    }

    .page.aboutCommon .listCard {
        grid-template-columns: 1fr;
    }
}

/*==================================================
    about
==================================================*/
.page.aboutCommon.about .aboutCommon__titleArea .is-alphabet {
    top: -60px;
    left: -34px;
}

.page.aboutCommon .aboutCommon__content__textArea p.presidentName {
    text-align: right;
    margin-top: 26px;
}

@media (max-width: 767px) {
    .page.aboutCommon.about .aboutCommon__titleArea .is-alphabet {
        top: -50px;
        left: -20px;
    }
}

@media (max-width: 600px) {
    .page.aboutCommon.about .aboutCommon__titleArea .is-alphabet {
        top: -36px;
        left: 50%;
        transform: translateX(-50%) rotate(-12.616deg);
        margin-left: -114px;
    }
}

@media (max-width: 355px) {
    .page.aboutCommon.about .aboutCommon__titleArea .is-alphabet {
        margin-left: -90px;
    }
}

/*==================================================
    job
==================================================*/
.page.aboutCommon.job .aboutCommon__titleArea .is-alphabet {
    top: -47px;
    left: -26px;
}

.page.aboutCommon.job .aboutCommon__titleArea--img {
    margin-top: 62px;
}

.page.aboutCommon.job .aboutCommon__titleArea--img img {
    border-radius: 20px;
}

.page.aboutCommon.job .aboutCommon__contentArea {
    margin-top: 85px;
}

.page.aboutCommon.job .aboutCommon__content {
    margin-top: 150px;
}

.page.aboutCommon.job .aboutCommon__content:first-child {
    margin-top: 85px;
}

.page.aboutCommon.job .interviewContent {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 51px 26px;
    margin-top: 54px;
}

.page.aboutCommon.job .interviewContent .btn__primary {
    grid-column: 1/3;
    text-align: center;
}

.page.aboutCommon.job .interviewContent--img img {
    border-radius: 20px;
}

.page.aboutCommon.job .interviewContent--position {
    font-family: var(--ZenMaruGothic);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5;
}

.page.aboutCommon.job .interviewContent--name {
    font-family: var(--ZenMaruGothic);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-top: 4px;
}

.page.aboutCommon.job .interviewContent--profile {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.92;
    margin-top: 22px;
    text-align: justify;
}

@media (max-width: 767px) {
    .page.aboutCommon.job .aboutCommon__titleArea .is-alphabet {
        top: -42px;
        left: -16px;
    }
}

@media (max-width: 600px) {

    .page.aboutCommon.job .aboutCommon__contentArea{
        margin-top: 0;
    }

    .page.aboutCommon.job .aboutCommon__content {
        margin-top: 0;
    }

    .page.aboutCommon.job .aboutCommon__content:first-child {
        margin-top: 0;
    }

    .page.aboutCommon.job .aboutCommon__titleArea .is-alphabet {
        top: -32px;
        left: 50%;
        transform: translateX(-50%) rotate(-12.616deg);
        margin-left: -103px;
    }

    .page.aboutCommon.job .aboutCommon__content--title {
        margin-top: 0;
    }

    .page.aboutCommon.job .aboutCommon__titleArea--img {
        background: #fff;
        margin: 50px -20px -1px;
        padding: 55px 20px 10px;
    }

    .page.aboutCommon.job .interviewContent {
        grid-template-columns: 1fr;
        gap: 29px;
        margin-top: 35px;
    }

    .page.aboutCommon.job .interviewContent .btn__primary {
        margin-top: 21px;
        grid-column: unset;
    }

    .page.aboutCommon.job .interviewContent--position {
        line-height: 1.5;
        text-align: center;
    }

    .page.aboutCommon.job .interviewContent--profile {
        font-size: 14px;
        margin-top: 20px;
    }

    .page.aboutCommon.job .interviewContent--name {
        text-align: center;
    }
}

/*==================================================
    interview
==================================================*/
.page.interview {
    text-align: justify;
}

.page.interview .mv {
    line-height: 0;
}

.page.interview .mv img {
    border-radius: 20px 20px 0 0;
}

main.page.interview .pageContent {
    border-radius: 0 0 20px 20px;
    max-width: 1162px;
}

.page.interview .leadArea--position {
    font-family: var(--ZenMaruGothic);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.page.interview .leadArea--name {
    font-family: var(--ZenMaruGothic);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-align: center;
    margin-top: 5px;
    position: relative;
}

.page.interview .leadArea--name::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: #000;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.page.interview .leadArea--text {
    margin-top: 69px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.85;
    position: relative;
}

main.interview .leadArea--text .is-alphabet {
    font-family: var(--SquarePeg);
    font-size: 64px;
    color: #FFCE00;
    transform: rotate(-12.616deg);
    white-space: nowrap;
    top: -97px;
    left: -64px;
}

.page.interview .interviewContentArea {
    margin-top: 146px;
}

.page.interview .interviewContent:nth-child(n+2) {
    margin-top: 114px;
}

.page.interview .interviewContent--title {
    font-family: var(--ZenMaruGothic);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding-left: 71px;
    position: relative;
    margin-bottom: 41px;
}

.page.interview .interviewContent--title::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: #000;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.page.interview .interviewContent--img {
    margin-top: 41px;
}

.page.interview .interviewContent--img img {
    border-radius: 20px;
}

.page.interview .interviewContent--subtitle {
    font-family: var(--ZenMaruGothic);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.6;
    margin-top: 35px;
}

.page.interview .qaArea {
    margin-top: 14px;
}

.page.interview .qaContent:nth-child(n+2) {
    margin-top: 26px;
}

.page.interview .qaContent--q {
    font-size: 14px;
    font-weight: 500;
}

.page.interview .qaContent--q::before {
    content: "Q：";
    font-family: var(--ZenMaruGothic);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.85;
}

.page.interview .qaContent--a {
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.85;
}

.page.interview .qaContent--a::before {
    content: "A：";
    font-family: var(--ZenMaruGothic);
    font-size: 14px;
    font-weight: 700;
}

.page.interview .interviewContent--message {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.85;
    margin-top: 30px;
}

.page.interview .backJob {
    margin-top: 87px;
    text-align: center;
}

@media (max-width: 1024px) {
    .page.interview .mv .container {
        padding: 0;
    }

    main.interview .leadArea--text .is-alphabet {
        left: -15px;
    }
}

@media (max-width: 600px) {

    .page.interview .mv img {
        border-radius: 10px 10px 0 0;
    }

    main.page.interview .pageContent {
        border-radius: 0 0 10px 10px;
    }

    main.interview .leadArea--text .is-alphabet {
        font-size: 48px;
        top: -80px;
        left: -10px;
    }

    .page.interview .interviewContentArea {
        margin-top: 80px;
    }

    .page.interview .interviewContent:nth-child(n+2) {
        margin-top: 80px;
    }

    .page.interview .interviewContent--title {
        font-size: 19px;
        padding-left: 35px;
        margin-bottom: 34px;
    }

    .page.interview .interviewContent--title::before {
        width: 25px;
    }

    .page.interview .interviewContent--img {
        margin-top: 34px;
    }

    .page.interview .interviewContent--subtitle {
        font-size: 18px;
        margin-top: 40px;
    }

    .page.interview .qaArea {
        margin-top: 20px;
    }

    .page.interview .backJob {
        margin-top: 64px;
    }
}

/*==================================================
    workstyle
==================================================*/
.page.aboutCommon.workstyle .aboutCommon__titleArea .is-alphabet {
    top: -59px;
    left: -52px;
}

@media (max-width: 767px) {
    .page.aboutCommon.workstyle .aboutCommon__titleArea .is-alphabet  {
        top: -47px;
        left: -17px;
    }
}

@media (max-width: 600px) {
    .page.aboutCommon.workstyle .aboutCommon__titleArea .is-alphabet  {
        top: -42px;
        left: 50%;
        transform: translateX(-50%) rotate(-12.616deg);
        margin-left: -104px;
    }
}

@media (max-width: 355px) {
    .page.aboutCommon.workstyle .aboutCommon__titleArea .is-alphabet  {
        margin-left: -70px;
    }
}

/*==================================================
    entry
==================================================*/
.entryFrom__head {
    align-items: center;
    border-bottom: 1px solid #CDCDCD;
    column-gap: 5px;
    display: flex;
    font-family: var(--ZenMaruGothic);
    justify-content: center;
    padding-bottom: 45px;
    position: relative;
}

.entryFrom__head::after {
    bottom: -1px;
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
}

.entryFrom__head__title {
    font-size: 25px;
    font-weight: 700;
}

.entryFrom__head__lead {
    font-size: 15px;
    font-weight: 700;
}

.entryFrom__step {
    margin-top: 60px;
}

.entryFrom__step__list {
    column-gap: 53px;
    display: flex;
    justify-content: center;
}

.entryFrom__step__list li {
    align-items: center;
    color: var(--colorGray);
    display: flex;
    font-family: var(--ZenMaruGothic);
    font-size: 17px;
    position: relative;
}

.entryFrom__step__list li:nth-child(n+2)::before {
    border-color: transparent transparent transparent var(--colorGray);
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-radius: 10px;
    content: '';
    height: 0;
    left: -30px;
    margin-top: -6px;
    position: absolute;
    top: 50%;
    width: 0;
}

.entryFrom__step__list li span {
    align-items: center;
    background: var(--colorGray);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-family: var(--Quicksand);
    font-size: 16px;
    font-weight: 700;
    height: 22px;
    justify-content: center;
    margin-right: 12px;
    width: 22px;
}

.entryFrom__step__list li.is-done {
    color: var(--colorBlack);
}

.entryFrom__step__list li.is-done span {
    background: var(--colorBlack);
}

.entryFrom__contents {
    border-bottom: 1px solid #CDCDCD;
    margin-top: 96px;
    padding-bottom: 62px;
}

.itemForm {
    align-items: center;
    display: grid;
    grid-template-columns: 220px auto;
}

.itemForm+.itemForm {
    margin-top: 45px;
}

.itemForm input {
    font-family: var(--NotoSansJP);
    box-sizing: border-box;
}

.itemForm input:invalid {
    border: 1px solid var(--colorRed);
}

.itemForm .error--text {
    color: var(--colorRed);
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.itemForm__title {
    font-family: var(--ZenMaruGothic);
    font-size: 17px;
}

.itemForm .is-required {
    position: relative;
}

.itemForm .is-required::before {
    background: var(--colorRed);
    position: absolute;
    content: "";
    width: 48px;
    height: 20px;
    border-radius: 999px;
    top: 3px;
    right: -60px;
}

.itemForm .is-required::after {
    position: absolute;
    content: "必須";
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    top: 3px;
    right: -52px;
    letter-spacing: 0.25em;
}

.itemForm__input.error input {
    border: 1px solid var(--colorRed);
}

.itemForm--select .itemForm__input select {
    font-family: var(--NotoSansJP);
    appearance: none;
    background: #fff;
    border: 1px solid #CDCDCD;
    border-radius: 6px;
    font-size: 16px;
    height: 45px;
    min-width: 420px;
    padding: 0 32px 0 20px;
    position: relative;
}

.itemForm--select .itemForm__input select:focus {
    outline: 1px solid #CDCDCD;
}

.itemForm--select .itemForm__input label {
    position: relative;
}

.itemForm--select .itemForm__input label::after {
    border-bottom: 1px solid var(--colorBlack);
    border-right: 1px solid var(--colorBlack);
    content: "";
    height: 6px;
    position: absolute;
    pointer-events: none;
    right: 1.4em;
    top: 50%;
    transform: translate(50%, -50%) rotate(45deg);
    width: 6px;
}

.itemForm--name .input-label {
    display: block;
    font-family: var(--ZenMaruGothic);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.itemForm--name .itemForm__input {
    column-gap: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.itemForm--name .itemForm__input input {
    font-family: var(--NotoSansJP);
    background: #fff;
    border: 1px solid #CDCDCD;
    border-radius: 6px;
    font-size: 16px;
    height: 45px;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.itemForm--name .itemForm__input input:focus {
    outline: 1px solid #CDCDCD;
}

.itemForm--email input,
.itemForm--tel input {
    background: #fff;
    border: 1px solid #CDCDCD;
    border-radius: 6px;
    font-size: 16px;
    height: 45px;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.itemForm--email input:focus,
.itemForm--tel input:focus {
    outline: 1px solid #CDCDCD;
}

.itemForm--file input {
    display: none;
}

.itemForm--file label {
    font-size: 16px;
    position: relative;
    cursor: pointer;
}

.itemForm--file label::before {
    align-items: center;
    background: #fff;
    border: 1px solid #CDCDCD;
    border-radius: 6px;
    content: "ファイルを選択";
    display: inline-block;
    font-size: 16px;
    margin-right: 25px;
    height: 45px;
    line-height: 45px;
    position: relative;
    text-align: center;
    width: 200px;
}

.itemForm--textarea {
    align-items: flex-start;
}

.itemForm--textarea textarea {
    background: #fff;
    border: 1px solid #CDCDCD;
    border-radius: 6px;
    font-family: var(--NotoSansJP);
    font-size: 16px;
    height: 326px;
    padding: 20px;
    position: relative;
    width: 100%;
}

.entryForm__notes {
    background: #fff;
    border-radius: 6px;
    margin-top: 65px;
    padding: 50px 65px;
}

.entryForm__notes__title {
    font-size: 14px;
    font-weight: 700;
}

.entryForm__notes__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 10px;
}

.entryForm__send {
    margin-top: 60px;
}

.entryForm__send__button {
    text-align: center;
}

.entryForm__send__button input {
    background: var(--colorYellow);
    border: 1px solid var(--colorBlack);
    border-radius: 40px;
    color: var(--colorBlack);
    cursor: pointer;
    font-family: var(--ZenMaruGothic);
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    max-width: 240px;
    padding: 20px 0;
    text-align: center;
    transition: .3s;
    width: 100%;
}

.entryForm__send__button input:hover {
    background: #fff;
}

@media screen and (max-width: 1024px) {
    .itemForm {
        grid-template-columns: 35% auto;
    }

    .itemForm--name .itemForm__input input {
        width: 100%;
    }

    .itemForm--file label input[type="file"]+span {
        display: block;
        margin-top: 5px;
    }

    .entryFrom__head {
        column-gap: 0;
        flex-wrap: wrap;
    }

    .itemForm--select .itemForm__input select {
        min-width: 100%;
        width: 100%;
    }

    .entryFrom__step__list {
        column-gap: 4.14vw;
    }

    .entryFrom__step__list li:nth-child(n+2)::before {
        left: -2.5vw;
    }
}

@media screen and (max-width: 830px) {
    .itemForm {
        grid-template-columns: 40% auto;
    }
}

@media screen and (max-width: 600px) {

    .entryFrom__head {
        padding-bottom: 30px;
    }

    .entryFrom__head::after {
        display: none;
    }

    .entryFrom__head__title {
        font-size: 18px;
    }

    .entryFrom__head__lead {
        font-size: 15px;
        margin-top: 4px;
    }

    .entryFrom__step {
        margin-top: 30px;
    }

    .entryFrom__step__list {
        column-gap: 0;
        flex-wrap: wrap;
        row-gap: 25px;
    }

    .entryFrom__step__list li {
        font-size: 14px;
        justify-content: center;
        width: 100%;
    }

    .entryFrom__step__list li span {
        font-size: 14px;
        height: 17px;
        margin-right: 6px;
        width: 17px;
    }

    .entryFrom__step__list li:nth-child(n+2)::before {
        left: 0;
        margin: auto;
        margin-top: -6px;
        right: 0;
        top: -10px;
        transform: rotate(90deg);
    }


    .entryFrom__contents {
        margin-top: 37px;
        padding-bottom: 30px;
    }

    .itemForm {
        grid-template-columns: 100%;
    }

    .itemForm+.itemForm {
        margin-top: 32px;
    }

    .itemForm__title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .itemForm--select .itemForm__input select {
        font-size: 13px;
        font-weight: 500;
        height: auto;
        padding: 10px 20px 10px 10px;
    }

    .itemForm--name .input-label {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .itemForm--name .itemForm__input {
        column-gap: 13px;
    }

    .itemForm--name .itemForm__input input {
        border-radius: 6px;
        font-size: 16px;
        height: auto;
        padding: 9px 11px;
        width: 100%;
    }

    .itemForm--email input,
    .itemForm--tel input {
        border-radius: 6px;
        font-size: 16px;
        height: auto;
        padding: 9px 11px;
        width: 100%;
    }

    .itemForm--file label {
        font-size: 16px;
        position: relative;
    }

    .itemForm--file label::before {
        font-size: 16px;
        margin-right: 0;
        height: auto;
        line-height: 1;
        padding: 9px 11px;
        width: 140px;
    }

    .itemForm--file label span {
        font-size: 14px;
        display: block;
    }

    .itemForm--textarea textarea {
        height: 215px;
    }

    .entryForm__notes {
        border-radius: 6px;
        margin-top: 30px;
        padding: 28px 20px 20px;
    }

    .entryForm__send {
        margin-top: 30px;
    }

    .entryForm__send__button input {
        max-width: 210px;
        padding: 15px 0;
    }
}
@charset "UTF-8";

/*==================================================
    header
==================================================*/
.header {
    padding: 31px 183px 45px 24px;
    display: flex;
    justify-content: space-between;
}

.header .is-tb-show {
  display: flex;
  align-items: center;
}

/* Menu and simple menu */
.header .hs-menu-wrapper ul {
  display: flex;
  align-items: center;
  gap: 37px;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .hs-menu-wrapper a {
    font-family: var(--ZenMaruGothic);
    font-size: 12px;
    font-weight: 700;
    position: relative;
}

.header .hs-menu-wrapper a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 5px;
    background: var(--colorYellow);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 2px;
}

.header .hs-menu-wrapper li.is-active a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 5px;
    background: var(--colorYellow);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 2px;
}

.is-tb-hide .hs-menu-wrapper li.is-active a::before {
    background: #FFEA91;
}

.header .hs-menu-wrapper a:hover {
    opacity: 1;
}

.header .hs-menu-wrapper a:hover::before {
    width: 100%;
}

.headerHamburger {
    display: none;
}
/*==================================================
    Entry
==================================================*/

.fixedCta {
    position: fixed;
    top: 21px;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 6px 0 0 6px;
    cursor: pointer;
    z-index: 900;
}

.fixedCta::after {
    position: absolute;
    content: "";
    top: 23px;
    right: 17px;
    width: 3px;
    height: 19px;
    background-image: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/jobs/dot.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.fixedCta__open {
    display: flex;
}

.fixedCta__parent {
    padding: 16px 33px 12px 17px;
}

.fixedCta__parent--img {
    margin-left: 10px;
}

.fixedCta__parent--text {
    font-family: var(--ZenMaruGothic);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-top: 11px;
}

.fixedCta__child {
    padding: 18px 50px 0 0;
    display: none;
    opacity: 0;
}

.fixedCta__child.is-open {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

.fixedCta__child a {
    font-family: var(--ZenMaruGothic);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-left: 20px;
}

.fixedCta__child a::before {
    position: absolute;
    content: "";
    top: 6px;
    left: 0;
    width: 10px;
    height: 5.5px;
    background-image: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/jobs/arrow_right_white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (min-width: 1024px) {
    .fixedCta:hover .fixedCta__child {
        display: block;
        opacity: 1;
        animation: fadeIn 0.3s ease-in 0s forwards;
    }
}

@media (max-width: 830px) {
    .header {
        padding: 45px 148px 45px 24px;
    }

    .headerLogo img {
        max-width: 245px;
    }
}

/*==================================================
    header - sp
==================================================*/

@media (max-width: 743px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 9px 21px 8px 15px;
        align-items: center;
        z-index: 1000;
    }

    .headerLogo img {
        max-width: 168px;
    }

    .header .is-tb-show {
      display: none;
    }

    .fixedCta {
      display: none;
    }

    .headerMenuArea {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        height: calc(100% - 52px);
        transform: translateY(-100%);
        transition: all 0.4s;
        background: var(--colorYellow);
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr;
        overflow-y: scroll;
    }

    .headerMenuArea.is-open {
        transform: translateY(0%);
        top: auto;
        bottom: 0;
    }  

    .headerHamburger {
        display: block;
        width: 23px;
        height: 14px;
        position: relative;
        z-index: 1000;
    }

    .headerHamburger::before,
    .headerHamburger::after,
    .headerHamburger span {
        position: absolute;
        content: "";
        right: 0;
        height: 2px;
        border-radius: 1px;
        background: var(--colorBlack);
        display: block;
        transition: all 0.2s;
        transform-origin: center center;
    }

    .headerHamburger::before {
        width: 18px;
        top: calc(50% - 1px);
    }

    .headerHamburger::after {
        width: 14px;
        bottom: 0;
    }

    .headerHamburger span {
        top: 0;
        width: 100%;
    }

    .headerHamburger.is-open::before {
        opacity: 0;
    }

    .headerHamburger.is-open::after {
        width: 100%;
        bottom: 7px;
        transform: rotate(-45deg);
    }

    .headerHamburger.is-open span {
        top: 5px;
        transform: rotate(45deg);
    }

    /* menu - top */
    .headerMenuArea__top{
      padding: 60px 0;
    }  
    
    .headerMenuArea__top .hs-menu-wrapper {
      display: flex;
      justify-content: center;
      gap: 60px;
    }

    .headerMenuArea__top .hs-menu-wrapper ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 60px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
        
    .headerMenuArea__top .hs-menu-wrapper li.is-active a::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -7px;
        width: 100%;
        height: 5px;
        background: #FFEA91;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        border-radius: 2px;
    }
        

    .headerMenuArea__top .hs-menu-wrapper a {
      font-family: var(--ZenMaruGothic);
      font-size: 16px;
      font-weight: 700;
      position: relative;
    }

    .headerMenuArea__top .hs-menu-wrapper a::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 0;
      height: 5px;
      background: #FFEA91;
      -webkit-transition: all 0.4s;
      transition: all 0.4s;
      border-radius: 2px;
    }

    .headerMenuArea__top .hs-menu-wrapper a:hover {
        opacity: 1;
    }
    
    .headerMenuArea__top .hs-menu-wrapper a:hover::before {
        width: 100%;
    }

    /* menu - bottom */
    .headerMenuArea__bottom {
        background: var(--colorBlack);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 0 60px;
    }

    .headerMenuArea__bottom--title {
        font-family: var(--ZenMaruGothic);
        color: #fff;
    }

    .headerMenuArea__bottom--title img {
        position: relative;
        bottom: -8px;
        margin-right: 12px;
    }

    .headerMenuArea__bottom--text {
        color: #fff;
        margin-top: 41px;
        line-height: 1.71;
        text-align: center;
    }

    .headerMenuArea__bottom__btnArea {
        margin-top: 2px;
    }

    .headerMenuArea__bottom__btnArea .btn__primary a {
        margin-top: 26px;
        width: 240px;
        font-family: var(--Quicksand);
        font-size: 14px;
        height: 55px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .headerMenuArea__bottom__btnArea .btn__primary a::after {
        width: 7px;
        height: 7px;
        top: 0;
        border-color: #fff;
    }

}
@charset "UTF-8";

/*==================================================
    footer
==================================================*/
.footer {
    background: #000;
    padding: 52px 0 34px;
}

.footer .container {
    max-width: 1147px;
    padding: 0 20px;
}

.footer p,
.footer a {
    color: #fff;
}

.footerFlex {
    display: flex;
    justify-content: space-between;
}

.footerLeft__menu {
    display: flex;
    gap: 30px;
    margin-top: 47px;
}

.footerLeft__menu li:nth-child(n+2) {
    position: relative;
}

.footerLeft__menu li:nth-child(n+2)::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 1px;
    height: 12px;
    top: 9px;
    left: -15px;
}

.footerLeft__menu a {
    font-size: 10px;
}

.footerCopyright {
    font-size: 11px;
    margin-top: 15px;
}

.footerRight {
    display: flex;
    align-items: baseline;
    gap: 46px;
    margin-top: 20px;
}

.footerRight li {
    line-height: 1.2;
}

.footerRight .footerRight__menu--item {
    color: #fff;
    font-family: var(--ZenMaruGothic);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

/* hubspot menu */
.footer .footerRight__menu__2 a {
    color: #fff;
    font-family: var(--ZenMaruGothic);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.footer .footerRight__menu__3 a {
    color: #fff;
    font-family: var(--ZenMaruGothic);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.footerRight .is-arrow-right {
    position: relative;
    padding-left: 20px;
}

.footerRight .is-arrow-right::before {
    position: absolute;
    content: "＞";
    font-size: 12px;
    top: 5px;
    left: 0;
    color: #fff;
}

/* hubspot menu */
.footerRight .footerRight__menu__3 .hs-menu-item {
    position: relative;
    padding-left: 20px;
}

.footerRight .footerRight__menu__3 .hs-menu-item::before {
    position: absolute;
    content: "＞";
    font-size: 12px;
    top: 5px;
    left: 0;
    color: #fff;
}

.footerRight__menu__1 .is-otherLink {
    max-width: 10px;
    margin-left: 7px;
}

.footerRight__menu__2 li:nth-child(n+2) {
    margin-top: 25px;
}

.footerRight__menu__3 .hs-menu-wrapper li:nth-child(1) {
    margin-top: 22px;
}

.footerRight__menu__3 .hs-menu-wrapper li:nth-child(2) {
    margin-top: 12px;
}

.pageTop {
    position: fixed;
    background: #595959;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 49px;
    bottom: 0;
    right: 0;
    cursor: pointer;
    transition: .3s;
    z-index: 900;
}

.pageTop:hover {
    opacity: 0.6;
}

.pageTop__img {
    line-height: 0;
}

.pageTop__text {
    font-family: var(--Quicksand);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 3px;
}

@media (max-width: 790px) {
    .footerRight {
        gap: 25px;
    }
}

@media (max-width: 743px) {
    .footer {
        padding: 39px 0 40px;
    }

    .footerFlex {
        flex-direction: column;
        gap: 0;
    }

    .footerLeft {
        text-align: center;
    }

    .footerLogo img {
        max-width: 204px;
    }

    .footerRight {
        gap: 33px;
        max-width: 70vw;
        margin: 55px auto 0;
        flex-direction: column;
    }
    .footerRight-middle {
        display: flex;
        align-items: baseline;
        margin-top: 10px;
    }
    
    .footerRight-middle li {
        line-height: 1.2;
    }
    
    .footerRight__menu__2 {
        display: grid;
        grid-template-columns: 10fr 1fr;
        align-items: center;
        gap: 17px;
    }

    .footerRight__menu__2 li:nth-child(n+2) {
        margin-top: 10;
    }

    .footerLeft__menu {
        justify-content: center;
        margin-top: 48px;
    }

    .footerLeft__menu li:nth-child(n+2)::before {
        top: 6px;
    }

    .footerRight__menu__2 li:nth-child(n+2).footerRight__menu--item {
        margin-top: 2px;
    }

    .footerCopyright {
        margin-top: 27px;
        text-align: center;
    }

    .pageTop {
        display: none;
    }
}
/* Header DND sections */
.progress {
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: block;
  
  background: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/templates/_progress/loading.gif) center center no-repeat #FFEA91;
  background-size: 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .progress .logo {
    width: 97px;
    height: 66px;
    position: absolute;
    left: calc(50% - 48px);
    top: calc(50% - 110px); }

.progress_text {
  /*@include f(10);
  margin-top: 10px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;*/
  display: none; }

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}