
@charset "UTF-8";
:root {
  --main-color: #0097E0;
  --main-color-hover: #14b2ff;
  --sub-color: #E50A11;
  --sub-color-hover: #f62c33;
  --link-color: #333;
  --link-color-hover: #0097E0;
  --text-color: #333;
  --bg-color: #F2F2F2;
  --gothic: 'Noto Sans JP','Yu Gothic','Hiragino Kaku Gothic ProN','メイリオ','Meiryo',sans-serif;
  --mincyo: 'ヒラギノ明朝 Pro','Hiragino Mincho Pro','Yu Mincho',"ＭＳ Ｐ明朝",serif;
  --roman: 'Georgia','Times New Roman','Times',serif;
  --icon: 'Material Icons';
  --icon-arrow-up: '\e316';
  --icon-arrow-down: '\e313';
  --icon-arrow-right: '\e315';
  --icon-arrow-left: '\e314';
  --icon-mail: '\e158';
  --icon-ex: '\e89e';
  --icon-check: '\e86c';
  --icon-plus: '\e145';
  --icon-minus: '\e15b';
  --sp-header-height: 60px;
  --pc-header-height: 84px;
  --inner-wide: 1000px;
}

* {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, summary, time, mark, audio, video, picture {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html {
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  font-size: 62.5%;
}

body {
  color: var(--text-color);
  font-size: 1.6rem;
  line-height: 2;
  font-family: var(--gothic);
  overflow-x: hidden;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  -webkit-animation: fadeIn 2s forwards;
  animation: fadeIn 2s forwards;
}

ins {
  background-color: var(--main-color);
  color: var(--text-color);
  text-decoration: none;
}

mark {
  background-color: var(--main-color);
  color: var(--text-color);
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

input, select {
  vertical-align: middle;
}

acronym, abbr {
  cursor: help;
}

option {
  padding-right: 10px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

address {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

button {
  padding: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: var(--gothic);
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: .5s;
}

a:hover {
  color: var(--link-color-hover);
}

a.-line {
  text-decoration: underline;
}

a.-line:hover {
  text-decoration: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

@-webkit-keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes widthIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes widthIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

._eff._in {
  -webkit-animation: fadeIn 1s forwards;
  animation: fadeIn 1s forwards;
}

._eff._widthin {
  -webkit-animation: widthIn .3s forwards;
  animation: widthIn .3s forwards;
}

/*
===== Utility ====================================
*/
._cf:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

._cf {
  display: inline-block;
}

._m00 {
  margin: 0 !important;
}

._mt00 {
  margin-top: 0 !important;
}

._mt05 {
  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;
}

._mt35 {
  margin-top: 35px !important;
}

._mt40 {
  margin-top: 40px !important;
}

._mt45 {
  margin-top: 45px !important;
}

._mt50 {
  margin-top: 50px !important;
}

._mr00 {
  margin-right: 0 !important;
}

._mr05 {
  margin-right: 5px !important;
}

._mr10 {
  margin-right: 10px !important;
}

._mr15 {
  margin-right: 15px !important;
}

._mr20 {
  margin-right: 20px !important;
}

._mr25 {
  margin-right: 25px !important;
}

._mr30 {
  margin-right: 30px !important;
}

._mr35 {
  margin-right: 35px !important;
}

._mr40 {
  margin-right: 40px !important;
}

._mr45 {
  margin-right: 45px !important;
}

._mr50 {
  margin-right: 50px !important;
}

._mb00 {
  margin-bottom: 0 !important;
}

._mb05 {
  margin-bottom: 5px !important;
}

._mb10 {
  margin-bottom: 10px !important;
}

._mb15 {
  margin-bottom: 15px !important;
}

._mb20 {
  margin-bottom: 20px !important;
}

._mb25 {
  margin-bottom: 25px !important;
}

._mb30 {
  margin-bottom: 30px !important;
}

._mb35 {
  margin-bottom: 35px !important;
}

._mb40 {
  margin-bottom: 40px !important;
}

._mb45 {
  margin-bottom: 45px !important;
}

._mb50 {
  margin-bottom: 50px !important;
}

._ml00 {
  margin-left: 0 !important;
}

._ml05 {
  margin-left: 5px !important;
}

._ml10 {
  margin-left: 10px !important;
}

._ml15 {
  margin-left: 15px !important;
}

._ml20 {
  margin-left: 20px !important;
}

._ml25 {
  margin-left: 25px !important;
}

._ml30 {
  margin-left: 30px !important;
}

._ml35 {
  margin-left: 35px !important;
}

._ml40 {
  margin-left: 40px !important;
}

._ml45 {
  margin-left: 45px !important;
}

._ml50 {
  margin-left: 50px !important;
}

._p00 {
  padding: 0 !important;
}

._pt00 {
  padding-top: 0 !important;
}

._pt05 {
  padding-top: 5px !important;
}

._pt10 {
  padding-top: 10px !important;
}

._pt15 {
  padding-top: 15px !important;
}

._pt20 {
  padding-top: 20px !important;
}

._pt25 {
  padding-top: 25px !important;
}

._pt30 {
  padding-top: 30px !important;
}

._pt35 {
  padding-top: 35px !important;
}

._pt40 {
  padding-top: 40px !important;
}

._pt45 {
  padding-top: 45px !important;
}

._pt50 {
  padding-top: 50px !important;
}

._pr00 {
  padding-right: 0 !important;
}

._pr05 {
  padding-right: 5px !important;
}

._pr10 {
  padding-right: 10px !important;
}

._pr15 {
  padding-right: 15px !important;
}

._pr20 {
  padding-right: 20px !important;
}

._pr25 {
  padding-right: 25px !important;
}

._pr30 {
  padding-right: 30px !important;
}

._pr35 {
  padding-right: 35px !important;
}

._pr40 {
  padding-right: 40px !important;
}

._pr45 {
  padding-right: 45px !important;
}

._pr50 {
  padding-right: 50px !important;
}

._pb00 {
  padding-bottom: 0 !important;
}

._pb05 {
  padding-bottom: 5px !important;
}

._pb10 {
  padding-bottom: 10px !important;
}

._pb15 {
  padding-bottom: 15px !important;
}

._pb20 {
  padding-bottom: 20px !important;
}

._pb25 {
  padding-bottom: 25px !important;
}

._pb30 {
  padding-bottom: 30px !important;
}

._pb35 {
  padding-bottom: 35px !important;
}

._pb40 {
  padding-bottom: 40px !important;
}

._pb45 {
  padding-bottom: 45px !important;
}

._pb50 {
  padding-bottom: 50px !important;
}

._pl00 {
  padding-left: 0 !important;
}

._pl05 {
  padding-left: 5px !important;
}

._pl10 {
  padding-left: 10px !important;
}

._pl15 {
  padding-left: 15px !important;
}

._pl20 {
  padding-left: 20px !important;
}

._pl25 {
  padding-left: 25px !important;
}

._pl30 {
  padding-left: 30px !important;
}

._pl35 {
  padding-left: 35px !important;
}

._pl40 {
  padding-left: 40px !important;
}

._pl45 {
  padding-left: 45px !important;
}

._pl50 {
  padding-left: 50px !important;
}

._roman {
  font-family: var(--roman);
}

._mincyo {
  font-family: var(--mincyo);
}

._ss {
  font-size: 1rem;
  line-height: 2;
}

._s {
  font-size: calc(12px + 2 * (100vw - 320px) / 680);
  line-height: calc(200% + 3.2 * (100vw - 1000px) / -680);
}

._m {
  font-size: calc(16px + 2 * (100vw - 320px) / 680);
  line-height: calc(200% + 3.2 * (100vw - 1000px) / -680);
}

._l {
  font-size: calc(18px + 2 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
}

._ll {
  font-size: calc(20px + 4 * (100vw - 320px) / 680);
  line-height: calc(140% + 3.2 * (100vw - 1000px) / -680);
}

._bold {
  font-weight: bold !important;
}

._normal {
  font-weight: normal !important;
}

._tl {
  text-align: left !important;
}

._tr {
  text-align: right !important;
}

._tc {
  text-align: center !important;
}

._vt {
  vertical-align: top !important;
}

._vm {
  vertical-align: middle !important;
}

._vb {
  vertical-align: bottom !important;
}

._mc {
  color: var(--main-color);
}

._sc {
  color: var(--sub-color);
}

._fl {
  padding: 0;
  float: none !important;
}

._fr {
  padding: 0;
  float: none !important;
}

._sp-show.-il {
  display: inline-block;
}

._sp-show.-fl {
  display: flex;
}

._tab-show {
  display: none;
}

._pc-show {
  display: none;
}

._indent {
  padding-left: 1em;
  text-indent: -1em;
}

/*
===== HEADER ==========================================
*/
#site-header {
  background: #fff;
  transition: .3s;
  width: 100%;
  z-index: 1001;
  height: var(--sp-header-height);
  position: fixed;
  top: 0;
  left: 0;
}

#site-header-column {
  padding: 0 10px;
  display: flex;
  align-items: center;
  height: inherit;
}

#site-header-logo {
  margin: 0;
  width: 100px;
}

#site-header .go-form {
  margin: 0;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translate(0, -50%);
}

#site-header .go-form > .btn {
  padding-top: calc(5px + 5 * (100vw - 320px) / 680);
  padding-bottom: calc(5px + 5 * (100vw - 320px) / 680);
  padding-left: calc(15px + 5 * (100vw - 320px) / 680);
  padding-right: calc(25px + 10 * (100vw - 320px) / 680);
  font-size: calc(13px + 1 * (100vw - 320px) / 680);
  line-height: calc(200% + 3.2 * (100vw - 1000px) / -680);
}

#site-header .go-form > .btn::before {
  font-size: 2rem;
  line-height: 1;
  right: 5px;
}

/* NAVIGATION
------------------------------------ */
#site-menu-btn {
  margin: 0;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2000;
  width: var(--sp-header-height);
  height: var(--sp-header-height);
}

