@charset "UTF-8";
/* ============================================================================= */
/* Reset CSS */
/* ============================================================================= */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0; }

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/ }

body {
  margin: 0; }

body > footer {
  position: sticky;
  top: 100vh; }

main {
  display: block; }

:where(p,table,blockquote,address,pre,iframe,form,figure,dl) {
  margin: 0; }

:where(h1,h2,h3,h4,h5,h6) {
  font-size: inherit;
  font-weight: inherit;
  margin: 0; }

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

:where(dt) {
  font-weight: bold; }

:where(dd) {
  margin-left: 0; }

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit; }

.product hr {
  border-color: var(--lightgray2);
  margin: 20px 0; }

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

address {
  font-style: inherit; }

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit; }

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */ }

b,
strong {
  font-weight: bolder; }

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */ }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom; }

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

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */ }

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer; }

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default; }

:-moz-focusring {
  outline: auto; }

select:disabled {
  opacity: inherit; }

option {
  padding: 0; }

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0; }

legend {
  padding: 0; }

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; }

[type=search] {
  outline-offset: -2px;
  /* 1 */ }

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

[type=number] {
  -moz-appearance: textfield; }

label[for] {
  cursor: pointer; }

details {
  display: block; }

summary {
  display: list-item; }

[contenteditable]:focus {
  outline: auto; }

table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse; }

caption {
  text-align: left; }

td,
th {
  vertical-align: top;
  padding: 0; }

th {
  text-align: left;
  font-weight: bold; }

ol {
  margin: 1em; }
  ol li {
    list-style: decimal;
    line-height: 1.8; }

.label-type1 {
  background-color: var(--lightyellow);
  line-height: 1;
  padding: .3em 1em;
  border-radius: 1em; }

/* ===========================================
font
=========================================== */
/* ===========================================
common
=========================================== */
:root {
  --ff-main: -apple-system,BlinkMacSystemFont,'Poppins','Roboto',"游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック",'Noto Sans JP', sans-serif;
  --white: #fff;
  --black: #000;
  --consorange:#FF7F00;
  --f-xxs:1.1rem;
  --f-xs:1.2rem;
  --f-s:1.4rem;
  --f-m:1.6rem;
  --f-l:1.8rem;
  --f-xl:2rem;
  --f-xxl:2.4rem;
  --wp--preset--font-size--medium: 1.8rem; }

html {
  font-size: 10px;
  font-family: var(--ff-main);
  font-weight: 400;
  color: var(--white);
  background-color: var(--consorange); }

a {
  text-decoration: none;
  color: var(--white); }
  a:hover {
    text-decoration: underline; }

.fc-white {
  color: var(--white); }

h1, h2, h3 {
  font-weight: 700; }

h1 {
  font-size: 4rem;
  padding-left: 2rem;
  position: relative; }
  h1::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
    width: 5px;
    background-color: var(--white); }

h2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--white);
  padding-bottom: .5em; }

h3 {
  font-size: 1.8rem; }

p, dd, dt {
  line-height: 1.8;
  font-weight: 300; }
  p + p, dd + p, dt + p {
    margin-top: 2em; }

ul {
  margin-left: 1em; }
  ul li {
    list-style: disc; }

main {
  font-size: 1.8rem; }

footer {
  font-size: 1.6rem; }

/* ===========================================
header
=========================================== */
header {
  text-align: center;
  width: 100%;
  padding: 100px 0 150px; }
  header img {
    width: 345px;
    height: auto;
    margin: 0 auto; }

/* ===========================================
main
=========================================== */
main {
  max-width: 1200px;
  margin: 0 auto; }

/* ===========================================
footer
=========================================== */
footer {
  font-family: var(--ff-lato);
  background-color: var(--black);
  padding: 20px 0;
  text-align: center;
  font-size: 1.6rem; }

/* ===========================================
component
=========================================== */
.cmp-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 100px; }
  .cmp-block h1 {
    width: 280px; }
  .cmp-block section {
    width: calc(100% - 320px); }
    .cmp-block section dl {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      .cmp-block section dl dt {
        width: 25%;
        margin-bottom: 30px;
        font-weight: 400; }
      .cmp-block section dl dd {
        width: 75%;
        margin-bottom: 30px; }
        .cmp-block section dl dd strong {
          font-weight: 800; }
      .cmp-block section dl + h2 {
        margin-top: 100px; }

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.4rem;
    margin-bottom: 1.5em; }
    h1 br {
      display: none; }
    h1::before {
      height: 100%; }

  h2 {
    font-size: 2rem;
    margin-bottom: 1em; }

  p, dd, dt {
    font-size: 1.4rem; }

  header {
    padding: 50px 0; }
    header img {
      max-width: 40%; }

  main {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%; }

  .cmp-block h1, .cmp-block section {
    width: 100%; }
  .cmp-block section dl dt {
    width: 30%; }
  .cmp-block section dl dd {
    width: 70%; }
  .cmp-block section dl + h2 {
    margin-top: 50px; }

  footer {
    font-size: 1.4rem; } }
