@charset "UTF-8";
/* ==================================================
Color定義
================================================== */
/* パレット
-------------------------------------------------- */
/* グラデーション（modern.css で CSS変数として定義済み）
-------------------------------------------------- */
/* ==================================================
font-size定義
================================================== */
/* ==========================================================================
Reset CSS
========================================================================== */
html {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

body, article, section, nav, aside,
h1, h2, h3, h4, h5, h6, header, footer,
p, pre, blockquote, ol, ul, li, dl, dt, dd,
figure, figcaption, div, main, pre,
a, em, strong, small, q, data, time,
code, var, sub, sup, i, b, u, mark, span,
img, iframe, embed, object, video, audio,
table, caption, tbody, thead, tfoot, tr, td, th, canvas {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* Box model
========================================================================== */
*, *:before, *:after {
  box-sizing: border-box;
}

/* Display
========================================================================== */
article, section, nav, aside, header,
footer, figure, figcaption, main {
  display: block;
}

video, audio, progress, canvas {
  display: inline-block;
  vertical-align: baseline;
}

/* View
========================================================================== */
.win, .mac {
  overflow-y: scroll;
}

body {
  color: #222;
  font-size: 17px;
  counter-reset: number 0;
}

/* Style
========================================================================== */
/* Grouping content
-------------------------------------------------------------------------- */
blockquote {
  quotes: none;
}

blockquotel:before, blockquotel:after {
  content: "";
  content: none;
}

hr {
  height: 0;
  box-sizing: content-box;
}

ol, ul {
  list-style: none;
}

/* Text-level semantics
-------------------------------------------------------------------------- */
a {
  color: #222;
  text-decoration: none;
  background-color: transparent;
}

article a {
  color: #086310;
}

a:hover, a:active {
  outline: 0;
}

em, strong, b {
  font-style: normal;
  font-weight: bold;
}

small {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

sub, sup {
  position: relative;
  line-height: 0;
  vertical-align: baseline;
  font-size: 0.9rem;
  bottom: 0px;
}

sup {
  top: -0.5em;
}

mark {
  background-color: inherit;
  color: inherit;
  font-weight: bold;
}

/* Embedded content
-------------------------------------------------------------------------- */
img {
  border: 0;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

embed, object {
  max-width: 100%;
  outline: none;
  vertical-align: top;
}

/* Tabular data
-------------------------------------------------------------------------- */
table {
  width: 100%;
  border-collapse: separate; /* ←これ重要 */
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden; /* ←これで角丸が効く */
}

caption {
  text-align: left;
}

th, td {
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  vertical-align: middle;
  text-align: left;
}

th {
  padding: 18px 18px;
}

table img {
  width: 19%;
}

.-w200 {
  width: 200px;
}

th {
  background: #F4F4F4;
}

td {
  background: #fff;
}

/* 左上 */
tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

/* 右上 */
tr:first-child td:last-child,
tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

/* 左下 */
tr:last-child th:first-child {
  border-bottom-left-radius: 10px;
}

/* 右下 */
tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* ==================================================
move
================================================== */
.-down-move:hover {
  transform: translate3d(0, 5px, 0);
  transition: all 0.2s;
}
.-down-move:hover h3:after {
  right: -4px;
}

.-down-move {
  transition: all 0.2s;
}
.-down-move h3:after {
  transition: all 0.2s;
}

.-right-move:hover {
  transform: translate3d(4px, 0, 0);
}
.-right-move:hover h3:after {
  right: -4px;
}

.-right-move {
  transition: all 0.2s;
}
.-right-move h3:after {
  transition: all 0.2s;
}

.-left-move:hover {
  transform: translate3d(-4px, 0, 0);
}
.-left-move:hover h3:after {
  right: -4px;
}

.-left-move {
  transition: all 0.2s;
}
.-left-move h3:after {
  transition: all 0.2s;
}

/*==================================================
シャッ
===================================*/
.RightIn, .DownIn {
  opacity: 0;
}

/*背景色が伸びて出現 共通*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  position: relative;
  opacity: 0;
  height: 100%;
  z-index: 1;
}
.bgextend.long {
  width: 100%;
  min-width: 100%;
}

.bgextend.bgLRextend,
.bgextend.bgLRextend h2,
.bgextend.bgLRextend span {
  animation-name: imgAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  z-index: 0;
}

@keyframes imgAnimeBase {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgextendAnimeBase {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 10s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------- 左から --------*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #086310;
  z-index: 10;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*--------- 右から --------*/
/*--------- 下から --------*/
.bgDUextend::before {
  z-index: 9999999;
  animation-name: bgDUextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: #086310;
}

@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*--------- 上から --------*/
/*==================================================
ループ
===================================*/
@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.l-loop {
  display: -ms-grid;
  overflow: hidden;
}

/*----------------------------*/
.l-loop__wrap {
  display: flex;
  overflow: hidden;
  margin-bottom: -50px;
}

.l-loop__list {
  display: flex;
  list-style: none;
}

.l-loop__list--left {
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
}

.l-loop__item {
  min-width: 230px;
  padding: 30px 13px;
  background: #fff;
  margin-right: 50px;
  border-radius: 10px;
  border: 1px solid #EfEfEf;
  text-align: center;
}
.l-loop__item img {
  width: 80%;
}

.l-loop__item small {
  color: #fff;
  margin: 4px;
  display: block;
}

.l-loop__item > a {
  display: block;
  width: calc(100% - 50px);
  min-width: 200px;
  height: 160px;
}

.l-loop__item > a img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.qa-item {
  border: 2px solid #EfEfEf;
  border-radius: 35px;
  padding: 16px;
}
.qa-item + .qa-item {
  margin-top: 11px;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 19px;
}
.question .-qa-icon {
  padding-right: 10px;
  color: #086310;
}

a.question {
  color: #222;
}

.answer {
  display: none;
  margin-top: 12px;
}

/* ＋をCSSで描画 */
.toggle-btn {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.toggle-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #000;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  border-radius: 100px;
}

/* 縦棒 */
.toggle-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いたとき → 縦棒を横に回転 */
.toggle-btn.open span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
}

@media screen and (max-width: 835px) {
  .l-loop__item {
    min-width: 170px;
    padding: 25px 15px;
  }
}
/* ==================================================
Keyvisual Entrance Animations
================================================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-keyvisual-h1 {
  animation: slideInLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.l-keyvisual-youtube {
  animation: slideInRight 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.l-keyvisual-link {
  animation: fadeInUp 0.7s ease 0.9s both;
}

.l-keyvisual-usp-box li {
  animation: fadeInUp 0.6s ease both;
}
.l-keyvisual-usp-box li:nth-child(1) {
  animation-delay: 1.1s;
}
.l-keyvisual-usp-box li:nth-child(2) {
  animation-delay: 1.25s;
}
.l-keyvisual-usp-box li:nth-child(3) {
  animation-delay: 1.4s;
}
.l-keyvisual-usp-box li:nth-child(4) {
  animation-delay: 1.55s;
}

/* ==================================================
Scroll Animations (IntersectionObserver)
================================================== */
.js-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-stagger-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
base
================================================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #222;
  background-color: #fff;
  overflow-x: hidden;
  width: 100%;
  /* min-width: 1024px; */
  position: relative;
}

body.-second-color {
  background: #FaFaFa;
}

.l-wrap {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 25px;
}

/* ==================================================
pc or sp
================================================== */
.-pc {
  display: none;
}

.-pc1200 {
  display: block;
}

.-pc1300 {
  display: block;
}

.-tab {
  display: block;
}

.-sp {
  display: block;
}

/* ==================================================
a
================================================== */
a, a:hover {
  transition: all 0.2s;
  pointer-events: auto;
}

/* ==================================================
second
================================================== */
.l-second-main {
  margin-top: 90px;
}

.pankuzu {
  color: #777;
  font-size: 14px;
  z-index: 10;
}
.pankuzu a {
  color: #777;
}

.l-second-box {
  margin-top: 60px;
}

.-window-open {
  width: 15px;
  margin-left: 10px;
}

.-navigate-icon img {
  vertical-align: text-bottom;
}
.-navigate-icon small {
  font-size: 13px;
  line-height: 1.5;
  margin: -3px 0 0 2px;
}

header.navigate {
  padding: 15px 20px;
  width: 1280px;
  position: fixed;
  top: 36px;
  left: 50%;
  margin-left: -640px;
  height: 70px;
  z-index: 99999;
  border-radius: 10px;
  transition: 0.2s;
}
header.navigate:hover {
  background: #fff;
}
header.navigate.is-show {
  background: #fff;
  top: 10px;
}
header.navigate.is-show-second {
  background: #fff;
}

.-navigate-list {
  margin-left: 8px;
}
.-navigate-list li {
  padding: 0 9.5px;
}
.-navigate-list li a {
  color: #222;
}

li.-down-button {
  position: relative;
  padding-right: 19px;
}
li.-down-button:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  width: 8px;
  height: 7px;
  background: url(../img/svg/under-black.svg);
  background-size: cover;
  right: 7px;
  top: 12px;
}

.-navigate-list .-this-page:after {
  background: url(../img/svg/under-red.svg);
  background-size: cover;
}

/* 第1階層のみ */
.-navigate-list > li > a {
  display: inline-block;
  transition: 0.2s ease;
}

.-navigate-list > li:hover > a {
  transform: translateY(3px);
}

/* 矢印（第1階層のみ） */
.-navigate-list > li.-down-button:after {
  transition: 0.2s ease;
}

.-navigate-list > li.-down-button:hover:after {
  transform: translateY(calc(-50% + 6px));
}

.-navigate-list li .-this-page a {
  color: #D52400;
}

/* ===============================
   Navigation Base
================================ */
.-navigate-base {
  width: 100%;
}

.nav_space__contents {
  margin-left: 8px;
}
.nav_space__contents li.nav_box {
  background: #222;
  width: 78px;
  text-align: center;
  padding: 4px 11px 5px;
  border-radius: 27px;
}

/* ===============================
   Drawer System
================================ */
/* レイヤー順
   hamburger  9999
   drawer     30
   overlay    20
   page       0
*/
/* --- Drawer 本体 --- */
.drawer-list {
  position: fixed;
  top: -1000px;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 30;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0 0 10px 10px;
  transition: opacity 0.3s ease, top 0.3s ease;
}

/* --- Overlay（背景） --- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  z-index: 20;
  transition: opacity 0.3s ease;
}

/* ===============================
   Hamburger Control
================================ */
input.hamburger {
  display: none;
}
input.hamburger:checked {
  /* Drawer 表示 */
}
input.hamburger:checked ~ .drawer-list {
  opacity: 1;
  top: 0;
}
input.hamburger:checked {
  /* Overlay 表示 */
}
input.hamburger:checked ~ .drawer-overlay {
  opacity: 1;
  visibility: visible;
}
input.hamburger:checked {
  /* アイコン変形 */
}
input.hamburger:checked ~ label.hamburger > i {
  background: transparent;
  transform: rotate(90deg);
}
input.hamburger:checked ~ label.hamburger > i::before {
  background: #222;
  transform: translate(-50%, -50%) rotate(315deg);
}
input.hamburger:checked ~ label.hamburger > i::after {
  background: #222;
  transform: translate(-50%, -50%) rotate(-315deg);
}

/* ===============================
   Hamburger Icon
================================ */
label.hamburger {
  position: relative;
  z-index: 9999;
  display: block;
  width: 50px;
  height: 20px;
  cursor: pointer;
}
label.hamburger > i {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 23px;
  height: 1px;
  background: #fff;
  transition: 0.35s;
}
label.hamburger > i::before, label.hamburger > i::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #fff;
  transform-origin: 50% 50%;
  transition: transform 0.35s;
}
label.hamburger > i::before {
  transform: translate(-50%, -7px);
}
label.hamburger > i::after {
  transform: translate(-50%, 7px);
}