#site-menu-btn > .line {
  margin: auto;
  background: #9CA5AA;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 2px;
  transition: .3s;
  transform: translate(-50%, -50%);
}

#site-menu-btn > .line::before, #site-menu-btn > .line::after {
  content: '';
  background: #9CA5AA;
  border-radius: 2px;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: inherit;
}

#site-menu-btn > .line::before {
  top: -10px;
}

#site-menu-btn > .line::after {
  top: 10px;
}

#site-menu-btn .hidden {
  visibility: hidden;
}

#site-menu-btn.js-open > .line {
  background: none;
}

#site-menu-btn.js-open > .line::before {
  transform: rotate(45deg);
  top: 0;
}

#site-menu-btn.js-open > .line::after {
  transform: rotate(-45deg);
  top: 0;
}

#site-nav {
  margin: var(--sp-header-height) 0 0;
  padding: 0 0 var(--sp-header-height);
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: auto;
  z-index: 1000;
}

#site-nav-wrap {
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  overflow-y: auto;
}

#site-nav-list {
  margin: 0;
  padding: 0 30px 50px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0;
}

#site-nav-list > li {
  border-bottom: 1px solid #9CA5AA;
  position: relative;
}

#site-nav-list > li::before {
  margin-top: 1px;
  content: var(--icon-arrow-right);
  color: var(--main-color);
  font-family: var(--icon);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

#site-nav-list > li > a {
  padding: 15px 15px 15px 30px;
  display: block;
  text-align: left;
}

/*
===== FOOTER ==========================================
*/
#site-footer {
  font-size: 1.4rem;
  line-height: 2;
  text-align: left;
}

#site-footer-column {
  padding-bottom: 40px;
  padding-top: calc(40px + 60 * (100vw - 320px) / 680);
}

#site-footer-logo {
  margin: 0 20px 0 0;
  width: 190px;
}

#site-footer-info {
  padding: 10px;
  flex: 1;
}

#site-footer-info > .ttl {
  padding: 0 0 0 15px;
  border-left: 2px solid var(--main-color);
  font-size: 1.4rem;
  line-height: 2;
}

#site-footer-nav {
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #ccc;
  flex: 1;
}

#site-footer-nav > .nav {
  margin: 0;
}

#site-footer-nav > .nav > li {
  padding: 0 10px;
  display: inline-block;
}

#site-footer-nav > .nav .material-icons {
  color: var(--main-color);
}

