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




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

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Quicksand:wght@700&family=Zen+Maru+Gothic:wght@400;700&display=swap");

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

* {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

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

/*base -----------------------------------*/
:root {
    --sp-size: 375;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

@media only screen and (max-width: 767px) {
    html {
        font-size: calc((100 / var(--sp-size)) * 10vmin);
        scroll-padding-top: 6rem;
    }
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    line-height: 1.75;
    -moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 1.6rem;
    }
}

/*layout -----------------------------------*/
.l-main {
    overflow-x: hidden;
}

.l-header {
    left: 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99;
}

@media only screen and (max-width: 767px) {
    .l-header {
        height: 6rem;
        padding: 0;
    }
}

.l-header-inner {
    background-color: #fff;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
    display: grid;
    grid-template-columns: 135px auto 135px;
    height: 60px;
    padding: 10px 20px;
}

@media only screen and (max-width: 1160px) {
    .l-header-inner {
        grid-template-columns: 135px auto;
    }
}

@media only screen and (max-width: 767px) {
    .l-header-inner {
        align-items: center;
        display: flex;
        height: 6rem;
        padding: 0;
        position: relative;
    }
}

.l-header-logo {
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .l-header-logo {
        padding: 1.5rem 0 1.4rem 1.4rem;
        width: 13rem;
    }
}

.l-header .l-header-nav {
    align-self: center;
    padding-bottom: 4px;
}

@media only screen and (max-width: 767px) {
    .l-header .l-header-nav {
        background-color: #2c2c2c;
        height: 100vh;
        left: 0;
        opacity: 0;
        overflow-y: scroll;
        padding-bottom: 0;
        position: absolute;
        top: 100%;
        transition: .3s ease;
        visibility: hidden;
        width: 100%;
        z-index: -1;
    }
}

.l-header .p-contact .l-inner {
    background: none;
    padding: 5rem 20px;
    position: relative;
}

.l-header .p-contact .l-inner::before {
    background: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/img-footer.png) no-repeat;
    background-size: 100%;
    content: "";
    height: 7.7rem;
    left: 20px;
    position: absolute;
    top: -3rem;
    width: 7.8rem;
}

.l-nav ul{
    display: flex;
    font-family: "Zen Maru Gothic", serif;
    gap: 0 34px;
    justify-content: center;
}

@media only screen and (max-width: 1160px) {
    .l-nav ul{
        gap: 20px;
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 767px) {
    .l-nav ul{
        background-color: #ffce00;
        display: grid;
        gap: 5rem 3rem;
        grid-template-columns: auto 1fr;
        padding: 7rem 4rem;
    }

    .l-nav ul> li {
        flex: 0 1 50%;
    }
}

.l-nav a {
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    position: relative;
    text-decoration: none;
}

.l-nav a::after {
    background-color: #ffce00;
    bottom: -6px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    transition: .3s ease;
    width: 0;
}

@media only screen and (max-width: 767px) {
    .l-nav a {
        font-size: 1.6rem;
        padding-bottom: 0;
    }
}

.l-nav a:hover::after {
    width: 100%;
}

#l-btn-spmenu {
    display: none;
    height: 1.6rem;
    margin-left: auto;
    margin-right: 20px;
    position: relative;
    width: 2.4rem;
}

@media only screen and (max-width: 767px) {
    #l-btn-spmenu {
        display: block;
    }
}

#l-btn-spmenu span,
#l-btn-spmenu span::before,
#l-btn-spmenu span::after {
    background-color: #000;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transition: all .3s;
    width: 100%;
}

#l-btn-spmenu span {
    background: linear-gradient(90deg, #fff 0%, #fff .4rem, #000 .4rem, #000 100%);
    left: 50%;
    margin: -1px 0 0 -1.2rem;
    top: 50%;
}

#l-btn-spmenu span::before {
    top: -.9rem;
    transform: rotate(0deg);
}

#l-btn-spmenu span::after {
    background: linear-gradient(90deg, #fff 0%, #fff .8rem, #000 .8rem, #000 100%);
    bottom: -.9rem;
    transform: rotate(0deg);
}

.js-open .l-header-nav {
    opacity: 1;
    visibility: visible;
}

.js-open #l-btn-spmenu span {
    background: transparent;
}