/* ===============================
   Desktop Dropdown
================================ */
.navigate .head-box-navi .menu__second-level {
  position: fixed;
  top: 100px;
  left: 50%;
  margin-left: -640px;
  width: 1280px;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  background: #fff;
  border-radius: 0 0 10px 10px;
  transition: all 0.2s ease;
}

.navigate li.menu__single:hover .menu__second-level {
  top: 50px;
  opacity: 1;
  visibility: visible;
}

.navigate li.menu__single:hover .menu__second-level {
  top: 52px;
  opacity: 1;
  visibility: visible;
}

.navigate.is-show li.menu__single:hover .menu__second-level {
  top: 52px;
}

/* ===============================
   Layout
================================ */
.menu__second-level-box {
  padding: 35px 35px 25px;
  margin-top: 25px;
}

.-down-list-h2 {
  width: 260px;
}

.-down-list-menu {
  width: calc(100% - 260px);
}
.-down-list-menu ul::after {
  content: "";
  display: block;
  width: 33%;
}
.-down-list-menu li {
  width: 33%;
  padding: 9px 0 20px;
}

.scene-toggle {
  display: none;
}

.scene-title {
  font-size: 19px;
  font-weight: 600;
}

.scene-accordion .scene-sub {
  max-height: none;
  overflow: visible;
}

.scene-accordion .scene-title::after {
  display: none;
}

.-kotei-cvr {
  width: 830px;
  z-index: 10;
  position: fixed;
  right: 0;
  bottom: -200px;
  background: #F4F4F4;
  border: 2px solid #fff;
  font-weight: 600;
  border-radius: 20px 0 0 0;
  padding: 6px 13px 6px 23px;
  transition: 0.2s;
}
.-kotei-cvr.is-show {
  bottom: -2px;
}

.-kotei-cvr-left {
  width: 320px;
}

.-kotei-cvr-right {
  width: calc(100% - 350px);
}

.-kotei-cvr h2 {
  font-size: 18px;
}
.-kotei-cvr h2 .kotei-cvr-mail-time {
  font-size: 30px;
  padding: 0 3px;
}

.kotei-cvr-mail {
  border-radius: 7px;
  border: 2px solid #fff;
  background: #fff;
  padding: 5px 7px 5px 18px;
  color: #222;
  width: 170px;
}

.kotei-cvr-mail-text01 {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
}
.kotei-cvr-mail-text01:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 1px;
  left: -8px;
  width: 24px;
  height: 24px;
  background: url(../img/svg/icon-mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.kotei-cvr-mail-text02 {
  font-size: 13px;
  letter-spacing: 1.5px;
}

.kotei-cvr-tel {
  border-radius: 7px;
  border: 2px solid #fff;
  background: #fff;
  padding: 8px 7px 2px 4px;
  color: #222;
  width: 205px;
}

.kotei-cvr-tel-text {
  position: relative;
  padding-left: 50px;
  font-size: 20px;
}
.kotei-cvr-tel-text:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 1px;
  left: 6px;
  width: 39px;
  height: 39px;
  background: url(../img/svg/icon-tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.kotei-cvr-tel-text01 {
  font-size: 13px;
  line-height: 1.4;
}

.kotei-cvr-tel-text02 {
  line-height: 1.4;
  font-size: 19px;
}

.kotei-cvr-top img {
  margin-top: 8px;
}

footer {
  background: #EfEfEf;
  z-index: 0;
  position: relative;
  padding-top: 50px;
  z-index: 0;
}

.-l-third + footer {
  background: unset;
}

.drawer-footer {
  text-align: left;
  border-radius: 10px;
  padding: 60px 40px 50px 60px;
}
.drawer-footer.footer-control {
  padding: 45px 10px 45px 20px;
  margin-bottom: 100px;
}

.drawer-footer li {
  padding: 6px 0;
}

footer .drawer-footer a {
  color: #222;
}

.-left-footer {
  width: 350px;
}

.-right-footer {
  width: calc(100% - 350px);
}
.-right-footer .-right-footer-section {
  width: calc(33% - 10px);
  padding-bottom: 40px;
}
.-right-footer .-right-footer-section section + section {
  margin-top: 37px;
}

.footer_under {
  padding: 10px;
  text-align: center;
  font-size: 17px;
  background: #F4F4F4;
}

/* ==================================================
cvr
================================================== */
.l-mid-cvr {
  position: relative;
  z-index: 0;
  margin-top: 130px;
}

.l-mid-cvr .-bg-Gray {
  padding: 95px 65px 85px;
  color: #222;
  border-radius: 10px 10px 0 0;
}

.l-mid-cvr.-mt0 {
  margin: 0;
}
.l-mid-cvr.-mt0 .-bg-Gray {
  padding-top: 130px;
  border-radius: 0;
}

.-omakase {
  position: relative;
  text-align: center;
  font-size: 35px;
  font-weight: 500;
}
.-omakase::before {
  background: #222;
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  height: 145px;
  width: 1px;
  top: -15px;
  left: 50%;
  margin-left: -450px;
  transform: rotate(-34deg);
}
.-omakase::after {
  background: #222;
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  height: 145px;
  width: 1px;
  top: -15px;
  right: 50%;
  margin-right: -450px;
  transform: rotate(34deg);
}

.-mid-cvr-list {
  position: relative;
  width: 33.3%;
  padding: 20px 0;
}
.-mid-cvr-list:before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: #222;
  height: 100%;
  width: 0.5px;
  left: 0;
  top: 0;
}
.-mid-cvr-list:last-child:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: #222;
  height: 100%;
  width: 0.5px;
  right: 0;
  top: 0;
}
.-mid-cvr-list span {
  font-size: 20px;
}
.-mid-cvr-list span.counter {
  font-size: 60px;
  padding-right: 5px;
}

.-loop {
  position: relative;
  bottom: 0;
  align-items: center;
  color: #fff;
  display: flex;
  height: 200px;
  line-height: 175px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: 10;
}

.-loop ul {
  animation: flowing 150s linear infinite;
  font-size: 155px;
  font-weight: 900;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}

.-loop ul li {
  display: inline-block;
  padding-right: 10px;
  color: #EfEfEf;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 864px) {
  .-loop {
    height: 100px;
  }
  .-loop:after {
    height: 120px;
  }
  .-loop ul {
    font-size: 60px;
  }
  .-loop {
    height: 75px;
  }
}
/* ==================================================
l-keyvisual
================================================== */
.l-keyvisual {
  background: #EfEfEf;
  height: 630px;
  position: relative;
  overflow: hidden;
  min-width: 100%;
}

.l-keyvisual-h1 {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 115px;
  left: 37px;
}
.l-keyvisual-h1 h1 {
  position: relative;
  letter-spacing: 1px;
  line-height: 1.55;
  font-size: 51px;
  padding: 13px 7px 13px 7px;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
}
.l-keyvisual-h1 .l-keyvisual-h1-sub {
  padding: 11px 10px;
  display: inline-block;
  font-size: 21px;
}

.l-keyvisual-link {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 463px;
  left: 30px;
}

.l-keyvisual-youtube {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 106px;
  left: 630px;
  text-align: center;
}
.l-keyvisual-youtube h3 {
  position: relative;
  color: #222;
}
.l-keyvisual-youtube h3:before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: #222;
  background-repeat: no-repeat;
  height: 35px;
  width: 1px;
  top: 1px;
  left: 50%;
  margin-left: -226px;
  transform: rotate(-40deg);
}
.l-keyvisual-youtube h3:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: #222;
  background-repeat: no-repeat;
  height: 35px;
  width: 1px;
  top: 1px;
  right: 50%;
  margin-right: -226px;
  transform: rotate(40deg);
}

.l-keyvisual-usp.l-wrap {
  position: relative;
  top: -52px;
  margin-bottom: -40px;
}
.l-keyvisual-usp.l-wrap li {
  position: relative;
  width: calc(25% - 10px);
  text-align: center;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
}
.l-keyvisual-usp.l-wrap li div {
  display: block;
  padding: 24px 20px 24px;
  color: #222;
}
.l-keyvisual-usp.l-wrap li span {
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  display: inline-block;
  margin-top: 12px;
  line-height: 1.8;
}

.-out-link:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: url(../img/svg/window-black.svg);
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  z-index: 50;
  background-size: contain;
}

/* ==================================================
-gyosyu
================================================== */
.-gray-main-box-border0.-gyosyu {
  padding-top: 140px;
  padding-bottom: 110px;
}

/* ==================================================
l-nayami-top
================================================== */
.l-nayami-top-list section {
  width: calc(33.33% - 10px);
  padding: 25px 30px 30px;
  border: 2px solid #EfEfEf;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* ==================================================
Next POS syries
================================================== */
.-next-pos-box {
  margin-top: 100px;
  padding: 90px 0 110px;
}

.-next-pos-box-h2 h2 {
  font-size: 180px;
  line-height: 1;
}

.-next-pos-box-h2 p {
  font-size: 35px;
  line-height: 1.3;
  padding-left: 25px;
  margin-bottom: 10px;
}

.-next-pos-box-detail {
  position: relative;
  background: #fff;
  margin-bottom: 10px;
  border-radius: 10px;
  padding-bottom: 50px;
}

.slick-slide .-next-pos-box-detail img {
  border-radius: 10px 10px 0 0 !important;
}

.-next-pos-box-detail-origin {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  right: 10px;
  bottom: 10px;
  color: #EfEfEf;
}

/* ==================================================
tenpo-pos
================================================== */
.l-tenpo-pos {
  padding: 100px 0 80px;
}

.l-tenpo-pos th, .l-tenpo-pos td {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.l-tenpo-pos th.-text-left {
  padding: 17px 5px 17px 18px;
}

th.-w10 {
  width: 16%;
  padding: 20px 0;
}

/* ==================================================
l-riyuu
================================================== */
.l-wrap.l-riyuu-box1 {
  position: relative;
  padding: 90px 0 90px;
}
.l-wrap.l-riyuu-box1::before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: url(../img/ipad-select.webp);
  background-size: contain;
  width: 220px;
  height: 190px;
  bottom: -11px;
  left: 50%;
  margin-left: -420px;
}
.l-wrap.l-riyuu-box1 img {
  width: 45%;
}

.l-riyuu .l-riyuu-box2 {
  position: relative;
  background: #EfEfEf;
  padding: 25px;
  border-radius: 0 10px 10px 0;
}
.l-riyuu .l-riyuu-box2::before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: #EfEfEf;
  height: 100%;
  width: 1000px;
  left: -1000px;
  top: 0;
}