#site-footer .copyright {
  padding: 10px;
  border-top: 1px solid #ccc;
  display: block;
  font-size: calc(10px + 2 * (100vw - 320px) / 680);
  line-height: calc(200% + 3.2 * (100vw - 1000px) / -680);
  text-align: center;
}

#page-scroll {
  margin: 0;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
}

#page-scroll > .totop {
  padding: 10px 0 0;
  background: #54C3F1;
  border-radius: 50%;
  box-shadow: 4px 4px 0 rgba(42, 57, 79, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: bold;
  width: calc(70px + 50 * (100vw - 320px) / 680);
  height: calc(70px + 50 * (100vw - 320px) / 680);
  text-decoration: none;
  position: relative;
}

#page-scroll > .totop::before {
  content: var(--icon-arrow-up);
  font-family: var(--icon);
  font-size: calc(24px + 16 * (100vw - 320px) / 680);
  line-height: calc(100% + 3.2 * (100vw - 1000px) / -680);
  font-weight: normal;
  position: absolute;
  top: calc(5px + 10 * (100vw - 320px) / 680);
}

/*
===== MAIN CONTENT ====================================
*/
body.menu-open {
  overflow: hidden;
  width: 100vw;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  max-width: var(--inner-wide);
  min-width: 320px;
}

#main-content {
  padding-top: var(--sp-header-height);
  overflow: hidden;
}

article {
  margin-top: calc(50px + 30 * (100vw - 320px) / 680);
  margin-bottom: calc(50px + 30 * (100vw - 320px) / 680);
}

section {
  margin-top: calc(50px + 30 * (100vw - 320px) / 680);
  margin-bottom: calc(50px + 30 * (100vw - 320px) / 680);
}

/*
===== 共通　Style ====================================
*/
html .material-icons {
  visibility: hidden;
  vertical-align: middle;
}

html.wf-active .material-icons {
  visibility: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1em;
  font-feature-settings: "pkna";
}

p {
  margin: 0 auto 1.5em;
}

ul {
  margin: 0 auto 1.5em;
  list-style: none;
  text-align: left;
}

ol {
  margin: 0 0 1.5em 1.5em;
  text-align: left;
}

dl {
  text-align: left;
}

figure {
  margin: 0 auto 1em;
}

figcaption {
  margin-top: .5em;
}

.img-shadow {
  box-shadow: 16px 22px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

/*
===== Flexbox サイズ固定 ====================================
*/
.fix-row {
  margin: 0 -1%;
  display: flex;
  flex-wrap: wrap;
  width: 102%;
}

.fix-row.-ai-c {
  align-items: center;
}

.fix-row.-jc-c {
  justify-content: center;
}

.fix-row > .item {
  margin: 0 1%;
  margin-bottom: calc(16px + 8 * (100vw - 320px) / 680);
}

.fix-row > .item.-o-1 {
  order: -1;
}

.fix-row > .item.-o1 {
  order: 1;
}

.fix-row > .item.-o2 {
  order: 2;
}

.fix-row > .item.-o3 {
  order: 3;
}

.fix-row > .item.-o4 {
  order: 4;
}

.fix-row > .item.-o5 {
  order: 5;
}

.fix-row > .item > p:last-child {
  margin-bottom: 0;
}

.fix-row.-m2 {
  margin: 0 -2%;
  width: 104%;
}

.fix-row.-m2 > .item {
  margin: 0 2% 4%;
}

.fix-row.-nm {
  margin: 0;
  width: 100%;
}

.fix-row.-nm > .item {
  margin: 0;
}

.grid02 > .item {
  width: 98%;
}

.grid02.-m2 > .item {
  width: 96%;
}

.grid02.-nm > .item {
  width: 100%;
}

.grid03 > .item {
  width: 98%;
}

.grid03.-m2 > .item {
  width: 96%;
}

.grid03.-nm > .item {
  width: 100%;
}

.grid04 > .item {
  width: 48%;
}

.grid04.-m2 > .item {
  width: 46%;
}

.grid04.-nm > .item {
  width: 50%;
}

.grid05 > .item {
  width: 48%;
}

.grid05.-m2 > .item {
  width: 46%;
}

.grid05.-nm > .item {
  width: 50%;
}

/*----- メイン ボタン -----*/
.btn-main > .btn {
  padding-top: calc(10px + 5 * (100vw - 320px) / 680);
  padding-bottom: calc(10px + 5 * (100vw - 320px) / 680);
  padding-left: calc(20px + 20 * (100vw - 320px) / 680);
  padding-right: calc(20px + 20 * (100vw - 320px) / 680);
  font-size: calc(18px + 4 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
  background: var(--main-color);
  border-radius: 0;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.btn-main.-arrow > .btn {
  padding-top: calc(10px + 5 * (100vw - 320px) / 680);
  padding-bottom: calc(10px + 5 * (100vw - 320px) / 680);
  padding-left: calc(30px + 20 * (100vw - 320px) / 680);
  padding-right: calc(40px + 20 * (100vw - 320px) / 680);
}

.btn-main.-arrow > .btn::before {
  margin-top: 1px;
  content: var(--icon-arrow-down);
  font-family: var(--icon);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.btn-main.-s > .btn {
  font-size: 1.3rem;
  line-height: 2;
}

/*----- ボタンボーダー -----*/
.btn-border > .btn {
  padding-top: calc(10px + 5 * (100vw - 320px) / 680);
  padding-bottom: calc(10px + 5 * (100vw - 320px) / 680);
  padding-left: calc(20px + 20 * (100vw - 320px) / 680);
  padding-right: calc(20px + 20 * (100vw - 320px) / 680);
  font-size: calc(16px + 2 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
  background: #fff;
  border: 1px solid currentColor;
  color: var(--main-color);
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}

/*----- スマホ　横スクロール表示 -----*/
.swipe-scroll {
  margin: 0 0 20px;
  overflow-x: scroll;
  position: relative;
  width: 100%;
}

.swipe-scroll::before {
  content: "";
  background: url(/images/swipe-btn.svg) no-repeat center center/contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  transition: .3s;
}

.swipe-scroll.js-hide::before {
  opacity: 0;
}

.swipe-scroll::-webkit-scrollbar {
  height: 5px;
}

.swipe-scroll::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #eee;
}

.swipe-scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}

.swipe-scroll > .wrap {
  margin: 0;
  width: 540px;
}

/*----- 見出しメイン -----*/
.ttl-border {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 680);
  padding: 0 0 20px;
  font-size: calc(28px + 4 * (100vw - 320px) / 680);
  line-height: calc(130% + 3.2 * (100vw - 1000px) / -680);
  text-align: center;
  position: relative;
}

.ttl-border::before {
  content: "";
  background: var(--main-color);
  height: 2px;
  width: 37px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

/*----- 黒丸リスト -----*/
.list-disc {
  list-style: none;
}

.list-disc > li {
  padding: 0 0 0 1em;
  position: relative;
}

.list-disc > li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 0;
}

/*----- 数字リスト -----*/
.list-number {
  margin: 0;
  counter-reset: item;
  list-style-type: none;
}

.list-number > li {
  margin: 0 0 5px 2em;
  position: relative;
}

.list-number > li::before {
  counter-increment: item;
  content: "※" counter(item) ".";
  position: absolute;
  left: -2em;
}

/*
===== TOP ====================================
*/
#main-visual {
  background: #D7EBF4;
  width: 100%;
  position: relative;
  z-index: 2;
}

#main-visual::before {
  content: "";
  background: linear-gradient(90deg, #b0def1 10%, #54c3f1 20%, #54c3f1 80%, #b0def1 90%);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 8px;
}

#main-visual .btn-main {
  margin: 0;
  position: absolute;
  bottom: calc(30px + 20 * (100vw - 320px) / 680);
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
}

