@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@300;500;700;900&display=swap");

:root {
  --primary-color: #FF903E;
  --secondary-color: #FBA507;
  --primary-text-color: #141414;
  --secondary-text-color: #999;
  --primary-bg-color: #F4F4F4;
  --primary-font-size: min(1.4358vw, 17px);
  --primary-line-height: 1.9411;
  --content-width: min(100%, 1104px);
  --horizontal-padding: 40;
  --wrap-width: calc(500 + (var(--horizontal-padding) * 2)); /* これが key となる変数 */
  --primary-radius: 20px;
  --mobile-width: 375;
  --mobile-width-ratio: calc(100vw / var(--mobile-width));
}
@media screen and (max-width: 767px) {
  :root {
    --primary-font-size: calc(14 * var(--mobile-width-ratio));
    --primary-line-height: 1.8571;
    --horizontal-padding: 20;
    --primary-radius: 15px;
  }
}

/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 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
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  /* 1 */
  border: 1px solid WindowFrame;
  /* 1 */
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  letter-spacing: inherit;
  /* 2 */
  padding: 0.25em 0.375em;
  /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: no-repeat right center / 1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E");
}

/**
 * Change the inconsistent appearance in IE (opinionated).
 */
::-ms-expand {
  display: none;
}

/**
 * Correct the inconsistent appearance in IE (opinionated).
 */
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

/* settings */
/* hamburgers */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 16px 16px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.8;
}

.hamburger.is-active:hover {
  opacity: 0.8;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #333;
}

.hamburger-box {
  width: 42px;
  height: 22px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 42px;
  height: 2px;
  background-color: #333;
  border-radius: 0px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* elements */
html {
  font-size: calc(100vw / 750 * 10);
  height: 100%;
}

@media screen and (min-width: 768px) {
  html {
    font-size: calc(100vw / 768 * 6);
  }
}

@media screen and (min-width: 1280px) {
  html {
    font-size: 10px;
  }
}

body {
  font-size: 2.8em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333;
  height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.6em;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .5s;
}

a[href^='tel:'] {
  pointer-events: none;
}

a:hover {
  color: #fd5c01;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  margin: 0;
  line-height: 1.3;
  font-weight: normal;
}

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

figure {
  margin: 0;
}

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

dl {
  margin: 0;
}

dl dd {
  margin-left: 0;
}

p {
  margin: 0;
}

hr {
  height: 0px;
  border: none;
  border-top: 1px solid #b9b9b9;
  border-top-width: 1px;
  margin-top: 4em;
  margin-bottom: 4em;
}

/* common */
.container {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767.98px) {
  .container {
    max-width: 100%;
    padding-left: calc(30em/20);
    padding-right: calc(30em/20);
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: calc(1280em / 16);
    padding-left: calc(30em/16);
    padding-right: calc(30em/16);
  }
}

@media screen and (min-width: 768px) {
  .main .container {
    max-width: calc(1140em / 16);
    padding-left: calc(30em/16);
    padding-right: calc(30em/16);
  }
}

/* hamburgers.css Override */
.hamburger {
  outline: none;
  /* bugFix
   * https://github.com/jonsuh/hamburgers/issues/66#issuecomment-442695022
   */
  line-height: 1;
}

.hamburger-box {
  /* bugFix
   * https://github.com/jonsuh/hamburgers/issues/66#issuecomment-442695022
   */
  display: block;
}

/* common buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding: .5em 1em;
  border-radius: 3em;
  border: 1px solid;
  cursor: pointer;
}

.btn-head {
  font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
  .btn-head {
    font-size: 1.2rem;
    width: calc(190em/12);
    height: calc(30em/12);
  }
}

.btn-head:hover {
  color: #fd5c01;
}

.btn-back {
  align-items: baseline;
  font-size: 3.2rem;
  width: 100%;
  border-width: 2px;
  border-color: #707070;
  padding-top: .7em;
  height: calc(90em/32);
}

@media screen and (max-width: 767.98px) {
  .btn-back {
    margin-top: 1.5em;
  }
}

@media screen and (min-width: 768px) {
  .btn-back {
    font-size: 2rem;
    margin-right: 1.5em;
    width: calc(325em/20);
    height: calc(54em/20);
  }
}

.btn-back small {
  font-size: 2.8rem;
  margin-right: .5em;
}

@media screen and (min-width: 768px) {
  .btn-back small {
    font-size: 1.5rem;
  }
}

.btn-back:hover {
  border-color: inherit;
}

.btn-orange {
  background: transparent linear-gradient(98deg, #FB6B02 0%, #FBA507 50%, #FB6B02 100%) 100% 0% no-repeat padding-box;
  background-size: 200% auto;
  border: 0;
  color: #fff;
  box-shadow: 0px 3px 20px #00000029;
  font-size: 3.8rem;
  width: 100%;
  transition: .5s;
  align-items: baseline;
  font-weight: bold;
  padding-top: .7em;
  height: calc(90em/38);
}

@media screen and (min-width: 768px) {
  .btn-orange {
    width: calc(400em/22);
    height: calc(54em/22);
    font-size: 2.2rem;
  }
}

.btn-orange small {
  font-size: 3.2rem;
  margin-right: .5em;
}

@media screen and (min-width: 768px) {
  .btn-orange small {
    font-size: 1.6rem;
  }
}

.btn-orange:hover {
  color: #fff;
  background-position: 0% 0%;
  box-shadow: 0px 3px 20px #00000060;
}

@media screen and (max-width: 767.98px) {
  .hidden-sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}

/* header */
.header {
  background-color: rgba(18, 18, 18, 0.85);
  color: #fff;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(70em/16);
}

@media screen and (max-width: 767.98px) {
  .header .nav-global {
    display: none;
  }
}

.header .nav-global ol {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .header .nav-global ol {
    font-size: 1.4rem;
  }
}

.header .nav-global ol li+li {
  margin-left: 1em;
}

.header .nav-global ol a {
  position: relative;
}

.header .nav-global ol a::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-left: 0;
  border-top: 0;
  -webkit-transform: translate(-50%) rotate(45deg);
  transform: translate(-50%) rotate(45deg);
  opacity: 0;
  transition: .5s;
}

