@charset "UTF-8";
/*
 * style.css
 */
/*
 * style.css
 */
/* ==========================================================
!HTML5 elements
========================================================== */
header,
footer,
nav,
main,
section,
aside,
article {
  display: block;
}

figure,
figcaption {
  margin: 0;
  padding: 0;
}

/* ==========================================================
!Reseting
========================================================== */
/* 全ての要素のbox-sizingをデフォルトでborder-boxにする */
:root {
  box-sizing: border-box;
}

*,
::before,
::after {
  border-width: 0;
  border-style: solid;
  box-sizing: inherit;
}

body {
  color: #2E2E2E;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-feature-settings: "palt";
  line-height: 1.4;
  text-size-adjust: none;
  background: #ffffff none;
  -webkit-text-size-adjust: 100%;
  overflow-scrolling: touch;
}

/* Hack for Safari 7.1-8.0 */
_::-webkit-full-page-media,
_:future,
:root body {
  font-feature-settings: "pkna";
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
  margin: 0;
  padding: 0;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-weight: normal;
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:after,
q:before {
  content: "";
}

a,
input {
  /* outline: none; */
}

abbr,
acronym {
  border: 0;
}

/* ==========================================================
!Clearfix
========================================================== */
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* ==========================================================
!Layout
========================================================== */
html {
  overflow-y: scroll;
}

@media print {
  html,
  html body {
    *zoom: 0.65;
  }
}
/*
 * style.css
 */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 25px;
  height: 25px;
  margin: 0 2px 0 2px;
  padding: 0;
  border: 0;
  color: transparent;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: auto;
  bottom: -40px;
  transition: 0.4s;
  cursor: pointer;
}
.slick-prev:before,
.slick-next:before {
  position: absolute;
  width: 11px;
  height: 11px;
  border-style: solid;
  border-color: #FFFFFF;
  transition: 0.4s;
  content: "";
}

.slick-prev {
  opacity: 1;
}
.slick-prev:before {
  left: 50%;
  margin: -5px 0 0 -3px;
  border-width: 2px 0 0 2px;
  transform: rotate(-45deg);
  opacity: 1;
  content: "";
}
@media (hover: hover) {
  .slick-prev:hover:where(:any-link, :enabled, summary):hover:before, .slick-prev:active:where(:any-link, :enabled, summary):hover:before, .slick-prev:focus:where(:any-link, :enabled, summary):hover:before {
    left: -6px;
  }
}
.slick-prev:hover:is(:hover):before, .slick-prev:active:is(:hover):before, .slick-prev:focus:is(:hover):before {
  left: -6px;
}

.slick-next {
  opacity: 1;
}
.slick-next:before {
  right: 50%;
  margin: -5px -3px 0 0;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  opacity: 1;
  content: "";
}
@media (hover: hover) {
  .slick-next:hover:where(:any-link, :enabled, summary):hover:before, .slick-next:active:where(:any-link, :enabled, summary):hover:before, .slick-next:focus:where(:any-link, :enabled, summary):hover:before {
    right: -6px;
  }
}
.slick-next:hover:is(:hover):before, .slick-next:active:is(:hover):before, .slick-next:focus:is(:hover):before {
  right: -6px;
}