.l-riyuu-left {
  width: 310px;
}

.l-riyuu-left h2 {
  text-align: left;
  margin-top: 50px;
}

.l-riyuu-right {
  padding: 30px 35px;
  background: #fff;
  width: calc(100% - 325px);
  border-radius: 10px;
}
.l-riyuu-right section {
  padding: 20px 25px;
  border-bottom: 2px solid #EfEfEf;
}
.l-riyuu-right section:last-child {
  border: unset;
}

/* ==================================================
l-case
================================================== */
.l-case {
  padding-top: 120px;
}

.l-wrap-case {
  position: relative;
}

.l-case-left {
  border-radius: 10px;
  width: 318px;
  min-height: 540px;
  padding: 40px 25px;
  margin-left: -25px;
  background: #EfEfEf;
}

.l-case-right {
  position: absolute !important;
  width: 100vw !important;
  left: 320px;
  top: 30px;
}

.l-case-right-list {
  margin-right: 25px;
  border: 2px solid #EfEfEf;
  padding: 0 !important;
  border-radius: 10px;
}
.l-case-right-list img {
  border-radius: 10px 10px 0 0 !important;
}
.l-case-right-list .l-case-right-list-up {
  text-align: center;
  padding: 18px 30px 30px;
}
.l-case-right-list .l-case-right-list-up p {
  text-align: left;
}
.l-case-right-list .l-case-right-list-down {
  background: #EfEfEf;
  padding: 15px 10px;
}
.l-case-right-list .l-case-right-list-down img {
  width: 100px;
}

/* ==================================================
l-case
================================================== */
.-ai-table {
  padding-top: 30px;
}

.l-ai-table {
  padding-top: 110px;
  padding-bottom: 100px;
}

.-ai-h2 {
  font-size: 145px;
  font-weight: 500;
  margin-right: 20px;
  line-height: 1;
  width: 310px;
  letter-spacing: 0;
}

.-ai-description {
  width: calc(100% - 320px);
}

/* ==================================================
AI
================================================== */
.-ai-table th {
  padding: 15px 18px 15px 18px;
  vertical-align: middle;
}

.-ai-table td {
  text-align: center;
  padding: 15px 10px 15px 10px;
}

/* ==================================================
l-function
================================================== */
.slider-ipad {
  margin-top: 90px;
}

.l-function {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* ==================================================
l-price
================================================== */
.l-price {
  padding: 300px 0 70px;
  margin-top: -300px;
}

.l-option {
  padding: 55px 25px 40px;
}

.l-option-left {
  width: 375px;
  border-right: 2px solid #EfEfEf;
}

.l-option-right {
  width: calc(100% - 440px);
}

.-check {
  padding-left: 5px;
}

.-check li {
  position: relative;
  width: 50%;
}
.-check li::before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: url(../img/svg/check.svg);
  background-size: cover;
  top: 5px;
  left: -2px;
  width: 20px;
  height: 16px;
}

.l-option-left .l-option-price {
  font-size: 70px;
}

.l-option + .l-option {
  position: relative;
  margin-top: 120px;
}
.l-option + .l-option::before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: -85px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  background: url(../img/svg/plus-black.svg);
  background-size: contain;
}

.l-option-select {
  padding: 35px 38px;
  width: calc(33.33% - 20px);
}
.l-option-select h4 {
  font-size: 20px;
  font-weight: 500;
}

.l-option-price {
  padding: 0 0 5px;
  font-size: 53px;
  letter-spacing: 0;
  font-weight: 600;
}
.l-option-price .-en {
  font-size: 27px;
  font-weight: 500;
  padding-right: 5px;
}
.l-option-price .-tax {
  font-size: 19px;
  font-weight: 500;
  padding-left: 5px;
}

/* ==================================================
l-step
================================================== */
.l-step {
  padding: 90px 0 0 0;
}

.l-step .l-wrap {
  padding-top: 40px;
  padding-bottom: 40px;
}

.l-step h2 .-big {
  font-size: 65px;
}

.white-right-contents {
  position: relative;
  border-radius: 10px 0 0 10px;
  margin-top: 35px;
  padding: 25px;
  background: #fff;
}
.white-right-contents::after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: #fff;
  width: 1000px;
  height: 100%;
  top: 0;
  right: -1000px;
  z-index: 10;
}
.white-right-contents section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EfEfEf;
}
.white-right-contents section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: unset;
}
.white-right-contents section img {
  width: 190px;
}
.white-right-contents div {
  width: calc(100% - 220px);
}

/* ==================================================
qa
================================================== */
.l-qa {
  padding-top: 90px;
}
.l-qa .l-wrap {
  padding: 0;
}

.l-qa-left {
  border-radius: 10px;
  width: 318px;
  padding: 45px 25px;
  background: #EfEfEf;
}

.l-qa-right {
  width: calc(100% - 340px);
}

/* ==================================================
news
================================================== */
.l-news {
  margin-top: 120px;
  margin-bottom: -180px;
}

.l-news-box {
  padding: 60px 55px;
}

.l-news-tag {
  font-size: 17px;
}

.l-news-box-list {
  margin-top: 35px;
}
.l-news-box-list section {
  padding: 30px;
  border-bottom: 2px solid #EfEfEf;
}
.l-news-box-list section:last-child {
  border: unset;
}

/* ==================================================
-pos-image
================================================== */
.-bg-Gray.-pos-image {
  border-radius: 0;
  padding-top: 280px;
}

.-pos-image .-bg-White {
  padding: 55px 70px;
}

.-pos-image-box + .-pos-image-box {
  margin-top: 60px;
  border-top: 2px solid #F4F4F4;
  padding-top: 60px;
}

.-pos-image .l-news-box-list section {
  padding: 30px 0;
}

@media screen and (max-width: 835px) {
  .l-problem-wrap {
    overflow-x: hidden !important;
    margin-bottom: 20px;
  }
  :root {
    --row-h: 36px;
    --gap: 20px;
    --row-h-main: 41px;
    --btn-h: 36px;
    --row-h-after-1: 36px;
    --row-h-after-2: 70px;
    --head-h: 96px;
    --head-after-h: 36px;
    --arrow-h: 70px;
  }
  .l-problem {
    padding: 30px 15px;
  }
  .l-problem2 {
    grid-template-columns: 170px repeat(3, 1fr);
  }
  .l-problem {
    margin-top: 40px;
  }
  .problem-row {
    border-bottom: 2px solid #fff;
  }
  .problem-card:last-child {
    margin-right: 20px;
  }
  .problem-card .problem-row {
    border-bottom: 2px solid #F1F1F1;
  }
  .problem-side .problem-purple, .problem-side .problem-red {
    font-size: 2rem;
  }
  .problem-side .problem-purple .-min, .problem-side .problem-red .-min {
    font-size: 1rem;
  }
  .problem-card-head {
    font-size: 1.2rem;
  }
  .problem-card-head:after {
    width: 100px;
    height: 100px;
    margin-left: -50px;
    top: -50px;
  }
  .problem-arrow img {
    padding-top: 20px;
  }
  .section {
    position: relative;
  }
  .sticky {
    position: sticky;
    top: 50px;
    height: 100vh;
    overflow: hidden;
  }
  .horizontal {
    display: flex;
    width: -moz-max-content;
    width: max-content;
  }
}
/* display-none
-------------------------------------------------- */
/* flex
-------------------------------------------------- */
.-flex {
  display: flex;
  align-items: stretch;
}
.-flex.-wrap {
  flex-wrap: wrap;
}
.-flex.-bottom {
  align-items: flex-end;
}
.-flex.-center-w {
  align-items: center;
  justify-content: center;
}
.-flex.-center-x {
  align-items: center;
}
.-flex.-center-y {
  justify-content: center;
}
.-flex.-reverse {
  flex-direction: row-reverse;
}
.-flex.-column {
  flex-direction: column;
}
.-flex.-column-reverse {
  flex-direction: column-reverse;
}
.-flex.-start {
  justify-content: flex-start;
}
.-flex.-end {
  justify-content: flex-end;
}
.-flex.-between {
  justify-content: space-between;
}

/* text-control
-------------------------------------------------- */
.-text-left {
  text-align: left !important;
}

.-text-center {
  text-align: center;
}

.-text-right {
  text-align: right;
}

/* mt
-------------------------------------------------- */
.-mt0 {
  margin-top: 0px !important;
}

.-mt5 {
  margin-top: 5px !important;
}

.-mt10 {
  margin-top: 10px !important;
}

.-mt15 {
  margin-top: 15px !important;
}

.-mt20 {
  margin-top: 20px !important;
}

.-mt25 {
  margin-top: 25px !important;
}

.-mt30 {
  margin-top: 30px !important;
}

.-mt40 {
  margin-top: 40px !important;
}

.-mt50 {
  margin-top: 50px !important;
}

.-mt60 {
  margin-top: 60px !important;
}

.-mt70 {
  margin-top: 70px !important;
}

.-mt80 {
  margin-top: 80px !important;
}

.-mt90 {
  margin-top: 90px !important;
}

.-mt100 {
  margin-top: 100px !important;
}

.-mt110 {
  margin-top: 110px !important;
}

.-mt130 {
  margin-top: 130px !important;
}

.-mt150 {
  margin-top: 150px !important;
}

.-mr10 {
  margin-right: 10px;
}

.-mr20 {
  margin-right: 20px;
}

.-mr30 {
  margin-right: 30px;
}

.-pl10 {
  padding-left: 10px;
}

.-pl15 {
  padding-left: 15px;
}

.-pl20 {
  padding-left: 20px;
}

.-pl30 {
  padding-left: 30px;
}

/* link-list
-------------------------------------------------- */
.-link-list-section {
  width: calc(50% - 25px);
  margin-bottom: 80px;
}
.-link-list-section.-wide {
  width: 100%;
  margin-bottom: 50px;
}
.-link-list-section.-wide img {
  width: 460px;
}
.-link-list-section.-wide .-link-description {
  width: calc(100% - 460px);
  padding-left: 35px;
}

/* ul li ol
-------------------------------------------------- */
.-circle li,
.-check li {
  list-style: none;
  margin: 0;
  padding: 0 0 3px 18px;
  position: relative;
}

.-circle li:before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  display: inline-block;
  background-color: #086310;
  border-radius: 50%;
  margin-right: 10px;
}

.-circle.-gray li:before {
  background-color: #222;
}

/* main-box
-------------------------------------------------- */
.-gray-main-box {
  border-radius: 40px 40px 0 0;
  background: #EfEfEf;
}

.-gray-main-box-border0 {
  background: #EfEfEf;
}