.header .nav-global ol a:hover {
  color: #fff;
}

.header .nav-global ol a:hover::after {
  opacity: 1;
}

.header .logo img {
  width: calc(95em/16);
}

/* footer */
.footer {
  background-color: #26354d;
  color: #fff;
  text-align: center;
}

.footer .container {
  padding-top: 3em;
  padding-bottom: 6.5em;
}

@media screen and (min-width: 768px) {
  .footer .nav-footer li {
    font-size: 1.5rem;
  }
}

.footer .nav-footer a {
  text-decoration: underline;
}

.footer .copyright {
  margin-top: 2em;
  font-size: 2.2rem;
}

@media screen and (min-width: 768px) {
  .footer .copyright {
    font-size: 1.3rem;
  }
}

/* LP */
.lp .header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.lp .btn-orange {
  font-size: 2.0rem;
  width: calc(320em/22);
  height: calc(64em/22);
  padding-top: .86em;
}

@media screen and (min-width: 768px) {
  .lp .btn-orange {
    font-size: 1.4rem;
    width: calc(190em/14);
    height: calc(40em/14);
  }
}

.sec-title {
  font-weight: bold;
  color: #26354d;
  text-align: center;
  font-size: 4.6rem;
}

@media screen and (min-width: 768px) {
  .sec-title {
    font-size: 3.4rem;
  }
}

.sec-title small {
  font-weight: normal;
  font-size: 72%;
}

@media screen and (min-width: 768px) {
  .sec-title small {
    font-size: 2rem;
  }
}

.sec-title-contact {
  color: #fff;
}

.sec06 {
  background-color: #ededed;
}

@media screen and (min-width: 768px) {
  .sec09 .container {
    height: calc(190em/16);
    padding-top: 1.8em;
  }
}

.sec09 .sec-title {
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .sec09 .sec-title {
    font-size: 1.8rem;
    font-weight: 500;
  }
}

.sec09 .sec-title small {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .sec09 .sec-title small {
    font-size: 1.8rem;
  }
}

.sec09 .contact-tel {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sec09 .contact-tel {
    margin-top: .5em;
  }
}

@media screen and (min-width: 768px) {
  .sec09 .contact-tel-num {
    font-size: 3rem;
    font-family: roboto, sans-serif;
    color: #fd5c01;
    font-weight: 700;
  }
}

@media screen and (min-width: 768px) {
  .sec09 .contact-tel-hour {
    font-size: 1.6rem;
    line-height: 1;
  }
}

.sec10 {
  background-color: #ededed;
  color: #999;
}

@media screen and (min-width: 768px) {
  .sec10 .container {
    height: calc(180em/16);
    padding-top: 1.7em;
  }
}

.sec10 p {
  font-size: 1.4rem;
  line-height: 1.8;
}