.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: flex;
  gap: 24px;
  width: auto;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  z-index: 99;
}
@media only screen and (min-width: 768px), print {
  .slick-dots {
    bottom: 40px;
  }
}
.slick-dots li {
  position: relative;
  display: block;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  appearance: none;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  font-size: 0;
  width: 12px;
  height: 12px;
  padding: 0;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li.slick-active button {
  background: #0041C0;
}

/*arrow*/
.slick-arrow {
  position: absolute;
  top: 50%;
  overflow: hidden;
  display: block;
  width: 40px;
  height: 0;
  margin: 0;
  padding: 40px 0 0 0;
  background: transparent;
  border-radius: 50%;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.slick-arrow:hover, .slick-arrow:focus-visible {
  border-color: #FFFFFF;
}
.slick-arrow::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 16px;
  height: 16px;
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px), print {
  .slick-arrow::before {
    width: 32px;
    height: 32px;
  }
}
@media only screen and (min-width: 1024px), print {
  .slick-arrow {
    width: 65px;
    padding: 65px 0 0 0;
  }
}

.slick-prev {
  left: 0;
}
@media only screen and (min-width: 768px), print {
  .slick-prev {
    left: 2%;
  }
}

.slick-next {
  right: 0;
}
@media only screen and (min-width: 768px), print {
  .slick-next {
    right: 2%;
  }
}

/*
 * style.css
 */
/* ==========================================================
!Breadcrumb
========================================================== */
.c-breadcrumbs {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.c-breadcrumbs .l-inner {
  overflow-x: auto;
}
@media only screen and (min-width: 768px), print {
  .c-breadcrumbs .l-inner {
    max-width: inherit;
    padding: 0 6% 0 6%;
  }
}
.c-breadcrumbs__list {
  line-height: 1;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 14px 0;
  white-space: nowrap;
}
.c-breadcrumbs__list:after {
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  width: 5%;
  height: 10px;
}
.c-breadcrumbs__list li {
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 0 2em 0 0;
  position: relative;
}
.c-breadcrumbs__list li:last-child:after {
  display: none;
}
.c-breadcrumbs__list li:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0041C0;
  border-right: 2px solid #0041C0;
  transform: rotate(45deg) translateY(-80%);
  position: absolute;
  top: 50%;
  right: 1.1em;
}
.c-breadcrumbs__list li a {
  color: #0041C0;
  text-decoration: none;
}
.c-breadcrumbs__list li a span {
  display: block;
  font-size: 0.875rem;
}
.c-breadcrumbs__list li > span {
  font-size: 0.875rem;
}

.p-breadcrumbs__inner::-webkit-scrollbar {
  display: none;
}

/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/* 1280px以上（大きめPC） */
/*
 * style.css
 */
/* ==========================================================
!contents
========================================================== */
.l-contents {
  width: 100%;
}
@media only screen and (min-width: 1024px), print {
  .l-contents {
    width: calc(100% - 304px);
  }
}

/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/* 1280px以上（大きめPC） */
/*
 * style.css
 */
/* ==========================================================
!CV Area
========================================================== */
/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/* 1280px以上（大きめPC） */
/*
 * style.css
 */
/* ==========================================================
!Editor内スタイル
========================================================== */
.l-entry-content {
  line-height: 2;
}
.l-entry-content > *:first-child {
  margin-top: 0;
}
.l-entry-content h2,
.l-entry-content h3,
.l-entry-content h4 {
  font-weight: 700;
  margin: 7% 0 0 0;
  line-height: 1.5;
}
.l-entry-content h2 {
  font-size: 0.175rem;
}
.l-entry-content h3 {
  font-size: 0.15rem;
}
.l-entry-content > p {
  margin: 5% 0 0 0;
}
.l-entry-content > p mark {
  background: #2E2E2E;
  padding: 0 0.2em;
}
.l-entry-content .has-pale-pink-color {
  color: #0041C0;
}
.l-entry-content .has-text-align-left {
  text-align: left;
}
.l-entry-content .has-text-align-center {
  text-align: center;
}
.l-entry-content .has-text-align-right {
  text-align: right;
}
.l-entry-content ul {
  margin: 3% 0 0 0;
}
.l-entry-content ul:not([class]) li {
  padding: 0 0 0 1em;
  text-indent: -1em;
  line-height: 1.7;
}
.l-entry-content ul:not([class]) li:before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  background: #000000;
  border-radius: 50%;
  margin: 0 0.6em 0 0;
  vertical-align: middle;
}
.l-entry-content ul:not([class]) li > ul {
  margin: 0;
}
.l-entry-content ol {
  margin: 3% 0 0 0;
  counter-reset: count 0;
  list-style-type: none;
}
.l-entry-content ol li {
  line-height: 1.7;
  margin: 0 0 0 1.5em;
}
.l-entry-content ol li:before {
  display: inline-block;
  margin: 0 0 0 -1.5em;
  width: 2em;
  counter-increment: count 1;
  content: counters(count, "-") ". ";
}
.l-entry-content ol li > ol {
  margin: 0;
}
.l-entry-content p a,
.l-entry-content li a,
.l-entry-content table a,
.l-entry-content blockquote a {
  text-decoration: underline;
}
.l-entry-content p a:hover,
.l-entry-content li a:hover,
.l-entry-content table a:hover,
.l-entry-content blockquote a:hover {
  text-decoration: none;
}
.l-entry-content p a[target=_blank]:after,
.l-entry-content li a[target=_blank]:after,
.l-entry-content table a[target=_blank]:after,
.l-entry-content blockquote a[target=_blank]:after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin: 0 0.4em 0 0.2em;
  padding: 0 15px 0 0;
  vertical-align: middle;
  content: "";
  background-size: contain;
}
.l-entry-content p a[href$=".pdf"]:after,
.l-entry-content li a[href$=".pdf"]:after,
.l-entry-content table a[href$=".pdf"]:after,
.l-entry-content blockquote a[href$=".pdf"]:after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 1em;
  margin: 0 0.4em 0 0.2em;
  padding: 0 15px 0 0;
  vertical-align: middle;
  content: "";
  background-size: contain;
}
.l-entry-content table {
  margin: 5% 0 0 0;
  border: 1px solid #777777;
  border-width: 1px 0 0 1px;
  width: 100%;
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
  font-size: 0.0875rem;
}
.l-entry-content table th,
.l-entry-content table td {
  border: 1px solid #777777;
  border-width: 0 1px 1px 0;
  padding: 0.2em 0.5em;
}
.l-entry-content table th {
  background: #F1F1F1;
}
.l-entry-content code {
  display: block;
  padding: 10px;
  border: solid 1px #F1F1F1;
  border-radius: 3px;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-all;
  word-wrap: break-word;
  background: #F1F1F1;
}
.l-entry-content hr {
  margin: 8% 0;
  height: 1px;
  background: #777777;
}
.l-entry-content .wp-block-quote {
  background-color: #F1F1F1;
  padding: 10% 5% 5% 15%;
  background-repeat: no-repeat;
  background-position: 5% 5%;
}
.l-entry-content iframe {
  margin: 5% auto 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.l-entry-content video {
  margin: 5% auto 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
  .l-entry-content h2,
  .l-entry-content h3,
  .l-entry-content h4 {
    font-weight: 700;
    margin: 40px 0 0 0;
  }
  .l-entry-content > p,
  .l-entry-content ul,
  .l-entry-content ol {
    margin: 16px 0 0 0;
  }
  .l-entry-content table,
  .l-entry-content blockquote {
    margin: 24px 0 0 0;
  }
  .l-entry-content blockquote {
    padding: 24px;
  }
  .l-entry-content hr {
    margin: 80px 0;
  }
  .l-entry-content table {
    white-space: normal;
    display: table;
  }
  .l-entry-content table th, .l-entry-content table td {
    padding: 20px 18px;
  }
  .l-entry-content table th + th {
    width: 24%;
  }
  .l-entry-content table td + td {
    width: 24%;
  }
  .l-entry-content table ul, .l-entry-content table ol {
    margin: 0;
  }
  .l-entry-content .wp-block-table th, .l-entry-content .wp-block-table td {
    width: auto;
  }
}
/*
 * style.css
 */
/* ==========================================================
!Footer
========================================================== */
.l-footer {
  background: #2E2E2E;
  padding: 40px 0;
}
.l-footer .l-inner {
  max-width: 1320px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px), print {
  .l-footer {
    padding: 96px 0;
    position: relative;
    z-index: 999;
  }
}
.l-footer__nav {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 40px;
}
@media only screen and (min-width: 768px), print {
  .l-footer__nav {
    border: none;
    display: flex;
    gap: 20px;
    padding: 0;
  }
}
.l-footer__list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 768px), print {
  .l-footer__list {
    border: none;
    width: calc((100% - 60px) / 4);
    border: none;
  }
}
.l-footer__list ul {
  display: none;
  margin: 0 0 16px;
  padding: 0 0 0 2em;
}
@media only screen and (min-width: 768px), print {
  .l-footer__list ul {
    display: block;
    padding: 0;
  }
}
.l-footer__list ul li {
  margin: 0 0 16px;
}
.l-footer__list ul li:last-child {
  margin: 0;
}
.l-footer__list ul li a {
  color: #FFFFFF;
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  width: fit-content;
  transition: all 0.3s;
}
@media (hover: hover) {
  .l-footer__list ul li a:hover:where(:any-link, :enabled, summary):hover, .l-footer__list ul li a:active:where(:any-link, :enabled, summary):hover, .l-footer__list ul li a:focus:where(:any-link, :enabled, summary):hover {
    color: #FFFFFF;
    opacity: 0.6;
  }
}
.l-footer__list ul li a:hover:is(:hover), .l-footer__list ul li a:active:is(:hover), .l-footer__list ul li a:focus:is(:hover) {
  color: #FFFFFF;
  opacity: 0.6;
}
.l-footer__group {
  color: #FFFFFF;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  padding: 16px 0;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px), print {
  .l-footer__group {
    width: fit-content;
    font-size: 1rem;
    padding: 0 0 20px;
  }
}
.l-footer__group:before {
  background: #FFFFFF;
  border-radius: 50%;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px), print {
  .l-footer__group:before {
    content: none;
  }
}
.l-footer__group:after {
  border-top: solid 1px #2E2E2E;
  border-right: solid 1px #2E2E2E;
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (min-width: 768px), print {
  .l-footer__group:after {
    content: none;
  }
}
.l-footer__group.is-bdr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 768px), print {
  .l-footer__group.is-bdr {
    border: none;
  }
}
.l-footer__group.is-acco:after {
  transform: translateY(-64%) rotate(135deg);
  right: 4px;
}
.l-footer__group.is-acco.u-active:after {
  transform: translateY(-46%) rotate(0deg);
  right: 3px;
  border-right: none;
  height: 1px;
  width: 8px;
}
@media (hover: hover) {
  .l-footer__group:hover:where(:any-link, :enabled, summary):hover, .l-footer__group:active:where(:any-link, :enabled, summary):hover, .l-footer__group:focus:where(:any-link, :enabled, summary):hover {
    color: #FFFFFF;
    opacity: 0.6;
  }
}
.l-footer__group:hover:is(:hover), .l-footer__group:active:is(:hover), .l-footer__group:focus:is(:hover) {
  color: #FFFFFF;
  opacity: 0.6;
}
.l-footer__logo {
  margin: 0 0 12px;
  max-width: 114px;
}
@media only screen and (min-width: 768px), print {
  .l-footer__logo {
    margin: 0 0 30px;
  }
}
.l-footer__logo a {
  display: block;
  transition: all 0.3s;
}
@media (hover: hover) {
  .l-footer__logo a:hover:where(:any-link, :enabled, summary):hover, .l-footer__logo a:active:where(:any-link, :enabled, summary):hover, .l-footer__logo a:focus:where(:any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
.l-footer__logo a:hover:is(:hover), .l-footer__logo a:active:is(:hover), .l-footer__logo a:focus:is(:hover) {
  opacity: 0.6;
}
.l-footer__copyright span {
  color: #C5D0D5;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.025em;
  line-height: 1;
}

/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/* 1280px以上（大きめPC） */
/*
 * style.css
 */
/* ==========================================================
!Gnavi
========================================================== */
/* 768px以下 */
.l-gnavi {
  background: #FFFFFF;
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 50px;
  left: 0;
  padding: 40px 4%;
  z-index: 9999;
}
@media only screen and (min-width: 1024px), print {
  .l-gnavi {
    position: sticky;
    display: block;
    width: 304px;
    top: 182px;
    padding: 42px 24px;
    height: calc(100vh - 182px);
  }
}
.l-gnavi__nav--home {
  color: #0041C0;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 32px;
  width: fit-content;
}
.l-gnavi__list {
  margin: 0 0 32px;
}
.l-gnavi__list ul {
  margin: 0 0 0 0.5em;
}
.l-gnavi__list ul li {
  margin: 0 0 14px;
}
.l-gnavi__list ul li:last-child {
  margin: 0;
}
.l-gnavi__list ul li a {
  display: block;
  width: fit-content;
  padding: 0 0 0 1em;
  position: relative;
  font-size: 0.875rem;
  font-weight: 400;
}
.l-gnavi__list ul li a:before {
  background: #0041C0;
  border-radius: 50%;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-gnavi__group {
  display: block;
  margin: 0 0 22px;
  width: fit-content;
  position: relative;
  padding: 0 0 0 26px;
}
.l-gnavi__group:before {
  background: #0041C0;
  border-radius: 50%;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-gnavi__group span {
  color: #0041C0;
  display: block;
  font-size: 1rem;
  font-weight: 700;
}
.l-gnavi__group span:before {
  background: #FFFFFF;
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
}
.l-gnavi__group span:after {
  background: #FFFFFF;
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.l-gnavi__group.u-active span:before {
  content: none;
}

/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/*
 * style.css
 */
/* ==========================================================
!Header
========================================================== */
.l-header {
  background: #2E2E2E;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media only screen and (max-width: 1023px), print {
  .l-header {
    z-index: 999;
  }
}
@media only screen and (min-width: 1024px), print {
  .l-header {
    display: none;
  }
}
.l-header .l-inner {
  display: flex;
  height: 50px;
  align-items: center;
}
@media only screen and (min-width: 1024px), print {
  .l-header .l-inner {
    height: inherit;
    padding: 0;
    align-items: flex-start;
    max-width: inherit;
  }
}
.l-header__logo {
  width: 91px;
  margin: 0 auto 0 0;
}
.l-header__logo.is-pc {
  display: none;
}
@media only screen and (min-width: 1024px), print {
  .l-header__logo.is-pc {
    display: block;
    width: 304px;
    height: 182px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
}
@media only screen and (min-width: 1024px), print {
  .l-header__logo.is-pc h1 a, .l-header__logo.is-pc p a {
    background: #0041C0;
    width: 304px;
    height: 182px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
  }
}
.l-header__logo--read {
  display: none;
}
@media only screen and (min-width: 1024px), print {
  .l-header__logo--read {
    display: block;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
  }
}
.l-header__info {
  height: 100%;
  margin: 0 calc(50px - 4%) 0 0;
}
@media only screen and (min-width: 768px), print {
  .l-header__info {
    margin: 0 30px 0 0;
  }
}
.l-header__info.is-pc {
  display: none;
}
@media only screen and (min-width: 1024px), print {
  .l-header__info.is-pc {
    background: #2E2E2E;
    border-radius: 0 0 0 5px;
    height: 80px;
    margin: 0 0 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }
}
.l-header__info--btn {
  display: none;
}
@media only screen and (min-width: 1024px), print {
  .l-header__info--btn {
    display: block;
    margin: 0 0 0 28px;
  }
}
.l-header__lang {
  width: 50px;
  height: 100%;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 1024px), print {
  .l-header__lang {
    width: auto;
  }
}
.l-header__lang-toggle {
  display: block;
  font-size: 0.625rem;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: #353F4E;
  color: #FFFFFF;
  transition: background-color 0.3s;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 1024px), print {
  .l-header__lang-toggle {
    width: auto;
    padding: 0 16px 0 32px;
    margin: 0 0 0 auto;
  }
}
.l-header__lang-toggle span {
  display: none;
}
@media only screen and (min-width: 1024px), print {
  .l-header__lang-toggle span {
    display: block;
    color: #FFFFFF;
    font-size: 0.875rem;
  }
}
.l-header__lang-toggle::before {
  background: url(/biz/common-global/img/icon_lang.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1024px), print {
  .l-header__lang-toggle::before {
    width: 12px;
    height: 12px;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 1024px), print {
  .l-header__lang-toggle::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 2px solid #FFFFFF;
    border-style: none solid solid none;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@media (hover: hover) {
  .l-header__lang-toggle:hover:where(:any-link, :enabled, summary):hover, .l-header__lang-toggle:active:where(:any-link, :enabled, summary):hover, .l-header__lang-toggle:focus:where(:any-link, :enabled, summary):hover {
    background-color: #515C72;
  }
}
.l-header__lang-toggle:hover:is(:hover), .l-header__lang-toggle:active:is(:hover), .l-header__lang-toggle:focus:is(:hover) {
  background-color: #515C72;
}
.l-header__lang-list {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200%;
}
@media only screen and (min-width: 1024px), print {
  .l-header__lang-list {
    width: 100%;
  }
}
.l-header__lang-list-item:not(:last-child) {
  border-bottom: 1px solid #FFFFFF;
}
.l-header__lang-list-item a {
  display: block;
  padding: 12px 1.2em;
  text-align: left;
  background-color: #EDEFF5;
  transition: background-color 0.3s;
  font-size: 0.75rem;
}
@media only screen and (min-width: 1024px), print {
  .l-header__lang-list-item a {
    padding: 6px;
    font-size: 0.875rem;
    text-align: center;
  }
}
.l-header__lang-list-item a:hover {
  background-color: #F4FAFF;
}
.p-hamburger {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 1024px), print {
  .p-hamburger {
    display: none;
  }
}
.p-hamburger__button {
  background: none;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  vertical-align: top;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.p-hamburger__button.is-active .p-hamburger__border {
  background: #FFFFFF;
}
.p-hamburger__button.is-active .p-hamburger__border:nth-of-type(1) {
  transform: translateX(-50%) translateY(6px) rotate(45deg);
}
.p-hamburger__button.is-active .p-hamburger__border:nth-of-type(2) {
  width: 0;
  opacity: 0;
  visibility: hidden;
}
.p-hamburger__button.is-active .p-hamburger__border:nth-of-type(3) {
  transform: translateX(-50%) translateY(-8px) rotate(-45deg);
}
.p-hamburger__border {
  background: #FFFFFF;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s;
}
.p-hamburger__border:nth-of-type(1) {
  top: calc(50% - 7px);
}
.p-hamburger__border:nth-of-type(2) {
  top: 50%;
  width: 20px;
}
.p-hamburger__border:nth-of-type(3) {
  top: calc(50% + 7px);
}
.p-hamburger.is-active .p-hamburger__button {
  background: #0041C0;
}

/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/*
 * style.css
 */
/* ==========================================================
!Mainimg
========================================================== */
.l-mainimg {
  position: relative;
}
.l-mainimg .slider__item {
  display: block !important;
}
.l-mainimg .l-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px), print {
  .l-mainimg .l-inner {
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-mainimg .l-inner p {
  color: #FFFFFF;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 50px;
}
@media only screen and (min-width: 768px), print {
  .l-mainimg .l-inner p {
    font-size: 2rem;
    margin: 0 0 100px;
  }
}
.l-mainimg__lower {
  height: 282px;
}
@media only screen and (min-width: 768px), print {
  .l-mainimg__lower {
    height: 300px;
  }
}
.l-mainimg__lower .l-outer {
  height: 100%;
}
.l-mainimg__lower .l-inner {
  padding: 0 6%;
  max-width: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.l-mainimg__lower .l-inner .categorygroup {
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 0 6px;
  margin: 0 0 6px;
  width: fit-content;
}
@media only screen and (min-width: 768px), print {
  .l-mainimg__lower .l-inner .categorygroup {
    font-size: 1.5rem;
  }
}
.l-mainimg__lower .l-inner .categorytitle {
  color: #FFFFFF;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (min-width: 768px), print {
  .l-mainimg__lower .l-inner .categorytitle {
    font-size: 3.75rem;
  }
}
.l-mainimg__lower.is-company {
  background: url(/biz/common-global/img/company/kv_company_sp.webp) no-repeat center center;
  background-size: cover;
}
@media only screen and (min-width: 768px), print {
  .l-mainimg__lower.is-company {
    background: url(/biz/common-global/img/company/kv_company_pc.webp) no-repeat center center;
    background-size: cover;
  }
}
.l-mainimg__lower.is-default {
  height: 212px;
  background: rgb(0, 65, 192);
  background: linear-gradient(280deg, rgb(0, 65, 192) 0%, rgb(9, 143, 227) 100%);
}
@media only screen and (min-width: 768px), print {
  .l-mainimg__lower.is-default {
    height: 282px;
  }
}
.l-mainimg__lower.is-products {
  background: url(/biz/common-global/img/products/kv_products_sp.webp) no-repeat center center;
  background-size: cover;
}
@media only screen and (min-width: 768px), print {
  .l-mainimg__lower.is-products {
    background: url(/biz/common-global/img/products/kv_products_pc.webp) no-repeat center center;
    background-size: cover;
  }
}
.l-mainimg__lower.is-term {
  background: rgb(0, 65, 192);
  background: linear-gradient(280deg, rgb(0, 65, 192) 0%, rgb(9, 143, 227) 100%);
}

/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/* 1280px以上（大きめPC） */
/*
 * style.css
 */
/* ==========================================================
!Navi
========================================================== */
/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/* 1280px以上（大きめPC） */
/*
 * style.css
 */
/* ==========================================================
!Section Common
========================================================== */
.l-outer {
  margin: 0 auto;
  text-align: center;
}

.l-inner {
  padding: 0 4% 0 4%; /* SPで左右に余白を空ける */
  text-align: left;
}
@media only screen and (min-width: 768px), print {
  .l-inner {
    padding: 0 20px 0 20px;
    max-width: 1020px;
    margin: 0 auto;
  }
}

/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/* 1280px以上（大きめPC） */
/*
 * style.css
 */
/* ==========================================================
!Wrapper
========================================================== */
.l-wrapper {
  margin: 0 auto;
  padding: 50px 0 0;
  /* 768px以上（タブレット） */
}
@media only screen and (min-width: 1024px), print {
  .l-wrapper {
    display: flex;
    padding: 0;
  }
}

/*
 * style.css
 */
/* ==========================================================
!Box
========================================================== */
/*
 * style.css
 */
/* ==========================================================
!Button
========================================================== */
.c-btn.is-contact {
  background: #003EA0;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px), print {
  .c-btn.is-contact {
    border-radius: 30px;
    font-size: 0.875rem;
    height: 40px;
    padding: 0 36px;
  }
}
@media (hover: hover) {
  .c-btn.is-contact:hover:where(:any-link, :enabled, summary):hover, .c-btn.is-contact:active:where(:any-link, :enabled, summary):hover, .c-btn.is-contact:focus:where(:any-link, :enabled, summary):hover {
    color: #FFFFFF;
  }
}
.c-btn.is-contact:hover:is(:hover), .c-btn.is-contact:active:is(:hover), .c-btn.is-contact:focus:is(:hover) {
  color: #FFFFFF;
}
.c-btn--default {
  background: #0041C0;
  border: 1px solid #0041C0;
  box-shadow: 0 5px 10px 0 rgba(0, 65, 192, 0.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 312px;
  margin: 0 auto;
  height: 56px;
  transition: all 0.3s;
}
.c-btn--default span {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
}
@media (hover: hover) {
  .c-btn--default:hover:where(:any-link, :enabled, summary):hover, .c-btn--default:active:where(:any-link, :enabled, summary):hover, .c-btn--default:focus:where(:any-link, :enabled, summary):hover {
    background: #FFFFFF;
  }
  .c-btn--default:hover:where(:any-link, :enabled, summary):hover span, .c-btn--default:active:where(:any-link, :enabled, summary):hover span, .c-btn--default:focus:where(:any-link, :enabled, summary):hover span {
    color: #0041C0;
  }
}
.c-btn--default:hover:is(:hover), .c-btn--default:active:is(:hover), .c-btn--default:focus:is(:hover) {
  background: #FFFFFF;
}
.c-btn--default:hover:is(:hover) span, .c-btn--default:active:is(:hover) span, .c-btn--default:focus:is(:hover) span {
  color: #0041C0;
}
.c-btn--download {
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
}
@media only screen and (min-width: 768px), print {
  .c-btn--download {
    max-width: 470px;
    margin: 0 auto;
  }
}
.c-btn--download span {
  color: #0041C0;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 48px 0 0;
  position: relative;
}
.c-btn--download span:before {
  background: url(/biz/common-global/img/sec/icon_download.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
/*
 * style.css
 */
/* ==========================================================
!gridlist
========================================================== */
/*
 * style.css
 */
/* ==========================================================
!H(n)eading
========================================================== */
.c-title-basic01 {
  margin: 0 0 7% 0;
  font-weight: 700;
  line-height: 1.5;
}

.c-title-basic02 {
  margin: 0 0 7% 0;
  font-weight: 700;
  line-height: 1.5;
}

.c-title-basic03 {
  margin: 0 0 7% 0;
  font-weight: 700;
  line-height: 1.5;
}

.c-title-basic04 {
  margin: 0 0 7% 0;
  font-weight: 700;
  line-height: 1.5;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
  .c-title-basic01 {
    margin: 0 0 40px 0;
    font-size: 0.5rem;
  }
  .c-title-basic02 {
    margin: 0 0 28px 0;
    font-size: 0.2rem;
  }
  .c-title-basic03 {
    margin: 0 0 24px 0;
    font-size: 0.15rem;
  }
  .c-title-basic04 {
    margin: 0 0 20px 0;
    font-size: 0.125rem;
  }
}
/*
 * style.css
 */
/* ==========================================================
!Listing
========================================================== */
/*
 * style.css
 */
/* ==========================================================
!pagenation
========================================================== */
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -1px 0 0 0;
  padding: 16px 40px 16px 40px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  padding: 10px;
}
.wp-pagenavi .u-current,
.wp-pagenavi .page {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  padding: 10px 10px;
}
.wp-pagenavi .page {
  transition: 0.3s;
}
/*
 * style.css
 */
/* ==========================================================
!Pagetop
========================================================== */
/* fixed
------------------------------------ */
.l-pagetop__fixed {
  background: none;
  cursor: pointer;
  display: none;
  position: fixed;
  z-index: 999;
  bottom: 38px;
  right: 4%;
}
.l-pagetop__fixed-text {
  background: #FFFFFF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
 * style.css
 */
/* ==========================================================
!Table
========================================================== */
.c-table-basic01 {
  table-layout: fixed;
  width: 100%;
}

/*
 * style.css
 */
/* ==========================================================
!tags
========================================================== */
/*
 * style.css
 */
/* ==========================================================
!Text Link
========================================================== */
.c-txtlink_basic01__wcag {
  /* WCAG 2.0 C7 */
  overflow: hidden;
  position: absolute;
  top: -10px;
  width: 1px;
  height: 1px;
}

/*
 * style.css
 */
/* ==========================================================
!Text
========================================================== */
/*
 * style.css
 */
/* ==========================================================
!Home
========================================================== */
@media only screen and (min-width: 1280px), print {
  .p-home-detail {
    display: flex;
  }
}
@media only screen and (min-width: 1280px), print {
  .p-home-detail__figure {
    max-width: 385px;
    background: #fff;
  }
}
.p-home-detail__figure img {
  width: 100%;
}
.p-home-detail__text {
  background: #FFFFFF;
  padding: 24px 4%;
}
@media only screen and (min-width: 1280px), print {
  .p-home-detail__text {
    max-width: calc(100% - 385px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-home-detail__text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 13px;
}
@media only screen and (min-width: 768px), print {
  .p-home-detail__text h3 {
    margin: 0 0 36px;
  }
}
.p-home-detail__text p {
  font-size: 0.875rem;
  line-height: 1.7;
}
@media only screen and (min-width: 768px), print {
  .p-home-detail__text p {
    font-size: 1rem;
  }
}
.p-home-detail__text p:not(:last-child) {
  margin-bottom: 1em;
}
.p-home-detail__text p a {
  text-decoration: underline;
  color: #0041C0;
}
.p-home-topics {
  background: #F4FAFF;
  padding: 40px 0;
}
.p-home-topics h2 {
  color: #0041C0;
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
}
@media only screen and (min-width: 768px), print {
  .p-home-topics h2 {
    font-size: 2.5rem;
  }
}
.p-home-products {
  padding: 40px 0;
}
.p-home-products h2 {
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
}
@media only screen and (min-width: 768px), print {
  .p-home-products h2 {
    font-size: 2.5rem;
  }
}
.p-home-products .title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 13px;
}
.p-home-products p {
  font-size: 0.875rem;
  line-height: 1.7;
}
@media only screen and (min-width: 768px), print {
  .p-home-products p {
    font-size: 1rem;
  }
}
.p-home-washer {
  background: url(/biz/common-global/img/index/bg_washer_sp.webp) no-repeat top center;
  background-size: 100%;
  padding: 30px 0;
}
@media only screen and (min-width: 768px), print {
  .p-home-washer {
    position: relative;
    background: none;
    padding: 70px 0 56px;
  }
}
@media only screen and (min-width: 768px), print {
  .p-home-washer:before {
    content: "";
    background: url(/biz/common-global/img/index/bg_washer_pc.webp) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 550px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.p-home-washer h2 {
  color: #FFFFFF;
  font-family: "effra", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px;
}
@media only screen and (min-width: 768px), print {
  .p-home-washer h2 {
    font-size: 4.0625rem;
    margin: 0 0 36px;
  }
}
.p-home-washer p {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 14px;
}
@media only screen and (min-width: 768px), print {
  .p-home-washer p {
    font-size: 1.375rem;
    margin: 0 0 36px;
  }
}
.p-home-washer figure {
  max-width: 145px;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-home-washer figure {
    max-width: 348px;
    margin: 0 0 32px;
  }
}
.p-home-dryer {
  background: url(/biz/common-global/img/index/bg_dryer_sp.webp) no-repeat top center;
  background-size: 100%;
  padding: 30px 0;
}
@media only screen and (min-width: 768px), print {
  .p-home-dryer {
    position: relative;
    background: none;
    padding: 70px 0 56px;
  }
}
@media only screen and (min-width: 768px), print {
  .p-home-dryer:before {
    content: "";
    background: url(/biz/common-global/img/index/bg_dryer_pc.webp) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 550px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.p-home-dryer h2 {
  color: #FFFFFF;
  font-family: "effra", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px;
}
@media only screen and (min-width: 768px), print {
  .p-home-dryer h2 {
    font-size: 4.0625rem;
    margin: 0 0 36px;
  }
}
.p-home-dryer p {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 14px;
}
@media only screen and (min-width: 768px), print {
  .p-home-dryer p {
    font-size: 1.375rem;
    margin: 0 0 36px;
  }
}
.p-home-dryer figure {
  max-width: 132px;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-home-dryer figure {
    max-width: 306px;
    margin: 0 0 32px;
  }
}
.p-home-about {
  background: #2399E3 url(/biz/common-global/img/index/bg_about_sp.webp) no-repeat top center;
  background-size: 100%;
  margin: 0 0 64px;
  padding: 56px 0 46px;
}
@media only screen and (min-width: 768px), print {
  .p-home-about {
    background: url(/biz/common-global/img/index/bg_about_pc.webp) no-repeat top center;
    background-size: cover;
    padding: 96px 0;
    margin: 0 0 120px;
  }
}
.p-home-about h2 {
  color: #FFFFFF;
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 36px;
}
@media only screen and (min-width: 768px), print {
  .p-home-about h2 {
    font-size: 2.5rem;
    margin: 0 0 48px;
  }
}
@media only screen and (min-width: 768px), print {
  .p-home-about__panel {
    display: flex;
    gap: 4%;
  }
}
.p-home-about__panel--item {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-home-about__panel--item {
    width: 30.6666666667%;
    margin: 0;
  }
}
.p-home-about__panel--item:last-child {
  margin: 0;
}
.p-home-about__panel--item a figure img {
  transition: all 0.3s;
}
.p-home-about__panel--item a span {
  display: block;
  padding: 26px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  position: relative;
}
@media only screen and (min-width: 768px), print {
  .p-home-about__panel--item a span {
    font-size: 1rem;
  }
}
.p-home-about__panel--item a span:after {
  background: url(/biz/common-global/img/icon_arrow_r.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  width: 14px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media (hover: hover) {
  .p-home-about__panel--item a:hover:where(:any-link, :enabled, summary):hover figure img, .p-home-about__panel--item a:active:where(:any-link, :enabled, summary):hover figure img, .p-home-about__panel--item a:focus:where(:any-link, :enabled, summary):hover figure img {
    transform: scale(1.1, 1.1);
  }
  .p-home-about__panel--item a:hover:where(:any-link, :enabled, summary):hover span, .p-home-about__panel--item a:active:where(:any-link, :enabled, summary):hover span, .p-home-about__panel--item a:focus:where(:any-link, :enabled, summary):hover span {
    color: #0041C0;
  }
  .p-home-about__panel--item a:hover:where(:any-link, :enabled, summary):hover span:after, .p-home-about__panel--item a:active:where(:any-link, :enabled, summary):hover span:after, .p-home-about__panel--item a:focus:where(:any-link, :enabled, summary):hover span:after {
    right: 10px;
  }
}
.p-home-about__panel--item a:hover:is(:hover) figure img, .p-home-about__panel--item a:active:is(:hover) figure img, .p-home-about__panel--item a:focus:is(:hover) figure img {
  transform: scale(1.1, 1.1);
}
.p-home-about__panel--item a:hover:is(:hover) span, .p-home-about__panel--item a:active:is(:hover) span, .p-home-about__panel--item a:focus:is(:hover) span {
  color: #0041C0;
}
.p-home-about__panel--item a:hover:is(:hover) span:after, .p-home-about__panel--item a:active:is(:hover) span:after, .p-home-about__panel--item a:focus:is(:hover) span:after {
  right: 10px;
}

/*
 * style.css
 */
/* ==========================================================
!sec
========================================================== */
.p-sec-download {
  padding: 52px 0 40px;
  background: url(/biz/common-global/img/sec/bg_download_sp.webp) no-repeat center center;
  background-size: cover;
}
@media only screen and (min-width: 768px), print {
  .p-sec-download {
    background: url(/biz/common-global/img/sec/bg_download_pc.webp) no-repeat center center;
    background-size: cover;
    padding: 68px 0 57px;
  }
}
.p-sec-download h2 {
  color: #FFFFFF;
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-sec-download h2 {
    font-size: 2.5rem;
    text-align: center;
  }
}

/*
 * style.css
 */
/* ==========================================================
!Company
========================================================== */
.p-company {
  padding: 40px 0 64px;
}
@media only screen and (min-width: 768px), print {
  .p-company {
    padding: 80px 0 120px;
  }
}
.p-company-panel {
  padding: 0 0 40px;
  margin: 0 0 40px;
  position: relative;
}
@media only screen and (min-width: 768px), print {
  .p-company-panel {
    margin: 0 0 120px;
  }
}
.p-company-panel:before {
  background: #F8F8F8;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 86px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px), print {
  .p-company-panel:before {
    height: calc(100% - 80px);
  }
}
.p-company-panel:last-of-type {
  margin: 0;
}
@media only screen and (min-width: 768px), print {
  .p-company-panel:last-of-type {
    padding: 0 0 40px;
  }
}
@media only screen and (min-width: 768px), print {
  .p-company-panel:last-of-type:before {
    bottom: 0;
  }
}
.p-company-panel .l-inner {
  padding: 0 8% 0 8%;
}
@media only screen and (min-width: 768px), print {
  .p-company-panel .l-inner {
    padding: 0 20px 0 20px;
  }
}
@media only screen and (min-width: 768px), print {
  .p-company-panel__title {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 0 40px;
  }
  .p-company-panel__title.is-even {
    flex-direction: row-reverse;
  }
}
.p-company-panel__title figure {
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-company-panel__title figure {
    width: calc(50% - 20px);
    margin: 0;
  }
}
.p-company-panel__title h2 {
  display: block;
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-company-panel__title h2 {
    font-size: 2.5rem;
    width: calc(50% - 20px);
    margin: 0;
  }
}
.p-company-panel p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 46px;
}
@media only screen and (min-width: 768px), print {
  .p-company-panel p {
    font-size: 1rem;
    margin: 0 0 52px;
  }
}
.p-company-overview {
  padding: 0 0 64px;
}
@media only screen and (min-width: 768px), print {
  .p-company-overview {
    padding: 0 0 120px;
  }
}
.p-company-overview table {
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.p-company-overview table th {
  background: #F4FAFF;
  border-bottom: 1px solid #E8E8E8;
  width: 42%;
  padding: 14px 8px;
  font-weight: 700;
}
@media only screen and (min-width: 768px), print {
  .p-company-overview table th {
    width: 22%;
    min-width: 215px;
    padding: 24px 16px;
  }
}
.p-company-overview table th span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}
.p-company-overview table td {
  border-bottom: 1px solid #E8E8E8;
  border-left: none;
  width: 58%;
}
@media only screen and (min-width: 768px), print {
  .p-company-overview table td {
    width: 78%;
  }
}
.p-company-overview table td p {
  font-size: 1rem;
  line-height: 1.7;
  padding: 14px 8px;
}
@media only screen and (min-width: 768px), print {
  .p-company-overview table td p {
    padding: 24px 16px;
  }
}
.p-company-overview table td ul li {
  border-bottom: 1px solid #E8E8E8;
  padding: 14px 8px;
}
@media only screen and (min-width: 768px), print {
  .p-company-overview table td ul li {
    padding: 24px 16px;
  }
}
.p-company-overview table td ul li:last-child {
  border: none;
}
.p-company-overview table td ul li .title {
  display: block;
  font-weight: 700;
  margin: 0 0 16px;
}
.p-company-overview table td ul li p {
  padding: 0;
  margin: 0 0 16px;
}
.p-company-overview table td ul li a {
  color: #0041C0;
  text-decoration: underline;
}
@media (hover: hover) {
  .p-company-overview table td ul li a:hover:where(:any-link, :enabled, summary):hover, .p-company-overview table td ul li a:active:where(:any-link, :enabled, summary):hover, .p-company-overview table td ul li a:focus:where(:any-link, :enabled, summary):hover {
    text-decoration: none;
  }
}
.p-company-overview table td ul li a:hover:is(:hover), .p-company-overview table td ul li a:active:is(:hover), .p-company-overview table td ul li a:focus:is(:hover) {
  text-decoration: none;
}
.p-company-share {
  background: #F8F8F8 url(/biz/common-global/img/company/brand/bg_brand_share.webp) no-repeat bottom 60px center;
  background-size: 100%;
  padding: 50px 4% 65px;
}
@media only screen and (min-width: 768px), print {
  .p-company-share {
    background: #F8F8F8 url(/biz/common-global/img/company/brand/bg_brand_share.webp) no-repeat bottom center;
    background-size: 780px;
    padding: 100px 0 90px;
  }
}
.p-company-share h2 {
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-company-share h2 {
    font-size: 2.5rem;
    margin: 0 0 40px;
  }
}
.p-company-share p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 38px;
}
@media only screen and (min-width: 768px), print {
  .p-company-share p {
    font-size: 1rem;
    margin: 0 0 64px;
  }
}
.p-company-share figure {
  display: block;
  margin: 0 auto 24px;
  width: fit-content;
}
.p-company-share .caution {
  display: block;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
}
@media only screen and (min-width: 768px), print {
  .p-company-share .caution {
    font-size: 1rem;
  }
}
.p-company-history {
  padding: 50px 4% 65px;
}
@media only screen and (min-width: 768px), print {
  .p-company-history {
    padding: 80px 0 120px;
  }
}
.p-company-history h2 {
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-company-history h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 0 47px;
  }
}
.p-company-history p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 38px;
}
.p-company-history ol {
  position: relative;
  margin: 0 0 38px;
}
@media only screen and (min-width: 768px), print {
  .p-company-history ol {
    margin: 0 0 60px;
  }
}
.p-company-history ol:before {
  background: #C5D0D5;
  content: "";
  display: block;
  width: 8px;
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 80px;
  z-index: 1;
}
.p-company-history ol li {
  display: flex;
  gap: 85px;
  margin: 0 0 40px;
  position: relative;
}
.p-company-history ol li:before {
  background: #0041C0;
  border-radius: 10px;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 74px;
  z-index: 3;
}
.p-company-history ol li:last-child {
  margin: 0;
}
.p-company-history ol li:last-child:after {
  background: #FFFFFF;
  content: "";
  display: block;
  width: 8px;
  height: calc(100% - 10px);
  position: absolute;
  bottom: 0;
  left: 80px;
  z-index: 1;
}
.p-company-history ol li .year {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}
.p-company-history ol li .text {
  font-size: 0.875rem;
  line-height: 1.7;
}
@media only screen and (min-width: 768px), print {
  .p-company-history ol li .text {
    font-size: 1rem;
  }
}
.p-company-history .caution {
  display: block;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 22px;
}
@media only screen and (min-width: 768px), print {
  .p-company-history .caution {
    font-size: 1rem;
    margin: 0 0 40px;
  }
}
.p-company-history .basecenter {
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-company-history .basecenter {
    max-width: 890px;
    margin: 0 auto 80px;
  }
}
.p-company-history .laundromats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
@media only screen and (min-width: 768px), print {
  .p-company-history .laundromats {
    row-gap: 24px;
    column-gap: 40px;
  }
}
.p-company-history .laundromats figure {
  width: calc((100% - 24px) / 3);
}
@media only screen and (min-width: 768px), print {
  .p-company-history .laundromats figure {
    width: calc((100% - 80px) / 3);
  }
}
.p-company-history .laundromats p {
  font-size: 0.75rem;
  text-align: center;
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 768px), print {
  .p-company-history .laundromats p {
    font-size: 1.25rem;
  }
}
.p-company-column {
  margin: 0 0 60px;
}
@media only screen and (min-width: 768px), print {
  .p-company-column {
    margin: 0 0 120px;
  }
}
.p-company-column h2 {
  color: #0041C0;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px), print {
  .p-company-column h2 {
    font-size: 2.5rem;
    margin: 0 0 48px;
  }
}
.p-company-column h3 {
  color: #0041C0;
  border-bottom: 1px solid #C5D0D5;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  padding: 0 0 10px;
  position: relative;
}
@media only screen and (min-width: 768px), print {
  .p-company-column h3 {
    margin: 0 0 20px;
  }
}
.p-company-column__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 40px;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__wrap {
    flex-direction: inherit;
    gap: 40px;
    margin: 0 0 80px;
  }
}
.p-company-column__wrap.is-bg {
  gap: 0;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__wrap.is-right {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 768px), print {
  .p-company-column__cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px), print {
  .p-company-column__cnt:nth-child(1) {
    width: 48%;
  }
}
@media only screen and (min-width: 768px), print {
  .p-company-column__cnt:nth-child(2) {
    width: 52%;
  }
}
.p-company-column__cnt .movietitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__cnt .movietitle {
    font-size: 1rem;
    margin: 0 0 16px;
  }
}
.p-company-column__cnt .videowrap {
  position: relative;
  padding: 56.25% 0 0;
  overflow: hidden;
}
.p-company-column__cnt .videowrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-company-column__cnt .videowrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-company-column__cnt p {
  display: block;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 10px 0 0;
  word-wrap: break-word;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__cnt p {
    font-size: 1rem;
    margin: 20px 0 0;
  }
}
.p-company-column__cnt p .color {
  color: #515C72;
  font-weight: 700;
}
.p-company-column__cnt figure {
  display: block;
}
.p-company-column__cnt figure + .p-products-column__list {
  margin: 10px 0 0;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__cnt figure + .p-products-column__list {
    margin: 24px 0 0;
  }
}
.is-bg .p-company-column__cnt {
  background: #F8F8F8;
}
@media only screen and (min-width: 768px), print {
  .is-half .p-company-column__cnt {
    width: calc((100% - 40px) / 2);
  }
}
.p-company-column__title {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  word-wrap: break-word;
  margin: 10px 0 0;
}
.p-company-column__title:first-of-type {
  margin: 0;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__title {
    font-size: 1.25rem;
    margin: 20px 0 0;
  }
}
.is-bg .p-company-column__list {
  padding: 20px;
}
.p-company-column__list li {
  margin: 0 0 16px;
  padding: 0 0 0 24px;
  position: relative;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__list li {
    padding: 0 0 0 42px;
    margin: 0 0 32px;
  }
}
.p-company-column__list li:last-child {
  margin: 0;
}
.p-company-column__list li:before {
  background: rgb(0, 65, 192);
  background: linear-gradient(280deg, rgb(0, 65, 192) 0%, rgb(9, 143, 227) 100%);
  border-radius: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__list li:before {
    width: 30px;
    height: 30px;
    top: -1px;
  }
}
.p-company-column__list li:after {
  background: #FFFFFF;
  border-radius: 50%;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: 4px;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__list li:after {
    width: 16px;
    height: 16px;
    top: 6px;
    left: 7px;
  }
}
.p-company-column__list--title {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__list--title {
    font-size: 1.25rem;
  }
}
.p-company-column__list--balloon {
  background: #C5D0D5;
  border-radius: 9999px;
  color: #515C72;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  width: fit-content;
  margin: 10px 0 0;
  padding: 0.3em 0.5em;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__list--balloon {
    font-size: 1rem;
    padding: 0.4em 1em;
    margin: 20px 0 0;
  }
}
.p-company-column__list--text {
  display: block;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 10px 0 0;
}
@media only screen and (min-width: 768px), print {
  .p-company-column__list--text {
    font-size: 1rem;
    margin: 20px 0 0;
  }
}
.p-company-column__list--text .color {
  color: #515C72;
  font-weight: 700;
}
.p-company-strength {
  padding: 0 0 64px;
}
@media only screen and (min-width: 768px), print {
  .p-company-strength {
    padding: 0 0 104px;
  }
}
.p-company-strength h2 {
  display: block;
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px), print {
  .p-company-strength h2 {
    font-size: 2.5rem;
    margin: 0 0 48px;
  }
}
.p-company-strength p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 38px;
}
@media only screen and (min-width: 768px), print {
  .p-company-strength p {
    font-size: 1rem;
    margin: 0 0 40px;
  }
}
.p-company-strength .ol-list-item {
  counter-increment: ol-list;
}
.p-company-strength .ol-list-item-title {
  padding: 0 0 0 1.3em;
  font-weight: 700;
  position: relative;
}
.p-company-strength .ol-list-item-title::before {
  content: counter(ol-list) ".";
  margin-right: 0.25em;
  color: #0041C0;
  position: absolute;
  top: 0;
  left: 0;
}
.p-company-strength .ol-list-item-text {
  padding: 0 0 0 1.3em;
}
.p-company-strength .moviebox {
  width: 100%;
  margin: 0 auto 32px;
}
@media only screen and (min-width: 768px), print {
  .p-company-strength .moviebox {
    max-width: 690px;
    margin: 0 auto 64px;
  }
}
.p-company-strength .moviebox:last-of-type {
  margin: 0 auto;
}
.p-company-strength .moviebox .movietitle {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px;
}
@media only screen and (min-width: 768px), print {
  .p-company-strength .moviebox .movietitle {
    font-size: 1.25rem;
    margin: 0 0 16px;
  }
}
.p-company-strength .moviebox .videowrap {
  position: relative;
  padding: 56.25% 0 0;
  overflow: hidden;
}
.p-company-strength .moviebox .videowrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-company-strength .moviebox .videowrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-company-lineup {
  background: url(/biz/common-global/img/company/strength/bg_lineup_sp.webp) no-repeat;
  background-size: 100%;
  padding: 76px 0 0;
  position: relative;
}
@media only screen and (min-width: 768px), print {
  .p-company-lineup {
    background: none;
  }
  .p-company-lineup:before {
    background: url(/biz/common-global/img/company/strength/bg_lineup_pc.webp) no-repeat center center;
    background-size: cover;
    content: "";
    display: block;
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.p-company-lineup__title {
  color: #FFFFFF;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
@media only screen and (min-width: 768px), print {
  .p-company-lineup__title {
    font-size: 6rem;
    margin: 0 0 48px;
  }
}
.p-company-lineup__text {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 38px;
}
@media only screen and (min-width: 768px), print {
  .p-company-lineup__text {
    font-size: 1rem;
    margin: 0 0 80px;
  }
}
.p-company-lineup__list {
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 40px;
}
@media only screen and (min-width: 768px), print {
  .p-company-lineup__list {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    margin: 0 0 80px;
  }
}
.p-company-lineup__list li {
  background: #FFFFFF;
  width: 100%;
  padding: 30px 30px 0;
}
@media only screen and (min-width: 768px), print {
  .p-company-lineup__list li {
    max-width: 300px;
  }
}
.p-company-lineup__list li figure {
  max-width: 150px;
  margin: 0 auto;
}
.p-company-lineup__list li figure figcaption {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin: 16px 0 0;
}
.p-company-lineup__imagelist {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 40px;
}
@media only screen and (min-width: 768px), print {
  .p-company-lineup__imagelist {
    gap: 40px;
    margin: 0 0 80px;
  }
}
.p-company-lineup__imagelist.is-col2 figure {
  width: 100%;
}
@media only screen and (min-width: 768px), print {
  .p-company-lineup__imagelist.is-col2 figure {
    width: calc((100% - 40px) / 2);
  }
}
.p-company-lineup__imagelist.is-col4 figure {
  width: calc((100% - 16px) / 2);
}
@media only screen and (min-width: 768px), print {
  .p-company-lineup__imagelist.is-col4 figure {
    width: calc((100% - 120px) / 4);
  }
}

/*
 * style.css
 */
/* ==========================================================
!Products
========================================================== */
.p-products {
  padding: 0 0 64px;
}
@media only screen and (min-width: 768px), print {
  .p-products {
    padding: 0 0 120px;
  }
}
.p-products-read {
  padding: 40px 0;
}
.p-products-read h2 {
  display: block;
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-products-read h2 {
    font-size: 2.5rem;
    margin: 0 0 32px;
  }
}
.p-products-read p {
  font-size: 1rem;
  line-height: 1.7;
}
@media only screen and (min-width: 768px), print {
  .p-products-read p {
    font-size: 1rem;
  }
}
.p-products-panel {
  padding: 72px 0 64px;
  position: relative;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel {
    padding: 72px 0 120px;
  }
}
.p-products-panel:before {
  content: "";
  display: block;
  width: 100%;
  max-height: 400px;
  aspect-ratio: 47/50;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel:before {
    aspect-ratio: inherit;
    height: 400px;
  }
}
.p-products-panel.is-washdry:before {
  background: url(/biz/common-global/img/products/bg_products_wash_sp.webp) no-repeat top center;
  background-size: 100%;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel.is-washdry:before {
    background: url(/biz/common-global/img/products/bg_products_wash_pc.webp) no-repeat top center;
    background-size: cover;
  }
}
.p-products-panel.is-dryer:before {
  background: url(/biz/common-global/img/products/bg_products_dryer_sp.webp) no-repeat top center;
  background-size: 100%;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel.is-dryer:before {
    background: url(/biz/common-global/img/products/bg_products_dryer_pc.webp) no-repeat top center;
    background-size: cover;
  }
}
.p-products-panel h2 {
  color: #FFFFFF;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel h2 {
    font-size: 4.0625rem;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 768px), print {
  .p-products-panel__wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
}
.p-products-panel__spec {
  margin: 0 0 40px;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel__spec {
    width: 50%;
  }
}
.p-products-panel__spec ul {
  padding: 0 4% 0 4%;
}
.p-products-panel__spec ul li {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.7;
  position: relative;
  padding: 0 0 0 18px;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel__spec ul li {
    font-size: 1rem;
  }
}
.p-products-panel__spec ul li:before {
  background: #FFFFFF;
  border-radius: 50%;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 7px;
  left: 0;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel__spec ul li:before {
    top: 9px;
  }
}
.p-products-panel__spec ul li:last-child {
  margin: 0;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel__model {
    width: 50%;
  }
}
.p-products-panel__model ul {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel__model ul {
    justify-content: flex-start;
    margin: 50px 0 0;
  }
}
.p-products-panel__model ul li figure {
  display: block;
}
.p-products-panel__model ul li figure img {
  display: block;
  height: 180px;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel__model ul li figure img {
    height: 232px;
  }
}
.p-products-panel__model ul li figure figcaption {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  margin: 8px 0 0;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel__model ul li figure figcaption {
    font-size: 1rem;
    margin: 16px 0 0;
  }
}
.p-products-panel a {
  margin: 24px auto 0;
}
@media only screen and (min-width: 768px), print {
  .p-products-panel a {
    margin: 32px auto 0;
  }
}
.p-products-column {
  margin: 0 0 60px;
}
@media only screen and (min-width: 768px), print {
  .p-products-column {
    margin: 0 0 120px;
  }
}
.p-products-column h2 {
  color: #0041C0;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px), print {
  .p-products-column h2 {
    font-size: 2.5rem;
    margin: 0 0 48px;
  }
}
.p-products-column h3 {
  color: #0041C0;
  border-bottom: 1px solid #C5D0D5;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  padding: 0 0 10px;
  position: relative;
}
@media only screen and (min-width: 768px), print {
  .p-products-column h3 {
    margin: 0 0 20px;
  }
}
.p-products-column__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__wrap {
    flex-direction: inherit;
    gap: 40px;
    margin: 0 0 60px;
  }
}
.p-products-column__wrap.is-bg {
  gap: 0;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__wrap.is-right {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 768px), print {
  .p-products-column__cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px), print {
  .p-products-column__cnt:nth-child(1) {
    width: 48%;
  }
}
@media only screen and (min-width: 768px), print {
  .p-products-column__cnt:nth-child(2) {
    width: 52%;
  }
}
.p-products-column__cnt .movietitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__cnt .movietitle {
    font-size: 1rem;
    margin: 0 0 16px;
  }
}
.p-products-column__cnt .videowrap {
  position: relative;
  padding: 56.25% 0 0;
  overflow: hidden;
}
.p-products-column__cnt .videowrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-products-column__cnt .videowrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-products-column__cnt figure {
  display: block;
}
.p-products-column__cnt figure + .p-products-column__list {
  margin: 10px 0 0;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__cnt figure + .p-products-column__list {
    margin: 24px 0 0;
  }
}
.is-bg .p-products-column__cnt {
  background: #F8F8F8;
}
@media only screen and (min-width: 768px), print {
  .is-half .p-products-column__cnt {
    width: calc((100% - 40px) / 2);
    justify-content: flex-start;
  }
}
.is-bg .p-products-column__list {
  padding: 20px;
}
.p-products-column__list li {
  margin: 0 0 16px;
  padding: 0 0 0 24px;
  position: relative;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__list li {
    padding: 0 0 0 42px;
    margin: 0 0 32px;
  }
}
.p-products-column__list li:last-child {
  margin: 0;
}
.p-products-column__list li:before {
  background: rgb(0, 65, 192);
  background: linear-gradient(280deg, rgb(0, 65, 192) 0%, rgb(9, 143, 227) 100%);
  border-radius: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__list li:before {
    width: 30px;
    height: 30px;
    top: -1px;
  }
}
.p-products-column__list li:after {
  background: #FFFFFF;
  border-radius: 50%;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: 4px;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__list li:after {
    width: 16px;
    height: 16px;
    top: 6px;
    left: 7px;
  }
}
.p-products-column__list--title {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__list--title {
    font-size: 1.25rem;
  }
}
.p-products-column__list--balloon {
  background: #C5D0D5;
  border-radius: 9999px;
  color: #515C72;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  width: fit-content;
  margin: 10px 0 0;
  padding: 0.3em 0.5em;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__list--balloon {
    font-size: 1rem;
    padding: 0.4em 1em;
    margin: 20px 0 0;
  }
}
.p-products-column__list--text {
  display: block;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 10px 0 0;
}
@media only screen and (min-width: 768px), print {
  .p-products-column__list--text {
    font-size: 1rem;
    margin: 20px 0 0;
  }
}
.p-products-column__list--text .color {
  color: #515C72;
  font-weight: 700;
}
.p-products-info {
  position: relative;
}
.p-products-info:before {
  background: url(/biz/common-global/img/products/bg_info.webp) no-repeat center center;
  background-size: cover;
  content: "";
  width: 100%;
  height: 437px;
  position: absolute;
  top: 150px;
  left: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px), print {
  .p-products-info:before {
    height: 874px;
    top: 120px;
  }
}
.p-products-info__wrap {
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 4%;
  margin: 0 0 40px;
}
@media only screen and (min-width: 768px), print {
  .p-products-info__wrap {
    padding: 80px;
    flex-direction: inherit;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media only screen and (min-width: 768px), print {
  .p-products-info__column {
    width: calc((100% - 40px) / 2);
  }
}
@media only screen and (min-width: 768px), print {
  .p-products-info__column.is-full {
    width: 100%;
  }
}
.p-products-info__column h2 {
  border-bottom: 1px solid #C5D0D5;
  color: #0041C0;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 10px;
  padding: 0 0 10px;
}
@media only screen and (min-width: 768px), print {
  .p-products-info__column h2 {
    font-size: 2.5rem;
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
}
.p-products-info__column h3 {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px), print {
  .p-products-info__column h3 {
    font-size: 1.25rem;
  }
}
.p-products-info__column ul li {
  margin: 0 0 10px;
}
@media only screen and (min-width: 768px), print {
  .p-products-info__column ul li {
    margin: 0 0 30px;
  }
}
.p-products-info__column ul li:last-child {
  margin: 0;
}
.p-products-info__subtitle {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
@media only screen and (min-width: 768px), print {
  .p-products-info__subtitle {
    font-size: 1.25rem;
  }
}
.p-products-info__subtitle.is-center {
  text-align: center;
}
.p-products-info__text {
  display: block;
  font-size: 0.875rem;
  line-height: 1.7;
}
@media only screen and (min-width: 768px), print {
  .p-products-info__text {
    font-size: 1rem;
  }
}
.p-products-info__text.is-center {
  text-align: center;
}
.p-products-info__caution {
  border-bottom: 1px solid #C5D0D5;
  display: block;
  font-family: "effra", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 20px 0 10px;
  padding: 0 0 10px;
}
@media only screen and (min-width: 768px), print {
  .p-products-info__caution {
    font-size: 1rem;
  }
}
.p-products-info__balloon {
  background: #C5D0D5;
  border-radius: 9999px;
  color: #515C72;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  width: fit-content;
  margin: 10px 0 0;
  padding: 0.3em 0.5em;
}
@media only screen and (min-width: 768px), print {
  .p-products-info__balloon {
    font-size: 1rem;
    padding: 0.4em 1.2em;
  }
}

/*
 * style.css
 */
/* ==========================================================
!Term
========================================================== */
.p-term {
  padding: 40px 0 80px;
}
@media only screen and (min-width: 768px), print {
  .p-term {
    padding: 80px 0 120px;
  }
}
.p-term__read {
  margin: 0 0 26px;
}
@media only screen and (min-width: 768px), print {
  .p-term__read {
    margin: 0 0 52px;
  }
}
.p-term__read h2 {
  display: block;
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-term__read h2 {
    font-size: 2.5rem;
    margin: 0 0 32px;
  }
}
.p-term__read p {
  font-size: 1rem;
  line-height: 1.7;
}
@media only screen and (min-width: 768px), print {
  .p-term__read p {
    font-size: 1rem;
  }
}
.p-term__list {
  counter-reset: listnum;
}
.p-term__list li {
  position: relative;
  padding: 0 0 0 1.5em;
  margin: 0 0 26px;
}
@media only screen and (min-width: 768px), print {
  .p-term__list li {
    margin: 0 0 52px;
  }
}
.p-term__list li:last-child {
  margin: 0;
}
.p-term__list li:before {
  counter-increment: listnum;
  content: counter(listnum) ".";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px), print {
  .p-term__list li:before {
    font-size: 1.25rem;
  }
}
.p-term__list li p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 16px;
}
@media only screen and (min-width: 768px), print {
  .p-term__list li p {
    font-size: 1.25rem;
    margin: 0 0 30px;
  }
}
.p-term__list li .use {
  display: block;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 10px;
}
@media only screen and (min-width: 768px), print {
  .p-term__list li .use {
    font-size: 1rem;
  }
}
.p-term__list li ol {
  counter-reset: listnum;
}
.p-term__list li ol li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  padding: 0 0 0 1.8em;
  position: relative;
  margin: 0 0 16px;
}
@media only screen and (min-width: 768px), print {
  .p-term__list li ol li {
    margin: 0 0 30px;
  }
}
.p-term__list li ol li:last-child {
  margin: 0;
}
.p-term__list li ol li:before {
  counter-increment: listnum;
  content: "(" counter(listnum) ")";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  position: absolute;
}
/*
 * style.css
 */
/* ==========================================================
!News
========================================================== */
/*
 * style.css
 */
/* ==========================================================
!Company
========================================================== */
.p-contact {
  padding: 40px 0;
}
@media only screen and (min-width: 768px), print {
  .p-contact {
    padding: 80px 0;
  }
}
.p-contact input,
.p-contact textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}
.p-contact-read {
  width: 890px;
  max-width: 100%;
  margin: 0 auto 60px;
}
@media only screen and (min-width: 768px), print {
  .p-contact-read {
    margin: 0 auto 125px;
  }
}
.p-contact-read h2 {
  display: block;
  font-family: "effra", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px), print {
  .p-contact-read h2 {
    font-size: 2.5rem;
    margin: 0 0 32px;
  }
}
.p-contact-read p {
  font-size: 1rem;
  margin: 0 0 1.5em;
  line-height: 1.7;
}
.p-contact-confirm .form-item-row {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #c5d0d5;
}
.p-contact-confirm .form-item-row:not(:last-of-type) {
  margin-bottom: 1.2rem;
}
.p-contact .contact-progress {
  max-width: 100%;
  margin: 0 auto 40px;
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-progress {
    width: 890px;
    margin: 0 auto 64px;
  }
}
.p-contact .contact-progress ul {
  position: relative;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-progress ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-contact .contact-progress ul li {
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 50px;
  background: #eee;
  color: #515c72;
  font-weight: 700;
}
.p-contact .contact-progress ul li:not(:last-of-type) {
  margin: 0 0 8px;
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-progress ul li:not(:last-of-type) {
    margin: 0;
  }
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-progress ul li {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .p-contact .contact-progress ul li::before, .p-contact .contact-progress ul li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin: auto;
  }
  .p-contact .contact-progress ul li::before {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 50px 0 50px 40px;
    z-index: 10;
  }
  .p-contact .contact-progress ul li::after {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-style: solid;
    border-color: transparent transparent transparent #eee;
    border-width: 40px 0 40px 32px;
    z-index: 10;
  }
}
.p-contact .contact-progress ul li.current {
  background: #0041c0;
  color: #fff;
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-progress ul li.current::after {
    border-color: transparent transparent transparent #0041c0;
  }
}
.p-contact .contact-form-container {
  max-width: 100%;
  margin: 0 auto 64px;
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-form-container {
    width: 890px;
    margin: 0 auto 80px;
    padding: 0 40px;
  }
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-form-container .form-item-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-contact .contact-form-container .form-item-row:not(:last-of-type) {
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-form-container .form-item-row:not(:last-of-type) {
    margin-bottom: 32px;
  }
}
.p-contact .contact-form-container .form-item-row dt,
.p-contact .contact-form-container .form-item-row .smf-item__col--label {
  font-size: 1rem;
  width: 100%;
  margin: 0 0 8px;
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-form-container .form-item-row dt,
  .p-contact .contact-form-container .form-item-row .smf-item__col--label {
    width: 170px;
    margin: 0;
  }
}
.p-contact .contact-form-container .form-item-row dd,
.p-contact .contact-form-container .form-item-row .smf-item__col--controls {
  width: 100%;
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-form-container .form-item-row dd,
  .p-contact .contact-form-container .form-item-row .smf-item__col--controls {
    width: calc(100% - 170px);
  }
}
.p-contact .contact-form-container .form-item-row .smf-item__label__text a {
  padding: 0;
}
.p-contact .contact-form-container .form-item-row .required {
  font-size: 0.75rem;
  display: inline-block;
  padding: 2px 0;
  margin: 0 0 0 9px;
  width: 62px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: #ed0000;
  border-radius: 2px;
}
@media only screen and (min-width: 768px), print {
  .p-contact .contact-form-container .form-item-row .required {
    display: block;
    margin: 4px 0 0;
  }
}
.p-contact .contact-form-container .form-control {
  font-size: 1rem;
  display: block;
  width: 100%;
  height: 44px;
  padding: 8px 16px;
  font-weight: normal;
  line-height: 1.75;
  color: #030303;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #94a0b7;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.p-contact .contact-form-container .form-control::placeholder {
  color: #94a0b7;
  font-weight: normal;
}
.p-contact .contact-form-container .form-control.wpcf7-not-valid {
  background-color: #ffeaea;
  border-color: #f0332b;
}
.p-contact .contact-form-container textarea.form-control {
  height: auto;
  max-height: 160px;
}
.p-contact .contact-form-container .smf-select-control__control {
  height: auto;
  box-shadow: none;
}
.p-contact .form-privacy {
  margin: 64px 0 0;
}
@media only screen and (min-width: 768px), print {
  .p-contact .form-privacy {
    margin: 80px 0 0;
  }
}
.p-contact .form-privacy > .base {
  font-size: 1.5rem;
  margin: 0 0 24px;
  text-align: center;
  font-family: "effra", sans-serif;
  font-weight: 700;
}
@media only screen and (min-width: 768px), print {
  .p-contact .form-privacy > .base {
    font-size: 2.5rem;
  }
}
.p-contact .form-privacy .inner {
  height: 490px;
  overflow-y: scroll;
  border: solid 1px #94a0b7;
  padding: 24px 16px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px), print {
  .p-contact .form-privacy .inner {
    padding: 38px 45px;
  }
}
.p-contact .form-privacy input[type=radio],
.p-contact .form-privacy input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}
.p-contact .form-privacy .form-checkbox {
  margin: 0 auto 40px;
  text-align: center;
}
@media only screen and (min-width: 768px), print {
  .p-contact .form-privacy .form-checkbox {
    margin: 0 auto 56px;
  }
}
.p-contact .form-privacy .custom-checkbox {
  margin-bottom: 0.6rem;
}
.p-contact .form-privacy .custom-checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.p-contact .form-privacy .custom-checkbox input:checked ~ .wpcf7-list-item-label::before,
.p-contact .form-privacy .custom-checkbox input:checked ~ .smf-checkbox-control__label::before {
  color: #fff;
  border-color: #0041c0;
  background-color: #0041c0;
}
.p-contact .form-privacy .custom-checkbox input:checked ~ .wpcf7-list-item-label::after,
.p-contact .form-privacy .custom-checkbox input:checked ~ .smf-checkbox-control__label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.p-contact .form-privacy .custom-checkbox .wpcf7-list-item-label,
.p-contact .form-privacy .custom-checkbox .smf-checkbox-control__label {
  padding-left: 8px;
}
.p-contact .form-privacy .custom-checkbox .wpcf7-not-valid-tip,
.p-contact .form-privacy .custom-checkbox .smf-error-messages {
  width: 180px;
  margin: 8px auto 0;
}
.p-contact .form-privacy .custom-control {
  position: relative;
  display: block;
  padding-left: 1.5rem;
}
.p-contact .form-privacy .wpcf7-list-item-label,
.p-contact .form-privacy .smf-checkbox-control__label {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.p-contact .form-privacy .wpcf7-list-item-label::before,
.p-contact .form-privacy .smf-checkbox-control__label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: -1.5rem;
  pointer-events: none;
  background-color: #fff;
  border: #94a0b7 solid 2px;
  border-radius: 0.25rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.p-contact .form-privacy .wpcf7-list-item-label::after,
.p-contact .form-privacy .smf-checkbox-control__label::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: -1.5rem;
  background: no-repeat 50%/66% 66%;
}
.p-contact .form-btn-group {
  margin: 0 0 64px;
  text-align: center;
}
@media only screen and (min-width: 768px), print {
  .p-contact .form-btn-group {
    margin: 0 0 120px;
  }
}
.p-contact .smf-action {
  text-align: center;
}
.p-contact .smf-button-control {
  margin: 10px !important;
}
.p-contact .wpcf7-submit,
.p-contact .wpcf7-previous,
.p-contact .form-control,
.p-contact .smf-button-control__control {
  font-size: 1rem;
  display: block;
  width: 300px;
  max-width: 100%;
  padding: 20px 40px;
  margin: 0 auto;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s all;
}
.p-contact .wpcf7-submit,
.p-contact .form-control {
  border: solid 1px #0041c0;
  background: #0041c0;
  box-shadow: 0 5px 10px rgba(0, 65, 192, 0.42);
  color: #fff;
}
.p-contact .wpcf7-submit:hover,
.p-contact .form-control:hover {
  background: #fff;
  color: #0041c0;
}
.p-contact .smf-button-control__control {
  padding: 20px 40px !important;
  border: solid 1px #0041c0 !important;
  background: #0041c0 !important;
  box-shadow: 0 5px 10px rgba(0, 65, 192, 0.42);
  color: #fff !important;
  transition: 0.3s all !important;
}
.p-contact .smf-button-control__control[data-action=back] {
  border: solid 1px #c5d0d5 !important;
  background: #c5d0d5 !important;
  box-shadow: 0 5px 10px rgba(147, 147, 147, 0.42) !important;
  color: #fff !important;
}
.p-contact .smf-button-control__control[data-action=back]:hover {
  background: #fff !important;
  color: #c5d0d5 !important;
}
.p-contact .smf-button-control__control:hover {
  background: #fff !important;
  color: #0041c0 !important;
}
.p-contact .wpcf7-previous {
  border: solid 1px #c5d0d5;
  background: #c5d0d5;
  box-shadow: 0 5px 10px rgba(147, 147, 147, 0.42);
  color: #fff;
}
.p-contact .wpcf7-previous:hover {
  background: #fff;
  color: #c5d0d5;
}
.p-contact .screen-reader-response {
  width: 890px;
  margin: 0 auto;
  background-color: #ffeaea;
}
.p-contact .screen-reader-response:has(+ .invalid) p {
  padding: 20px 30px;
}
.p-contact .screen-reader-response p {
  color: #e20016;
}
.p-contact .screen-reader-response ul {
  display: none;
}
.p-contact .wpcf7-not-valid-tip,
.p-contact .smf-error-messages {
  display: block;
  margin: 8px 0 0;
  color: #e20016;
  position: relative;
  padding: 0 0 0 24px;
}
.p-contact .wpcf7-not-valid-tip::before,
.p-contact .smf-error-messages::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(/biz/common-global/img/icon_alert.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-contact .wpcf7-response-output {
  display: none;
}

[data-screen=input] .progress-bar-item.inquiry,
[data-screen=back] .progress-bar-item.inquiry,
[data-screen=invalid] .progress-bar-item.inquiry,
[data-screen=complete] .progress-bar-item.complete,
[data-screen=confirm] .progress-bar-item.confirm {
  background: #0041c0;
  color: #fff;
}
@media only screen and (min-width: 768px), print {
  [data-screen=input] .progress-bar-item.inquiry::after,
  [data-screen=back] .progress-bar-item.inquiry::after,
  [data-screen=invalid] .progress-bar-item.inquiry::after,
  [data-screen=complete] .progress-bar-item.complete::after,
  [data-screen=confirm] .progress-bar-item.confirm::after {
    border-color: transparent transparent transparent #0041c0;
  }
}

[data-screen=confirm] .form-item-row {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #c5d0d5;
}
[data-screen=confirm] .form-item-row:not(:last-of-type) {
  margin-bottom: 1.2rem;
}

[data-screen=confirm] .form-privacy,
[data-screen=confirm] [data-name=en-policy] {
  display: none;
}

[data-screen=complete] .form-btn-group .form-control {
  display: inline-block !important;
  width: 300px !important;
  height: auto !important;
  padding: 20px 40px !important;
  border: solid 1px #0041c0 !important;
  background: #0041c0 !important;
  box-shadow: 0 5px 10px rgba(0, 65, 192, 0.42);
  color: #fff !important;
}

/*
 * style.css
 */
/* ==========================================================
!Company
========================================================== */
.p-policy {
  margin: 40px 0 64px;
}
@media only screen and (min-width: 768px), print {
  .p-policy {
    margin: 80px 0 120px;
  }
}

.form-privacy .content-overview {
  margin: 0 0 5em;
}
.form-privacy .content-overview .base {
  font-size: 1.5rem;
  margin: 0 0 1em;
  font-family: "effra", sans-serif;
  font-weight: 700;
  text-align: left;
}
@media only screen and (min-width: 768px), print {
  .form-privacy .content-overview .base {
    font-size: 1.875rem;
  }
}
.form-privacy .content-overview p {
  margin: 0 0 1.5em;
  line-height: 1.7;
}
.form-privacy .privacy-order-list {
  padding: 0;
}
.form-privacy .privacy-order-list p {
  margin: 0 0 1.5em;
  line-height: 1.7;
}
.form-privacy .order-list > li {
  counter-increment: list;
  margin-bottom: 5em;
}
.form-privacy .order-list > li > p > span {
  font-weight: 700;
}
.form-privacy .order-list .sub-list > li {
  counter-increment: sub;
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.form-privacy .order-list .sub-list > li:not(:last-child) {
  margin: 0 0 1.5em;
}
.form-privacy .order-list .sub-list > li > p::before {
  content: "(" counter(sub) ")";
  font-size: 16px;
  font-weight: 700;
  margin-right: 0.5em;
}
.form-privacy .order-item-head {
  font-weight: 700;
  font-size: 20px;
  text-indent: -20px;
  padding-left: 1em;
  margin: 0 0 1em;
}
.form-privacy .order-item-head::before {
  content: counter(list) ".";
  font-size: 20px;
  margin-right: 0.25em;
}
.form-privacy .privacy-child-list > li {
  counter-increment: child;
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.form-privacy .privacy-child-list > li > p::before {
  content: "(" counter(child, lower-roman) ")";
  font-size: 16px;
  margin-right: 0.5em;
}
.form-privacy .privacy-table table p {
  margin: 0;
}
@media only screen and (min-width: 768px), print {
  .form-privacy .privacy-table table tr:first-of-type td {
    border-top: solid 1px #c5d0d5;
  }
}
.form-privacy .privacy-table table tr:first-of-type td:first-of-type {
  border-top: solid 1px #c5d0d5;
}
.form-privacy .privacy-table table td {
  display: block;
  border-right: none;
  border-bottom: solid 1px #c5d0d5;
}
@media only screen and (min-width: 768px), print {
  .form-privacy .privacy-table table td {
    display: table-cell;
    border-right: solid 1px #c5d0d5;
  }
}
.form-privacy .privacy-table table td:first-of-type:not(.thead-sub) {
  border-left: none;
}
.form-privacy .privacy-table table td:last-child {
  border-right: none;
}
.form-privacy .privacy-table table td.thead {
  background-color: #f4faff;
  text-align: center;
  vertical-align: middle;
}
@media only screen and (min-width: 768px), print {
  .form-privacy .privacy-table table td.thead {
    width: 1rem;
  }
}
.form-privacy .privacy-table table td.tname {
  padding: 16px;
  text-align: center;
  vertical-align: middle;
}
@media only screen and (min-width: 768px), print {
  .form-privacy .privacy-table table td.tname {
    width: 17rem;
    padding: 1.6rem;
    text-align: left;
  }
}
.form-privacy .privacy-table table td.tcont {
  padding: 16px;
}
@media only screen and (min-width: 768px), print {
  .form-privacy .privacy-table table td.tcont {
    width: calc(100% - 18rem);
    padding: 1.6rem;
  }
}
.form-privacy .privacy-table table ul li {
  counter-increment: table-list;
  text-indent: -1em;
  padding-left: 1em;
}
.form-privacy .privacy-table table ul li p::before {
  content: counter(table-list) ".";
  margin-right: 0.25em;
}
.form-privacy .privacy-child-list.en > li {
  counter-increment: en-child;
}
.form-privacy .privacy-child-list.en > li p::before {
  content: "(" counter(en-child, lower-alpha) ")";
}
.form-privacy .privacy-child-list > li > *:not(h6) {
  padding-left: 0;
}
.form-privacy .privacy-order-list .inner-gray:not(:last-of-type) {
  margin-bottom: 2em;
}
.form-privacy .privacy-pdf-list li:not(:last-child) {
  margin-bottom: 1.5em;
}
.form-privacy .privacy-pdf-list li a .link-cion {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/biz/common-global/img/icon_pdf_blue.svg) no-repeat;
  background-size: cover;
  padding-left: 0.3em;
  vertical-align: top;
}
.form-privacy .privacy-pdf-list li > p > span {
  display: block;
}
.form-privacy .privacy-item-list-title {
  margin: 0 0 24px;
  padding: 24px;
  background-color: #edeff5;
  font-size: 20px;
  font-weight: 700;
}
.form-privacy .privacy-item-list p {
  margin: 0 0 1.5em;
  line-height: 1.7;
}
.form-privacy .privacy-item-list li:not(:last-child) {
  margin: 0 0 60px;
}
.form-privacy .side-border {
  font-weight: 700;
  margin-bottom: 1em;
}
.form-privacy .t-underline {
  color: #0041c0;
  text-decoration: underline;
}
.form-privacy .t-bold {
  font-weight: 700;
}
.form-privacy .inner-gray {
  padding: 16px;
  text-indent: 0;
  background-color: #f8f8f8;
}
@media only screen and (min-width: 768px), print {
  .form-privacy .inner-gray {
    padding: 24px;
  }
}
.form-privacy .inner-gray::before {
  display: none;
}
.form-privacy .inner-gray .side-border {
  margin: 0 0 1.5em;
}
.form-privacy .inner-gray p:last-child {
  margin: 0;
}
.form-privacy .no-indent {
  text-indent: 0 !important;
}
.form-privacy .table {
  width: 100%;
  margin: 0 0 1em;
  border-collapse: collapse;
}
.form-privacy .table th,
.form-privacy .table td {
  padding: 10px;
  vertical-align: top;
}
@media only screen and (min-width: 768px), print {
  .form-privacy .table th,
  .form-privacy .table td {
    padding: 0.75rem;
    border-top: 1px solid #c5d0d5;
  }
}

/*
 * style.css
 */
/*
 * _utility.css
 */
/* ==========================================================
!Link
========================================================== */
a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover:where(:any-link, :enabled, summary):hover, a:active:where(:any-link, :enabled, summary):hover, a:focus:where(:any-link, :enabled, summary):hover {
    color: #333333;
  }
}
a:hover:is(:hover), a:active:is(:hover), a:focus:is(:hover) {
  color: #333333;
}

a.u-blank[target=_blank]:after {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin: 0 0 0 4px;
  padding: 0 13px 0 0;
  vertical-align: bottom;
  content: "";
  background-size: contain;
}

/* ==========================================================
!Base Fonts
========================================================== */
.u-fwN {
  font-weight: normal;
}

.u-fwB {
  font-weight: bold;
}

.u-fzSS {
  font-size: 75%;
} /* base 16px -> 12px */
.u-fzS {
  font-size: 88%;
} /* base 16px -> 14px */
.u-fzM {
  font-size: 100%;
}

.u-fzL {
  font-size: 113%;
} /* base 16px -> 18px */
.u-fzLL {
  font-size: 125%;
} /* base 16px -> 20px */
.u-fzLLL {
  font-size: 138%;
} /* base 16px -> 22px */
sup {
  font-size: 75%;
  vertical-align: top;
}

sub {
  font-size: 75%;
  vertical-align: baseline;
}

/* ==========================================================
!iframe youtube googlemap
========================================================== */
.u-youtube,
.u-googlemap {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
.u-youtube::before,
.u-googlemap::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}
.u-youtube iframe,
.u-youtube video,
.u-googlemap iframe,
.u-googlemap video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ==========================================================
!Inline Align
========================================================== */
.u-taL {
  text-align: left !important;
}

.u-taC {
  text-align: center !important;
}

.u-taR {
  text-align: right !important;
}

.u-vaT {
  vertical-align: top !important;
}

.u-vaM {
  vertical-align: middle !important;
}

.u-vaB {
  vertical-align: bottom !important;
}

.u-blockC {
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

* html .u-blockC {
  margin-right: 0;
  margin-left: 0;
}

.u-blockR {
  margin-left: auto;
  text-align: left;
}

* html .u-blockR {
  margin-left: 0;
}

/* 親を超える子
------------------------------------ */
.u-side-over-width {
  margin-left: calc(586px - 50vw);
  margin-right: calc(586px - 50vw);
}

.u-side-over-width-content {
  margin-left: 0 calc(586px - 50vw);
  margin-right: 0 calc(586px - 50vw);
  padding-left: 0 calc(50vw - 586px);
  padding-right: 0 calc(50vw - 586px);
}

.u-over-width {
  margin-left: calc(50% - 50vw + 10px);
  margin-right: calc(50% - 50vw + 10px);
}

.u-over-width-content {
  margin-left: calc(50% - 50vw + 10px);
  margin-right: calc(50% - 50vw + 10px);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/* どのdisplayで表示させるか
------------------------------------ */
/* 479px以下（SP） */
.u-sp {
  display: inline-block;
}

.u-pc {
  display: none;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
  .u-sp {
    display: none;
  }
  .u-pc {
    display: inline-block;
  }
}
/* ==========================================================
!Column
========================================================== */
/* 600px以上（ファブレット） */
@media only screen and (min-width: 640px), print {
  .u-flex-start {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
  }
  .u-flex-end {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
  }
  .u-flex_center {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
  .u-flex_space-between {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
  }
  .u-flex_space-around {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
  }
  .u-flex_space-between_start {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: start;
  }
  .u-col_1 {
    justify-content: center !important;
    width: 100%;
    max-width: 800px;
  }
  .u-col_2 {
    gap: 16px;
  }
  .u-col_2 > * {
    width: calc(50% - 16px) !important;
  }
  .u-col_3 {
    gap: 12px;
  }
  .u-col_3 > * {
    width: calc(33.3333333333% - 12px) !important;
  }
  .u-col_3 > *:after {
    display: block;
    width: calc(33.3333333333% - 12px) !important;
    content: "";
  }
  .u-col_4 {
    gap: 8px;
  }
  .u-col_4 > * {
    width: calc(25% - 8px) !important;
  }
  .u-col_4 > *:before, .u-col_4 > *:after {
    display: block;
    width: calc(25% - 8px) !important;
    content: "";
  }
  .u-col_4 > *:before {
    order: 1;
  }
  .u-col_5 > * {
    justify-content: flex-start !important;
    width: 18.9% !important;
    margin: 0 8px 0 0 !important;
  }
  .u-col_5 > *:last-child {
    margin: 0 !important;
  }
  /* IE11 */
  *::-ms-backdrop,
  .u-col_2 > * > * {
    width: 50% !important;
  }
  *::-ms-backdrop,
  .u-col_3 > * > * {
    width: 33.3% !important;
  }
  *::-ms-backdrop,
  .u-col_3 > * > *:last-child {
    width: 33.4% !important;
  }
  *::-ms-backdrop,
  .u-col_3 > * > *:after {
    width: 33.4% !important;
  }
  *::-ms-backdrop,
  .u-col_4 > * > * {
    width: 25% !important;
  }
  *::-ms-backdrop,
  .u-col_4 > * > *:before {
    width: 25% !important;
  }
  *::-ms-backdrop,
  .u-col_4 > * > *:after {
    width: 25% !important;
  }
  *::-ms-backdrop,
  .u-col_5 > * > * {
    width: 20% !important;
  }
}
/* ==========================================================
!Width
========================================================== */
/* 960px Grid */
.u-w960 {
  width: 960px;
}

.u-w800 {
  width: 800px;
}

.u-w640 {
  width: 640px;
}

.u-w480 {
  width: 480px;
}

.u-w320 {
  width: 320px;
}

.u-w160 {
  width: 160px;
}

.u-wHalf {
  width: 48%;
}

.u-wTri {
  width: 33%;
}

.u-wQuart {
  width: 24%;
}

.u-wFull {
  width: 99.9%;
}

.u-wMax {
  width: 100%;
}

.u-w03per {
  width: 3% !important;
}

.u-w05per {
  width: 5% !important;
}

.u-w10per {
  width: 10% !important;
}

.u-w13per {
  width: 13% !important;
}

.u-w15per {
  width: 15% !important;
}

.u-w20per {
  width: 20% !important;
}

.u-w23per {
  width: 23% !important;
}

.u-w25per {
  width: 25% !important;
}

.u-w30per {
  width: 30% !important;
}

.u-w33per {
  width: 33% !important;
}

.u-w35per {
  width: 35% !important;
}

.u-w40per {
  width: 40% !important;
}

.u-w43per {
  width: 43% !important;
}

.u-w45per {
  width: 45% !important;
}

.u-w50per {
  width: 50% !important;
}

.u-w53per {
  width: 53% !important;
}

.u-w55per {
  width: 55% !important;
}

.u-w60per {
  width: 60% !important;
}

.u-w63per {
  width: 63% !important;
}

.u-w65per {
  width: 65% !important;
}

.u-w70per {
  width: 70% !important;
}

.u-w73per {
  width: 73% !important;
}

.u-w75per {
  width: 75% !important;
}

.u-w80per {
  width: 80% !important;
}

.u-w83per {
  width: 83% !important;
}

.u-w85per {
  width: 85% !important;
}

.u-w90per {
  width: 90% !important;
}

.u-w93per {
  width: 93% !important;
}

.u-w95per {
  width: 95% !important;
}

/* ==========================================================
!Floats
========================================================== */
.u-flL {
  display: inline;
  float: left;
}

.u-flR {
  display: inline;
  float: right;
}

.u-flImgL {
  display: inline;
  float: left;
  margin-right: 10px;
}

.u-flImgR {
  display: inline;
  float: right;
  margin-left: 10px;
}

.u-ftBox {
  overflow: hidden;
  *zoom: 1;
}

/* ==========================================================
!Tools
========================================================== */
.u-clear {
  clear: both;
}

.u-block {
  display: block;
}

.u-hide {
  display: none;
}

.u-bgN {
  background: none !important;
}

.u-tdU {
  text-decoration: underline;
}

.u-tdN {
  text-decoration: none;
}

/* ==========================================================
!JavaScript
========================================================== */
.over {
  /* ロールオーバー呼び出し用 */
}

.scroll {
  /* サイト内リンク以外のスムーススクロール呼び出し用 */
}

/* ==========================================================
!Margin
========================================================== */
.u-mt00 {
  margin-top: 0 !important;
}

.u-mt05 {
  margin-top: 0.5% !important;
}

.u-mt10 {
  margin-top: 1% !important;
}

.u-mt15 {
  margin-top: 1.5% !important;
}

.u-mt20 {
  margin-top: 2% !important;
}

.u-mt25 {
  margin-top: 2.5% !important;
}

.u-mt30 {
  margin-top: 3% !important;
}

.u-mt35 {
  margin-top: 3.5% !important;
}

.u-mt40 {
  margin-top: 4% !important;
}

.u-mt45 {
  margin-top: 4.5% !important;
}

.u-mt50 {
  margin-top: 5% !important;
}

.u-mt55 {
  margin-top: 5.5% !important;
}

.u-mt60 {
  margin-top: 6% !important;
}

.u-mt65 {
  margin-top: 6.5% !important;
}

.u-mt70 {
  margin-top: 7% !important;
}

.u-mt75 {
  margin-top: 7.5% !important;
}

.u-mt80 {
  margin-top: 8% !important;
}

.u-mt85 {
  margin-top: 8.5% !important;
}

.u-mt90 {
  margin-top: 9% !important;
}

.u-mt95 {
  margin-top: 9.5% !important;
}

.u-mt100 {
  margin-top: 10% !important;
}

.u-mr00 {
  margin-right: 0 !important;
}

.u-mr05 {
  margin-right: 0.5% !important;
}

.u-mr10 {
  margin-right: 1% !important;
}

.u-mr15 {
  margin-right: 1.5% !important;
}

.u-mr20 {
  margin-right: 2% !important;
}

.u-mr25 {
  margin-right: 2.5% !important;
}

.u-mr30 {
  margin-right: 3% !important;
}

.u-mr35 {
  margin-right: 3.5% !important;
}

.u-mr40 {
  margin-right: 4% !important;
}

.u-mr45 {
  margin-right: 4.5% !important;
}

.u-mr50 {
  margin-right: 5% !important;
}

.u-mr55 {
  margin-right: 5.5% !important;
}

.u-mr60 {
  margin-right: 6% !important;
}

.u-mr65 {
  margin-right: 6.5% !important;
}

.u-mr70 {
  margin-right: 7% !important;
}

.u-mr75 {
  margin-right: 7.5% !important;
}

.u-mr80 {
  margin-right: 8% !important;
}

.u-mr85 {
  margin-right: 8.5% !important;
}

.u-mr90 {
  margin-right: 9% !important;
}

.u-mr95 {
  margin-right: 9.5% !important;
}

.u-mr100 {
  margin-right: 10% !important;
}

.u-mb00 {
  margin-bottom: 0 !important;
}

.u-mb05 {
  margin-bottom: 0.5% !important;
}

.u-mb10 {
  margin-bottom: 1% !important;
}

.u-mb15 {
  margin-bottom: 1.5% !important;
}

.u-mb20 {
  margin-bottom: 2% !important;
}

.u-mb25 {
  margin-bottom: 2.5% !important;
}

.u-mb30 {
  margin-bottom: 3% !important;
}

.u-mb35 {
  margin-bottom: 3.5% !important;
}

.u-mb40 {
  margin-bottom: 4% !important;
}

.u-mb45 {
  margin-bottom: 4.5% !important;
}

.u-mb50 {
  margin-bottom: 5% !important;
}

.u-mb55 {
  margin-bottom: 5.5% !important;
}

.u-mb60 {
  margin-bottom: 6% !important;
}

.u-mb65 {
  margin-bottom: 6.5% !important;
}

.u-mb70 {
  margin-bottom: 7% !important;
}

.u-mb75 {
  margin-bottom: 7.5% !important;
}

.u-mb80 {
  margin-bottom: 8% !important;
}

.u-mb85 {
  margin-bottom: 8.5% !important;
}

.u-mb90 {
  margin-bottom: 9% !important;
}

.u-mb95 {
  margin-bottom: 9.5% !important;
}

.u-mb100 {
  margin-bottom: 10% !important;
}

.u-ml00 {
  margin-left: 0 !important;
}

.u-ml05 {
  margin-left: 0.5% !important;
}

.u-ml10 {
  margin-left: 1% !important;
}

.u-ml15 {
  margin-left: 1.5% !important;
}

.u-ml20 {
  margin-left: 2% !important;
}

.u-ml25 {
  margin-left: 2.5% !important;
}

.u-ml30 {
  margin-left: 3% !important;
}

.u-ml35 {
  margin-left: 3.5% !important;
}

.u-ml40 {
  margin-left: 4% !important;
}

.u-ml45 {
  margin-left: 4.5% !important;
}

.u-ml50 {
  margin-left: 5% !important;
}

.u-ml55 {
  margin-left: 5.5% !important;
}

.u-ml60 {
  margin-left: 6% !important;
}

.u-ml65 {
  margin-left: 6.5% !important;
}

.u-ml70 {
  margin-left: 7% !important;
}

.u-ml75 {
  margin-left: 7.5% !important;
}

.u-ml80 {
  margin-left: 8% !important;
}

.u-ml85 {
  margin-left: 8.5% !important;
}

.u-ml90 {
  margin-left: 9% !important;
}

.u-ml95 {
  margin-left: 9.5% !important;
}

.u-ml100 {
  margin-left: 10% !important;
}

/* ==========================================================
!Padding
========================================================== */
.u-pt00 {
  padding-top: 0 !important;
}

.u-pt05 {
  padding-top: 0.5% !important;
}

.u-pt10 {
  padding-top: 1% !important;
}

.u-pt15 {
  padding-top: 1.5% !important;
}

.u-pt20 {
  padding-top: 2% !important;
}

.u-pt25 {
  padding-top: 2.5% !important;
}

.u-pt30 {
  padding-top: 3% !important;
}

.u-pt35 {
  padding-top: 3.5% !important;
}

.u-pt40 {
  padding-top: 4% !important;
}

.u-pt45 {
  padding-top: 4.5% !important;
}

.u-pt50 {
  padding-top: 5% !important;
}

.u-pt55 {
  padding-top: 5.5% !important;
}

.u-pt60 {
  padding-top: 6% !important;
}

.u-pt65 {
  padding-top: 6.5% !important;
}

.u-pt70 {
  padding-top: 7% !important;
}

.u-pt75 {
  padding-top: 7.5% !important;
}

.u-pt80 {
  padding-top: 8% !important;
}

.u-pt85 {
  padding-top: 8.5% !important;
}

.u-pt90 {
  padding-top: 9% !important;
}

.u-pt95 {
  padding-top: 9.5% !important;
}

.u-pt100 {
  padding-top: 10% !important;
}

.u-pr00 {
  padding-right: 0 !important;
}

.u-pr05 {
  padding-right: 0.5% !important;
}

.u-pr10 {
  padding-right: 1% !important;
}

.u-pr15 {
  padding-right: 1.5% !important;
}

.u-pr20 {
  padding-right: 2% !important;
}

.u-pr25 {
  padding-right: 2.5% !important;
}

.u-pr30 {
  padding-right: 3% !important;
}

.u-pr35 {
  padding-right: 3.5% !important;
}

.u-pr40 {
  padding-right: 4% !important;
}

.u-pr45 {
  padding-right: 4.5% !important;
}

.u-pr50 {
  padding-right: 5% !important;
}

.u-pr55 {
  padding-right: 5.5% !important;
}

.u-pr60 {
  padding-right: 6% !important;
}

.u-pr65 {
  padding-right: 6.5% !important;
}

.u-pr70 {
  padding-right: 7% !important;
}

.u-pr75 {
  padding-right: 7.5% !important;
}

.u-pr80 {
  padding-right: 8% !important;
}

.u-pr85 {
  padding-right: 8.5% !important;
}

.u-pr90 {
  padding-right: 9% !important;
}

.u-pr95 {
  padding-right: 9.5% !important;
}

.u-pr100 {
  padding-right: 10% !important;
}

.u-pb00 {
  padding-bottom: 0 !important;
}

.u-pb05 {
  padding-bottom: 0.5% !important;
}

.u-pb10 {
  padding-bottom: 1% !important;
}

.u-pb15 {
  padding-bottom: 1.5% !important;
}

.u-pb20 {
  padding-bottom: 2% !important;
}

.u-pb25 {
  padding-bottom: 2.5% !important;
}

.u-pb30 {
  padding-bottom: 3% !important;
}

.u-pb35 {
  padding-bottom: 3.5% !important;
}

.u-pb40 {
  padding-bottom: 4% !important;
}

.u-pb45 {
  padding-bottom: 4.5% !important;
}

.u-pb50 {
  padding-bottom: 5% !important;
}

.u-pb55 {
  padding-bottom: 5.5% !important;
}

.u-pb60 {
  padding-bottom: 6% !important;
}

.u-pb65 {
  padding-bottom: 6.5% !important;
}

.u-pb70 {
  padding-bottom: 7% !important;
}

.u-pb75 {
  padding-bottom: 7.5% !important;
}

.u-pb80 {
  padding-bottom: 8% !important;
}

.u-pb85 {
  padding-bottom: 8.5% !important;
}

.u-pb90 {
  padding-bottom: 9% !important;
}

.u-pb95 {
  padding-bottom: 9.5% !important;
}

.u-pb100 {
  padding-bottom: 10% !important;
}

.u-pl00 {
  padding-left: 0 !important;
}

.u-pl05 {
  padding-left: 0.5% !important;
}

.u-pl10 {
  padding-left: 1% !important;
}

.u-pl15 {
  padding-left: 1.5% !important;
}

.u-pl20 {
  padding-left: 2% !important;
}

.u-pl25 {
  padding-left: 2.5% !important;
}

.u-pl30 {
  padding-left: 3% !important;
}

.u-pl35 {
  padding-left: 3.5% !important;
}

.u-pl40 {
  padding-left: 4% !important;
}

.u-pl45 {
  padding-left: 4.5% !important;
}

.u-pl50 {
  padding-left: 5% !important;
}

.u-pl55 {
  padding-left: 5.5% !important;
}

.u-pl60 {
  padding-left: 6% !important;
}

.u-pl65 {
  padding-left: 6.5% !important;
}

.u-pl70 {
  padding-left: 7% !important;
}

.u-pl75 {
  padding-left: 7.5% !important;
}

.u-pl80 {
  padding-left: 8% !important;
}

.u-pl85 {
  padding-left: 8.5% !important;
}

.u-pl90 {
  padding-left: 9% !important;
}

.u-pl95 {
  padding-left: 9.5% !important;
}

.u-pl100 {
  padding-left: 10% !important;
}