.js-open #l-btn-spmenu span::before {
    background: #000;
    top: 0;
    transform: rotate(220deg);
}

.js-open #l-btn-spmenu span::after {
    background: #000;
    top: 0;
    transform: rotate(-220deg);
}

.l-inner {
    margin: 0 auto;
    max-width: 1160px;
}

.l-inner-m {
    margin: 0 auto;
    max-width: 940px;
}

.l-footer {
    background-color: #000;
    color: #fff;
    padding: 50px 20px 35px 20px;
}

@media only screen and (max-width: 767px) {
    .l-footer {
        padding: 4rem 20px 2rem 20px;
    }
}

.l-footer-bottom {
    display: grid;
    font-weight: 400;
    grid-template-columns: 1fr auto 1fr;
}

@media only screen and (max-width: 1160px) {
    .l-footer-bottom {
        grid-template-columns: 1fr auto 50px;
    }
}

@media only screen and (max-width: 767px) {
    .l-footer-bottom {
        display: block;
    }
}

.l-footer-bottom nav {
    margin-right: auto;
}

@media only screen and (max-width: 767px) {
    .l-footer-bottom nav {
        margin-bottom: 2rem;
    }
}

.l-footer-bottom ul {
    display: flex;
    font-size: 10px;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .l-footer-bottom ul {
        font-size: 1rem;
        justify-content: center;
    }
}

.l-footer-bottom ul li:not(:last-child) {
    border-right: 1px solid #fff;
    margin-right: 15px;
    padding-right: 15px;
}

@media only screen and (max-width: 767px) {
    .l-footer-bottom ul li:not(:last-child) {
        margin-right: 1rem;
        padding-right: 1rem;
    }
}

.l-footer-copy {
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .l-footer-copy {
        font-size: 1.25rem;
    }
}

.l-footer-logo {
    margin-bottom: 60px;
}

.l-footer-logo img {
    width: 192px;
}

@media only screen and (max-width: 767px) {
    .l-footer-logo {
        margin-bottom: 4rem;
        text-align: center;
    }

    .l-footer-logo img {
        width: 15rem;
    }
}

.l-footer a {
    color: #fff;
    text-decoration: none;
}

.l-btn-contact {
    align-items: center;
    background-color: #2c2c2c;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-family: "Zen Maru Gothic", serif;
    font-size: 15px;
    font-weight: bold;
    height: 125px;
    justify-content: center;
    line-height: 1;
    position: fixed;
    right: 35px;
    text-align: center;
    text-decoration: none;
    top: 74%;
    transition: .3s ease;
    width: 125px;
    z-index: 90;
}

.l-btn-contact:hover {
    background-color: #666;
}

@media only screen and (max-width: 767px) {
    .l-btn-contact {
        bottom: 2rem;
        font-size: 1rem;
        height: 8rem;
        right: 2rem;
        top: auto;
        width: 8rem;
    }
}

.l-btn-contact::before {
    border: 1px solid #fff;
    border-radius: 50%;
    content: "";
    height: 90%;
    position: absolute;
    width: 90%;
}

.l-btn-contact span {
    background: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/icon-mail.svg) no-repeat center bottom;
    background-size: 25px auto;
    display: inline-block;
    margin-top: 10px;
    padding-bottom: 35px;
}

@media only screen and (max-width: 767px) {
    .l-btn-contact span {
        background-size: 1.5rem auto;
        margin-top: 1rem;
        padding-bottom: 2rem;
    }
}

.l-btn-pagetop {
    align-items: center;
    background-color: #595959;
    bottom: 0;
    color: #fff;
    display: flex;
    font-family: "Quicksand", sans-serif;
    font-size: 10px;
    font-weight: bold;
    height: 50px;
    justify-content: center;
    letter-spacing: .09em;
    line-height: 1;
    position: fixed;
    right: 0;
    text-align: center;
    text-decoration: none;
    transition: .3s ease;
    width: 50px;
    z-index: 90;
}

.l-btn-pagetop:hover {
    background-color: #000;
}

@media only screen and (max-width: 767px) {
    .l-btn-pagetop {
        display: none;
    }
}

