@charset "utf-8";

/*========================================================================*\

$目次

\*========================================================================*/
/*

$common
$テキスト系
$余白系
$Flex
$float
$clearfix
$penetrate（親要素を無視して画面幅いっぱいまで要素をはみ出させる方法）
$text-align
$position
$レスポンシブ系

*/

/* Reset box-model and set borders */
/* ============================================ */

*,
::before,
::after {
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

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

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */

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

/* Headings */
/* ============================================ */

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

/* Lists (enumeration) */
/* ============================================ */

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

/* Lists (definition) */
/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

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

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

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

address {
  font-style: inherit;
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

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

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

abbr[title] {
  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: inherit; /* 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;
}

* {
  letter-spacing: 0.05rem;
}

/* Replaced content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

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

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

/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */

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

/**
 * Correct cursors for clickable elements.
 */

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

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

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

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

/**
 * Correct the outline style in Safari.
 */

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

/**
 * 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. Fix font inheritance.
 */

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

/**
 * Fix appearance for Firefox
 */
[type="number"] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */

label[for] {
  cursor: pointer;
}

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

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */

/**
1. Correct table border color inheritance in all Chrome and Safari.
*/

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

caption {
  text-align: left;
}

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

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

input,
select {
  vertical-align: middle;
}

ul li {
  list-style-type: none;
}

/*IE対応*/
#contactForm select::-ms-expand {
  display: none;
}

input[type="submit"],
input[type="button"] {
  -webkit-appearance: button;
  appearance: button;
  border: none;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*========================================================================*\

$テキスト系

\*========================================================================*/

#Co .err,
#Co .error,
#Co .mailerr,
#Co .mail_chkerr {
  color: var(--font-red);
  font-size: 1.4rem;
}

#Co p:not(:last-child) {
  margin-bottom: 3rem;
}

#Co p.no:not(:last-child) {
  margin-bottom: 0rem;
}

strong {
  font-weight: 700;
}

sup,
sub {
  font-size: 1.1rem !important;
}

.nw {
  white-space: nowrap !important;
}

@media screen and (max-width: 767px) {
  #Co p:not(:last-child) {
    margin-bottom: 2rem;
  }

  #Co .err,
  #Co .error,
  #Co .mailerr,
  #Co .mail_chkerr {
    font-size: 1.2rem;
  }
}

/*========================================================================*\

$余白系

\*========================================================================*/