#main-visual .btn-main > .btn {
  box-shadow: 4px 4px 0 rgba(42, 57, 79, 0.2);
}

.rebro-lp-about {
  margin: 0;
  padding-top: calc(50px + 30 * (100vw - 320px) / 680);
  position: relative;
}

.rebro-lp-about .bg {
  font-size: 1.4rem;
  line-height: 2.5;
}

.rebro-lp-about .bg::before {
  content: "";
  background: linear-gradient(135deg, #f9fbfa 20%, #f1f6fa 80%);
  border-radius: 50%;
  height: 1200px;
  width: 1200px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translate(-50%, 0);
}

.rebro-lp-about .bg > p {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 680);
}

.rebro-lp-about .txtarea {
  margin-bottom: calc(50px + 50 * (100vw - 320px) / 680);
  position: relative;
}

.rebro-lp-about .about-ttl {
  margin-bottom: calc(35px + 20 * (100vw - 320px) / 680);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--sub-color);
  color: var(--sub-color);
  display: inline-block;
  font-size: calc(16px + 3 * (100vw - 320px) / 680);
  line-height: calc(140% + 3.2 * (100vw - 1000px) / -680);
}

.rebro-lp-about .about-ttl > span {
  display: inline-block;
}

.rebro-lp-about .about-ttl > .en {
  font-weight: bold;
  font-size: 4rem;
  line-height: 1;
}

.rebro-lp-about .about-ttl > .bl {
  color: #1A1A1A;
  font-size: 2rem;
  line-height: 1.4;
}

.rebro-lp-about .highlight {
  background: #fff;
  color: var(--main-color);
  font-weight: bold;
  font-size: calc(16px + 2 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
}

.rebro-lp-about .recommend {
  margin: 0;
  padding-top: calc(40px + 20 * (100vw - 320px) / 680);
  padding-bottom: calc(70px + 30 * (100vw - 320px) / 680);
  background: #DAEFF7;
  position: relative;
}

.rebro-lp-about .recommend-ttl {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 680);
  padding: 0 10px;
  display: inline-block;
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  top: -.7em;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 11em;
}

.rebro-lp-about .recommend-ttl::before, .rebro-lp-about .recommend-ttl::after {
  content: "";
  background: #333;
  border-radius: 2px;
  display: inline-block;
  height: 1.5em;
  width: 2px;
  position: absolute;
  top: 50%;
}

.rebro-lp-about .recommend-ttl::before {
  transform: rotate(-30deg) translate(0, -50%);
  left: 0;
}

.rebro-lp-about .recommend-ttl::after {
  transform: rotate(30deg) translate(0, -50%);
  right: 0;
}