/* box
-------------------------------------------------- */
.-three-box {
  position: relative;
  width: calc(33.3% - 15px);
  padding: 55px 35px 60px;
}
.-three-box Img.-logo {
  width: 55%;
}
.-three-box .-pdding-description {
  padding: 25px 20px 40px;
}

.-four-box {
  position: relative;
  width: calc(25% - 15px);
  padding: 60px 25px 50px;
}
.-four-box Img {
  width: 36.5%;
}
.-four-box .-pdding-description {
  padding: 25px 20px 40px;
}
.-four-box.-pick-up span {
  top: -17px;
}

li.-acrodion {
  border-bottom: 1px solid #ddd;
  padding: 8px 10px;
  position: relative;
}

.l-footer-open {
  display: none;
}

.-bg-White {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #EfEfEf;
}

.-bg-Gray {
  background-color: #EfEfEf;
  border-radius: 10px;
}
.-bg-Gray.-spacing {
  padding: 20px 25px;
}
.-bg-Gray.-spacing h4 {
  border-bottom: 1px dashed #bbb;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.-bg-Theme {
  background-color: #086310;
  border-radius: 15px;
}

.-border-Theme {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #086310;
  padding: 4px 13px;
  color: #086310;
}

.-border-gray {
  background: #fff;
  border-radius: 15px;
  border: 3px solid #EfEfEf;
  padding: 30px 45px;
}

.-border-news {
  background: #fff;
  border-radius: 15px;
  border: 3px solid #EfEfEf;
  padding: 20px;
}

time {
  color: #222;
}

.gray-right-contents {
  position: relative;
  background: #EfEfEf;
  border-radius: 10px 0 0 10px;
  padding: 50px 25px;
}
.gray-right-contents:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  height: 100%;
  width: 1000px;
  right: -1000px;
  top: 0;
  background: #EfEfEf;
}

/* dot
-------------------------------------------------- */
.-dot {
  padding-top: 7px;
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 44px 10px;
  background-image: radial-gradient(0.11em 0.11em at center center, #951F23, #951F23 100%, transparent);
}
.-dot.-mini {
  background-size: 17px 15px;
}

/* img
-------------------------------------------------- */
.-img-round {
  border-radius: 10px;
}

.-pick-up {
  position: relative;
}
.-pick-up span {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: -25px;
  right: 50%;
  margin-right: -80px;
  background: #086310;
  color: #fff;
  text-align: center;
  border-radius: 7px;
  padding: 3px 10px;
  width: 160px;
}
.-pick-up span:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 9px 0 9px;
  border-color: #086310 transparent transparent transparent;
  bottom: -8px;
  left: 50%;
  margin-left: -8px;
}

/* link-control
-------------------------------------------------- */
.-arrow-link {
  position: relative;
  padding-left: 15px;
  color: #222;
}
.-arrow-link:before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  background: url(../img/svg/next.svg);
  background-size: contain;
  height: 13px;
  width: 8px;
  left: 0;
  top: 3px;
}
.-arrow-link.-arrow-red {
  color: #951F23;
}
.-arrow-link.-arrow-red::before {
  background: url(../img/svg/next-red.svg);
  background-size: contain;
}