.l-btn-pagetop span {
    background: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/icon-arrow.svg) no-repeat center top;
    background-size: 20px auto;
    display: inline-block;
    padding-top: 20px;
}

/*project -----------------------------------*/
.p-top {
    background: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/bg-top.svg) no-repeat center top;
    background-size: 100% 100%;
    margin: 0 -20px 20px -20px;
    min-height: 320px;
}

@media only screen and (max-width: 767px) {
    .p-top {
        background-image: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/bg-top_sp.svg);
        margin-bottom: 1.5rem;
        min-height: 28rem;
    }
}

.p-top-lead {
    font-family: "Zen Maru Gothic", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 2.1;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .p-top-lead {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-bottom: 4rem;
        padding: 0 4rem;
        text-align: left;
    }
}

.p-top-result {
    font-family: "Quicksand", "Zen Maru Gothic", serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .p-top-result {
        font-size: 2.3rem;
    }
}

.p-top-result span {
    background: linear-gradient(transparent 85%, #ffce00 15%);
    padding-bottom: 8px;
}

@media only screen and (max-width: 767px) {
    .p-top-result span {
        padding-bottom: .8rem;
    }
}

.p-top-result em {
    display: inline-block;
    font-size: 43px;
    font-style: normal;
    vertical-align: -.05em;
}

@media only screen and (max-width: 767px) {
    .p-top-result em {
        font-size: 4rem;
    }
}

.p-top-illust01 {
    left: 0;
    position: absolute;
    top: -47%;
    width: 24%;
}

@media only screen and (max-width: 1160px) {
    .p-top-illust01 {
        top: -39%;
        width: 22%;
    }
}

.p-top-illust02 {
    position: absolute;
    right: 10%;
    top: -54%;
    width: 13.5%;
}

@media only screen and (max-width: 1160px) {
    .p-top-illust02 {
        top: -41%;
    }
}

@media only screen and (max-width: 767px) {
    .p-top-illust02 {
        right: -1rem;
        top: -14rem;
        width: 9.3rem;
    }
}

.p-top-illust03 {
    bottom: -43%;
    left: 0;
    position: absolute;
    width: 13.7%;
}

@media only screen and (max-width: 767px) {
    .p-top-illust03 {
        bottom: -12rem;
        left: -2rem;
        width: 8.5rem;
    }
}

.p-top-illust04 {
    position: absolute;
    right: 1%;
    top: 7%;
    width: 11.2%;
}

@media only screen and (max-width: 1160px) {
    .p-top-illust04 {
        right: 0;
        top: -2%;
        width: 10%;
    }
}

#top .l-inner,
#proud .l-inner {
    position: relative;
}

#result {
    overflow: hidden;
}

.p-proud-lead {
    font-weight: 500;
    margin: 0 auto 80px;
    max-width: 724px;
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 767px) {
    .p-proud-lead {
        margin-bottom: 4rem;
    }
}

.p-proud-img {
    font-family: "Quicksand", "Zen Maru Gothic", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 588px;
    position: relative;
    text-align: center;
    z-index: 2;
}

@media only screen and (max-width: 767px) {
    .p-proud-img {
        font-size: min(1.8rem, 30px);
    }
}

.p-proud-img__cloud01 {
    left: 9.5%;
    position: absolute;
    top: 16%;
}

@media only screen and (max-width: 767px) {
    .p-proud-img__cloud01 {
        left: 15%;
        top: 8.5%;
    }
}

.p-proud-img__cloud02 {
    left: 76%;
    position: absolute;
    top: 13%;
}

@media only screen and (max-width: 767px) {
    .p-proud-img__cloud02 {
        left: 67%;
        top: 9%;
    }
}

.p-proud-img__cloud03 {
    left: 10.7%;
    position: absolute;
    top: 72%;
}

@media only screen and (max-width: 767px) {
    .p-proud-img__cloud03 {
        left: 12.7%;
        top: 83%;
    }
}

.p-proud-img__cloud04 {
    left: 78.5%;
    position: absolute;
    top: 65%;
}

@media only screen and (max-width: 767px) {
    .p-proud-img__cloud04 {
        left: 65.5%;
        top: 80%;
    }
}

.p-proud-illust01 {
    position: absolute;
    right: 11%;
    top: -19%;
    width: 12%;
}