.rebro-lp-about .recommend-list {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.rebro-lp-about .recommend-list > .item {
  margin: 0 5px;
  background: #0097e0;
  background: linear-gradient(45deg, #0097e0 0%, #54c3f1 100%);
  border-radius: 50%;
  box-shadow: 16px 22px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(12px + 12 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  width: calc(48vw - 25px);
  height: calc(48vw - 25px);
}

.rebro-lp-about .recommend-list > .item.-s {
  font-size: calc(10px + 11 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
}

.rebro-lp-features {
  margin: 0;
  padding-top: 60px;
  padding-bottom: calc(40px + 20 * (100vw - 320px) / 680);
  background: #eaf2f8;
  background: linear-gradient(135deg, #afe3f8 20%, #eaf2f8 80%);
  position: relative;
}

.rebro-lp-features .features-ttl {
  padding: 10px;
  padding-left: calc(30px + 30 * (100vw - 320px) / 680);
  padding-right: calc(30px + 30 * (100vw - 320px) / 680);
  background: var(--main-color);
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1.4;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 80%;
}

.rebro-lp-features .features-ttl::before {
  content: "";
  border-top: 12px solid var(--main-color);
  border-bottom: 12px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translate(-50%, 0);
}

.rebro-lp-features .features-list {
  padding: 10px 0 0;
  display: flex;
}

.rebro-lp-features .features-list > .item {
  padding: calc(20px + 10 * (100vw - 320px) / 680);
  background: #fff;
  border-radius: 15px;
  box-shadow: 16px 22px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.rebro-lp-features .features-list-ttl {
  padding: 10px;
  background: #68b6ad;
  background: linear-gradient(54deg, #68b6ad 0%, #008f7e 30%, #018f7e 70%, #68b6ad 100%);
  border-radius: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(18px + 6 * (100vw - 320px) / 680);
  line-height: calc(140% + 3.2 * (100vw - 1000px) / -680);
  text-align: center;
}

.rebro-lp-license {
  margin-top: 0;
}

.rebro-lp-license > .license-ttl {
  margin: 0;
  padding: 20px;
  background: var(--main-color);
}

.rebro-lp-license .dif {
  margin-left: -20px;
  padding: 40px 30px 10px;
  position: relative;
  background: url(/BIM/pict/about-bg@sp.jpg) no-repeat center bottom/100% auto;
  width: calc(100% + 40px);
}

.rebro-lp-license .dif .notes {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
}

.rebro-lp-license .license-block {
  padding: 10px 20px;
  background: url(/BIM/pict/license-border.png) no-repeat center bottom/contain;
  text-align: left;
}

.rebro-lp-license .license-block.last {
  padding: 10px 20px 0;
  background: none;
}

.rebro-lp-license .license-block-ttl {
  color: var(--main-color);
  font-size: 2.2rem;
  line-height: 1.5;
  position: relative;
  text-align: center;
}

.rebro-lp-license .license-block-ttl > .num {
  color: #B2E0F6;
  font-size: 6rem;
  line-height: 1;
  position: absolute;
  top: -.6em;
  left: -10px;
  z-index: -1;
}

.rebro-lp-license .license-block-column > .item {
  flex: 1;
}

.rebro-lp-license .license-block-img {
  text-align: center;
}

.rebro-lp-license .movie {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.rebro-lp-license .movie > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rebro-lp-support {
  margin-top: 0;
  padding-top: calc(50px + 30 * (100vw - 320px) / 680);
  background: url(/BIM/pict/support-bg@sp.jpg) no-repeat center top/100% auto;
  text-align: left;
}

.rebro-lp-support .support-course {
  position: relative;
}

.rebro-lp-support .support-course-txtarea {
  padding: 60px 20px 20px;
  border-radius: 15px;
  box-shadow: 8px 12px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
}

.rebro-lp-support .support-course-ttl {
  padding: 8px 40px 8px 60px;
  background: url(/BIM/pict/support-ttl-bg.svg) no-repeat right center/cover;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  position: absolute;
  left: -40px;
  top: -1.5em;
  width: calc(100% + 20px);
}

.rebro-lp-support .support-course-list {
  margin: 0;
  padding: 15px;
  background: #EBF4F3;
  border-radius: 6px;
  color: #00A094;
  font-weight: bold;
}

.rebro-lp-support .support-course-list > li {
  padding-left: 1em;
  text-indent: -1em;
}

.rebro-lp-support .support-course-img {
  padding: 0 20px 40px;
  text-align: center;
}

.rebro-lp-support .support-it {
  margin: 0 auto 20px;
  padding: calc(15px + 20 * (100vw - 320px) / 680);
  background: #eaf2f8;
  background: linear-gradient(135deg, #eaf2f8 20%, #afe3f8 80%);
  border-radius: 15px;
}

.rebro-lp-support .support-it-ttl {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  color: #54C3F1;
  font-size: calc(18px + 8 * (100vw - 320px) / 680);
  line-height: calc(140% + 3.2 * (100vw - 1000px) / -680);
  text-align: center;
  position: relative;
}

.rebro-lp-support .support-it-ttl::before {
  content: "";
  border-top: 15px solid var(--main-color);
  border-bottom: 15px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%, 0);
}

.rebro-lp-support .support-it-ttl::after {
  content: "";
  border-top: 15px solid #fff;
  border-bottom: 15px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -29px;
  transform: translate(-50%, 0);
}

.rebro-lp-support .support-it-txtarea {
  margin-bottom: 30px;
  font-size: 1.8rem;
  line-height: 1.6;
}

.rebro-lp-support .support-it-txtarea > p {
  margin: 0;
}

.rebro-lp-support .support-it-txtarea .-l {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
}

.rebro-lp-support .support-it-txtarea .-ll {
  background: linear-gradient(to bottom, transparent 80%, white 80%);
  font-size: 4.3rem;
  line-height: 1.2;
  font-weight: bold;
}

.rebro-lp-support .support-it-txtarea .num {
  padding: 0 0 0 10px;
  display: inline-block;
  font-size: 6.5rem;
  line-height: 1;
}

.rebro-lp-support .notes {
  font-size: 1.4rem;
  line-height: 1.6;
}

.rebro-lp-support .support-rebro {
  padding-top: calc(15px + 20 * (100vw - 320px) / 680);
  padding-bottom: calc(15px + 20 * (100vw - 320px) / 680);
  padding-left: calc(20px + 40 * (100vw - 320px) / 680);
  padding-right: calc(20px + 40 * (100vw - 320px) / 680);
  background: #FCEDE4;
  border-radius: 15px;
}

.rebro-lp-support .support-rebro-ttl {
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--sub-color);
  font-size: calc(20px + 8 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
  text-align: center;
}

.rebro-lp-support .support-rebro-txt {
  padding-left: calc(5px + 35 * (100vw - 320px) / 680);
  padding-right: calc(5px + 35 * (100vw - 320px) / 680);
}

.rebro-lp-contact {
  margin: 0;
  padding-top: calc(50px + 30 * (100vw - 320px) / 680);
  padding-bottom: calc(50px + 30 * (100vw - 320px) / 680);
  background: #eaf2f8;
  background: linear-gradient(135deg, #eaf2f8 20%, #afe3f8 80%);
}

.rebro-lp-contact .contact-btn-list {
  margin: 0;
}

.rebro-lp-contact .contact-btn-list > li {
  margin-top: 10px;
  text-align: center;
}

.rebro-lp-results {
  margin: 0;
  padding-top: calc(50px + 30 * (100vw - 320px) / 680);
  padding-bottom: calc(50px + 30 * (100vw - 320px) / 680);
  background: #EBF4F3;
}

.rebro-lp-results .results-block {
  border-radius: 15px;
  position: relative;
  line-height: 1.7;
}

.rebro-lp-results .results-block-num {
  margin: 0;
  padding: 10px 25px 10px 10px;
  background: #88C2BA;
  border-radius: 0 0 50px 100px;
  color: #fff;
  font-size: calc(30px + 15 * (100vw - 320px) / 680);
  line-height: calc(100% + 3.2 * (100vw - 1000px) / -680);
  font-weight: bold;
  position: absolute;
  top: 0;
  text-align: center;
  width: 35%;
  height: 70px;
}

.rebro-lp-results .results-block-txtarea {
  padding: 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 16px 22px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.rebro-lp-results .results-block-img {
  text-align: center;
}

.rebro-lp-results .results-block.img-right .results-block-num {
  right: -10%;
}

.rebro-lp-results .results-block.img-right .results-block-img {
  right: 0;
}

.rebro-lp-results .results-block.img-left .results-block-num {
  right: -10%;
}

.rebro-lp-results .results-block.img-left .results-block-img {
  left: 0;
}

.rebro-lp-results .results-block-header {
  margin: 20px 0 0;
  padding: 0 0 0 10px;
  border-left: 4px solid var(--main-color);
}

.rebro-lp-results .results-block-header > .ttl {
  font-size: calc(19px + 7 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
  letter-spacing: 0;
}

.rebro-lp-results .results-block-header > .name {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 680);
  font-size: calc(16px + 4 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
}

.rebro-lp-results .results-block-consider {
  margin: 0 0 30px;
  padding: 20px;
  background: #DADEE0;
  border-radius: 6px;
  position: relative;
}

.rebro-lp-results .results-block-consider::before {
  content: "";
  border-top: 15px solid #DADEE0;
  border-bottom: 15px solid transparent;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -29px;
  transform: translate(-50%, 0);
}

.rebro-lp-results .results-block-consider > :last-child {
  margin-bottom: 0;
}

.rebro-lp-results .results-block-consider > .ttl {
  margin: 0 auto 20px;
  background: #484F54;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  width: 8em;
}

.rebro-lp-results .results-block-reason {
  margin: 0;
  padding: 20px 0;
  background: #eaf2f8;
  background: linear-gradient(90deg, #e4f2f8 0%, #d6eef8 100%);
  border-radius: 6px;
}

.rebro-lp-results .results-block-reason > .ttl {
  margin: 0 auto 10px;
  background: var(--main-color);
  border-radius: 20px;
  color: #fff;
  text-align: center;
  width: 8em;
}

.rebro-lp-results .results-block-reason > .list-check {
  margin: 0;
  list-style: none;
}

.rebro-lp-results .results-block-reason > .list-check > li {
  padding: 10px 15px 10px 50px;
  border-bottom: 1px dashed #333;
  position: relative;
}

.rebro-lp-results .results-block-reason > .list-check > li:last-child {
  border: none;
}

.rebro-lp-results .results-block-reason > .list-check > li::before {
  content: var(--icon-check);
  color: var(--main-color);
  font-family: var(--icon);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  top: 17px;
  left: 20px;
}

.rebro-lp-voice {
  margin: 0;
  padding-top: calc(50px + 30 * (100vw - 320px) / 680);
  padding-bottom: calc(50px + 30 * (100vw - 320px) / 680);
  background: #54c3f1;
  background: linear-gradient(120deg, #54c3f1 0%, #afe3f8 100%);
}

.rebro-lp-voice .ttl-border {
  color: #fff;
}

.rebro-lp-voice .ttl-border::before {
  background: #fff;
}

.rebro-lp-voice .voice-list > .item {
  padding: calc(20px + 20 * (100vw - 320px) / 680);
  background: #fff;
  border-radius: 6px;
  box-shadow: 4px 4px 0 rgba(42, 57, 79, 0.2);
  display: flex;
  align-items: center;
}

.rebro-lp-voice .voice-list .person {
  margin: 0 20px 0 0;
  width: 50px;
}

.rebro-lp-voice .voice-list .txt {
  margin: 0;
  flex: 1;
  font-weight: bold;
}

.rebro-lp-voice .voice-list .acc {
  color: #00A094;
}

.rebro-lp-faqs .faqs-dl > .q {
  margin: 0 0 5px;
  padding-left: 75px;
  padding-top: calc(15px + 10 * (100vw - 320px) / 680);
  padding-bottom: calc(15px + 10 * (100vw - 320px) / 680);
  padding-right: calc(15px + 10 * (100vw - 320px) / 680);
  padding-left: calc(55px + 20 * (100vw - 320px) / 680);
  background: #0097e0;
  background: linear-gradient(90deg, #0097e0 0%, #54c3f1 100%);
  color: #fff;
  font-size: calc(17px + 5 * (100vw - 320px) / 680);
  line-height: calc(150% + 3.2 * (100vw - 1000px) / -680);
  font-weight: bold;
  position: relative;
}

.rebro-lp-faqs .faqs-dl > .q::before {
  content: "Q.";
  font-size: calc(24px + 6 * (100vw - 320px) / 680);
  line-height: calc(100% + 3.2 * (100vw - 1000px) / -680);
  position: absolute;
  left: calc(20px + 10 * (100vw - 320px) / 680);
}

.rebro-lp-faqs .faqs-dl > .a {
  margin: 0 0 20px;
  padding: calc(10px + 10 * (100vw - 320px) / 680);
  padding-left: calc(55px + 20 * (100vw - 320px) / 680);
  border-left: 2px dotted var(--main-color);
  position: relative;
}

.rebro-lp-faqs .faqs-dl > .a::before {
  content: "A.";
  color: var(--main-color);
  font-size: calc(20px + 2 * (100vw - 320px) / 680);
  line-height: calc(100% + 3.2 * (100vw - 1000px) / -680);
  position: absolute;
  left: calc(25px + 10 * (100vw - 320px) / 680);
}

.rebro-lp-form {
  margin: 0;
  padding-top: calc(50px + 30 * (100vw - 320px) / 680);
  padding-bottom: calc(50px + 30 * (100vw - 320px) / 680);
  background: #F2F2F2;
}

.rebro-lp-form > .inner {
  position: relative;
}

.rebro-lp-form .doc-img {
  position: absolute;
  top: -40px;
  right: 0;
  width: 120px;
}

.rebro-lp-form .form-area {
  padding: calc(15px + 25 * (100vw - 320px) / 680);
  background: #fff;
  border-radius: 6px;
}

@media (min-width: 600px) {
  body {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  ._sp-show {
    display: none;
  }
  ._tab-show {
    display: block;
  }
  ._tab-show.-il {
    display: inline-block;
  }
  ._tab-show.-fl {
    display: flex;
  }
  .grid02 > .item {
    width: 48%;
  }
  .grid02.-m2 > .item {
    width: 46%;
  }
  .grid02.-nm > .item {
    width: 50%;
  }
  .grid03 > .item {
    width: 31.33%;
  }
  .grid03.-m2 > .item {
    width: 29.33%;
  }
  .grid03.-nm > .item {
    width: 33.33%;
  }
  .grid04 > .item {
    width: 23%;
  }
  .grid04.-m2 > .item {
    width: 21%;
  }
  .grid04.-nm > .item {
    width: 25%;
  }
  .grid05 > .item {
    width: 31.33%;
  }
  .grid05.-m2 > .item {
    width: 29.33%;
  }
  .grid05.-nm > .item {
    width: 33.33%;
  }
  .swipe-scroll {
    margin: 0;
    overflow-x: auto;
  }
  .swipe-scroll::before {
    display: none;
  }
  .swipe-scroll > .wrap {
    margin: 0 auto 1.5em;
    width: 100%;
  }
  #main-visual {
    background: linear-gradient(180deg, #bce6f8 0%, #c3e9f8 50%, #bbe6f8 100%);
    height: 530px;
  }
  #main-visual .mv {
    height: 530px;
  }
  .rebro-lp-about .recommend-list > .item {
    margin: 0 10px;
    width: 266px;
    height: 266px;
  }
  .rebro-lp-license .license-block-ttl > .num {
    font-size: 9.8rem;
    line-height: 1;
    transform: translate(-25px, 0);
    left: auto;
  }
  .rebro-lp-support .support-it {
    display: flex;
  }
  .rebro-lp-support .support-it > .item {
    flex: 1;
  }
  .rebro-lp-support .support-it-txtarea {
    margin-bottom: 0;
    padding-right: 40px;
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .rebro-lp-contact .contact-btn-list {
    display: flex;
    justify-content: space-between;
  }
  .rebro-lp-results .results-block-num {
    padding: 20px 0 0;
    border-radius: 0 0 100px 100px;
    width: 55%;
    height: 100px;
  }
  .rebro-lp-results .results-block-txtarea {
    padding: 50px 30px;
    width: calc(100% - 40px);
  }
  .rebro-lp-results .results-block-img {
    position: absolute;
    top: 90px;
    width: 45%;
    max-width: 430px;
  }
  .rebro-lp-results .results-block.img-right .results-block-txtarea {
    padding-right: 44%;
  }
  .rebro-lp-results .results-block.img-left .results-block-txtarea {
    margin-left: auto;
    padding-left: 44%;
  }
  .rebro-lp-results .results-block.img-left .results-block-num {
    left: -10%;
  }
  .rebro-lp-results .results-block-consider {
    padding: 35px 20px;
  }
  .rebro-lp-results .results-block-reason {
    padding: 35px 0;
  }
  .rebro-lp-voice .voice-list .person {
    width: 80px;
  }
}

@media (min-width: 1024px) {
  body {
    margin: 0;
  }
  ._fl {
    padding: 0 20px 10px 0;
    float: left !important;
  }
  ._fr {
    padding: 0 0 10px 20px;
    float: right !important;
  }
  ._pc-show {
    display: block;
  }
  ._pc-show.-il {
    display: inline-block;
  }
  ._pc-show.-fl {
    display: flex;
  }
  ._no-link {
    pointer-events: none;
  }
  #site-header {
    height: var(--pc-header-height);
  }
  #site-header-column {
    padding: 0 20px;
  }
  #site-header-logo {
    width: auto;
  }
  #site-header .go-form {
    margin-left: 10px;
    position: static;
    transform: translate(0, 0);
  }
  #site-header .go-form > .btn::before {
    right: 8px;
  }
  #site-menu-btn {
    display: none;
  }
  #site-nav {
    margin: 0 0 0 auto;
    padding: 0;
    position: static;
    width: auto;
    height: auto;
  }
  #site-nav-list {
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #site-nav-list > li::before {
    content: "";
  }
  #site-nav-list > li {
    border: none;
    flex: 2 1 auto;
  }
  #site-nav-list > li > a {
    padding: 10px;
    text-align: center;
  }
  #site-footer-column {
    display: flex;
  }
  #site-footer-nav {
    margin: 0;
    padding: 20px;
    border: none;
    border-left: 1px solid #ccc;
  }
  #page-scroll > .totop {
    font-size: 2rem;
    line-height: 1.2;
  }
  #main-content {
    padding-top: var(--pc-header-height);
  }
  .grid05 > .item {
    width: 18%;
  }
  .grid05.-m2 > .item {
    width: 16%;
  }
  .grid05.-nm > .item {
    width: 20%;
  }
  .rebro-lp-about .bg {
    position: relative;
    font-size: 1.6rem;
    line-height: 2.5;
  }
  .rebro-lp-about .bg::before {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .rebro-lp-about .about-ttl > .en {
    padding: 0 0 0 20px;
    font-size: 60px;
  }
  .rebro-lp-about .about-ttl > .bl {
    font-size: 29px;
  }
  .rebro-lp-about .recommend-ttl {
    font-size: 3rem;
    line-height: 1;
  }
  .rebro-lp-features .features-ttl {
    font-size: 3rem;
    line-height: 1.4;
    width: 630px;
  }
  .rebro-lp-features .features-list-ttl {
    min-height: 4em;
  }
  .rebro-lp-license {
    background: url(/BIM/pict/about-bg.jpg) no-repeat center 80px/100% auto;
  }
  .rebro-lp-license .dif {
    margin: 0;
    padding: 60px 0 40px;
    background: none;
  }
  .rebro-lp-license .license-block {
    padding: 20px;
  }
  .rebro-lp-license .license-block-ttl {
    padding: 0 20px;
    font-size: 2.9rem;
    line-height: 1.4;
    text-align: left;
  }
  .rebro-lp-license .license-block-column {
    display: flex;
  }
  .rebro-lp-license .license-block-img.-left {
    order: -1;
  }
  .rebro-lp-support {
    background-image: url(/BIM/pict/support-bg.jpg);
  }
  .rebro-lp-support .support-course-txtarea {
    padding: 25px;
    padding-right: 60px;
    width: 57%;
  }
  .rebro-lp-support .support-course-ttl {
    margin-left: 0;
    padding: 8px 12px;
    font-size: 2.4rem;
    line-height: 1.4;
    position: static;
    width: calc(100% - 10px);
  }
  .rebro-lp-support .support-course-img {
    padding: 0;
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 3;
  }
  .rebro-lp-support .support-it-txtarea .-l {
    font-size: 4.2rem;
    line-height: 1.2;
  }
  .rebro-lp-support .support-it-txtarea .-ll {
    font-size: 7.1rem;
    line-height: 1;
  }
  .rebro-lp-support .support-it-txtarea .num {
    font-size: 10.5rem;
    line-height: 1;
  }
  .rebro-lp-support .support-rebro-ttl {
    letter-spacing: 3px;
  }
  .rebro-lp-contact .contact-btn-list > .tel > a {
    pointer-events: none;
  }
  .rebro-lp-form .doc-img {
    top: -80px;
    right: -40px;
    width: auto;
  }
}

@media (min-width: 1280px) {
  body {
    margin: 0;
  }
}

@media (min-width: 1000px) {
  ._s {
    font-size: 1.4rem;
    line-height: 2;
  }
  ._m {
    font-size: 1.8rem;
    line-height: 2;
  }
  ._l {
    font-size: 2rem;
    line-height: 1.5;
  }
  ._ll {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  #site-header .go-form > .btn {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #site-header .go-form > .btn {
    padding-left: 20px;
  }
  #site-header .go-form > .btn {
    padding-right: 35px;
  }
  #site-header .go-form > .btn {
    font-size: 1.4rem;
    line-height: 2;
  }
  #site-footer-column {
    padding-top: 100px;
  }
  #site-footer .copyright {
    font-size: 1.2rem;
    line-height: 2;
  }
  #page-scroll > .totop {
    width: 120px;
  }
  #page-scroll > .totop {
    height: 120px;
  }
  #page-scroll > .totop::before {
    font-size: 4rem;
    line-height: 1;
  }
  #page-scroll > .totop::before {
    top: 15px;
  }
  article {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  section {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .fix-row > .item {
    margin-bottom: 24px;
  }
  .btn-main > .btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .btn-main > .btn {
    padding-left: 40px;
    padding-right: 40px;
  }
  .btn-main > .btn {
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .btn-main.-arrow > .btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .btn-main.-arrow > .btn {
    padding-left: 50px;
  }
  .btn-main.-arrow > .btn {
    padding-right: 60px;
  }
  .btn-border > .btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .btn-border > .btn {
    padding-left: 40px;
    padding-right: 40px;
  }
  .btn-border > .btn {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .ttl-border {
    margin-bottom: 50px;
  }
  .ttl-border {
    font-size: 3.2rem;
    line-height: 1.3;
  }
  #main-visual .btn-main {
    bottom: 50px;
  }
  .rebro-lp-about {
    padding-top: 80px;
  }
  .rebro-lp-about .bg > p {
    margin-bottom: 50px;
  }
  .rebro-lp-about .txtarea {
    margin-bottom: 100px;
  }
  .rebro-lp-about .about-ttl {
    margin-bottom: 55px;
  }
  .rebro-lp-about .about-ttl {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  .rebro-lp-about .highlight {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .rebro-lp-about .recommend {
    padding-top: 60px;
  }
  .rebro-lp-about .recommend {
    padding-bottom: 100px;
  }
  .rebro-lp-about .recommend-ttl {
    margin-bottom: 40px;
  }
  .rebro-lp-about .recommend-list > .item {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .rebro-lp-about .recommend-list > .item.-s {
    font-size: 2.1rem;
    line-height: 1.5;
  }
  .rebro-lp-features {
    padding-bottom: 60px;
  }
  .rebro-lp-features .features-ttl {
    padding-left: 60px;
    padding-right: 60px;
  }
  .rebro-lp-features .features-list > .item {
    padding: 30px;
  }
  .rebro-lp-features .features-list-ttl {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .rebro-lp-support {
    padding-top: 80px;
  }
  .rebro-lp-support .support-it {
    padding: 35px;
  }
  .rebro-lp-support .support-it-ttl {
    font-size: 2.6rem;
    line-height: 1.4;
  }
  .rebro-lp-support .support-rebro {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .rebro-lp-support .support-rebro {
    padding-left: 60px;
    padding-right: 60px;
  }
  .rebro-lp-support .support-rebro-ttl {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .rebro-lp-support .support-rebro-txt {
    padding-left: 40px;
    padding-right: 40px;
  }
  .rebro-lp-contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .rebro-lp-results {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .rebro-lp-results .results-block-num {
    font-size: 4.5rem;
    line-height: 1;
  }
  .rebro-lp-results .results-block-header > .ttl {
    font-size: 2.6rem;
    line-height: 1.5;
  }
  .rebro-lp-results .results-block-header > .name {
    margin-bottom: 40px;
  }
  .rebro-lp-results .results-block-header > .name {
    font-size: 2rem;
    line-height: 1.5;
  }
  .rebro-lp-voice {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .rebro-lp-voice .voice-list > .item {
    padding: 40px;
  }
  .rebro-lp-faqs .faqs-dl > .q {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-right: 25px;
  }
  .rebro-lp-faqs .faqs-dl > .q {
    padding-left: 75px;
  }
  .rebro-lp-faqs .faqs-dl > .q {
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .rebro-lp-faqs .faqs-dl > .q::before {
    font-size: 3rem;
    line-height: 1;
  }
  .rebro-lp-faqs .faqs-dl > .q::before {
    left: 30px;
  }
  .rebro-lp-faqs .faqs-dl > .a {
    padding: 20px;
  }
  .rebro-lp-faqs .faqs-dl > .a {
    padding-left: 75px;
  }
  .rebro-lp-faqs .faqs-dl > .a::before {
    font-size: 2.2rem;
    line-height: 1;
  }
  .rebro-lp-faqs .faqs-dl > .a::before {
    left: 35px;
  }
  .rebro-lp-form {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .rebro-lp-form .form-area {
    padding: 40px;
  }
}

@media (any-hover: hover) {
  #page-scroll > .totop:hover {
    background: var(--main-color-hover);
  }
  .btn-main > .btn:hover {
    background: var(--main-color-hover);
  }
  .btn-border > .btn:hover {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}

@media (any-hover: none) {
  #page-scroll > .totop:active {
    background: var(--main-color-hover);
  }
  .btn-main > .btn:active {
    background: var(--main-color-hover);
  }
  .btn-border > .btn:active {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}

/* view_timer対策 20230602ADD */
.view_timer {
  display: none;
}
/* /view_timer対策 20230602ADD */