.sec-contact {
  background-image: url(../img/contact_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.sec-contact .container {
  height: calc(460em/28);
  padding-top: 3em;
}

@media screen and (min-width: 768px) {
  .sec-contact .container {
    height: calc(300em/16);
  }
}

.sec-contact .sec-title small {
  font-size: 2.9rem;
}

@media screen and (min-width: 768px) {
  .sec-contact .sec-title small {
    font-size: 2.4rem;
  }
}

.button-contact {
  text-align: center;
  margin-top: 2em;
}

.button-contact .btn-orange {
  font-size: 3.2rem;
}

@media screen and (min-width: 768px) {
  .button-contact .btn-orange {
    font-size: 2rem;
    padding-top: .9em;
    width: calc(320em/20);
    height: calc(60em/20);
  }
}

.main-visual {
  /* Slick 調整用 */
}

.main-visual .slide-item {
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}

.main-visual .slide-item.item01 {
  background-image: url(../img/main-v_01.png);
}

.main-visual .slide-item.item02 {
  background-image: url(../img/main-v_02.png);
}

.main-visual .slide-item.item02 .mv-title .en {
  line-height: .91;
}

@media screen and (min-width: 768px) {
  .main-visual .slide-item.item02 .mv-title .en {
    font-size: 4rem;
    margin-top: -.12em;
  }
}

.main-visual .slide-item.item02 .mv-title .en::after {
  height: 60px;
}

@media screen and (min-width: 768px) {
  .main-visual .slide-item.item02 .mv-title .en::after {
    height: 100px;
  }
}

.main-visual .slide-item.item02 .mv-title .ja {
  margin-top: 1.08em;
}

.main-visual .slide-item.item03 {
  background-image: url(../img/main-v_03.png);
}

.main-visual .container {
  height: calc(640em/16);
  max-width: calc(1140em / 16);
  padding-left: calc(30em/16);
  padding-right: calc(30em/16);
  padding-top: 7.5em;
}

@media screen and (min-width: 768px) {
  .main-visual .container {
    padding-top: 9.5em;
  }
}

.main-visual .mv-title {
  color: #fff;
  line-height: 1;
  text-shadow: 0px 0px 20px #1D283C66;
}

.main-visual .mv-title .en {
  display: inline-block;
  font-family: roboto, sans-serif;
  font-weight: 900;
  position: relative;
  z-index: 1;
  font-size: 5.4rem;
}

@media screen and (min-width: 768px) {
  .main-visual .mv-title .en {
    font-size: 5.4rem;
  }
}

.main-visual .mv-title .en::after {
  content: '';
  width: 1500px;
  height: 50px;
  position: absolute;
  top: 50%;
  background: transparent linear-gradient(270deg, #FF4E00 0%, #FB6B02 100%) 0% 0% no-repeat padding-box;
  right: 0;
  -webkit-transform: translate(3%, -50%) skew(-30deg);
  transform: translate(3%, -50%) skew(-30deg);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .main-visual .mv-title .en::after {
    height: 80px;
  }
}

.main-visual .mv-title .ja {
  display: block;
  font-weight: bold;
  margin-top: 2.2em;
}

@media screen and (min-width: 768px) {
  .main-visual .mv-title .ja {
    font-size: 3.4rem;
    margin-top: 1.2em;
  }
}

.main-visual .mv-sub-title {
  color: #fff;
  letter-spacing: calc(5.4em/16);
  margin-top: 5em;
}

@media screen and (min-width: 768px) {
  .main-visual .mv-sub-title {
    font-size: 1.8rem;
    margin-top: 4em;
  }
}

.main-visual .list-product-icon {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .main-visual .list-product-icon {
    width: 50%;
  }
}

.main-visual .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.main-visual .slick-dots {
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .main-visual .slick-dots {
    bottom: auto;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    width: calc(640em/16);
    right: 0;
  }
}

.scroll {
  color: #fff;
  text-align: right;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  padding-right: 1em;
  right: 0;
  height: 29px;
  z-index: 1;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .scroll {
    width: calc(200em/16);
  }
}

@media screen and (min-width: 768px) {
  .scroll .scroll-txt {
    font-size: 1.2rem;
  }
}

.scroll .scroll-line {
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 1px;
  margin-left: .5em;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .scroll .scroll-line {
    width: 100px;
  }
}

.scroll .scroll-line::before {
  position: absolute;
  top: 0;
  left: -80%;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.list-product-icon {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767.98px) {
  .list-product-icon {
    justify-content: space-between;
  }
}

.list-product-icon li {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(150em/14);
  height: calc(50em/14);
  margin-bottom: calc(20em/14);
}

@media screen and (min-width: 768px) {
  .list-product-icon li {
    width: calc(150em/16);
    height: calc(50em/16);
    margin-right: calc(20em/16);
    margin-bottom: calc(20em/16);
  }
}

.sec01 {
  background-image: url(../img/bg.svg);
  background-position: 50% 120%;
  background-repeat: no-repeat;
  background-size: calc(1280em/16);
}

.sec01 .container {
  padding-top: 2em;
  padding-bottom: 4.5em;
}

.sec01 .row-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3em;
}

@media screen and (min-width: 768px) {

  .sec01 .feat01,
  .sec01 .feat03 {
    top: -13em;
  }
}

.feat {
  background-color: #fff;
  box-shadow: 0px 3px 20px #00000029;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .feat+.feat {
    margin-top: 2em;
  }
}

@media screen and (min-width: 768px) {
  .feat {
    width: calc(320em/16);
  }
}

.card dt {
  background: transparent linear-gradient(119deg, #FBA507 0%, #FB6B02 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5em .5em;
}

.card dd {
  padding: 1em 1.5em;
}

@media screen and (min-width: 768px) {
  .card dd {
    font-size: 1.5rem;
  }
}

.card .num {
  font-family: 'roboto', sans-serif;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .card .num {
    font-size: 3.6rem;
  }
}

.card .card-title {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .card .card-title {
    font-size: 2rem;
  }
}

.sec02 .sub-sec01 {
  text-align: center;
  background-image: url(../img/bg01.svg);
  background-position: 50% 3.8em;
  background-repeat: no-repeat;
  background-size: auto 90%;
}

@media screen and (min-width: 768px) {
  .sec02 .sub-sec01 {
    background-position: 50% 0;
    background-size: auto auto;
  }
}

.sec02 .sub-sec01 .container {
  padding-top: 0em;
  padding-bottom: 2em;
}

.sec02 .sub-sec01 p {
  margin-top: 1.5em;
}

@media screen and (min-width: 768px) {
  .sec02 .sub-sec01 p {
    margin-top: 2em;
  }
}

.sec02 .sub-sec01 h3 {
  margin-top: 2em;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .sec02 .sub-sec01 h3 {
    margin-top: 3.6em;
    font-size: 2rem;
  }
}

.sec02 .sub-sec01 figure {
  margin-top: 3em;
  padding-top: 1.9em;
  background: rgba(255, 255, 255, 0.85) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #00000029;
}

@media screen and (min-width: 768px) {
  .sec02 .sub-sec01 figure {
    margin-top: 4em;
    width: calc(1000em/16);
    height: calc(580em/16);
  }
}

.sec02 .sub-sec02 {
  background-color: #ededed;
}

.sec02 .sub-sec02 .container {
  padding-top: 2em;
  padding-bottom: 2em;
}

.sec02 .sub-sec02 .row-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-item {
  width: 48%;
  margin-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.product-item figure {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  padding: 1em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .product-item figure {
    width: calc(160em/16);
    height: calc(64em/16);
    flex-shrink: 0;
    flex-grow: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .product-item dl {
    margin-top: .5em;
  }
}

@media screen and (min-width: 768px) {
  .product-item dl {
    width: 65%;
  }
}

.product-item dl dt {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .product-item dl dt {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .product-item dl dd {
    font-size: 1.4rem;
  }
}

.sec03 {
  background-image: url(../img/bg04.svg);
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .sec03 {
    background-size: calc(1280em/16) auto;
    background-position: 50% 0%;
  }
}

.sec03 .container {
  padding-top: 2em;
  padding-bottom: 4.5em;
}

.sec03 p {
  margin-top: 2em;
}

.sec03 .row-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3em;
}

.sec04 {
  background-image: url(../img/bg.svg);
  background-position: 50% 0%;
  background-repeat: no-repeat;
  background-size: calc(1280em/16);
}

.sec04 .container {
  padding-top: 4em;
  padding-bottom: 4em;
}

.sec04 p {
  margin-top: 2em;
  text-align: center;
}

.sec04 .row-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3em;
}

.flow {
  background-color: #fff;
  box-shadow: 0px 3px 20px #00000029;
  position: relative;
}

.flow+.flow {
  position: relative;
}

.flow+.flow::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
}

@media screen and (max-width: 767.98px) {
  .flow+.flow::before {
    left: 50%;
    top: -18px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-width: 10px 10px 0 10px;
    border-color: #fd5d01 transparent transparent transparent;
  }
}

@media screen and (min-width: 768px) {
  .flow+.flow::before {
    left: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fd5d01;
  }
}

@media screen and (max-width: 767.98px) {
  .flow {
    width: 100%;
  }

  .flow+.flow {
    margin-top: 2em;
  }
}

@media screen and (min-width: 768px) {
  .flow {
    width: calc(192em/16);
  }
}

.card-flow dt {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-flow dd {
  padding: 1em 1.3em;
}

@media screen and (min-width: 768px) {
  .card-flow dd {
    font-size: 1.5rem;
  }
}

.card-flow figure {
  position: relative;
}

.card-flow .card-title {
  position: absolute;
  text-align: center;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: .5em 0;
}

@media screen and (min-width: 768px) {
  .card-flow .card-title {
    font-size: 2rem;
  }
}

.card-flow ul li {
  text-indent: -1.07em;
  padding-left: 1.07em;
}

.card-flow ul li::before {
  content: '✓';
  margin-right: .4em;
  color: #fe5b01;
}

.sec05 {
  background-image: url(../img/bg02.svg);
  background-repeat: no-repeat;
}

@media screen and (max-width: 767.98px) {
  .sec05 {
    background-size: auto 100%;
    background-position: 50% 2.8em;
  }
}

@media screen and (min-width: 768px) {
  .sec05 {
    background-size: calc(2000em/16) auto;
    background-position: 50% 0%;
  }
}

.sec05 .container {
  padding-top: 2em;
  padding-bottom: 4.5em;
}

.sec05 p {
  margin-top: 2em;
  text-align: center;
}

.sec05 h3 {
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin-top: 3.6em;
  font-size: 3.8rem;
}

@media screen and (min-width: 768px) {
  .sec05 h3 {
    font-size: 2rem;
  }
}

.sec05 h3 span {
  font-size: 4.8rem;
}

@media screen and (min-width: 768px) {
  .sec05 h3 span {
    font-size: 3.6rem;
  }
}

.sec05 .carousel {
  margin-top: 4em;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .sec05 .carousel {
    width: calc(640em/16);
    margin-left: calc(300em/16);
  }
}

.sec05 .kome {
  color: #fff;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .sec05 .kome {
    margin-left: calc(300em/16);
  }
}

.carousel .slide-item {
  border: 1px solid;
}

.carousel h4 {
  text-align: center;
  font-family: 'roboto', sans-serif;
  font-weight: bold;
  color: #fd5c01;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 5.2rem;
}

@media screen and (min-width: 768px) {
  .carousel h4 {
    font-size: 4.2rem;
  }
}

.carousel h4 small {
  font-size: 3.4rem;
}

@media screen and (min-width: 768px) {
  .carousel h4 small {
    font-size: 2.4rem;
  }
}

.carousel dl dt {
  border-top: 1px solid;
  padding: .5em 0 0 1em;
  font-size: 3.6rem;
}

@media screen and (min-width: 768px) {
  .carousel dl dt {
    font-size: 1.8rem;
    font-weight: 500;
  }
}

.carousel dl dd {
  padding: 0 1em 1em 1em;
}

@media screen and (min-width: 768px) {
  .carousel dl dd {
    font-size: 1.6rem;
  }
}

.carousel .slick-prev.slick-disabled::before,
.carousel .slick-next.slick-disabled::before {
  visibility: hidden;
}

.carousel .slick-next {
  right: -15px;
}

@media screen and (min-width: 768px) {
  .carousel .slick-next {
    right: -45px;
  }
}

.carousel .slick-prev {
  z-index: 99;
  left: -15px;
}

@media screen and (min-width: 768px) {
  .carousel .slick-prev {
    left: -45px;
  }
}

.sec06 .container {
  padding-top: 4em;
  padding-bottom: 4em;
}

@media screen and (min-width: 768px) {
  .sec06 .container {
    padding-top: 5.8em;
    padding-bottom: 5.8em;
  }
}

.sec06 h2+p {
  margin-top: 2em;
  text-align: center;
}

.sec06 .row-flex {
  margin-top: 3em;
}

@media screen and (min-width: 768px) {
  .sec06 .row-flex {
    display: flex;
    justify-content: space-between;
  }
}

.sec06 .row-flex figure {
  box-shadow: 0px 3px 20px #00000029;
}

@media screen and (min-width: 768px) {
  .sec06 .row-flex .col-pic {
    width: calc(540em/16);
  }
}

@media screen and (min-width: 768px) {
  .sec06 .row-flex .col-txt {
    width: 45%;
  }
}

@media screen and (max-width: 767.98px) {
  .sec06 .row-flex .col-txt {
    margin-top: 1em;
  }
}

.sec06 .row-flex .col-txt h4 {
  font-size: 4rem;
  font-weight: bold;
  margin-top: .5em;
  color: #26354d;
}

@media screen and (min-width: 768px) {
  .sec06 .row-flex .col-txt h4 {
    font-size: 2.4rem;
  }
}

.sec06 .row-flex .col-txt p {
  margin-top: 1em;
}

.sec06 .button-example {
  margin-top: 2em;
}

@media screen and (max-width: 767.98px) {
  .sec06 .button-example {
    text-align: center;
  }
}

.sec06 .button-example .btn {
  width: calc(400em/28);
  color: #fd5c01;
}

@media screen and (min-width: 768px) {
  .sec06 .button-example .btn {
    width: calc(240em/16);
    height: calc(44em/16);
  }
}

.sec07 {
  background-image: url(../img/bg04.svg);
  background-repeat: no-repeat;
  background-size: calc(1280em/16) auto;
  background-position: 50% 0%;
}

.sec07 .container {
  padding-top: 4em;
  padding-bottom: 4em;
}

@media screen and (min-width: 768px) {
  .sec07 .container {
    padding-top: 5.8em;
    padding-bottom: 5.8em;
  }
}

.sec07 h2+p {
  margin-top: 2em;
  text-align: center;
}

.sec07 .engineer {
  box-shadow: 0px 3px 20px #00000029;
  margin-top: 3em;
}

.sec07 .engineer+.engineer {
  margin-top: 3em;
}

@media screen and (min-width: 768px) {
  .sec07 .engineer .row-flex {
    display: flex;
    justify-content: space-between;
  }

  .sec07 .engineer .row-flex.reverse {
    flex-flow: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .sec07 .engineer .col-pic {
    width: calc(420em/16);
  }
}

.sec07 .engineer .col-txt {
  padding: 1.5em;
}

@media screen and (min-width: 768px) {
  .sec07 .engineer .col-txt {
    width: 61%;
  }
}

.sec07 .engineer dl .row+.row {
  margin-top: .5em;
}

.sec07 .engineer dl dt {
  color: #26354D;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .sec07 .engineer dl .row {
    display: flex;
    justify-content: space-between;
  }

  .sec07 .engineer dl dt {
    width: 23%;
    font-size: 1.5rem;
  }

  .sec07 .engineer dl dd {
    width: 77%;
    font-size: 1.4rem;
  }
}

.sec08 {
  background-image: url(../img/bg03.svg);
  background-repeat: no-repeat;
  background-position: 50% 0;
}

@media screen and (max-width: 767.98px) {
  .sec08 {
    background-size: auto 86%;
  }
}

@media screen and (min-width: 768px) {
  .sec08 {
    background-size: calc(2000em/16) auto;
  }
}

.sec08 .container {
  padding-top: 2em;
  padding-bottom: 8.5em;
  color: #fff;
}

.sec08 .sec-title {
  color: #fff;
}

.sec08 dl {
  margin: 3em auto auto auto;
}

@media screen and (min-width: 768px) {
  .sec08 dl {
    width: 50%;
  }
}

.sec08 dl .row {
  display: flex;
  justify-content: space-between;
}

.sec08 dl .row+.row {
  margin-top: 1em;
}

.sec08 dl dt {
  width: 28%;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .sec08 dl dt {
    font-size: 1.5rem;
  }
}

.sec08 dl dd {
  width: 68%;
}

@media screen and (min-width: 768px) {
  .sec08 dl dd {
    font-size: 1.4rem;
  }
}

.sec08 .button {
  margin-top: 5em;
  text-align: center;
}

.sec08 .button .btn {
  width: calc(400em/28);
}

@media screen and (min-width: 768px) {
  .sec08 .button .btn {
    width: calc(240em/16);
    height: calc(50em/16);
  }
}

/* form */
.sec-headding {
  background-image: url(../img/bg.svg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: calc(1280em/16);
}

@media screen and (max-width: 767.98px) {
  .sec-headding {
    background-position: 16% 1.1em;
    background-size: 122% auto;
  }
}

.sec-headding .container {
  padding-top: 3.7em;
  padding-bottom: 2.7em;
}

@media screen and (min-width: 768px) {
  .sec-headding .container {
    min-height: calc(260em /16);
  }
}

.sec-headding h1 {
  color: #26354d;
  font-size: 4.4rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sec-headding h1 {
    font-size: 3.4rem;
  }
}

.sec-headding .txt-headding {
  text-align: center;
  margin-top: 2em;
  line-height: 2;
}

.sec-headding .txt-headding a {
  color: #fd5c01;
}

.sec-main {
  background-color: #ededed;
}

.sec-main .container {
  padding-top: 3em;
  padding-bottom: 4.5em;
}

.tbl-inputs {
  border: 1px solid #d0d0d0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .tbl-inputs {
    display: flex;
  }
}

.tbl-inputs>dt {
  background-color: #4e5869;
  color: #fff;
  padding: 1em;
  font-size: 3rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .tbl-inputs>dt {
    font-size: 2rem;
    width: calc(320em/20);
    flex-shrink: 0;
  }
}

.tbl-inputs>dd {
  background-color: #fff;
  padding: 1.8em;
}

@media screen and (min-width: 768px) {
  .tbl-inputs>dd {
    flex-grow: 1;
  }
}

.tbl-inputs+.tbl-inputs {
  margin-top: 2.5em;
}

.list-inputs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.list-inputs li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.list-inputs li.other {
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 0;
  width: 100%;
}

.list-inputs li.other label {
  flex-shrink: 1;
  flex-grow: 0;
  margin-right: 1em;
  width: 5em;
}

.list-inputs li.other input[type=text] {
  flex-grow: 1;
  flex-shrink: 0;
  width: 70%;
}

@media screen and (min-width: 768px) {
  .list-item {
    display: flex;
  }
}

.list-item dt {
  font-weight: bold;
  color: #26354d;
  display: flex;
}

@media screen and (min-width: 768px) {
  .list-item dt {
    width: 9em;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .list-item dd {
    margin-top: 1em;
  }
}

.list-item+.list-item {
  margin-top: 1em;
  padding-top: 2em;
  border-top: 1px solid #dedede;
}

@media screen and (min-width: 768px) {
  .list-item.list-info {
    flex-wrap: wrap;
  }
}

.list-item.list-info .row {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .list-item.list-info .row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
  }
}

.list-item.list-info .row+.row {
  margin-top: 1.2em;
}

.list-item.list-info .row dt {
  width: 9em;
}

.list-item.list-info .row dd {
  flex-grow: 1;
}

@media screen and (max-width: 767.98px) {
  .list-item.list-info .row dd {
    margin-top: .5em;
  }
}

label {
  margin-right: 1.2em;
}

@media screen and (min-width: 768px) {
  label {
    font-size: 1.6rem;
    margin-right: 2.5em;
  }
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  border-radius: 3px;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  border-color: #ccc;
  color: #999;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder {
  border-color: #ccc;
  color: #999;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  border-color: #ccc;
  color: #999;
}

input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  border-color: #ccc;
  color: #999;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  border-color: #ccc;
  color: #999;
}

@media screen and (min-width: 768px) {

  input[type=text]::-webkit-input-placeholder,
  input[type=email]::-webkit-input-placeholder,
  input[type=tel]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    font-size: 1.5rem;
  }

  input[type=text]::-moz-placeholder,
  input[type=email]::-moz-placeholder,
  input[type=tel]::-moz-placeholder,
  textarea::-moz-placeholder {
    font-size: 1.5rem;
  }

  input[type=text]:-ms-input-placeholder,
  input[type=email]:-ms-input-placeholder,
  input[type=tel]:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    font-size: 1.5rem;
  }

  input[type=text]::-ms-input-placeholder,
  input[type=email]::-ms-input-placeholder,
  input[type=tel]::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    font-size: 1.5rem;
  }

  input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=tel]::placeholder,
  textarea::placeholder {
    font-size: 1.5rem;
  }
}