.p-proud-illust02 {
    position: absolute;
    right: 1%;
    top: 4%;
    width: 9%;
}

@media only screen and (max-width: 1160px) {
    .p-proud-illust02 {
        top: -6.5%;
    }
}

.p-proud-illust03 {
    left: 0;
    position: absolute;
    top: 52%;
    width: 20%;
}

@media only screen and (max-width: 1160px) {
    .p-proud-illust03 {
        top: 54%;
        width: 16%;
    }
}

.p-proud-illust04 {
    bottom: -14%;
    position: absolute;
    right: 0;
    width: 20%;
}

@media only screen and (max-width: 767px) {
    .p-proud-illust04 {
        bottom: -11rem;
        right: -1rem;
        width: 12.3rem;
    }
}

.p-contact {
    background: #2c2c2c;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

.p-contact .l-inner {
    background: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/img-footer.png) no-repeat right 70px bottom;
    background-size: 147px auto;
    padding: 70px 20px;
}

@media only screen and (max-width: 1160px) {
    .p-contact .l-inner {
        background-position: right 20px bottom;
        background-size: 120px auto;
    }
}

@media only screen and (max-width: 767px) {
    .p-contact .l-inner {
        background-position: right 1rem bottom;
        background-size: 7.5rem auto;
        padding: 6rem 20px;
    }
}

/*component -----------------------------------*/
.c-section-head {
    background-color: #ffea91;
    padding: 0 20px 60px 20px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-section-head {
        padding-bottom: 6rem;
    }
}

.c-section {
    padding: 70px 20px;
}

@media only screen and (max-width: 767px) {
    .c-section {
        padding: 6rem 20px;
    }
}

.c-ttl-top {
    font-family: "Zen Maru Gothic", serif;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: .01em;
    line-height: 1.9;
    padding: 30px 0;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-ttl-top {
        font-size: 2.2rem;
        padding: 3rem 0;
    }
}