.mt0 {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 0.5rem !important;
}
.mt10 {
  margin-top: 1rem !important;
}
.mt15 {
  margin-top: 1.5rem !important;
}
.mt20 {
  margin-top: 2rem !important;
}
.mt25 {
  margin-top: 2.5rem !important;
}
.mt30 {
  margin-top: 3rem !important;
}
.mt35 {
  margin-top: 3.5rem !important;
}
.mt40 {
  margin-top: 4rem !important;
}
.mt45 {
  margin-top: 4.5rem !important;
}
.mt50 {
  margin-top: 5rem !important;
}
.mt55 {
  margin-top: 5.5rem !important;
}
.mt60 {
  margin-top: 6rem !important;
}
.mt65 {
  margin-top: 6.5rem !important;
}
.mt70 {
  margin-top: 7rem !important;
}
.mt75 {
  margin-top: 7.5rem !important;
}
.mt80 {
  margin-top: 8rem !important;
}
.mt85 {
  margin-top: 8.5rem !important;
}
.mt90 {
  margin-top: 9rem !important;
}
.mt95 {
  margin-top: 9.5rem !important;
}
.mt100 {
  margin-top: 10rem !important;
}
.mr0 {
  margin-right: 0 !important;
}
.mr5 {
  margin-right: 0.5rem !important;
}
.mr10 {
  margin-right: 1rem !important;
}
.mr15 {
  margin-right: 1.5rem !important;
}
.mr20 {
  margin-right: 2rem !important;
}
.mr25 {
  margin-right: 2.5rem !important;
}
.mr30 {
  margin-right: 3rem !important;
}
.mr35 {
  margin-right: 3.5rem !important;
}
.mr40 {
  margin-right: 4rem !important;
}
.mr45 {
  margin-right: 4.5rem !important;
}
.mr50 {
  margin-right: 5rem !important;
}
.mr55 {
  margin-right: 5.5rem !important;
}
.mr60 {
  margin-right: 6rem !important;
}
.mr65 {
  margin-right: 6.5rem !important;
}
.mr70 {
  margin-right: 7rem !important;
}
.mr75 {
  margin-right: 7.5rem !important;
}
.mr80 {
  margin-right: 8rem !important;
}
.mr85 {
  margin-right: 8.5rem !important;
}
.mr90 {
  margin-right: 9rem !important;
}
.mr95 {
  margin-right: 9.5rem !important;
}
.mr100 {
  margin-right: 10rem !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 0.5rem !important;
}
.mb10 {
  margin-bottom: 1rem !important;
}
.mb15 {
  margin-bottom: 1.5rem !important;
}
.mb20 {
  margin-bottom: 2rem !important;
}
.mb25 {
  margin-bottom: 2.5rem !important;
}
.mb30 {
  margin-bottom: 3rem !important;
}
.mb35 {
  margin-bottom: 3.5rem !important;
}
.mb40 {
  margin-bottom: 4rem !important;
}
.mb45 {
  margin-bottom: 4.5rem !important;
}
.mb50 {
  margin-bottom: 5rem !important;
}
.mb55 {
  margin-bottom: 5.5rem !important;
}
.mb60 {
  margin-bottom: 6rem !important;
}
.mb65 {
  margin-bottom: 6.5rem !important;
}
.mb70 {
  margin-bottom: 7rem !important;
}
.mb75 {
  margin-bottom: 7.5rem !important;
}
.mb80 {
  margin-bottom: 8rem !important;
}
.mb85 {
  margin-bottom: 8.5rem !important;
}
.mb90 {
  margin-bottom: 9rem !important;
}
.mb95 {
  margin-bottom: 9.5rem !important;
}
.mb100 {
  margin-bottom: 10rem !important;
}
.ml0 {
  margin-left: 0 !important;
}
.ml5 {
  margin-left: 0.5rem !important;
}
.ml10 {
  margin-left: 1rem !important;
}
.ml15 {
  margin-left: 1.5rem !important;
}
.ml20 {
  margin-left: 2rem !important;
}
.ml25 {
  margin-left: 2.5rem !important;
}
.ml30 {
  margin-left: 3rem !important;
}
.ml35 {
  margin-left: 3.5rem !important;
}
.ml40 {
  margin-left: 4rem !important;
}
.ml45 {
  margin-left: 4.5rem !important;
}
.ml50 {
  margin-left: 5rem !important;
}
.ml55 {
  margin-left: 5.5rem !important;
}
.ml60 {
  margin-left: 6rem !important;
}
.ml65 {
  margin-left: 6.5rem !important;
}
.ml70 {
  margin-left: 7rem !important;
}
.ml75 {
  margin-left: 7.5rem !important;
}
.ml80 {
  margin-left: 8rem !important;
}
.ml85 {
  margin-left: 8.5rem !important;
}
.ml90 {
  margin-left: 9rem !important;
}
.ml95 {
  margin-left: 9.5rem !important;
}
.ml100 {
  margin-left: 10rem !important;
}