/* custom checkbox radio */
input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  vertical-align: -1rem;
  transition: .3s;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: .4rem;
  outline: none;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {

  input[type=checkbox],
  input[type=radio] {
    vertical-align: -0.8rem;
  }
}

/* Checkbox */
input[type=checkbox]:before,
input[type=checkbox]:after {
  position: absolute;
  content: "";
  background: #fff;
  transition: .3s;
}

input[type=checkbox]:before {
  left: 2px;
  top: 6px;
  width: 0;
  height: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type=checkbox]:after {
  right: 9px;
  bottom: 3px;
  width: 2px;
  height: 0;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  transition-delay: .1s;
}

input[type=checkbox]:checked:before {
  left: 1px;
  top: 10px;
  width: 6px;
  height: 2px;
}

input[type=checkbox]:checked:after {
  right: 5px;
  bottom: 1px;
  width: 2px;
  height: 14px;
}

input[type=checkbox]:indeterminate:before,
input[type=checkbox]:indeterminate:after {
  width: 7px;
  height: 2px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

input[type=checkbox]:indeterminate:before {
  left: 1px;
  top: 7px;
}

input[type=checkbox]:indeterminate:after {
  right: 1px;
  bottom: 7px;
}

/* Radio */
input[type=radio] {
  border-radius: 50%;
}

input[type=radio]:checked:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

input[type=radio]:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 3px;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: .3s;
}