.c-ttl-top span {
    background: linear-gradient(transparent 92%, #ffea91 8%);
    padding-bottom: 3px;
}

.c-ttl-section {
    font-family: "Zen Maru Gothic", serif;
    font-size: 35px;
    line-height: 1.4;
    margin-bottom: 50px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-ttl-section {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }
}

.c-ttl-contact {
    font-family: "Quicksand", sans-serif;
    font-size: 40px;
    letter-spacing: .22em;
    line-height: 1;
    margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .c-ttl-contact {
        font-size: 2.7rem;
        margin-bottom: 5rem;
    }
}

.c-lead {
    margin-bottom: 50px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-lead {
        margin-bottom: 4rem;
        text-align: left;
    }
}

.c-list-licence {
    display: grid;
    gap: 50px 34px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 1160px) {
    .c-list-licence {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .c-list-licence {
        gap: 3rem 2rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .c-list-licence > div:first-child .c-list-licence__ttl {
        letter-spacing: -.04em;
    }
}

.c-list-licence__ttl {
    border-bottom: 2px solid #ffcd00;
    border-top: 2px solid #ffcd00;
    font-family: "Zen Maru Gothic", serif;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 15px 0;
    position: relative;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-list-licence__ttl {
        align-items: center;
        display: flex;
        font-size: 1.6rem;
        height: 7.6rem;
        justify-content: center;
        letter-spacing: -.02em;
        line-height: 1.2;
        margin-bottom: 2rem;
        padding: 0;
    }
}

.c-list-licence__ttl::before {
    border-color: #ffcd00 transparent transparent transparent;
    border-style: solid;
    border-width: 11px 7.5px 0 7.5px;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
    width: 0;
}

.c-list-licence__ttl::after {
    border-color: #fff transparent transparent transparent;
    border-style: solid;
    border-width: 9px 6.5px 0 6.5px;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: calc(100% - 1px);
    transform: translateX(-50%);
    width: 0;
}

.c-list-licence__body {
    align-items: center;
    display: flex;
}

.c-list-licence__img {
    margin-right: 20px;
    width: 44%;
}

@media only screen and (max-width: 767px) {
    .c-list-licence__img {
        margin-right: 1.5rem;
        width: 7.5rem;
    }
}

.c-list-licence__num {
    font-family: "Zen Maru Gothic", serif;
    font-size: 36px;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .c-list-licence__num {
        font-size: 2.2rem;
    }
}

.c-list-licence__num > span {
    background: linear-gradient(transparent 85%, #ffce00 15%);
    line-height: 1;
    padding-bottom: 8px;
}

@media only screen and (max-width: 767px) {
    .c-list-licence__num > span {
        padding-bottom: .5rem;
    }
}

.c-list-licence__num em {
    font-family: "Quicksand", sans-serif;
    font-size: 60px;
    font-style: normal;
}

@media only screen and (max-width: 767px) {
    .c-list-licence__num em {
        font-size: 3.6rem;
    }
}

.__bgYellow {
    background-color: #ffce00;
}

.c-list-plan {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
    .c-list-plan {
        display: block;
    }
}

.c-list-plan > div {
    display: grid;
    gap: 0;
    grid-row: span 2;
    grid-template-rows: subgrid;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-list-plan > div {
        display: block;
    }

    .c-list-plan > div:not(:last-child) {
        margin-bottom: 4rem;
    }
}

.c-list-plan__num {
    left: 50%;
    position: absolute;
    top: -11px;
    transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
    .c-list-plan__num {
        top: -1.1rem;
    }
}

.c-list-plan__num span {
    background-color: #ffce00;
    border: 1px solid #000;
    border-radius: 20px;
    display: inline-block;
    font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    min-width: 80px;
    padding: 6px;
    text-align: center;
    vertical-align: top;
}

@media only screen and (max-width: 767px) {
    .c-list-plan__num span {
        font-size: 1.2rem;
        min-width: 7rem;
        padding: .6rem;
    }
}

.c-list-plan__ttl {
    background-color: #f8f8f8;
    border-radius: 5px 5px 0 0;
    padding: 40px 20px 20px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-list-plan__ttl {
        border-radius: .5rem .5rem 0 0;
        padding: 2.7rem 2rem 1.8rem;
    }
}

.c-list-plan__ttl h3 {
    font-family: "Zen Maru Gothic", serif;
    font-size: 21px;
    line-height: 1.5;
}

@media only screen and (max-width: 767px) {
    .c-list-plan__ttl h3 {
        font-size: 1.9rem;
    }
}

.c-list-plan__ttl._img {
    background: #f8f8f8 no-repeat 20px center;
    background-size: auto 80px;
}

@media only screen and (max-width: 880px) {
    .c-list-plan__ttl._img {
        background-size: auto 60px;
    }
}

@media only screen and (max-width: 767px) {
    .c-list-plan__ttl._img {
        background-position: 1rem center;
        background-size: auto 6.2rem;
    }
}

.c-list-plan__ttl._bg02 {
    background: #f8f8f8 url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/icon-plan02.svg) no-repeat 20px center;
    background-size: auto 83px;
}

@media only screen and (max-width: 880px) {
    .c-list-plan__ttl._bg02 {
        background-size: auto 63px;
    }
}

@media only screen and (max-width: 767px) {
    .c-list-plan__ttl._bg02 {
        background-position: 1rem center;
        background-size: auto 6.3rem;
    }
}

.c-list-plan__ttl._bg03 {
    background: #f8f8f8 url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/icon-plan03.svg) no-repeat 20px center;
    background-size: auto 80px;
}

@media only screen and (max-width: 880px) {
    .c-list-plan__ttl._bg03 {
        background-size: auto 50px;
    }
}

@media only screen and (max-width: 767px) {
    .c-list-plan__ttl._bg03 {
        background-position: 1rem center;
        background-size: auto 6.1rem;
    }
}

.c-list-plan__ttl._bg04 {
    background: #f8f8f8 url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/icon-plan04.svg) no-repeat 20px center;
    background-size: auto 75px;
}

@media only screen and (max-width: 880px) {
    .c-list-plan__ttl._bg04 {
        background-size: auto 45px;
    }
}

@media only screen and (max-width: 767px) {
    .c-list-plan__ttl._bg04 {
        background-position: 1rem center;
        background-size: auto 5.7rem;
    }
}

.c-list-plan__body {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    padding: 40px;
}

@media only screen and (max-width: 767px) {
    .c-list-plan__body {
        border-radius: 0 0 .5rem .5rem;
        padding: 2.5rem;
    }
}

.c-list-ex {
    display: grid;
    gap: 0 35px;
    grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 767px) {
    .c-list-ex {
        display: block;
    }
}

.c-list-ex > div {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .c-list-ex > div {
        display: block;
    }

    .c-list-ex > div:not(:last-child) {
        margin-bottom: 5rem;
    }
}

.c-list-ex__img {
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .c-list-ex__img {
        margin-bottom: 2rem;
    }
}

.c-list-ex__body {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding: 0 15px;
    word-break: break-all;
    color: #2c2c2c;
}

@media only screen and (max-width: 767px) {
    .c-list-ex__body {
        padding: 0 1rem;
        text-align: center;
    }
}

.c-list-ex__body a {
    text-decoration: none;
    color: #2c2c2c;
}

.c-table {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .c-table {
        font-size: 1.4rem;
    }
}

.c-table thead th {
    background-color: #ffea91;
    padding: 10px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .c-table thead th {
        padding: 1rem;
    }
}

.c-table thead th:first-child {
    width: 13%;
}

@media only screen and (max-width: 767px) {
    .c-table thead th:first-child {
        width: 24%;
    }
}

.c-table thead th:nth-child(2) {
    width: 10%;
}

@media only screen and (max-width: 767px) {
    .c-table thead th:nth-child(2) {
        width: 25%;
    }
}

.c-table tbody tr:nth-child(even) td {
    background-color: #f8f8f8;
}

.c-table td {
    background-color: #fff;
    padding: 10px;
}

@media only screen and (max-width: 767px) {
    .c-table td {
        padding: 1rem;
    }
}

.c-table .count {
    font-family: "Quicksand", sans-serif;
    text-align: center;
}

.c-btn-contact {
    background-color: #ffce00;
    border: 1px solid #000;
    border-radius: 50px;
    color: #000;
    display: inline-block;
    font-family: "Zen Maru Gothic", serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    min-width: 240px;
    padding: 17px;
    text-align: center;
    text-decoration: none;
    transition: .3s ease;
}

.c-btn-contact:hover {
    opacity: .7;
}

@media only screen and (max-width: 767px) {
    .c-btn-contact {
        font-size: 1.7rem;
        margin-bottom: 2rem;
        min-width: 20.5rem;
        padding: 1.4rem;
    }
}

.c-btn-contact img {
    margin-right: 10px;
    width: 24px;
}

@media only screen and (max-width: 767px) {
    .c-btn-contact img {
        margin-right: 1rem;
        width: 2rem;
    }
}

/*utility -----------------------------------*/
.u-icon-blank {
    background: url(https://7515824.fs1.hubspotusercontent-na1.net/hubfs/7515824/raw_assets/public/Original/infonic-corp/images/lp/icon-blank.svg) no-repeat right;
    background-size: 10px;
    display: inline-block;
    padding-right: 15px;
}

@media only screen and (max-width: 767px) {
    .u-icon-blank {
        background-size: 1.2rem;
        padding-right: 1.8rem;
    }
}

.u-txt-c {
    text-align: center;
}

.u-sp {
    display: none;
}

@media only screen and (max-width: 767px) {
    .u-sp {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .u-pc {
        display: none;
    }
}

/*animation -----------------------------------*/
.__fade {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.__fade.active {
    opacity: 1;
    transform: translateY(0);
}

.__move01 {
    opacity: 0;
    transform: translateY(-40px);
    transition: 1.5s linear(0, 1.32, .87, 1.05, .98, 1.01, 1, 1);
}

@media only screen and (max-width: 767px) {
    .__move01 {
        transition: 1.5s cubic-bezier(.68, -.6, .32, 1.6);
    }
}

.__move01.active {
    -webkit-animation: rumble .8s 1s ease 1;
            animation: rumble .8s 1s ease 1;
    opacity: 1;
    transform: translateY(0);
}

@keyframes rumble {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 2px) rotate(5deg);
    }

    65% {
        transform: translate(0, -2px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0);
    }
}

@-webkit-keyframes rumble {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 2px) rotate(5deg);
    }

    65% {
        transform: translate(0, -2px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0);
    }
}

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