.pt0 {
  padding-top: 0 !important;
}
.pt5 {
  padding-top: 0.5rem !important;
}
.pt10 {
  padding-top: 1rem !important;
}
.pt15 {
  padding-top: 1.5rem !important;
}
.pt20 {
  padding-top: 2rem !important;
}
.pt25 {
  padding-top: 2.5rem !important;
}
.pt30 {
  padding-top: 3rem !important;
}
.pt35 {
  padding-top: 3.5rem !important;
}
.pt40 {
  padding-top: 4rem !important;
}
.pt45 {
  padding-top: 4.5rem !important;
}
.pt50 {
  padding-top: 5rem !important;
}
.pt55 {
  padding-top: 5.5rem !important;
}
.pt60 {
  padding-top: 6rem !important;
}
.pt65 {
  padding-top: 6.5rem !important;
}
.pt70 {
  padding-top: 7rem !important;
}
.pt75 {
  padding-top: 7.5rem !important;
}
.pt80 {
  padding-top: 8rem !important;
}
.pt85 {
  padding-top: 8.5rem !important;
}
.pt90 {
  padding-top: 9rem !important;
}
.pt95 {
  padding-top: 9.5rem !important;
}
.pt100 {
  padding-top: 10rem !important;
}
.pr0 {
  padding-right: 0 !important;
}
.pr5 {
  padding-right: 0.5rem !important;
}
.pr10 {
  padding-right: 1rem !important;
}
.pr15 {
  padding-right: 1.5rem !important;
}
.pr20 {
  padding-right: 2rem !important;
}
.pr25 {
  padding-right: 2.5rem !important;
}
.pr30 {
  padding-right: 3rem !important;
}
.pr35 {
  padding-right: 3.5rem !important;
}
.pr40 {
  padding-right: 4rem !important;
}
.pr45 {
  padding-right: 4.5rem !important;
}
.pr50 {
  padding-right: 5rem !important;
}
.pr55 {
  padding-right: 5.5rem !important;
}
.pr60 {
  padding-right: 6rem !important;
}
.pr65 {
  padding-right: 6.5rem !important;
}
.pr70 {
  padding-right: 7rem !important;
}
.pr75 {
  padding-right: 7.5rem !important;
}
.pr80 {
  padding-right: 8rem !important;
}
.pr85 {
  padding-right: 8.5rem !important;
}
.pr90 {
  padding-right: 9rem !important;
}
.pr95 {
  padding-right: 9.5rem !important;
}
.pr100 {
  padding-right: 10rem !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.pb5 {
  padding-bottom: 0.5rem !important;
}
.pb10 {
  padding-bottom: 1rem !important;
}
.pb15 {
  padding-bottom: 1.5rem !important;
}
.pb20 {
  padding-bottom: 2rem !important;
}
.pb25 {
  padding-bottom: 2.5rem !important;
}
.pb30 {
  padding-bottom: 3rem !important;
}
.pb35 {
  padding-bottom: 3.5rem !important;
}
.pb40 {
  padding-bottom: 4rem !important;
}
.pb45 {
  padding-bottom: 4.5rem !important;
}
.pb50 {
  padding-bottom: 5rem !important;
}
.pb55 {
  padding-bottom: 5.5rem !important;
}
.pb60 {
  padding-bottom: 6rem !important;
}
.pb65 {
  padding-bottom: 6.5rem !important;
}
.pb70 {
  padding-bottom: 7rem !important;
}
.pb75 {
  padding-bottom: 7.5rem !important;
}
.pb80 {
  padding-bottom: 8rem !important;
}
.pb85 {
  padding-bottom: 8.5rem !important;
}
.pb90 {
  padding-bottom: 9rem !important;
}
.pb95 {
  padding-bottom: 9.5rem !important;
}
.pb100 {
  padding-bottom: 10rem !important;
}
.pl0 {
  padding-left: 0 !important;
}
.pl5 {
  padding-left: 0.5rem !important;
}
.pl10 {
  padding-left: 1rem !important;
}
.pl15 {
  padding-left: 1.5rem !important;
}
.pl20 {
  padding-left: 2rem !important;
}
.pl25 {
  padding-left: 2.5rem !important;
}
.pl30 {
  padding-left: 3rem !important;
}
.pl35 {
  padding-left: 3.5rem !important;
}
.pl40 {
  padding-left: 4rem !important;
}
.pl45 {
  padding-left: 4.5rem !important;
}
.pl50 {
  padding-left: 5rem !important;
}
.pl55 {
  padding-left: 5.5rem !important;
}
.pl60 {
  padding-left: 6rem !important;
}
.pl65 {
  padding-left: 6.5rem !important;
}
.pl70 {
  padding-left: 7rem !important;
}
.pl75 {
  padding-left: 75rem !important;
}
.pl80 {
  padding-left: 8rem !important;
}
.pl85 {
  padding-left: 8.5rem !important;
}
.pl90 {
  padding-left: 9rem !important;
}
.pl95 {
  padding-left: 9.5rem !important;
}
.pl100 {
  padding-left: 10rem !important;
}

.wide10 {
  width: 10% !important;
}
.wide15 {
  width: 15% !important;
}
.wide20 {
  width: 20% !important;
}
.wide25 {
  width: 25% !important;
}
.wide30 {
  width: 30% !important;
}
.wide35 {
  width: 35% !important;
}
.wide40 {
  width: 40% !important;
}
.wide45 {
  width: 45% !important;
}
.wide50 {
  width: 50% !important;
}
.wide55 {
  width: 55% !important;
}
.wide60 {
  width: 60% !important;
}
.wide65 {
  width: 65% !important;
}
.wide70 {
  width: 70% !important;
}
.wide75 {
  width: 75% !important;
}
.wide80 {
  width: 80% !important;
}
.wide85 {
  width: 85% !important;
}
.wide90 {
  width: 90% !important;
}
.wide95 {
  width: 95% !important;
}
.wide100 {
  width: 100% !important;
}

#contactForm .step10 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

#contactForm .step15 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

#contactForm .step20 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

#contactForm .step25 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
}