.-Theme-link {
  background: #086310;
  color: #fff;
  padding: 8px 45px;
  border-radius: 40px;
  border: 1px solid #086310;
  display: inline-block;
}
.-Theme-link.-right-arrow {
  position: relative;
  padding-right: 60px;
}
.-Theme-link.-right-arrow:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 11px;
  right: 14px;
  width: 23px;
  height: 23px;
  background: url(../img/svg/right-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.-White-link {
  background: #fff;
  color: #222;
  padding: 8px 45px;
  border-radius: 40px;
  border: 1px solid #EfEfEf;
  display: inline-block;
}
.-White-link.-right-arrow {
  position: relative;
  padding-right: 50px;
}
.-White-link.-right-arrow:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 11px;
  right: 14px;
  width: 23px;
  height: 23px;
  background: url(../img/svg/right-black.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.-Theme-boredr-link {
  background: #fff;
  color: #086310;
  padding: 8px 19px;
  border-radius: 40px;
  border: 1px solid #086310;
  display: inline-block;
}
.-Theme-boredr-link.-right-arrow {
  position: relative;
  padding-right: 50px;
}
.-Theme-boredr-link.-right-arrow:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 11px;
  right: 14px;
  width: 23px;
  height: 23px;
  background: url(../img/svg/right-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.-Theme-boredr-link {
  background: #fff;
  color: #086310;
  padding: 7px 10px 7px 18px;
  border-radius: 40px;
  border: 1px solid #086310;
  display: inline-block;
}
.-Theme-boredr-link.-sim-arrow {
  position: relative;
  padding-right: 50px;
}
.-Theme-boredr-link.-sim-arrow:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 10px;
  right: 14px;
  width: 22px;
  height: 22px;
  background: url(../img/svg/down-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.-Theme-boredr-link img {
  width: 20px;
  margin-right: 10px;
}

.-main-link {
  position: relative;
  background: #086310;
  color: #fff;
  padding: 10px 70px 10px 50px;
  border-radius: 40px;
  border: 1px solid #086310;
  font-weight: 900;
}
.-main-link:after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 50%;
  margin-top: -11px;
  right: 50%;
  margin-right: -85px;
  width: 22px;
  height: 22px;
  background: url(../img/svg/right-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.-ancer {
  margin-top: -60px;
  padding-top: 60px;
}

/* h
-------------------------------------------------- */
.-text-normal {
  color: #222;
  font-size: 17px;
}

h1 {
  font-weight: 500;
  font-size: 42px;
}

h2 {
  font-weight: 600;
  line-height: 1.5;
  font-size: 20px;
}
h2.-big-type {
  font-size: 40px;
  font-weight: 500;
}
h2.-big-type.-big-left {
  text-align: left;
  padding-left: 15px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}
h3.-func-type {
  margin-top: 10px;
  font-size: 28px;
}
h3.-func-type:before {
  top: 23px !important;
}
h3.-func-type:after {
  top: 23px !important;
}
h3.-big-type {
  font-size: 34px;
  font-weight: 500;
}
h3.-big-type.-center-type {
  position: relative;
  color: #086310;
}
h3.-big-type.-center-type::before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 28px;
  left: -160px;
  width: 130px;
  height: 2px;
  background: #086310;
}
h3.-big-type.-center-type::after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 28px;
  right: -160px;
  width: 130px;
  height: 2px;
  background: #086310;
}
h3.-center-type-black {
  position: relative;
  color: #222;
}
h3.-center-type-black::before {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 19px;
  left: -140px;
  width: 110px;
  height: 2px;
  background: #222;
}
h3.-center-type-black::after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: 1;
  background-repeat: no-repeat;
  top: 19px;
  right: -140px;
  width: 110px;
  height: 2px;
  background: #222;
}

h4 {
  font-size: 19px;
}
h4.-big-type {
  font-size: 23px;
  font-weight: 500;
}

h5 {
  font-size: 17px;
}

a.-big-type {
  font-size: 23px;
  font-weight: 500;
}

/* p
-------------------------------------------------- */
p {
  font-size: 17px;
  line-height: 1.9;
}
p.-big-type {
  font-size: 23px;
}

p + p {
  margin-top: 10px;
}

.-font-min {
  font-size: 17px;
  font-weight: 500;
}

.-accent-font {
  font-size: 23px;
}

/* 装飾･調整
-------------------------------------------------- */
.-bold500 {
  font-weight: 500;
}

.-bold600 {
  font-weight: 600 !important;
}

.-bold700 {
  font-weight: 600;
}

.-bold900 {
  font-weight: 900;
}

.-line-height15 {
  line-height: 1.5;
}

/* text-color
-------------------------------------------------- */
.-text-Theme {
  color: #086310 !important;
}

.-text-Red {
  color: #951F23 !important;
}

.-text-Black {
  color: #222 !important;
}

.-text-Gray {
  color: #EfEfEf !important;
}

.-text-White {
  color: #fff !important;
}

/* font
-------------------------------------------------- */
.-text-mincyo {
  font-family: "游明朝", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.-pc1050-on {
  display: none;
}

@media screen and (max-width: 1299px) {
  .-pc1300 {
    display: none !important;
  }
  header.navigate {
    width: calc(100% - 20px);
    left: 10px;
    margin-left: 0;
  }
  .navigate .head-box-navi .menu__second-level {
    width: 100%;
    left: 0px;
    margin-left: 0;
  }
  .drawer-list {
    width: calc(100% - 20px);
    left: 10px;
    margin-left: 0;
  }
  .-left-footer {
    width: 330px;
  }
  .-right-footer {
    width: calc(100% - 280px);
  }
  .drawer-footer {
    padding: 60px 40px 60px 40px;
  }
  footer img {
    width: 240px;
  }
  .-l-third-main-title {
    padding: 0 20px;
  }
  .-l-second .l-wrap, .-l-third .l-wrap {
    min-width: unset;
    width: calc(100% - 60px);
  }
  .-l-second .l-wrap.-bg-White, .-l-third .l-wrap.-bg-White {
    padding: 70px 60px 60px;
  }
  .-kodawari .-l-third-main .l-wrap {
    padding: 0px 85px 65px;
  }
  .pankuzu, .-kiji .pankuzu {
    left: 20px;
  }
}
.-l-function-title .pankuzu {
  position: absolute;
  left: 20px;
}

@media screen and (max-width: 1199px) {
  .-tab-none {
    display: none;
  }
  .-kotei-cvr {
    bottom: -2px;
  }
  .l-case-left {
    height: 490px;
  }
  .l-keyvisual-h1 h1 {
    font-size: 48px;
  }
  .l-keyvisual-youtube {
    left: 595px;
  }
  .l-keyvisual-youtube .slick-slider {
    width: 500px !important;
  }
  .-pc1200 {
    display: none !important;
  }
  .l-keyvisual-h1 {
    left: 30px;
  }
  .l-keyvisual-link {
    top: 460px;
    left: 20px;
  }
  .l-mid-cvr .-bg-Theme {
    padding: 85px 10px 75px;
  }
  .-l-second-title-croud.-nayami01 {
    left: 65px;
    top: 55px;
  }
  .-l-second-title-croud.-nayami02 {
    left: 180px;
    top: 276px;
  }
  .-l-second-title-croud.-nayami03 {
    right: 65px;
  }
  .-l-second-title-croud.-nayami04 {
    right: 200px;
  }
  .-case-comapny-detail-box-left {
    width: 250px;
  }
  .-case-comapny-detail-box-right {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 1099px) {
  .l-function-box-list section .l-function-1 p br {
    display: none;
  }
  .l-loop__item {
    min-width: 210px;
    padding: 25px 10px;
  }
  aside {
    width: 270px;
  }
  .l-category-list {
    width: calc(100% - 290px);
  }
  h1 {
    font-size: 37px;
  }
  .l-news-tag + h1 {
    font-size: 30px;
  }
  .l-keyvisual-youtube .slick-slider {
    width: 460px !important;
  }
  .slick-dots {
    left: 470px !important;
  }
  .l-keyvisual-h1 {
    left: 20px;
  }
  .l-keyvisual-h1 .l-keyvisual-h1-sub {
    font-size: 16px;
  }
  .l-keyvisual-h1 h1 {
    font-size: 42px;
  }
  .l-keyvisual-link {
    top: 410px;
    left: 31px;
  }
  .l-keyvisual-link .-flex {
    flex-direction: column;
  }
  .l-keyvisual-link .-flex a {
    margin: 0 0 10px 0;
  }
  .l-keyvisual-youtube {
    left: 525px;
  }
  .problem-card {
    padding: 0 15px;
  }
  .page-nav {
    margin-left: -430px;
  }
  .-l-function-left {
    width: 410px;
  }
  .-l-function-right {
    width: calc(100% - 430px);
  }
}
@media screen and (max-width: 1050px) {
  .-pc1150 {
    display: none !important;
  }
  .-pc1050-on {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .l-save-box section {
    padding: 25px;
  }
  .l-news-box {
    padding: 40px 25px;
  }
  .-l-second .l-wrap, .-l-third .l-wrap {
    min-width: unset;
    width: calc(100% - 30px);
  }
  .-l-second .l-wrap.-bg-White, .-l-third .l-wrap.-bg-White {
    padding: 40px 25px 40px;
  }
  .l-keyvisual {
    height: unset;
    padding-bottom: 85px;
  }
  .l-keyvisual-youtube {
    top: unset;
    left: 0;
    margin-top: 110px;
    position: unset;
    width: 100%;
  }
  .l-keyvisual-youtube h3:before {
    height: 23px;
    top: 3px;
    margin-left: -166px;
  }
  .l-keyvisual-youtube h3:after {
    height: 23px;
    top: 3px;
    margin-right: -166px;
  }
  .l-keyvisual-h1 {
    position: unset;
    width: 100%;
    left: 0;
    text-align: center;
  }
  .l-keyvisual-h1 h1 {
    font-size: 31px;
    padding: 10px;
  }
  .l-keyvisual-h1 .l-keyvisual-h1-sub {
    padding: 10px;
    font-size: 0.8rem;
  }
  .l-keyvisual-link {
    display: none;
  }
  .-link-box {
    display: none;
  }
  .-link-list-section.-wide img {
    width: 330px;
  }
  .-link-list-section.-wide .-link-description {
    width: calc(100% - 330px);
  }
  .l-wrap {
    padding: 0 15px;
  }
  .slick-dotted.slick-slider {
    margin: 0 auto 16px !important;
  }
  .slider-text {
    margin-bottom: 8px;
  }
  .l-keyvisual-youtube h3:before {
    margin-left: -226px;
  }
  .l-keyvisual-youtube h3:after {
    margin-right: -226px;
  }
  .-left-footer {
    width: 250px;
  }
  .-left-footer img {
    width: 230px;
  }
  .-left-footer h2 {
    font-size: 20px;
  }
  .-left-footer .-accent-font {
    font-size: 20px;
  }
  .page-nav {
    margin-left: -405px;
  }
  .-l-second-title-croud.-nayami01 {
    left: 35px;
  }
  .-l-second-title-croud.-nayami02 {
    left: 120px;
  }
  .-l-second-title-croud.-nayami03 {
    right: 35px;
  }
  .-l-second-title-croud.-nayami04 {
    right: 150px;
  }
  .l-mid-cvr .-bg-Gray {
    padding: 60px 10px 60px !important;
  }
  .l-wrap.l-riyuu-box1 img {
    width: 55%;
  }
  .-keyvisual-second .l-wrap section {
    padding: 25px;
  }
  .-keyvisual-second .l-wrap section h1 {
    font-size: 27px;
  }
  .-keyvisual-second .l-wrap section li {
    font-size: 23px;
  }
  .-keyvisual-second .l-wrap section p {
    font-size: 23px;
  }
  .-flex.-l-function-keyvisual-detail {
    flex-direction: column;
    align-items: center;
  }
  .l-function-detail-section-contents {
    margin-top: 25px;
    width: 600px;
  }
  .function-navi li {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 835px) {
  body, p {
    font-size: 0.9rem;
  }
  p + p {
    margin-top: 5px;
  }
  p.-text-center {
    text-align: left;
  }
  .-news-h2 {
    font-size: 0.9rem;
  }
  h2 {
    font-size: 1.02rem;
  }
  h2.-big-type {
    font-size: 1.35rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
  h3 {
    font-size: 1.15rem;
  }
  h3.-big-type {
    font-size: 1.15rem;
  }
  h3.-big-type.-center-type:before {
    top: 16px;
    left: -70px;
    width: 50px;
  }
  h3.-big-type.-center-type:after {
    top: 16px;
    right: -70px;
    width: 50px;
  }
  h4 {
    font-size: 0.9rem !important;
  }
  h5 {
    font-size: 0.9rem;
  }
  .-accent-font {
    font-size: 1.15rem;
  }
  .-mt10 {
    margin-top: 5px !important;
  }
  .-mt15 {
    margin-top: 10px !important;
  }
  .-mt20 {
    margin-top: 12px !important;
  }
  .-mt30 {
    margin-top: 20px !important;
  }
  .-mt40 {
    margin-top: 22px !important;
  }
  .-mt50 {
    margin-top: 27px !important;
  }
  .-mt60 {
    margin-top: 35px !important;
  }
  .-mt70 {
    margin-top: 32px !important;
  }
  .-mt80 {
    margin-top: 42px !important;
  }
  .-mt90 {
    margin-top: 47px !important;
  }
  .-mt100 {
    margin-top: 60px !important;
  }
  .-mt110 {
    margin-top: 90px !important;
  }
  .-mt130 {
    margin-top: 60px !important;
  }
  .-pc {
    display: block !important;
  }
  .-sp {
    display: none !important;
  }
  .drawer-list {
    width: calc(100% - 10px);
    left: 5px;
  }
  .l-wrap {
    padding: 0 10px !important;
  }
  .scene-accordion .scene-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0 !important;
  }
  .scene-accordion .scene-sub > li:first-child {
    margin-top: 5px;
  }
  .scene-accordion .scene-toggle:checked + .scene-title + .scene-sub {
    max-height: 500px;
  }
  .scene-accordion .scene-title {
    display: block;
    cursor: pointer;
    position: relative;
    padding-bottom: 0;
    font-size: 0.9rem;
    font-weight: 700 !important;
  }
  .scene-accordion .scene-accordion .scene-title::after {
    content: "▼" !important;
    display: block !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .scene-accordion .scene-toggle:checked + .scene-title::after {
    transform: rotate(180deg);
  }
  .-img80 {
    width: 80%;
  }
  .-dot {
    background-size: 24px 10px;
  }
  .l-keyvisual-h1 h1 {
    font-size: 1.8rem;
  }
  .l-keyvisual-h1 .l-keyvisual-h1-sub {
    font-size: 0.9rem;
    padding: 10px 0;
  }
  .slider-text {
    margin-bottom: 20px;
  }
  .l-keyvisual-youtube {
    margin-top: 100px;
  }
  .l-keyvisual-youtube h3:before {
    margin-left: -160px;
  }
  .l-keyvisual-youtube h3:after {
    margin-right: -160px;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 20px !important;
  }
  .-circle li {
    padding: 0 0 0 15px;
  }
  .-circle li:before {
    top: 8px;
    width: 7px;
    height: 7px;
  }
  header.navigate {
    padding: 10px;
    height: 60px;
    width: calc(100% - 10px);
    left: 5px;
    top: 10px;
    background: #fff;
  }
  .-navigate-icon img {
    width: 75px;
  }
  .-navigate-icon small {
    display: block !important;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 2px 0 0 6px;
  }
  .-right-footer {
    width: 100%;
  }
  .-right-footer section {
    width: calc(50% - 3px);
    margin: 0 0 6px 0;
  }
  .-right-footer section h4 {
    background: #eee;
    border-radius: 5px;
  }
  .-right-footer section h4 a {
    display: block;
    padding: 10px;
  }
  footer {
    z-index: 0;
  }
  .-right-footer {
    flex-direction: column;
  }
  .-right-footer-section {
    width: 50%;
  }
  .-right-footer .-right-footer-section {
    width: 100%;
  }
  input.hamburger:checked ~ .drawer-list {
    top: 10px;
    height: calc(100% - 20px);
  }
  .-left-footer {
    width: 100%;
    text-align: center;
  }
  .-left-footer img {
    width: 40%;
    margin-bottom: 10px;
  }
  footer {
    padding-top: 45px;
    margin-bottom: 70px;
  }
  footer img {
    width: 200px;
  }
  .drawer-footer {
    padding: 30px 10px 10px 10px;
  }
  .drawer-footer li {
    padding: 3px 0;
  }
  .drawer-footer.footer-control {
    padding: 45px 10px 45px 10px;
    margin-bottom: 35px;
  }
  address {
    font-size: 0.7rem;
  }
  .-right-footer .-right-footer-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: unset;
    padding-bottom: 0 !important;
    margin-bottom: 0;
  }
  .-right-footer .-right-footer-section section + section {
    margin-top: 0;
  }
  .-kotei-cvr {
    width: 100%;
    padding: 5px 10px;
    bottom: -2px;
    z-index: 999999;
    border-radius: 0;
  }
  .-kotei-cvr-left {
    display: none;
  }
  .-kotei-cvr-right {
    width: 100%;
  }
  .kotei-cvr-mail {
    width: calc(48% - 5px);
    padding: 4px 5px;
  }
  .kotei-cvr-mail-text01 {
    font-size: 1rem;
    padding-left: 27px;
  }
  .kotei-cvr-mail-text01:after {
    left: 0px;
    width: 27px;
    height: 22px;
  }
  .kotei-cvr-mail-text02 {
    font-size: 0.75rem;
  }
  .kotei-cvr-tel {
    width: calc(52% - 5px);
    padding: 4px 5px;
  }
  .kotei-cvr-tel-text01 {
    font-size: 0.75rem;
  }
  .kotei-cvr-tel-text02 {
    font-size: 0.95rem;
  }
  .kotei-cvr-tel-text:after {
    left: 6px;
    width: 35px;
    height: 35px;
  }
  .kotei-cvr-tel-text {
    padding-left: 47px;
  }
  .-red-link {
    padding: 10px 70px;
  }
  .l-mid-cvr {
    margin-top: 45px;
  }
  .l-mid-cvr .l-wrap {
    width: 100% !important;
    padding: 0 !important;
  }
  .l-mid-cvr .-bg-Theme {
    border-radius: 30px 30px 0 0;
    padding: 42px 15px 30px;
  }
  .-omakase {
    font-size: 1.3rem;
  }
  .-omakase::before, .-omakase::after {
    display: none;
  }
  .-mid-cvr-list {
    text-align: center;
    padding: 10px 0;
    width: 50%;
  }
  .-mid-cvr-list:last-child {
    display: none;
  }
  .-mid-cvr-list:first-child::before {
    display: none;
  }
  .-mid-cvr-list span.counter {
    font-size: 2rem;
    padding-right: 2px;
  }
  .-mid-cvr-list span {
    font-size: 0.8rem;
  }
  .-white-link {
    padding: 12px 80px;
  }
  .slick-slider {
    width: 80% !important;
  }
  .slick-dots {
    left: 0px !important;
  }
  .l-keyvisual {
    padding-bottom: 75px;
  }
  .l-keyvisual-usp.l-wrap li {
    width: calc(50% - 4px);
    border-radius: 10px;
    margin-bottom: 8px;
  }
  .l-keyvisual-usp.l-wrap li div {
    padding: 20px 15px;
    font-size: 1.05rem;
    text-align: left;
  }
  .l-keyvisual-usp.l-wrap li div span {
    font-size: 0.9rem;
  }
  .-three-box .-pdding-description {
    padding: 5px 0 10px 15px;
  }
  .-three-box Img {
    width: 40% !important;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    -o-object-position: right;
       object-position: right;
  }
  .-link-list-section {
    width: calc(50% - 10px);
    margin-bottom: 40px;
  }
  .-function-point dl {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .-function-point dt {
    width: 25%;
    padding: 25px 15px;
  }
  .-function-point dd {
    width: 75%;
    padding: 10px 20px 10px 15px;
  }
  .-price-case.-mt70 {
    margin-top: 50px !important;
  }
  .-price-case-box {
    width: calc(33% - 15px);
    padding: 12px 0 12px !important;
  }
  .-price-case-box:after {
    width: 12px;
    height: 12px;
    right: -21px;
    margin-top: -6px;
  }
  .-price-case-box span {
    font-size: 0.7rem;
    width: 60px;
    margin-left: -30px;
    border-radius: 5px;
    line-height: 1.3;
    top: -28px;
    padding: 3px 0 6px;
  }
  .-price-save {
    flex-direction: column;
    padding: 30px 0;
  }
  .-price-save-right {
    border: none;
  }
  .-price-save-right {
    padding: 22px 16px 0;
    width: 100%;
  }
  .-price-save-right dl {
    padding: 10px 0 15px 0;
  }
  .-price-save-right dl dt {
    width: 90px;
  }
  h3.-center-type-black::before {
    top: 15px;
    left: -75px;
    width: 60px;
  }
  h3.-center-type-black::after {
    top: 15px;
    right: -75px;
    width: 60px;
  }
  .l-option {
    flex-direction: column;
  }
  .l-option-left {
    width: 100%;
    border-right: unset;
  }
  .l-option-left .l-option-price {
    font-size: 2.5rem;
  }
  .l-option-right {
    width: 100%;
  }
  .l-option + .l-option::before {
    margin-left: -15px;
    width: 30px;
    height: 30px;
    top: -55px;
  }
  .l-option + .l-option {
    margin-top: 80px;
  }
  h2.-big-type.-big-left {
    padding-left: 0px;
    line-height: 1.5;
  }
  .-three-box {
    padding: 25px 15px;
    width: 100%;
  }
  .-three-box + .-three-box {
    margin-top: 15px;
  }
  .-three-box.-three-box-pdding {
    width: calc(50% - 5px);
    padding: 20px 15px 40px;
  }
  .-ancer-link + .-mt60 {
    margin-top: 0 !important;
  }
  .-l-second-box {
    border-bottom: 4px solid #EFEFEF;
    padding: 20px 15px;
  }
  .-l-case-solution-left {
    display: none;
  }
  .-l-case-solution-right {
    width: 100%;
    border-left: unset;
    padding-left: 0;
  }
  .-before-after.-before-after-anim {
    flex-direction: column;
  }
  .-before-after.-before-after-anim section + section:before {
    display: none;
  }
  .l-news {
    margin-top: 40px;
  }
  .l-news-box {
    padding: 25px 15px;
  }
  .l-news-box-list {
    margin-top: 10px;
  }
  .l-news-box-list section {
    padding: 10px 0px;
    padding-bottom: 21px;
    margin-bottom: 17px;
  }
  .-l-second-title .l-wrap.-pankuzu {
    position: unset;
  }
  .pankuzu {
    left: 10px;
    top: 26px;
    z-index: 9999;
  }
  .pankuzu {
    position: unset !important;
    white-space: nowrap;
    overflow: scroll;
    scrollbar-width: none;
  }
  .-l-second .l-wrap, .-l-third .l-wrap {
    width: calc(100% - 20px);
  }
  .-l-third .l-category {
    width: 100%;
  }
  .-l-third-main-title {
    padding: 0 10px;
  }
  .-kodawari .-l-third-main-title {
    padding: 0 !important;
  }
  .-l-third-main-title img {
    width: 30%;
  }
  .-l-third-main-title h1 {
    font-size: 1.4rem;
    padding-top: 40px;
  }
  .-sp-l-third-main-title {
    margin-top: 40px;
  }
  .-l-third-main-title .l-news-tag + h1 {
    padding-top: 10px;
  }
  .-l-third-title {
    padding: 80px 0 105px;
  }
  .-l-third-title.-kiji {
    padding: 86px 0 115px;
  }
  .-l-third-title.-kiji .pankuzu {
    margin-bottom: 30px;
  }
  .-kiji-detail img {
    width: 100%;
  }
  .-kiji .pankuzu {
    left: 10px;
    top: -58px;
  }
  .-l-second .l-wrap.-bg-White, .-l-third .l-wrap.-bg-White {
    padding: 30px 15px 30px !important;
  }
  dt {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
  }
  dd {
    width: calc(100% - 100px);
  }
  dl {
    padding-bottom: 15px;
  }
  .-history-talk dt {
    min-width: 60px;
    max-width: 60px;
    font-size: 1.15rem;
    padding: 0 10px 0 0;
    margin-top: 5px;
    font-weight: 600;
  }
  .-history-talk dd {
    min-width: calc(100% - 60px);
    max-width: calc(100% - 60px);
  }
  .-history-talk dt::after {
    top: 40px;
    right: 3px;
    width: calc(100% - 10px);
    height: 2px;
  }
  .-history-talk + .-history-talk {
    margin-top: 40px;
  }
  .-history-talk h3 {
    font-size: 1.1rem;
  }
  .-history-img2 {
    margin: 45px 0 45px !important;
    padding: 0 20px !important;
  }
  .-history-img2 img {
    width: 100% !important;
  }
  .l-point {
    margin-top: 60px;
    padding: 60px 0 80px;
  }
  .l-point .-bg-White {
    padding: 50px 25px;
  }
  .l-point h2 {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  .l-point p {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.8;
  }
  .-l-second-title {
    padding: 82px 0 65px;
  }
  .-l-second-main-title h1 {
    font-size: 1.5rem;
    padding-top: 70px;
  }
  section.-bg-White.-function-point {
    padding: 41px 15px 30px !important;
  }
  .-photo-control {
    padding: 30px 15px;
  }
  .-logo-control {
    padding: 50px 15px 60px;
  }
  .-logo-control img {
    width: 60%;
  }
  .-case-box-name {
    padding: 30px 0 30px;
  }
  .-case-box-name h3 {
    font-size: 1.3rem;
    padding: 2px 0;
  }
  .-case-box-title {
    padding: 0 0 40px 0;
  }
  .-qa-list h4 {
    padding: 15px 45px;
  }
  .-qa-list h4::before {
    width: 20px;
    height: 20px;
    top: 17px;
    left: 17px;
  }
  .-qa-list h4:after {
    top: 16px;
    right: 12px;
    width: 22px;
    height: 22px;
  }
  .-qa-list h4.selected:after {
    background: url(../img/svg/question-minus.svg);
    background-size: contain;
    width: 22px;
    height: 22px;
  }
  .-l-third-title.-kodawari {
    padding: 86px 0 135px;
  }
  .-kodawari .-l-third-main-title h1 {
    padding-top: 15px;
  }
  .-kodawari .-l-third-main-title p {
    font-size: 0.95rem;
    text-align: left;
    margin-top: 25px;
    padding: 0 15px;
  }
  .-kodawari-box-detail {
    width: 100%;
    padding-top: 10px;
  }
  .-kodawari-box-name h3 {
    font-size: 1.05rem;
  }
  .-kodawari-box-name p {
    font-size: 0.9rem;
    margin: 5px !important;
  }
  .-kodawari-box-detail p {
    padding: 0 25px;
  }
  .-kodawari-box-detail + .-kodawari-box-detail {
    padding-top: 45px;
  }
  .-kodawari-box-detail {
    padding-bottom: 45px;
  }
  .page-nav {
    margin-left: 0;
    left: 15px;
  }
  .-history-img {
    padding: 10px 0 10px;
    margin: 35px 0 55px;
  }
  .-history-box img {
    width: 55%;
  }
  aside {
    display: none;
  }
  .l-category-list {
    width: 100%;
    padding: 15px 15px 40px;
  }
  .l-category-list.-case {
    padding: 15px 15px 40px;
  }
  .-case-photo-box-left {
    width: 100%;
    height: auto;
  }
  .l-news-box-list section {
    padding-bottom: 18px;
    margin-bottom: 5px;
  }
  .l-footer-open {
    padding: 0px 15px 15px 20px;
  }
  .-news-h3 {
    font-size: 1rem;
  }
  h3.-big-type.-center-type:before {
    left: -30px;
    width: 20px;
  }
  h3.-big-type.-center-type:after {
    right: -30px;
    width: 20px;
  }
  .-flex.-between.-before-after {
    flex-direction: column;
  }
  .-before-after section {
    width: 100%;
    margin-bottom: 15px;
    padding: 25px;
  }
  .-spec-table {
    margin-top: 30px;
  }
  .-spec-table th, .-spec-table td {
    padding: 15px;
  }
  .l-flow-list {
    padding: 20px;
    min-height: unset;
  }
  .l-flow-list-left {
    display: none;
  }
  .-number {
    font-size: 3.5rem;
    padding-right: 11px;
  }
  .-number:after {
    width: 34px;
  }
  .l-flow-list-right {
    width: 100%;
    padding-left: 0;
  }
  .l-flow-list-right .-mt20 {
    margin-top: 20px !important;
  }
  .-text-normal {
    font-size: 0.9rem;
  }
  h3.-center-type-black {
    font-size: 1.15rem;
  }
  .l-contact-title-box {
    width: 100%;
    display: block;
    font-size: 0.9rem;
  }
  .l-contact {
    padding: 0;
  }
  .l-contact tr {
    margin-top: 25px;
  }
  td.l-contact-input-box {
    margin-top: 7px;
    display: block;
  }
  .-mandatory {
    margin-right: 0;
    font-size: 0.8rem;
  }
  input {
    font-size: 0.9rem;
    padding: 11px 5px;
  }
  .-l-third-news .-flex {
    flex-direction: column;
  }
  .-l-third-news .-flex dt, .-l-third-news .-flex dl {
    padding-bottom: 0;
  }
  .-l-third-news .-flex dt, .-l-third-news .-flex dd {
    padding: 0 10px;
  }
  .-link-list-section.-wide {
    flex-direction: column;
  }
  .-link-list-section.-wide img {
    width: 100%;
  }
  .-link-list-section.-wide .-link-description {
    width: 100%;
    padding: 10px 0 0;
  }
  .-function-point-list th, .-function-point-list td {
    width: 100%;
    display: block;
    padding: 10px 15px;
  }
  .-function-point-list td {
    padding-bottom: 23px;
  }
  .-Theme-link.-right-arrow {
    padding: 5px 17px 6px;
  }
  .-Theme-link.-right-arrow:after {
    display: none;
  }
  input[type=checkbox] + span {
    padding: 8px 5px;
    /* width: 100%; */
    margin: 2px;
  }
  input[type=submit] {
    padding: 20px 40px;
    width: 100%;
  }
  .l-news-tag {
    padding-top: 120px;
    font-size: 0.8rem;
  }
  .-border-Theme {
    border: 1px solid #086310;
    padding: 4px 7px;
  }
  .is-show input.hamburger:checked ~ .drawer-list,
  input.hamburger:checked ~ .drawer-list {
    top: -10px;
    height: 100vh;
    width: 100%;
    left: 0;
    border-radius: 0;
  }
  .l-news-tag {
    padding-top: 0px;
  }
  .-bg-Gray.-spacing {
    padding: 15px 20px;
  }
  .-case-comapny-detail-box {
    padding: 15px;
  }
  .-case-comapny-detail-box .-flex {
    flex-direction: column;
  }
  .-case-comapny-detail-box .-case-comapny-detail-box-left {
    width: 100%;
    padding: 30px;
  }
  .-case-comapny-detail-box .-case-comapny-detail-box-left img {
    width: 70%;
  }
  .-case-comapny-detail-box-right {
    padding-top: 15px;
    width: 100%;
  }
  .-case-comapny-detail-box-right dl {
    width: 100%;
    flex-direction: unset !important;
  }
  .-case-comapny-detail-box-right dt, .-case-comapny-detail-box-right dd {
    padding: 0;
  }
  .-case-comapny-detail-box-right dt {
    min-width: 80px;
    max-width: 80px;
  }
  .-case-comapny-detail-box-right dl + dl {
    margin-top: 0;
  }
  .-pos-image .-bg-White {
    padding: 25px 15px;
  }
  .-pos-image .l-news-box-list section {
    padding: 12px 0;
  }
  h4.-mt15.-big-type {
    margin-top: 3px !important;
  }
  .-pos-image-box + .-pos-image-box {
    margin-top: 35px;
    padding-top: 35px;
  }
  .-bg-Gray.-pos-image {
    padding-top: 210px;
  }
  .-next-pos-box {
    margin-top: 60px;
  }
  .-next-pos-box .-next-pos-box-list {
    flex-direction: column;
  }
  .-next-pos-box-h2 h2 {
    font-size: 3rem;
  }
  .-next-pos-box-h2 p {
    font-size: 1.45rem;
    margin-bottom: 0;
    padding-left: 20px;
  }
  .-gray-main-box {
    border-radius: 15px 15px 0 0;
    padding: 40px 0 40px;
  }
  .-Theme-boredr-link.-right-arrow:after {
    top: 9px;
    width: 20px;
    height: 20px;
  }
  .l-step {
    padding: 50px 0 0 0;
  }
  .l-step h2 .-big {
    font-size: 2rem;
  }
  .gray-right-contents {
    padding: 30px 10px !important;
    border-radius: 15px 15px 0 0;
  }
  .gray-right-contents:after {
    display: none;
  }
  .white-right-contents {
    margin-top: 25px;
    border-radius: 5px;
    padding: 25px 15px;
  }
  .white-right-contents::after {
    display: none;
  }
  .white-right-contents section img {
    width: 35%;
    margin-bottom: 20px;
  }
  .white-right-contents div {
    width: 100%;
  }
  section.-flex.-between.-center-x.js-stagger-item.is-visible {
    flex-direction: column;
  }
  .l-qa {
    padding-top: 40px;
  }
  .l-qa .-flex.-between {
    flex-direction: column;
  }
  .l-qa-left {
    width: 100%;
    padding: 15px 0;
    background: #fff;
  }
  .l-qa-left br {
    display: none;
  }
  .l-qa-left .-flex.-center-w.-mt50 {
    display: none;
  }
  .l-qa-right {
    width: 100%;
    margin-top: 15px;
  }
  .question {
    font-size: 1rem;
  }
  .qa-item {
    border-radius: 10px;
    padding: 10px;
  }
  .toggle-btn span {
    height: 2px;
  }
  .l-option {
    padding: 25px 15px;
  }
  .l-option-select {
    border-radius: 5px;
    width: calc(50% - 5px);
    padding: 15px 10px;
  }
  .l-option-select:last-child {
    margin-top: 10px;
  }
  .l-option-price {
    line-height: 1.4;
    font-size: 1.7rem;
    letter-spacing: 0;
  }
  .l-option-price .-tax, .l-option-price .-en {
    font-size: 0.95rem;
  }
  .l-price {
    padding: 50px 0 50px;
    margin-top: 0;
  }
  .l-price.l-price-second {
    padding: 52px 0 40px;
    margin: 70px 0 -60px;
  }
  .-ayumi p {
    text-align: left;
  }
  .l-loop__item {
    min-width: 200px;
    padding: 25px 15px;
    margin-right: 20px;
  }
  .l-loop__item img {
    width: 100%;
  }
  .l-function-box {
    flex-direction: column;
  }
  .l-function-box a {
    width: 100%;
  }
  .-four-box {
    padding: 30px 20px 30px;
  }
  .-four-box Img {
    width: 27%;
  }
  .-four-box h3 {
    text-align: center;
    margin-top: 5px !important;
  }
  .-four-box + .-four-box {
    margin-top: 45px;
  }
  .-four-box .-mt40 {
    margin-top: 25px !important;
  }
  .-gray-main-box-border0.-gyosyu {
    padding: 100px 10px 50px;
  }
  .slider {
    padding: 0 !important;
  }
  .slick-slider {
    width: 100% !important;
  }
  .l-tenpo-pos {
    padding: 50px 0 50px;
  }
  .table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .spec-table {
    min-width: 920px; /* テーブル幅 */
  }
  .spec-table th,
  .spec-table td {
    padding: 10px;
    text-align: center;
    white-space: nowrap;
  }
  .spec-table.-under th,
  .spec-table.-under td {
    text-align: left;
  }
  .-pick-up span:after {
    left: 20px;
    margin-left: 0;
  }
  .l-wrap-taisei-select.-pick-up span:after {
    left: 50%;
    margin-left: -12px;
  }
  .l-function .-pick-up span:after {
    left: 50%;
    margin-left: -12px;
  }
  .spec-table th:first-child,
  .spec-table td:first-child {
    min-width: 185px;
    text-align: left;
    white-space: normal;
  }
  .spec-table .-w10 {
    min-width: unset;
  }
  .l-tenpo-pos th, .l-tenpo-pos td {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .l-tenpo-pos th.-text-left {
    padding: 15px 12px 15px 12px;
  }
  th br {
    display: none;
  }
  table img {
    width: 20px;
  }
  small {
    font-size: 0.75rem;
  }
  .-ai-h2 {
    display: none;
  }
  .-ai-description {
    width: 100%;
    margin-bottom: 5px;
  }
  .l-ai-table {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .l-riyuu {
    padding-top: 50px;
  }
  .l-wrap.l-riyuu-box1 img {
    width: 70%;
  }
  .l-riyuu .l-riyuu-box2 {
    margin-top: 30px;
    flex-direction: column;
    padding-bottom: 30px !important;
  }
  .l-riyuu-left {
    width: 100%;
  }
  .l-wrap.l-riyuu-box1::before {
    width: 122px;
    height: 110px;
    bottom: -41px;
    left: 14px;
    margin-left: 0;
  }
  .l-case {
    padding-top: 60px;
    overflow: hidden;
  }
  .l-riyuu-left h2 {
    margin-top: 25px;
  }
  .l-riyuu-right {
    width: 100%;
    padding: 10px 20px;
    margin-top: 20px;
  }
  .l-riyuu-right section {
    padding: 15px 0;
  }
  .l-case-left {
    height: unset;
    min-height: unset;
    margin-left: 0;
    padding: 20px 12px;
    min-width: 160px;
  }
  .l-case-right-list {
    margin-right: 15px;
  }
  .l-case-right {
    position: unset !important;
  }
  .l-case-right .slick-list {
    margin: 0 0 0 10px;
  }
  .l-case-right-list .l-case-right-list-up {
    padding: 5px;
    min-height: 190px;
  }
  .-Theme-boredr-link.-right-arrow {
    position: relative;
    padding-right: 37px;
  }
  .l-case-right-list .l-case-right-list-down {
    padding: 15px 4px;
  }
  .l-case-right-list .l-case-right-list-down img {
    width: 60px;
  }
  .l-case-right-list .-Theme-boredr-link.-right-arrow:after {
    display: none;
  }
  .l-case-right .-Theme-boredr-link.-right-arrow {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
  a.-down-move.-Theme-boredr-link.-right-arrow {
    margin-bottom: 0;
  }
  .l-keyvisual-youtube .slick-slider {
    width: 100% !important;
  }
  .l-keyvisual-youtube .slick-slider img {
    width: 85%;
    margin: 0 auto;
  }
  .pankuzu {
    font-size: 0.7rem;
  }
  p.-text-center, .-text-center.-bold600, p {
    text-align: left;
  }
  p.-text-center br, .-text-center.-bold600 br, p br {
    display: none;
  }
  p br {
    display: none;
  }
  .-flow-list-right-title {
    padding: 10px 0 5px;
  }
  .-flow-list-right-number {
    font-size: 2.3rem;
    margin-right: 10px;
  }
  .-flow-list {
    padding: 20px 15px 30px;
    margin-top: 35px;
  }
  .-flow-list::after {
    width: 15px;
    height: 15px;
    bottom: -25px;
  }
  .-bg-Gray.-flow-list {
    flex-direction: column;
  }
  .-flow-list img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 30%;
       object-position: 50% 30%;
  }
  .-flow-list-right {
    width: 100%;
  }
  .-support-qa {
    margin-top: 70px;
  }
  .-support-qa .l-wrap {
    width: 100%;
  }
  .-l-third-title.-detail {
    padding: 80px 0 68px;
  }
  .l-news-box-list .l-news-tag {
    margin-bottom: 0px;
  }
  .l-news-tag .-border-Theme {
    font-size: 0.8rem;
    border-radius: 5px;
  }
  article h2 {
    font-size: 1.2rem;
  }
  article h3 {
    padding: 3px 8px;
    font-size: 0.95rem;
  }
  article table th {
    width: 100%;
    display: block;
  }
  article table td {
    width: 100%;
    display: block;
  }
  .-l-third-main-title-list {
    padding: 30px 0px 60px;
  }
  .-l-third-main-title-list h1 {
    width: 100%;
    font-size: 1.65rem;
  }
  .-l-third-main-title-list .-english {
    display: none;
  }
  dd h2.-big-type {
    font-size: 1.2rem;
  }
  .-history-talk img {
    margin: 20px auto 0;
  }
  .-history-h2 {
    padding: 60px 0 40px;
    font-size: 1.2rem;
  }
  .-case-photo-box {
    flex-direction: column;
  }
  .-case-photo-box-right {
    padding: 10px 0 0;
  }
  .-case-title {
    padding: 0px 0 20px 0;
  }
  .-case-title br {
    display: none;
  }
  article .-pl10 {
    padding: 0;
  }
  .l-news-box-list .l-news-tag {
    font-size: 0.9rem;
  }
  .l-case-box-list {
    flex-direction: column;
  }
  .l-case-box-list section {
    width: 100%;
    padding-bottom: 40px;
  }
  .-l-third-main-title-price a.-down-move.-Theme-boredr-link.-sim-arrow,
  .-l-third-main-title-list a.-down-move.-Theme-boredr-link.-right-arrow {
    display: none;
  }
  .-l-third-title-price {
    padding: 86px 0 105px;
  }
  .-l-third-main-title-price {
    padding: 40px 0px 78px;
  }
  .-l-third-main-title-price {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
  .-l-third-main-title-price h1 {
    font-size: 1.3rem;
  }
  .l-function-box-list {
    margin: 0;
    flex-direction: column;
  }
  .l-function-box-list section {
    width: 100%;
    margin-bottom: 15px;
  }
  .l-function-box-list section a {
    padding: 15px;
  }
  .l-function-box-list section .l-function-1 h3 {
    font-size: 1.2rem;
    width: 100px;
  }
  .l-function-box-list section .l-function-1 p {
    font-size: 1rem;
    width: calc(100% - 110px);
  }
  .l-function-box-list section .l-function-2 {
    margin-top: 5px;
  }
  .l-function-box-list section .-mt30 {
    margin-top: 10px !important;
  }
  .-issune-talk-title {
    flex-direction: column;
    align-items: unset !important;
  }
  .-issune-talk-title h3 {
    font-size: 1.5rem;
  }
  .-issune-talk-title p {
    padding: 10px 0 0;
    font-size: 1.1rem;
  }
  .l-issue-box-list {
    margin-top: 20px;
  }
  .l-issue-box-list section {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .l-issue-box-list section .l-issue-title {
    padding: 10px 10px 20px;
  }
  .-issune-talk + .-issune-talk {
    margin-top: 20px;
  }
  .l-issue2-title {
    padding: 10px 10px 20px;
    flex-direction: column;
  }
  .l-issue2-title h3 {
    margin-bottom: 10px;
  }
  .l-wrap-taisei-list {
    margin-top: 40px;
  }
  .l-wrap.-bg-White.l-wrap-taisei .-bg-Gray {
    padding: 25px 15px 0px;
  }
  .l-wrap-taisei-select {
    width: calc(50% - 5px);
    margin-bottom: 25px;
    padding: 30px 0px 25px;
  }
  .l-wrap.-bg-White.l-wrap-taisei .-bg-Gray h3 {
    font-size: 1.25rem;
  }
  .l-wrap.-bg-White.l-wrap-taisei .-bg-Gray h3::before,
  .l-wrap.-bg-White.l-wrap-taisei .-bg-Gray h3::after {
    top: 16px;
    width: 50px;
  }
  .l-wrap.-bg-White.l-wrap-taisei .-bg-Gray h3::before {
    left: -80px;
  }
  .l-wrap.-bg-White.l-wrap-taisei .-bg-Gray h3::after {
    right: -80px;
  }
  .l-wrap-taisei-select::before {
    display: none;
  }
  .l-wrap-taisei-select .-price {
    font-size: 1.3rem;
  }
  .-l-function-right {
    width: 100%;
    padding: 15px 0;
    border: unset;
  }
  .-l-function-keyvisual .l-wrap.-flex.-between.-center-w {
    flex-direction: column;
  }
  .l-function-sections {
    padding: 0 10px !important;
  }
  .l-function-detail-section .l-wrap {
    border-radius: 10px;
    border: 2px solid #F4F4F4;
    padding: 15px !important;
  }
  .l-function-detail-section-contents {
    width: 100%;
    margin-top: 0;
  }
  .l-function-detail-section.-left .l-wrap:before,
  .l-function-detail-section.-right .l-wrap:before {
    display: none;
  }
  .-function-qa-list li {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .-function-qa-list li a {
    padding: 9px 5px 8px 25px;
  }
  .-function-qa-box + .-function-qa-box {
    margin-top: 45px;
  }
  .-function-qa-box .-flex.-start {
    flex-direction: column;
    align-items: unset;
  }
  .-function-qa-box .-w200 {
    width: 85px;
    padding: 10px;
  }
  .-function-qa-box td {
    padding: 10px;
  }
  .-function-qa-box {
    margin-top: 25px;
  }
  .-function-qa-box h3 {
    font-size: 1.4rem;
    border-right: unset;
  }
  .-function-qa-box p {
    font-size: 0.9rem;
  }
  td.-flex.-between {
    flex-direction: column;
  }
  td .-case-detail {
    width: 100%;
  }
  td .-case-link {
    margin-top: 10px;
    width: 100%;
  }
  .-function-qa-box td {
    vertical-align: sub;
  }
  .l-option-second {
    padding: 25px 15px;
  }
  .l-option-second {
    flex-direction: column;
  }
  .l-wrap-second {
    width: calc(100% - 20px);
  }
  .l-option-left-second {
    border: unset;
    border-bottom: 2px solid #EfEfEf;
  }
  .l-option-right-second {
    padding-top: 20px;
    width: 100%;
  }
  .l-option-left-second .l-option-price-second {
    font-size: 2.5rem;
    line-height: 1;
    padding: 10px 0 20px;
  }
  .l-option-price-second .-en,
  .l-option-price-second .-tax {
    font-size: 0.95rem;
  }
  .-check.-second li::before {
    left: -3px;
    top: 4px;
    width: 16px;
  }
  .-check li {
    padding: 0 0 3px 21px;
  }
  .-l-function-right {
    background: unset;
  }
  .-l-function-right:after {
    display: none;
  }
  .-l-function-right-box h3, .-l-function-right-box .-big-type {
    text-align: center;
  }
  .-l-function-keyvisual {
    margin-top: 0;
  }
  .-l-function-left {
    width: 90%;
  }
  .-l-function-title {
    padding: 80px 0 25px;
  }
  .function-navi {
    margin-top: 10px;
    display: none;
  }
  .function-navi li a {
    padding: 15px 10px;
  }
  .function-navi li a img {
    display: none;
  }
  .l-function-detail-section {
    margin-top: 20px;
  }
  .l-function-detail-section-photo {
    width: 90%;
    display: none;
  }
  .l-function-detail-section + .l-function-detail-section {
    margin-top: 20px;
  }
  .l-option-second .l-option-select-second {
    width: 100%;
    padding: 25px 20px;
    margin-bottom: 15px;
  }
  .l-option-price-second {
    font-size: 2.5rem;
  }
  .l-option-second {
    margin-bottom: 80px;
  }
  .l-option-second:before {
    bottom: -55px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
  }
  .l-sim {
    padding: 50px 0 0;
  }
  .sim-h3-en {
    font-size: 1.3rem;
  }
  .sim-h3-jp {
    font-size: 1.65rem;
  }
  .l-sim-box {
    padding: 5px 0 25px;
  }
  .sim-cyuui {
    padding: 20px 0;
  }
  .l-nayami-top section {
    width: 100%;
    padding: 20px 15px;
    margin-bottom: 12px;
  }
  .-flow-list-right-title-main {
    line-height: 1.4;
  }
  .-case-photo-box-right .-case-photo-box-right-title {
    font-size: 0.95rem;
    padding: 7px 14px;
  }
  article h3 {
    border-left: 2px solid #086310;
  }
  .-flex.-center-w.-ayumi {
    align-items: flex-start;
  }
  .nexpo-usp-right {
    display: none;
  }
  .nexpo-usp-left {
    width: 100%;
  }
  .-keyvisual-second {
    padding: 0 10px;
  }
  .-keyvisual-second-box {
    position: relative;
    height: 240px;
  }
  .-keyvisual-second-box .l-wrap {
    position: relative;
    content: "";
    bottom: -80px;
    left: -32px;
  }
  .-keyvisual-second .l-wrap section h1 {
    font-size: 1.3rem;
  }
  .-keyvisual-second .l-wrap section p {
    font-size: 1.1rem;
  }
  .-keyvisual-second .l-wrap section {
    padding: 10px;
    width: 270px;
    border: 2px solid #eee;
  }
  .nexpo-usp {
    margin-top: 65px;
  }
  .nexpo-usp-left p {
    line-height: 1.8;
    font-size: 0.95rem;
  }
  .l-nayami-left {
    border-radius: 0 10px 10px 0;
    width: 135px;
    padding: 45px 0;
    margin: 0 0 0 -5px;
  }
  .l-nayami-left h2.-big-type {
    font-size: 1.1rem;
  }
  .nexpo-nayami {
    margin-top: 40px;
  }
  .l-nayami-right {
    padding: 15px;
    width: calc(100% - 140px);
  }
  .l-nayami-right h3 {
    font-size: 1rem;
  }
  .l-nayami-right h3 br {
    display: none;
  }
  .l-function-second .l-function-box {
    flex-direction: unset;
  }
  .l-function-second .-four-box {
    padding: 25px 15px 25px;
    width: calc(50% - 2.5px);
    margin-bottom: 5px;
  }
  .l-function-second .-four-box h3 {
    font-size: 1.1rem;
  }
  .l-function-second .-four-box + .-four-box {
    margin-top: 0;
  }
  .l-riyu-second-box {
    padding: 0;
  }
  .slider-ipad .slick-slide {
    padding: 0 10px !important;
  }
  .-l-second-title .l-wrap {
    left: 0;
  }
  .l-riyu-second-detail-box {
    margin-top: -25px;
    padding: 15px;
  }
  .l-riyu-second-detail-box .-flex {
    align-items: unset;
  }
  .l-riyu-second-detail-box-left {
    width: 20px;
    text-align: center;
  }
  .l-riyu-second-detail-box-left {
    font-size: 1.1rem;
  }
  .l-riyu-second-detail-box-left h3 {
    font-size: 1.1rem;
  }
  .l-riyu-second-detail-box-right {
    width: calc(100% - 30px);
  }
  .l-wrap.-bg-White.-issue-control {
    margin-top: -93px;
  }
  .slider-towa .slick-slide img {
    border: 4px solid #fff;
  }
  .-right-move img {
    width: 30px;
  }
  .l-towa {
    margin-top: 60px;
  }
  .slider-towa {
    margin: 40px 0 10px;
  }
  section.-keyvisual-second.-kadai-second .l-wrap section {
    width: 370px;
  }
  section.-keyvisual-second.-kadai-second .l-wrap {
    bottom: -52px;
  }
  section.-keyvisual-second.-kadai-second ul,
  section.-keyvisual-second.-kadai-second p {
    display: none;
  }
}/*# sourceMappingURL=top.css.map */