input[type=checkbox],
input[type=radio] {
  border: 2px solid #b6b6b6;
}

input[type=checkbox]:checked,
input[type=checkbox]:indeterminate,
input[type=radio]:checked:before {
  background: #fc5e01;
  border-color: #fc5e01;
}

.text-area {
  width: 100%;
  height: 6em;
}

.privacy {
  border: 1px solid #4e5869;
  padding: 1em;
  margin-top: 2.5em;
}

.privacy h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #26354d;
}

@media screen and (min-width: 768px) {
  .privacy h2 {
    font-size: 2rem;
  }
}

.privacy p {
  font-size: 2.6rem;
  margin-top: .5em;
}

@media screen and (min-width: 768px) {
  .privacy p {
    font-size: 1.5rem;
  }
}

.privacy a {
  color: #fd5c01;
}

.privacy a:hover {
  text-decoration: underline;
}

.privacy a.ico-ext:after {
  width: calc(15em/15);
  height: calc(15em/15);
}

.ico-ext {
  display: inline-flex;
  align-items: center;
  margin-right: .4em;
}

.ico-ext::after {
  content: '';
  width: 1em;
  height: 1em;
  background-image: url(../img/ico_ext.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.button-form {
  margin-top: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767.98px) {
  .button-form {
    flex-wrap: wrap;
    flex-flow: column-reverse;
  }
}

.must {
  background-color: #ff0000;
  color: #fff;
  display: inline-block;
  margin-left: .6em;
  font-size: 2.6rem;
  padding: 0 .4em;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .must {
    font-size: 1.3rem;
  }
}

.txt-error,
.alert {
  color: #ff0f37;
  font-size: 2.4rem;
  margin-top: .1em;
}

@media screen and (min-width: 768px) {

  .txt-error,
  .alert {
    font-size: 1.5rem;
    width: 100%;
  }
}

.msg-error {
  border: 1px solid #ff0f37;
  color: #ff0f37;
  background-color: #ffebed;
  text-align: center;
  margin-top: 3.5em;
  padding: 1.2em 1em;
  border-radius: 3px;
}

.invalid {
  border-color: #ff0f37;
  background-color: #ffebed;
}

.g-recaptcha {
  margin-top: 1.5em;
}

@media screen and (max-width: 767.98px) {
  .g-recaptcha {
    -webkit-transform: scale(0.93);
    transform: scale(0.93);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

.msg-thanks {
  text-align: center;
  margin-top: 4em;
  margin-bottom: 6em;
}

.page-contact-confirm .list-inputs {
  display: block;
}

@media screen and (min-width: 768px) {
  .page-contact-confirm .btn-back {
    width: calc(280em/22);
  }
}

@media screen and (min-width: 768px) {
  .page-contact-confirm .btn-orange {
    width: calc(300em/22);
  }
}

.contact {
  position: relative;
}
.common_btn_wrap {
  position: relative;
  display: inline-block;
}
.common_btn {
  position: relative;
  display: inline-block;
  width: min(calc(420 / var(--wrap-width)) * 100vw, 420px);
  color: #fff;
  font-size: min(calc(30 / var(--wrap-width)) * 100vw, 30px);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: #FF1A27;
  border-radius: 9999px;
  line-height: 2.533em;
  letter-spacing: 0.1em;
  overflow: hidden;
  z-index: 1;
}
.common_btn.contact {
  background: #0054C7;
}
.common_btn.large {
  width: min(calc(400 / var(--wrap-width)) * 100vw, 400px);
  font-size: min(calc(25 / var(--wrap-width)) * 100vw, 25px);
  line-height: calc(70 / 25 * 1em);
}

/* common_btn::before (グラデーション背景) のスタイル */
.common_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(60deg, #FF1A27 0%, #FF1A27 50%, #FF6000 75%, #FBA507 100%); /* styles.css からコピー */
  z-index: -1;
  transition: left .4s ease-in-out;
}

/* common_btn.contact::before のスタイル */
.common_btn.contact::before {
  background: linear-gradient(60deg, #0054C7 0%, #0054C7 50%,#0091AC 75%, #00CFEC 100%); /* styles.css からコピー */
}

/* common_btn::after (白い枠線) のスタイル */
.common_btn::after {
  content: '';
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: calc(100% - 0.4em);
  height: calc(100% - 0.4em);
  border: 1px solid #fff;
  border-radius: 9999px;
  pointer-events: none;
}

/* common_btn .icon (矢印アイコン) のスタイル */
.common_btn .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1em;
  width: calc(18 / 30 * 1em); /* styles.css からコピー */
  aspect-ratio: 1 / 1;
  background-image: url('data:image/svg+xml;utf8,<svg id="btn_sp" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><circle id="d_1" data-name="d_1" cx="9" cy="9" r="9" fill="%23fff"/><path id="p_777" data-name="p_777" d="M-12732.982,1443.863l5.539,4.486-5.539,4.514" transform="translate(12739.482 -1439.363)" fill="none" stroke="%23ff903e" stroke-linecap="round" stroke-width="2"/></svg>'); /* styles.css からコピー */
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image .2s ease-in-out 0s;
  transform: translateY(-50%);
  pointer-events: none;
}

/* common_btn.large .icon のスタイル */
.common_btn.large .icon {
  width: calc(25 / 38 * 1em); /* styles.css からコピー */
}

/* common_btn.contact .icon のスタイル */
.common_btn.contact .icon {
  background-image: url('data:image/svg+xml;utf8,<svg id="btn_sp" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><circle id="d_1" data-name="d_1" cx="9" cy="9" r="9" fill="%23fff"/><path id="p_777" data-name="p_777" d="M-12732.982,1443.863l5.539,4.486-5.539,4.514" transform="translate(12739.482 -1439.363)" fill="none" stroke="%2300CFEC" stroke-linecap="round" stroke-width="2"/></svg>'); /* styles.css からコピー */
}

/* ホバー時のアイコンのスタイル */
@media (hover: hover) {
  .common_btn:hover .icon {
    background-image: url('data:image/svg+xml;utf8,<svg id="btn_sp" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><circle id="d_1" data-name="d_1" cx="9" cy="9" r="9" fill="%23fff"/><path id="p_777" data-name="p_777" d="M-12732.982,1443.863l5.539,4.486-5.539,4.514" transform="translate(12739.482 -1439.363)" fill="none" stroke="%23FF1A27" stroke-linecap="round" stroke-width="2"/></svg>'); /* styles.css からコピー */
    transition: background-image .2s ease-in-out 0s;
  }
  .common_btn.contact:hover .icon {
    background-image: url('data:image/svg+xml;utf8,<svg id="btn_sp" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><circle id="d_1" data-name="d_1" cx="9" cy="9" r="9" fill="%23fff"/><path id="p_777" data-name="p_777" d="M-12732.982,1443.863l5.539,4.486-5.539,4.514" transform="translate(12739.482 -1439.363)" fill="none" stroke="%230054C7" stroke-linecap="round" stroke-width="2"/></svg>'); /* styles.css からコピー */
  }
}

@media screen and (max-width: 767px) {
  .common_btn,
  .common_btn.large {
    position: relative;
    width: calc(270 * var(--mobile-width-ratio));
    font-size: calc(18 * var(--mobile-width-ratio));
    line-height: 2.777em;
    letter-spacing: 0.1em;
  }
  .common_btn.large {
    width: calc(300 * var(--mobile-width-ratio));
    font-size: calc(22 * var(--mobile-width-ratio));
    line-height: 2.777em;
  }
  
  .common_btn .icon {
    width: calc(15 * var(--mobile-width-ratio));
  }
  .common_btn.large .icon {
    width: calc(18 * var(--mobile-width-ratio));
  }
}

.page-contact-thanks .sec-headding .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.page-contact-thanks .sec-headding h1,
.page-contact-thanks .sec-headding p.txt-headding {
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .page-contact-thanks .sec-headding .container {
        min-height: calc(300 * var(--mobile-width-ratio));
        padding-top: calc(30 * var(--mobile-width-ratio));
        padding-bottom: calc(30 * var(--mobile-width-ratio));
    }

    .page-contact-thanks .sec-headding h1,
    .page-contact-thanks .sec-headding p.txt-headding {
        margin-bottom: calc(15 * var(--mobile-width-ratio));
    }
}