#contactForm .step30 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}

#contactForm .step35 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
}

#contactForm .step40 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
}

#contactForm .step45 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 4.5rem;
  padding-bottom: 4.5rem;
}

#contactForm .step50 {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .wide .wide10,
  .wide .wide15,
  .wide .wide20,
  .wide .wide25,
  .wide .wide30,
  .wide .wide35,
  .wide .wide40,
  .wide .wide45,
  .wide .wide50,
  .wide .wide55,
  .wide .wide60,
  .wide .wide65,
  .wide .wide70,
  .wide .wide75,
  .wide .wide80,
  .wide .wide85,
  .wide .wide90,
  .wide .wide95 {
    width: 100% !important;
  }
  .w20 {
    margin: auto;
    width: 20% !important;
  }
  .w25 {
    margin: auto;
    width: 25% !important;
  }
  .w30 {
    margin: auto;
    width: 30% !important;
  }
  .w35 {
    margin: auto;
    width: 35% !important;
  }
  .w40 {
    margin: auto;
    width: 40% !important;
  }
  .w45 {
    margin: auto;
    width: 45% !important;
  }
  .w50 {
    margin: auto;
    width: 50% !important;
  }
  .w55 {
    margin: auto;
    width: 55% !important;
  }
  .w60 {
    margin: auto;
    width: 60% !important;
  }
  .w65 {
    margin: auto;
    width: 65% !important;
  }
  .w70 {
    margin: auto;
    width: 70% !important;
  }
  .w75 {
    margin: auto;
    width: 75% !important;
  }
  .w80 {
    margin: auto;
    width: 80% !important;
  }
  .w85 {
    margin: auto;
    width: 85% !important;
  }
  .w90 {
    margin: auto;
    width: 90% !important;
  }
  .w95 {
    margin: auto;
    width: 95% !important;
  }
}

/*========================================================================*\

$Flex

\*========================================================================*/

.box02,
.box03,
.box04,
.box05,
.pctBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 3rem 0;
  position: relative;
  width: 100%;
}

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

.box02::after {
  content: "";
  display: block;
  width: 48.5%;
}

.box03::after {
  content: "";
  display: block;
  width: 32%;
}

.box04::before {
  content: "";
  display: block;
  order: 1;
  width: 23.5%;
}

.box04::after {
  content: "";
  display: block;
  width: 23.5%;
}

.box02.reverse::after {
  content: none;
}

.box02 li,
.box02 .box02Inner {
  flex-shrink: 0;
  margin: 0;
  max-width: 100%;
  width: 48.5%;
}

.box03 li,
.box03 .box03Inner {
  flex-shrink: 0;
  margin: 0;
  max-width: 100%;
  width: 32%;
}

.box04 li,
.box04 .box04Inner {
  flex-shrink: 0;
  margin: 0;
  max-width: 100%;
  width: 23.5%;
}

.box05 li,
.box05 .box05Inner {
  flex-shrink: 0;
  margin: 0;
  max-width: 100%;
  width: 18%;
}

.pctBox.pctBoxInner,
.pctBox.reverse.pctBoxInner {
  flex: 0 0 auto;
  margin: 0;
}

.pctBox.pctBoxInner,
.pctBox.reverse.pctBoxInner {
  flex: 1 0 0;
  margin: 0;
}

.pctBox.pctBoxInner figure {
  width: 30%;
}

.box02.wide li,
.box03.wide li,
.box04.wide li,
.box06.wide li {
  flex-shrink: 0;
  max-width: 100%;
  width: 100%;
}

.box02 li:nth-child(n + 3),
.box03 li:nth-child(n + 4),
.box04 li:nth-child(n + 5),
.box05 li:nth-child(n + 6),
.box02 .box02Inner:nth-child(n + 3),
.box03 .box03Inner:nth-child(n + 4),
.box04 .box04Inner:nth-child(n + 5),
.box05 .box05Inner:nth-child(n + 6) {
  margin: 2rem 0 0 0;
}

@media screen and (max-width: 767px) {
  .box02,
  .box03,
  .box04,
  .box05,
  .pctBox {
    display: block;
    margin: 0 0 2rem 0;
    width: 100%;
  }

  .box02.half,
  .box03.half,
  .box04.half,
  .box05.half,
  .pctBox.half {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }

  .box02 li,
  .box03 li,
  .box04 li,
  .box05 li,
  .box02 .box02Inner,
  .box03 .box03Inner,
  .box04 .box04Inner,
  .box05 .box05Inner {
    width: 100%;
  }

  .box03 li:nth-child(n + 4),
  .box04 li:nth-child(n + 5),
  .box05 li:nth-child(n + 6),
  .box03 .box03Inner:nth-child(n + 4),
  .box04 .box04Inner:nth-child(n + 5),
  .box05 .box05Inner:nth-child(n + 6) {
    margin: 0;
  }

  .box02 li:nth-child(n + 2),
  .box03 li:nth-child(n + 2),
  .box04 li:nth-child(n + 2),
  .box05 li:nth-child(n + 2),
  .box02 .box02Inner:nth-child(n + 2),
  .box03 .box03Inner:nth-child(n + 2),
  .box04 .box04Inner:nth-child(n + 2),
  .box05 .box05Inner:nth-child(n + 2) {
    margin: 1rem 0 0 0;
  }

  .box02.half li,
  .box03.half li,
  .box04.half li,
  .box05.half li,
  .box02.half .box02Inner,
  .box03.half .box03Inner,
  .box04.half .box04Inner,
  .box05.half .box05Inner,
  .pctBox.half.pctBoxInner {
    flex-shrink: 0;
    max-width: 100%;
    width: 48%;
  }

  .box02.half li:nth-child(n + 2),
  .box03.half li:nth-child(n + 2),
  .box04.half li:nth-child(n + 2),
  .box05.half li:nth-child(n + 2),
  .box02.half .box02Inner:nth-child(n + 2),
  .box03.half .box03Inner:nth-child(n + 2),
  .box04.half .box04Inner:nth-child(n + 2),
  .box05.half .box05Inner:nth-child(n + 2) {
    margin: 0;
  }

  .box02.half li:nth-child(n + 3),
  .box03.half li:nth-child(n + 3),
  .box04.half li:nth-child(n + 3),
  .box05.half li:nth-child(n + 3),
  .box02.half .box02Inner:nth-child(n + 3),
  .box03.half .box03Inner:nth-child(n + 3),
  .box04.half .box04Inner:nth-child(n + 3),
  .box05.half .box05Inner:nth-child(n + 3) {
    margin: 1rem 0 0 0;
  }

  .pctBox.pctBoxInner,
  .pctBox.reverse.pctBoxInner,
  .pctBox.pctBoxInner,
  .pctBox.reverse.pctBoxInner {
    width: 100%;
  }
}

/*========================================================================*\

$float

\*========================================================================*/

.pctL {
  float: left;
  margin-bottom: 1.5rem;
  margin-right: 5rem !important;
}

.pctR {
  float: right;
  margin-bottom: 1.5rem;
  margin-left: 5rem !important;
}

.cl {
  clear: both;
}

/*========================================================================*\

$clearfix

\*========================================================================*/

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0.1rem;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Holly Hack Targets IE Win only \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}
/* End Holly Hack */

/*========================================================================*\

$text-align

\*========================================================================*/

.aLeft {
  text-align: left !important;
}

.aRight {
  text-align: right !important;
}

.aCenter {
  text-align: center !important;
}

/*========================================================================*\

$position

\*========================================================================*/

.centered {
  left: 50%;
  margin: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

/*========================================================================*\

$penetrate （親要素を無視して画面幅いっぱいまで要素をはみ出させる方法）

\*========================================================================*/

.penetrate {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media screen and (max-width: 767px) {
  .penetrate {
    margin: 0;
    width: 100vw;
  }
}

/*========================================================================*\

$レスポンシブ系

\*========================================================================*/

.sp {
  display: none;
}

@media (max-width: 1100px) {
  .pc {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc,
  .tb {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  img {
    max-width: 100%;
  }

  .wide {
    height: auto;
    width: 100% !important;
  }

  .responsiveBox {
    height: 0;
    margin-bottom: 20px;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
  }

  .responsiveBox iframe,
  .responsiveBox object,
  .responsiveBox embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
