@charset "UTF-8";
:root {
  --main-color: #7FBE26;
  --main-color-hover: #afe169;
  --sub-color: #0A4D00;
  --sub-color-hover: #118000;
  --accent-color1: #D70012;
  --accent-color1-hover: #a4000e;
  --accent-color2: #EA5504;
  --accent-color2-hover: #fb7126;
  --link-color: #144ACC;
  --link-color-hover: #4073ec;
  --text-color: #222;
  --bg-color: #E8E8E8;
  --gothic: "Noto Sans JP","Yu Gothic","Hiragino Kaku Gothic ProN","メイリオ","Meiryo",sans-serif;
  --mincyo: "Noto Serif JP","ヒラギノ明朝 Pro","Hiragino Mincho Pro","Yu Mincho","ＭＳ Ｐ明朝",serif;
  --roman: "Georgia","Times New Roman","Times",serif;
  --icon: "Material Icons";
  --icon-arrow-up: "";
  --icon-arrow-down: "";
  --icon-arrow-right: "";
  --icon-arrow-left: "";
  --icon-mail: "";
  --icon-ex: "";
  --icon-check: "";
  --icon-plus: "";
  --icon-minus: "";
  --sp-header-height: 60px;
  --inner-wide: 1240px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes widthIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
* {
  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%;
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: 1.7142857143;
  font-family: var(--gothic);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  text-align: center;
  word-wrap: break-word;
}

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: 0.5s;
}
a:hover {
  color: var(--link-color-hover);
}
a.-line {
  text-decoration: underline;
}
a.-line:hover {
  text-decoration: none;
}

form input[type=text],
form input[type=password],
form input[type=datetime],
form input[type=datetime-local],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=week],
form input[type=number],
form input[type=email],
form input[type=url],
form input[type=search],
form input[type=tel],
form input[type=color],
select,
textarea {
  padding: 10px;
  background: #F0F0F0;
  border: 1px solid transparent;
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: var(--gothic);
  max-width: 100%;
}
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=date]:focus,
form input[type=month]:focus,
form input[type=time]:focus,
form input[type=week]:focus,
form input[type=number]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=color]:focus,
select:focus,
textarea:focus {
  box-shadow: none;
  outline: none;
}
form input[type=text]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=datetime]::-moz-placeholder, form input[type=datetime-local]::-moz-placeholder, form input[type=date]::-moz-placeholder, form input[type=month]::-moz-placeholder, form input[type=time]::-moz-placeholder, form input[type=week]::-moz-placeholder, form input[type=number]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=url]::-moz-placeholder, form input[type=search]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=color]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
  font-weight: 300;
}
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999;
  font-weight: 300;
}

input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

.check {
  display: none;
}

.check + span {
  padding-left: 30px;
  position: relative;
}

.check + span::before,
.check + span::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.2s;
}

.check + span::before {
  background: #fff;
  border: 1px solid #98A6B5;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
}

.check + span::after {
  border-bottom: 2px solid #eee;
  border-right: 2px solid #eee;
  transform: rotate(40deg);
  top: calc(50% - 8px);
  left: 7px;
  width: 6px;
  height: 11px;
}

.check:checked + span::after {
  border-color: #111;
}

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

._w10 {
  width: 10%;
}

._w20 {
  width: 20%;
}

._w30 {
  width: 30%;
}

._w40 {
  width: 40%;
}

._w50 {
  width: 50%;
}

._w60 {
  width: 60%;
}

._w70 {
  width: 70%;
}

._w80 {
  width: 80%;
}

._w90 {
  width: 90%;
}

._w100 {
  width: 100%;
}

._roman {
  font-family: var(--roman);
}

._mincyo {
  font-family: var(--mincyo);
}

._ss {
  font-size: 1rem;
  line-height: 1.6;
}

._s {
  font-size: 1.2rem;
  line-height: 1.6;
}

._m {
  font-size: calc(13px + 1 * (100vw - 320px) / 1180);
  line-height: 1.7076923077;
}

._l {
  font-size: calc(18px + 2 * (100vw - 320px) / 1180);
  line-height: 1.6111111111;
}

._ll {
  font-size: calc(20px + 4 * (100vw - 320px) / 1180);
  line-height: 1.52;
}

._bold {
  font-weight: bold !important;
}

._normal {
  font-weight: normal !important;
}

._italic {
  font-style: italic;
}

._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);
}

._ac1 {
  color: var(--accent-color1);
}

._ac2 {
  color: var(--accent-color2);
}

._blue {
  color: #2EA7E0 !important;
}

._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.-il {
  display: inline-block;
}
._tab-show.-fl {
  display: flex;
}

._pc-show {
  display: none;
}

._indent {
  padding-left: 1em;
  text-indent: -1em;
}

/*
===== HEADER ==========================================
*/
#site-header {
  border-top: 6px solid #72C833;
  height: var(--sp-header-height);
  position: relative;
  width: 100%;
  z-index: 1001;
}
#site-header-column {
  display: flex;
  height: inherit;
}
#site-header-logo {
  margin: 0;
  padding-top: 15px;
  width: 280px;
}
#site-header-link {
  display: none;
}

/*
===== FOOTER ==========================================
*/
#site-footer .inner {
  max-width: 1040px;
}
#site-footer .company-info {
  padding: calc(20px + 20 * (100vw - 320px) / 1180);
  border: 1px solid #868686;
}
#site-footer .company-info-ttl {
  margin-bottom: 10px;
  font-size: calc(15px + 8 * (100vw - 320px) / 1180);
  line-height: 1.5533333333;
  font-weight: 500;
}
#site-footer .copyright {
  padding: calc(20px + 20 * (100vw - 320px) / 1180);
  display: block;
  font-size: calc(10px + 4 * (100vw - 320px) / 1180);
  line-height: 1.74;
}

#fixed-bar {
  position: fixed;
  top: -45px;
  left: 0;
  width: 100%;
  transition: 0.5s;
  z-index: 2000;
}
#fixed-bar.js-fixed {
  top: 0;
}
#fixed-bar-list {
  background: #fff;
  border-bottom: 1px solid var(--sub-color);
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 500;
}
#fixed-bar-list > li {
  text-align: center;
  width: 40%;
}
#fixed-bar-list > li > a {
  color: var(--sub-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
#fixed-bar-list > .request > a {
  background: var(--sub-color);
  color: #fff;
}
#fixed-bar-list > .mail {
  width: 20%;
}
#fixed-bar-list > .mail .icon {
  width: auto;
  height: 15px;
}

#page-scroll {
  margin: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
  opacity: 0;
  transition: 0.3s;
}
#page-scroll > .totop {
  background: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--icon);
  font-size: 3.2rem;
  line-height: 1;
  width: calc(40px + 20 * (100vw - 320px) / 1180);
  height: calc(40px + 20 * (100vw - 320px) / 1180);
  text-decoration: none;
}
#page-scroll.js-show {
  opacity: 1;
}

/*
===== MAIN CONTENT ====================================
*/
html {
  animation: fadeIn 1s forwards;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  max-width: var(--inner-wide);
  min-width: 320px;
}
.inner.-w {
  max-width: 1500px;
}

#main-content {
  overflow: hidden;
}

article {
  margin-top: calc(50px + 30 * (100vw - 320px) / 1180);
  margin-bottom: calc(50px + 30 * (100vw - 320px) / 1180);
}

section {
  margin-top: calc(50px + 30 * (100vw - 320px) / 1180);
  margin-bottom: calc(50px + 30 * (100vw - 320px) / 1180);
}
/*
===== 共通　Style ====================================
*/
h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "pkna";
  font-weight: 600;
}

h1, .h1 {
  margin-bottom: 1.4em;
  font-size: calc(20px + 8 * (100vw - 320px) / 1180);
  line-height: 1.54;
}

h2, .h2 {
  margin-bottom: 1.4em;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.5333333333;
}

h3, .h3 {
  margin-bottom: 1.5em;
  font-size: calc(16px + 4 * (100vw - 320px) / 1180);
  line-height: 1.625;
}

h4, .h4 {
  margin-bottom: 1.5em;
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: 1.6125;
}

h5, .h5 {
  margin-bottom: 1.5em;
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: 1.7142857143;
}

/*----- 背景グレー -----*/
.bg-grey {
  padding-top: calc(30px + 20 * (100vw - 320px) / 1180);
  padding-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  background: var(--bg-color);
}

/*----- 見出しメイン -----*/
.ttl-main {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding-top: 30px;
  background: url(../images/ttl-main-bg.png) no-repeat center top/124px auto;
  font-size: calc(20px + 16 * (100vw - 320px) / 1180);
  line-height: 1.48;
  letter-spacing: 1px;
}
.ttl-main > .s {
  font-size: calc(17px + 11 * (100vw - 320px) / 1180);
  line-height: 1.4647058824;
}
.ttl-main.-l {
  font-size: calc(24px + 18 * (100vw - 320px) / 1180);
  line-height: 1.475;
}
.ttl-main.-ls-none {
  letter-spacing: 0;
}

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

table {
  margin: 0 auto 1.5em;
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: 1.7142857143;
}
table th, table td {
  padding: 1em 0.3em;
  border: none;
  text-align: left;
}

figure {
  margin: 0 auto 1em;
}
figcaption {
  margin-top: 0.5em;
}

.gmap-res {
  line-height: 1;
}
.gmap-res > iframe {
  width: 100%;
}

.yt-res {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.yt-res > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
===== Flexbox サイズ固定 ====================================
*/
.fix-row {
  margin: 0 -1%;
  display: flex;
  flex-wrap: wrap;
  width: 102%;
}
.fix-row.-ai-ct {
  align-items: center;
}
.fix-row > .item {
  margin: 0 1% 2%;
}
.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%;
}

/*
===== Tableレイアウト ====================================
*/
.table-col {
  margin: 0 auto 1.5em;
  border-collapse: collapse;
  border-spacing: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.table-col.-auto {
  table-layout: auto;
}
.table-col > .td {
  display: table-cell;
  vertical-align: top;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes widthIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
._eff._in {
  animation: fadeIn 1s forwards;
}
._eff._widthin {
  animation: widthIn 0.3s forwards;
}

/*----- ハイライト　アニメーション -----*/
.js-highlight > .highlight {
  background: linear-gradient(to right, transparent 50%, rgb(255, 255, 0) 50%);
  background-repeat: repeat-x;
  background-size: 200% 90%;
  transition: 1s;
}
.js-highlight > .highlight.js-animated {
  background-position: -100% 5px;
}

/*----- メイン ボタン -----*/
.btn-main > .btn {
  padding-top: calc(10px + 5 * (100vw - 320px) / 1180);
  padding-bottom: calc(10px + 5 * (100vw - 320px) / 1180);
  padding-left: calc(20px + 10 * (100vw - 320px) / 1180);
  padding-right: calc(20px + 10 * (100vw - 320px) / 1180);
  font-size: calc(18px + 4 * (100vw - 320px) / 1180);
  line-height: 1.6222222222;
  background: var(--sub-color);
  border-radius: 0;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.btn-main.-mc > .btn {
  background: var(--main-color);
}
.btn-main.-round > .btn {
  border-radius: 60px;
}
.btn-main.-l > .btn {
  margin: auto;
  padding-top: calc(10px + 2 * (100vw - 320px) / 1180);
  padding-bottom: calc(10px + 2 * (100vw - 320px) / 1180);
  font-size: calc(18px + 16 * (100vw - 320px) / 1180);
  line-height: 1.4888888889;
  width: 100%;
  max-width: 500px;
}

/*----- ボタン横並び -----*/
.btn-list > .item {
  margin: 0 auto 10px;
  text-align: center;
}

/*----- 共通お問い合わせエリア -----*/
.contact-area {
  padding-top: calc(30px + 50 * (100vw - 320px) / 1180);
  padding-bottom: calc(30px + 50 * (100vw - 320px) / 1180);
  background: var(--sub-color);
  color: #fff;
}
.contact-area > .inner {
  max-width: 940px;
}
.contact-area-ttl {
  margin: 40px 0 25px;
  font-size: calc(16px + 8 * (100vw - 320px) / 1180);
  line-height: 1.55;
  font-weight: 500;
}
.contact-area .btn-main > .btn {
  background: #fff;
  color: var(--sub-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.contact-area .btn-main > .btn.-fw900 {
  font-weight: 900;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.6333333333;
}
.contact-area .btn-main.-l .icon {
  margin-right: 15px;
  height: 40px;
  width: auto;
}
.contact-area .btn-list > li > .btn {
  margin: auto;
  max-width: 280px;
}
.contact-area .btn-list > li > .btn .icon {
  margin-right: 10px;
  width: 30px;
  height: auto;
}

/*----- スマホ　横スクロール表示 -----*/
.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: 0.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;
}

/*
===== TOP ====================================
*/
#main-visual {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1180);
}
#main-visual-img {
  width: 80%;
  max-width: 793px;
}
#main-visual-txtarea {
  flex: 1;
}
#main-visual-ttl {
  margin-bottom: calc(10px + 60 * (100vw - 320px) / 1180);
  color: var(--sub-color);
  font-size: calc(22px + 28 * (100vw - 320px) / 1180);
  line-height: 1.5272727273;
  font-family: var(--mincyo);
  font-weight: 600;
}
#main-visual-ttl > .ttl {
  margin-top: 30px;
  display: block;
}
#main-visual .mr {
  margin-right: 20px;
}
#main-visual .sp-link {
  margin: 20px 0 30px;
  display: flex;
  text-align: center;
}
#main-visual .sp-link > li {
  flex: 1;
}
#main-visual .sp-link > li > a {
  padding: 10px;
  border: 1px solid var(--sub-color);
  border-radius: 30px;
  color: var(--sub-color);
  display: block;
  text-align: center;
}
#main-visual .sp-link > .request {
  margin: 0 0 0 10px;
}
#main-visual .sp-link > .request > a {
  background: var(--sub-color);
  color: #fff;
}

.top-page {
  /*----- お知らせ -----*/
  /*----- 論文情報 -----*/
  /*----- A-Cube 製品ラインナップ -----*/
  /*----- A-Cube 検査依頼の流れ -----*/
  /*----- 検査依頼書ダウンロード -----*/
  /*----- よくある質問 -----*/
  /*----- 検査機関 -----*/
  /*----- リンク -----*/
}
.top-page-outline {
  padding-top: calc(15px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(15px + 30 * (100vw - 320px) / 1180);
  padding-left: calc(15px + 55 * (100vw - 320px) / 1180);
  padding-right: calc(15px + 55 * (100vw - 320px) / 1180);
  background: #F0F0F0;
}
.top-page-outline > .outline-ttl {
  margin: 0 0 15px;
  padding: 0 0 10px;
  position: relative;
}
.top-page-outline > .outline-ttl::before {
  content: "";
  background: #222;
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.top-page-outline > .outline-ttl > .ttl {
  margin-bottom: 5px;
  font-size: calc(16px + 4 * (100vw - 320px) / 1180);
  line-height: 1.625;
  font-weight: 500;
}
.top-page-outline > .outline-ttl > .en {
  margin: 0;
  font-size: calc(14px + 3 * (100vw - 320px) / 1180);
  line-height: 1.7214285714;
}
.top-page-outline > .outline-txtarea {
  text-align: left;
}
.top-page-about {
  /*----- A-Cubeで検出できる自己抗体 -----*/
  /*----- 製品リスト -----*/
}
.top-page-about .about-header-lead {
  margin-bottom: 20px;
  font-size: calc(18px + 11 * (100vw - 320px) / 1180);
  line-height: 1.5611111111;
  font-weight: 500;
}
.top-page-about .about-contents {
  text-align: left;
}
.top-page-about .about-contents-flow {
  margin: 40px auto 0;
}
.top-page-about .about-contents-flow > li {
  font-size: 1.5rem;
  line-height: 1.6;
}
.top-page-about .about-contents-flow .img img {
  border: 1px solid #707070;
}
.top-page-about .about-detection {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.top-page-about .about-detection-ttl {
  margin: 0 0 25px;
  padding: 0 0 50px;
  background: url(../images/arrow-under.svg) no-repeat center bottom;
  font-size: calc(20px + 9 * (100vw - 320px) / 1180);
  line-height: 1.445;
}
.top-page-about .about-detection-column > .item {
  margin-bottom: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.top-page-about .about-detection-column .ttl {
  margin: 0;
  padding: calc(20px + 10 * (100vw - 320px) / 1180);
  background: var(--main-color);
  color: #fff;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.4333333333;
}
.top-page-about .about-detection-column .txtarea {
  padding: 20px;
  text-align: left;
}
.top-page-about .about-detection-column .txtarea > :last-child {
  margin-bottom: 0;
}
.top-page-about .about-detection-table {
  margin-top: 40px;
  border-top: 1px dotted #595959;
}
.top-page-about .about-detection-table tr {
  border-bottom: 1px dotted #595959;
}
.top-page-about .about-detection-table th {
  font-weight: normal;
  width: 40%;
}
.top-page-about .about-detection-table .column-list > .item {
  margin: 0 0 20px;
}
.top-page-about .about-products-item {
  margin: 0;
}
.top-page-about .about-products-item > a {
  margin: 0 0 25px;
  padding: 15px 18px;
  border: 2px solid var(--sub-color);
  color: var(--text-color);
  display: block;
  text-align: left;
}
.top-page-about .about-products-item > a > .flag {
  background: var(--sub-color);
  border-radius: 50%;
  color: #fff;
  float: right;
  width: 60px;
  height: 60px;
  font-size: 1.3rem;
  line-height: 1;
  line-height: 60px;
  text-align: center;
}
.top-page-about .about-products-item > a > .flag .num {
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}
.top-page-about .about-products-item > a > .txtarea {
  font-size: calc(13px + 2 * (100vw - 320px) / 1180);
  line-height: 1.7153846154;
}
.top-page-about .about-products-item > a .ttl {
  margin: 0 0 10px;
  font-size: calc(17px + 13 * (100vw - 320px) / 1180);
  line-height: 1.5764705882;
}
.top-page-about .about-products-item > a > .links {
  margin: 10px 0 0;
  color: var(--sub-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
}
.top-page-about .about-products-item > a > .links .icon {
  width: 24px;
}
.top-page-news .news-block {
  overflow-y: auto;
  height: 370px;
}
.top-page-news .news-block::-webkit-scrollbar {
  width: 10px;
}
.top-page-news .news-block::-webkit-scrollbar-track {
  background-color: #ccc;
}
.top-page-news .news-block::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}
.top-page-news .news-block-list > dd {
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid #9D9D9D;
  position: relative;
}
.top-page-paper .paper-column {
  padding: calc(15px + 25 * (100vw - 320px) / 1180);
  background: #fff;
  border: 1px solid #86898B;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
.top-page-paper .paper-column-txtarea dt {
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: 1.6125;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}
.top-page-paper .paper-column-txtarea dd {
  margin: 0 0 15px;
  padding: 0 0 15px 1.5em;
  border-bottom: 1px solid #222;
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: 1.7142857143;
}
.top-page-paper .paper-column .notes {
  margin: 10px 0 0;
  font-size: calc(13px + 2 * (100vw - 320px) / 1180);
  line-height: 1.7153846154;
}
.top-page-lineup .lineup-header-outline {
  padding-top: calc(15px + 5 * (100vw - 320px) / 1180);
  padding-bottom: calc(15px + 5 * (100vw - 320px) / 1180);
  padding-left: calc(15px + 25 * (100vw - 320px) / 1180);
  padding-right: calc(15px + 25 * (100vw - 320px) / 1180);
  background: var(--bg-color);
  text-align: left;
}
.top-page-lineup .lineup-item {
  margin-top: calc(20px + 30 * (100vw - 320px) / 1180);
  margin-bottom: calc(20px + 30 * (100vw - 320px) / 1180);
  border: 2px solid var(--sub-color);
  text-align: left;
}
.top-page-lineup .lineup-item-header {
  padding: 12px 12px 30px;
  background: var(--sub-color);
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}
.top-page-lineup .lineup-item-header::before {
  content: var(--icon-arrow-down);
  font-family: var(--icon);
  font-size: 3.2rem;
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.top-page-lineup .lineup-item-header > .ttl {
  margin: 0;
  font-size: calc(14px + 20 * (100vw - 320px) / 1180);
  line-height: 1.5428571429;
  font-weight: 500;
  flex: 1;
}
.top-page-lineup .lineup-item-header > .flag {
  margin: 0 0 0 auto;
  background: #fff;
  border-radius: 50%;
  color: var(--sub-color);
  width: 40px;
  height: 40px;
  font-size: 1rem;
  line-height: 1;
  line-height: 40px;
  text-align: center;
}
.top-page-lineup .lineup-item-header > .flag .num {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: bold;
}
.top-page-lineup .lineup-item-contents {
  padding-top: calc(15px + 15 * (100vw - 320px) / 1180);
  padding-bottom: calc(15px + 15 * (100vw - 320px) / 1180);
  padding-left: calc(15px + 40 * (100vw - 320px) / 1180);
  padding-right: calc(15px + 40 * (100vw - 320px) / 1180);
  display: none;
}
.top-page-lineup .lineup-item-contents.is-open {
  display: block;
}
.top-page-lineup .lineup-item-contents .table-list {
  margin: 40px auto 0;
  max-width: 900px;
}
.top-page-lineup .lineup-item-contents .lineup-table {
  border: 1px solid #2EA7E0;
}
.top-page-lineup .lineup-item-contents .lineup-table thead th {
  padding: 0.5em;
  background: #595757;
  border-left: 1px solid #2EA7E0;
  color: #fff;
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
}
.top-page-lineup .lineup-item-contents .lineup-table td {
  padding: 0.2em 1em;
  border: 1px solid #2EA7E0;
  font-size: calc(13px + 2 * (100vw - 320px) / 1180);
  line-height: 1.7153846154;
  text-align: center;
  vertical-align: middle;
}
.top-page-lineup .lineup-item-contents .lineup-table.-blue {
  background: #E1EFFA;
}
.top-page-lineup .lineup-item-contents .lineup-table.-green {
  background: #D1E0C7;
}
.top-page-lineup .lineup-item-contents .lineup-table.-pink {
  background: #F2E0D6;
}
.top-page-flow {
  margin-top: 0;
}
.top-page-flow .flow-list {
  margin: 0 0 50px;
  position: relative;
}
.top-page-flow .flow-list::before {
  content: "";
  background: url(../images/arrow-under.svg) no-repeat center center/contain;
  width: 22px;
  height: 16px;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translate(-50%, 0);
}
.top-page-flow .flow-list:last-child {
  margin-bottom: 20px;
}
.top-page-flow .flow-list:last-child::before {
  background: none;
}
.top-page-flow .flow-list-ttl {
  background: #E4F6D3;
  border-top: 2px solid var(--main-color);
  display: flex;
  align-items: center;
  height: 42px;
}
.top-page-flow .flow-list-ttl > .step {
  margin: 0;
  background: var(--main-color);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  width: 80px;
  position: relative;
}
.top-page-flow .flow-list-ttl > .step::before {
  content: "";
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 15px solid var(--main-color);
  border-right: 15px solid transparent;
  position: absolute;
  right: -30px;
  top: 0;
}
.top-page-flow .flow-list-ttl > .step .num {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
}
.top-page-flow .flow-list-ttl > .ttl {
  margin: 0;
  padding-left: 30px;
  font-size: calc(18px + 7 * (100vw - 320px) / 1180);
  line-height: 1.4388888889;
}
.top-page-flow .flow-list-txtarea {
  padding: 20px;
  background: #fff;
  text-align: left;
}
.top-page-flow .flow-list-txtarea > :last-child {
  margin-bottom: 0;
}
.top-page-flow .flow-list-column > .item {
  margin: 0 0 20px;
}
.top-page-flow .flow-list-column > .item:first-child {
  margin-left: 0;
}
.top-page-flow .flow-list-column > .item.-stretch {
  display: flex;
  flex-direction: column;
}
.top-page-flow .flow-list-column > .item .ttl-arrow {
  margin-bottom: 20px;
  padding: 10px;
  background: var(--main-color);
  border-radius: 20px;
  color: #fff;
  font-size: calc(16px + 7 * (100vw - 320px) / 1180);
  line-height: 1.54375;
  text-align: center;
  position: relative;
}
.top-page-flow .flow-list-column > .item .ttl-arrow::before {
  content: "▼";
  color: var(--main-color);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 0);
}
.top-page-flow .flow-list-column > .item .border-box {
  padding: 20px;
  border: 1px solid #767676;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.top-page-download .download-column > .item {
  border: 3px solid var(--sub-color);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.top-page-download .download-column-head {
  padding: 12px 12px 3px;
  display: flex;
  align-items: center;
}
.top-page-download .download-column-head > .name {
  margin: 0;
  font-size: calc(16px + 6 * (100vw - 320px) / 1180);
  line-height: 1.5375;
  font-weight: 500;
}
.top-page-download .download-column-head > .flag {
  margin: 0 0 0 auto;
  padding: 1px 10px;
  background: var(--sub-color);
  border-radius: 12px;
  color: #fff;
  display: inline-block;
  font-size: calc(14px + 4 * (100vw - 320px) / 1180);
  line-height: 1.6285714286;
}
.top-page-download .download-column-head > .flag > .num {
  font-size: calc(20px + 8 * (100vw - 320px) / 1180);
  line-height: 1.44;
  font-weight: 500;
}
.top-page-download .download-column-ttl {
  margin: 0 12px 15px;
  font-size: calc(16px + 5 * (100vw - 320px) / 1180);
  line-height: 1.53125;
  font-weight: 500;
}
.top-page-download .download-column-list {
  margin: auto 0 0;
  flex-direction: column;
  width: 100%;
}
.top-page-download .download-column-list > .btn-main {
  margin: 0;
}
.top-page-download .download-column-list > .btn-main:first-child {
  margin: 0 0 1px;
}
.top-page-download .download-column-list > .btn-main > a {
  font-size: calc(15px + 3 * (100vw - 320px) / 1180);
  line-height: 1.62;
  text-align: center;
  width: 100%;
}
.top-page-download .btn-main.common {
  margin-top: 20px;
}
.top-page-download .btn-main.common > a {
  padding: 20px;
  font-size: calc(16px + 3 * (100vw - 320px) / 1180);
  line-height: 1.51875;
  width: 100%;
  text-align: center;
}
.top-page-faqs .faqs-list > :last-child {
  margin-bottom: 20px;
}
.top-page-faqs .faqs-list-q {
  padding: 20px;
  padding-left: 60px;
  background: var(--main-color);
  color: #fff;
  font-size: calc(15px + 7 * (100vw - 320px) / 1180);
  line-height: 1.5466666667;
  font-weight: 500;
  position: relative;
}
.top-page-faqs .faqs-list-q::before {
  content: "Q";
  font-size: calc(30px + 6 * (100vw - 320px) / 1180);
  line-height: 1.12;
  position: absolute;
  left: 20px;
  top: 15px;
}
.top-page-faqs .faqs-list-a {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: 20px;
  padding-left: 60px;
  background: #fff;
  border-bottom: 3px solid #C6C6C6;
  font-size: calc(14px + 3 * (100vw - 320px) / 1180);
  line-height: 1.7214285714;
  position: relative;
}
.top-page-faqs .faqs-list-a::before {
  content: "A";
  color: var(--main-color);
  font-size: calc(30px + 6 * (100vw - 320px) / 1180);
  line-height: 1.12;
  font-weight: 500;
  position: absolute;
  left: 22px;
  top: 15px;
}
.top-page-faqs .faqs-list-a > :last-child {
  margin-bottom: 0;
}
.top-page-organization .gmap-res {
  margin-top: 20px;
  order: 3;
}
.top-page-links {
  margin-bottom: 0;
  padding-bottom: calc(50px + 50 * (100vw - 320px) / 1180);
}
.top-page-links .link-box {
  padding: 20px;
  background: #fff;
  border: 1px solid #C6C6C6;
}
.top-page-links .link-box > :last-child {
  margin-bottom: 0;
}
.top-page-links .link-box a {
  color: var(--text-color);
  text-decoration: underline;
}

/*
===== A-Cube検査見積依頼フォーム ==========================================
*/
.page-request {
  margin-top: 20px;
  max-width: 1040px;
}
.page-request .request-flow {
  margin-bottom: calc(30px + 40 * (100vw - 320px) / 1180);
  padding: 0 20px;
}
.page-request .txt-lead {
  font-size: calc(15px + 5 * (100vw - 320px) / 1180);
  line-height: 1.5333333333;
  text-align: left;
}
.page-request .bg-wh {
  background: #fff !important;
}
.page-request .form-area {
  margin-bottom: calc(50px + 30 * (100vw - 320px) / 1180);
}
.page-request .request-form {
  font-size: calc(14px + 4 * (100vw - 320px) / 1180);
  line-height: 1.6285714286;
}
.page-request .request-form th {
  padding: 10px;
  background: var(--main-color);
  color: #fff;
  display: block;
  font-weight: 400;
  position: relative;
}
.page-request .request-form th .required {
  margin-left: 20px;
  padding: 3px 6px;
  background: #fff;
  color: var(--text-color);
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
}
.page-request .request-form td {
  margin: 0 0 20px;
  padding: 0;
  background: #F0F0F0;
  display: block;
}
.page-request .request-form td input[type=radio] {
  margin: 0;
}
.page-request .request-form td.pc-wh {
  background: #f0f0f0;
}
.page-request .request-form td p {
  margin-bottom: 5px;
}
.page-request .request-form td p:last-child {
  margin: 0;
}
.page-request .request-form td p.pd {
  padding: 10px;
  background: #fff;
  font-size: calc(14px + 3 * (100vw - 320px) / 1180);
  line-height: 1.7214285714;
}
.page-request .request-form td .business-list {
  margin-bottom: 0;
  padding: 10px 10px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.page-request .request-form td .business-list > li {
  margin: 0 20px 5px 5px;
}
.page-request .request-form td .set-select {
  padding: 10px;
  border-bottom: 1px dotted #868686;
  display: flex;
  align-items: center;
}
.page-request .request-form td .set-select:last-child {
  border: none;
}
.page-request .request-form td .set-select > .type {
  margin: 0;
  font-weight: 500;
  width: 65%;
}
.page-request .request-form td .set-select > .amount {
  margin: 0 0 0 auto;
  width: 35%;
  text-align: right;
}
.page-request .request-form td .set-select > .amount > .set {
  margin-right: 10px;
  background: #fff;
  width: 40%;
}
.page-request .request-form td .set-select > .amount > .num {
  margin-right: 5px;
  display: inline-block;
  font-size: calc(18px + 2 * (100vw - 320px) / 1180);
  line-height: 1.5111111111;
  font-weight: 500;
}
.page-request .request-form td .terms-check {
  padding: 10px;
  background: #F0F0F0;
}
.page-request .request-form.confirm th {
  padding: 10px 1em;
}
.page-request .request-form.confirm td {
  padding: 10px 1em;
  background: #F0F0F0;
}
.page-request .sp-tl {
  text-align: left;
}
.page-request .form-btn {
  margin-top: calc(40px + 20 * (100vw - 320px) / 1180);
  text-align: center;
}
.page-request .form-btn > li {
  margin: 0 5px 10px;
  display: inline-block;
  text-align: center;
  position: relative;
}
.page-request .form-btn > li .btn {
  padding: 15px 0;
  border: 0;
  cursor: pointer;
  font-family: var(--gothic);
  font-size: calc(15px + 6 * (100vw - 320px) / 1180);
  line-height: 1.54;
  font-weight: 500;
  text-align: center;
  transition: 0.3s;
}
.page-request .form-btn > li .btn.submit {
  background: var(--main-color);
  color: #FFF;
  width: 180px;
}
.page-request .form-btn > li .btn.back {
  background: #B0B0B0;
  color: #fff;
  width: 6em;
}
.page-request .thanks-ttl {
  font-size: calc(20px + 16 * (100vw - 320px) / 1180);
  line-height: 1.78;
  font-weight: 500;
  text-align: center;
}
.page-request .thanks-message {
  margin-bottom: calc(50px + 30 * (100vw - 320px) / 1180);
  font-size: calc(14px + 4 * (100vw - 320px) / 1180);
  line-height: 1.6285714286;
  max-width: 920px;
  text-align: left;
}
@media (min-width: 1500px) {
  body {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  ._m {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  ._l {
    font-size: 2rem;
    line-height: 1.5;
  }
  ._ll {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  #site-footer .company-info {
    padding: 40px;
  }
  #site-footer .company-info-ttl {
    font-size: 2.3rem;
    line-height: 1.4;
  }
  #site-footer .copyright {
    padding: 40px;
  }
  #site-footer .copyright {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #page-scroll > .totop {
    width: 60px;
  }
  #page-scroll > .totop {
    height: 60px;
  }
  article {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  section {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  h1, .h1 {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  h2, .h2 {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  h3, .h3 {
    font-size: 2rem;
    line-height: 1.5;
  }
  h4, .h4 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  h5, .h5 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .bg-grey {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ttl-main {
    margin-bottom: 50px;
  }
  .ttl-main {
    font-size: 3.6rem;
    line-height: 1.3;
  }
  .ttl-main > .s {
    font-size: 2.8rem;
    line-height: 1.3;
  }
  .ttl-main.-l {
    font-size: 4.2rem;
    line-height: 1.3;
  }
  table {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .btn-main > .btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .btn-main > .btn {
    padding-left: 30px;
    padding-right: 30px;
  }
  .btn-main > .btn {
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .btn-main.-l > .btn {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .btn-main.-l > .btn {
    font-size: 3.4rem;
    line-height: 1.3;
  }
  .contact-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .contact-area-ttl {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .contact-area .btn-main > .btn.-fw900 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  #main-visual {
    margin-bottom: 40px;
  }
  #main-visual-ttl {
    margin-bottom: 70px;
  }
  #main-visual-ttl {
    font-size: 5rem;
    line-height: 1.3;
  }
  .top-page-outline {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .top-page-outline {
    padding-left: 70px;
    padding-right: 70px;
  }
  .top-page-outline > .outline-ttl > .ttl {
    font-size: 2rem;
    line-height: 1.5;
  }
  .top-page-outline > .outline-ttl > .en {
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .top-page-about .about-header-lead {
    font-size: 2.9rem;
    line-height: 1.4;
  }
  .top-page-about .about-detection-ttl {
    font-size: 2.9rem;
    line-height: 1.3;
  }
  .top-page-about .about-detection-column .ttl {
    padding: 30px;
  }
  .top-page-about .about-detection-column .ttl {
    font-size: 2.4rem;
    line-height: 1.3;
  }
  .top-page-about .about-products-item > a > .txtarea {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .top-page-about .about-products-item > a .ttl {
    font-size: 3rem;
    line-height: 1.4;
  }
  .top-page-paper .paper-column {
    padding: 40px;
  }
  .top-page-paper .paper-column-txtarea dt {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .top-page-paper .paper-column-txtarea dd {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .top-page-paper .paper-column .notes {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .top-page-lineup .lineup-header-outline {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .top-page-lineup .lineup-header-outline {
    padding-left: 40px;
    padding-right: 40px;
  }
  .top-page-lineup .lineup-item {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .top-page-lineup .lineup-item-header > .ttl {
    font-size: 3.4rem;
    line-height: 1.3;
  }
  .top-page-lineup .lineup-item-contents {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .top-page-lineup .lineup-item-contents {
    padding-left: 55px;
    padding-right: 55px;
  }
  .top-page-lineup .lineup-item-contents .lineup-table td {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .top-page-flow .flow-list-ttl > .ttl {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  .top-page-flow .flow-list-column > .item .ttl-arrow {
    font-size: 2.3rem;
    line-height: 1.4;
  }
  .top-page-download .download-column-head > .name {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .top-page-download .download-column-head > .flag {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .top-page-download .download-column-head > .flag > .num {
    font-size: 2.8rem;
    line-height: 1.3;
  }
  .top-page-download .download-column-ttl {
    font-size: 2.1rem;
    line-height: 1.4;
  }
  .top-page-download .download-column-list > .btn-main > a {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .top-page-download .btn-main.common > a {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  .top-page-faqs .faqs-list-q {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .top-page-faqs .faqs-list-q::before {
    font-size: 3.6rem;
    line-height: 1;
  }
  .top-page-faqs .faqs-list-a {
    margin-bottom: 50px;
  }
  .top-page-faqs .faqs-list-a {
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .top-page-faqs .faqs-list-a::before {
    font-size: 3.6rem;
    line-height: 1;
  }
  .top-page-links {
    padding-bottom: 100px;
  }
  .page-request .request-flow {
    margin-bottom: 70px;
  }
  .page-request .txt-lead {
    font-size: 2rem;
    line-height: 1.4;
  }
  .page-request .form-area {
    margin-bottom: 80px;
  }
  .page-request .request-form {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .page-request .request-form td p.pd {
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .page-request .request-form td .set-select > .amount > .num {
    font-size: 2rem;
    line-height: 1.4;
  }
  .page-request .form-btn {
    margin-top: 60px;
  }
  .page-request .form-btn > li .btn {
    font-size: 2.1rem;
    line-height: 1.4;
  }
  .page-request .thanks-ttl {
    font-size: 3.6rem;
    line-height: 1.6;
  }
  .page-request .thanks-message {
    margin-bottom: 80px;
  }
  .page-request .thanks-message {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
@media (min-width: 600px) {
  body {
    margin: 0;
  }
  ._sp-show {
    display: none;
  }
  .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%;
  }
  .btn-main.-l > .btn {
    max-width: none;
  }
  .swipe-scroll {
    margin: 0;
    overflow-x: auto;
  }
  .swipe-scroll::before {
    display: none;
  }
  .swipe-scroll > .wrap {
    margin: 0 auto 1.5em;
    width: 100%;
  }
  .top-page-about .about-contents-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .top-page-about .about-contents-flow > li {
    width: 48%;
  }
  .page-request .request-form {
    border-collapse: separate;
    border-spacing: 0 20px;
  }
  .page-request .request-form th {
    padding: 15px;
    display: table-cell;
    width: 25%;
  }
  .page-request .request-form td {
    padding: 0;
    border-left: 10px solid #fff;
    display: table-cell;
    vertical-align: middle;
  }
  .page-request .request-form td.pc-wh {
    background: #fff;
  }
  .page-request .request-form td .business-list {
    padding: 10px;
    flex-direction: row;
    align-items: center;
  }
  .page-request .request-form td .set-select > .type {
    width: 75%;
  }
  .page-request .form-btn > li .btn.submit {
    width: 280px;
  }
}
@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;
  }
  ._tab-show {
    display: none;
  }
  ._pc-show {
    display: block;
  }
  ._pc-show.-il {
    display: inline-block;
  }
  ._pc-show.-fl {
    display: flex;
  }
  ._no-link {
    pointer-events: none;
  }
  #site-header {
    border-top: 8px solid #72C833;
    height: 185px;
  }
  #site-header-logo {
    padding-top: 60px;
    width: auto;
  }
  #site-header-link {
    margin: 0 0 0 auto;
    padding: 25px 0 0;
    font-size: 2.1rem;
    line-height: 1.5;
    font-weight: 500;
    display: flex;
    text-align: center;
  }
  #site-header-link > li {
    margin: 0 0 0 20px;
  }
  #site-header-link > li > a {
    display: flex;
    border: 1px solid var(--sub-color);
    border-radius: 50%;
    color: var(--sub-color);
    justify-content: center;
    align-items: center;
    width: 136px;
    height: 136px;
  }
  #site-header-link > .request > a {
    background: var(--sub-color);
    color: #fff;
  }
  #site-footer .company-info {
    letter-spacing: 2px;
  }
  .ttl-main {
    padding-top: 55px;
    background-size: 214px auto;
    letter-spacing: 6px;
  }
  table th, table td {
    padding: 1em;
  }
  .grid05 > .item {
    width: 18%;
  }
  .grid05.-m2 > .item {
    width: 16%;
  }
  .grid05.-nm > .item {
    width: 20%;
  }
  .btn-list {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  .btn-list > .item {
    margin: 0 0 0 20px;
    flex: 1;
  }
  .btn-list > .item:first-child {
    margin-left: 0;
  }
  .contact-area .btn-main.-l .icon {
    margin-right: 40px;
    height: auto;
  }
  .contact-area .btn-list > li > .btn {
    max-width: none;
    min-height: 75px;
  }
  .contact-area .btn-list > li > .btn .icon {
    width: auto;
  }
  #main-visual {
    display: flex;
    align-items: center;
  }
  #main-visual-img {
    order: -1;
    width: 50%;
  }
  #main-visual-ttl {
    margin-left: 10px;
  }
  #main-visual .sp-link {
    display: none;
  }
  .top-page-outline {
    display: flex;
    align-items: center;
  }
  .top-page-outline > .outline-ttl {
    margin: 0;
    padding: 0 50px 0 0;
    width: 400px;
    text-align: left;
  }
  .top-page-outline > .outline-ttl::before {
    width: 1px;
    height: 100%;
    bottom: auto;
    left: auto;
    top: 0;
    right: 0;
    transform: translate(0, 0);
  }
  .top-page-outline > .outline-txtarea {
    padding-left: 50px;
    flex: 1;
  }
  .top-page-about .about-contents-flow > li {
    width: 31%;
  }
  .top-page-about .about-detection-table th {
    width: 15%;
  }
  .top-page-about .about-detection-table .column-list {
    display: flex;
  }
  .top-page-about .about-detection-table .column-list > .item {
    margin: 0 20px 0 0;
  }
  .top-page-about .about-products-item > a {
    padding: 20px;
    display: flex;
    align-items: center;
  }
  .top-page-about .about-products-item > a > .flag {
    margin: 0 10px;
    float: none;
    width: 122px;
    height: 122px;
    font-size: 2.2rem;
    line-height: 1;
    line-height: 122px;
  }
  .top-page-about .about-products-item > a > .flag .num {
    font-size: 3.5rem;
    line-height: 1;
  }
  .top-page-about .about-products-item > a > .txtarea {
    margin: 0 20px;
  }
  .top-page-about .about-products-item > a > .links {
    margin: 0 10px 0 auto;
  }
  .top-page-about .about-products-item > a > .links .icon {
    width: auto;
  }
  .top-page-news .news-block-list > dt {
    padding: 20px;
    float: left;
  }
  .top-page-news .news-block-list > dd {
    margin: 0;
    padding: 20px 20px 20px 10em;
  }
  .top-page-news .news-block-list > dd::before {
    content: "";
    background: #9D9D9D;
    height: 50%;
    width: 1px;
    position: absolute;
    left: 8em;
    top: 50%;
    transform: translate(0, -50%);
  }
  .top-page-paper .paper-column-img {
    width: 33%;
    max-width: 366px;
  }
  .top-page-paper .paper-column-txtarea {
    padding-right: 30px;
    width: 66%;
  }
  .top-page-lineup .lineup-item-header {
    padding: 25px 55px;
  }
  .top-page-lineup .lineup-item-header::before {
    content: "";
  }
  .top-page-lineup .lineup-item-header > .flag {
    width: 112px;
    height: 112px;
    font-size: 2.2rem;
    line-height: 1;
    line-height: 112px;
  }
  .top-page-lineup .lineup-item-header > .flag .num {
    font-size: 3.5rem;
    line-height: 1;
  }
  .top-page-lineup .lineup-item-contents {
    display: block;
  }
  .top-page-lineup .lineup-item-contents .table-list {
    display: flex;
    justify-content: space-between;
  }
  .top-page-lineup .lineup-item-contents .table-list > .item {
    width: 48%;
  }
  .top-page-flow .flow-list {
    margin: 0 0 70px;
  }
  .top-page-flow .flow-list::before {
    bottom: -50px;
    width: 43px;
    height: 32px;
  }
  .top-page-flow .flow-list-ttl {
    border-top: 6px solid var(--main-color);
    height: 80px;
  }
  .top-page-flow .flow-list-ttl > .step {
    font-size: 2.1rem;
    line-height: 1;
    height: 74px;
    line-height: 74px;
    width: 170px;
  }
  .top-page-flow .flow-list-ttl > .step::before {
    border-top: 37px solid transparent;
    border-bottom: 37px solid transparent;
  }
  .top-page-flow .flow-list-ttl > .step .num {
    font-size: 3.6rem;
    line-height: 1;
  }
  .top-page-flow .flow-list-ttl > .ttl {
    padding-left: 40px;
  }
  .top-page-flow .flow-list-txtarea {
    padding: 30px 50px;
  }
  .top-page-flow .flow-list-column {
    display: flex;
  }
  .top-page-flow .flow-list-column > .item {
    margin: 0 0 0 2%;
    width: 48%;
  }
  .top-page-flow .flow-list-column > .item .ttl-arrow {
    margin-bottom: 40px;
    padding: 0;
    background: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .top-page-flow .flow-list-column > .item .ttl-arrow::before {
    bottom: -30px;
  }
  .top-page-flow .flow-list-column > .item .w50 {
    width: 50%;
  }
  .top-page-download .btn-main.common {
    margin-top: 0;
  }
  .top-page-download .btn-main.common > a {
    width: calc(31.33% + 6px);
  }
  .top-page-organization .gmap-res {
    margin-top: 0;
    order: -1;
  }
  .page-request {
    margin-top: 0;
  }
  .page-request .request-flow {
    padding: 0;
  }
  .page-request .txt-lead {
    text-align: center;
  }
  .page-request .request-form th {
    padding-right: 4em;
    text-align: right;
  }
  .page-request .request-form th .required {
    margin: 0;
    position: absolute;
    top: 20px;
    right: 18px;
  }
  .page-request .request-form td .set-select {
    background: #fff;
  }
  .page-request .request-form td .set-select > .amount {
    width: 25%;
  }
  .page-request .request-form td .set-select > .amount > .set {
    background: #F0F0F0;
  }
  .page-request .request-form td .set-select > .amount > .num {
    padding: 8px 40px;
    background: #F0F0F0;
  }
  .page-request .sp-tl {
    text-align: center;
  }
}
@media (min-width: 1380px) {
  body {
    margin: 0;
  }
  #main-visual-img {
    width: 55%;
  }
  #main-visual-ttl {
    margin-left: 20px;
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  #site-header-link > li > a:hover {
    background: var(--main-color-hover);
  }
  #site-header-link > .request > a:hover {
    background: var(--sub-color-hover);
  }
}
@media (min-width: 1024px) and (any-hover: none) {
  #site-header-link > li > a:active {
    background: var(--main-color-hover);
  }
  #site-header-link > .request > a:active {
    background: var(--sub-color-hover);
  }
}
@media (any-hover: hover) {
  #page-scroll > .totop:hover {
    background: var(--main-color-hover);
  }
  .btn-main > .btn:hover {
    background: var(--sub-color-hover);
  }
  .btn-main.-mc > .btn:hover {
    background: var(--main-color-hover);
  }
  .contact-area .btn-main > .btn:hover {
    background: var(--main-color-hover);
  }
  .top-page-about .about-products-item > a:hover {
    background: var(--main-color-hover);
  }
  .top-page-links .link-box a:hover {
    text-decoration: none;
  }
  .page-request .form-btn > li .btn.submit:hover {
    background: var(--main-color-hover);
  }
  .page-request .form-btn > li .btn.back:hover {
    background: #ccc;
  }
}
@media (any-hover: none) {
  #page-scroll > .totop:active {
    background: var(--main-color-hover);
  }
  .btn-main > .btn:active {
    background: var(--sub-color-hover);
  }
  .btn-main.-mc > .btn:active {
    background: var(--main-color-hover);
  }
  .contact-area .btn-main > .btn:active {
    background: var(--main-color-hover);
  }
  .top-page-about .about-products-item > a:active {
    background: var(--main-color-hover);
  }
  .top-page-links .link-box a:active {
    text-decoration: none;
  }
  .page-request .form-btn > li .btn.submit:active {
    background: var(--main-color-hover);
  }
  .page-request .form-btn > li .btn.back:active {
    background: #ccc;
  }
}


/* 2025.05.15 追加分 ここから */

a:any-link {
	word-break: break-all;
}
#download_add_block {
	display: flex;
	justify-content: space-between;
	margin-bottom: min(10vw, 5rem);
}
#download_add_block li {
	border: solid 3px #0A4D00;
	width: calc((100% - 2.4rem) / 2);
	display: flex;
}
#download_add_block li span {
	flex-grow: 1;
	padding: 1.25rem 1.75rem;
	font-size: 2rem;
	font-weight: 500;
}
#download_add_block li a:any-link {
	width: 45%;
	flex: none;
	font-size: 1.8rem;
	font-weight: 700;
	color: white;
	background: #0A4D00;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .5s;
}
#download_add_block li a:hover {
	opacity: 0.75;
}
#download_add_block li a::before {
	content: '';
	display: block;
	width: 3rem;
	height: 3rem;
	background: url(../images/icon-download.svg) center center no-repeat;
}
@media (max-width: 60rem) {
	#download_add_block {
		flex-direction: column;
	}
	#download_add_block li {
		width: 100%;
	}
	#download_add_block li + li {
		margin-top: 1rem;
	}
	#download_add_block li span {
		font-size: 1.75rem;
		padding: 1.25rem 1.25rem;
	}
	#download_add_block li a:any-link {
		font-size: 1.6rem;
	}
}
@media (max-width: 35rem) {
	#download_add_block li {
		flex-direction: column;
	}
	#download_add_block li a:any-link {
		width: 100%;
		padding: 0.75rem 0;
	}
}

#download div + h3 {
	margin-top: 3rem;
}

/* 2025.05.15 追加分 ここまで */

/* 2025.06 追加分 ここから*/
h4.ttl.beta1 {
	background: #1480E6 !important;
}
.beta2 a {
	border: solid 2px #0166c5 !important;
}
.beta2 a:hover {
	background: rgba(1,102,197,0.3) !important;
}
.beta2 a .flag {
	background-color: #0166c5 !important;
}
.beta2 a .icon {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
}
.beta3 {
	border: solid 2px #0166c5 !important;
}
.beta3 .lineup-item-header {
	background-color: #0166c5 !important;
}
.beta3 .flag {
	color: #0166c5 !important;
}
.beta3 table,
.beta3 table th,
.beta3 table td {
	border-color: #96BA98 !important;
}
@media (min-width: 45rem) {
	.beta3 table th,
	.beta3 table td {
		white-space: nowrap;
	}
}
.beta3 table td {
	background: #daefe8 !important;
}
.beta4 {
	border: solid 2px #0166c5 !important;
}
.beta4 .lineup-item-header {
	background-color: #0166c5 !important;
}
.beta4 .flag {
	color: #0166c5 !important;
}
.beta4 table,
.beta4 table th,
.beta4 table td {
	border-color: #7692CB !important;
}
.beta4 table td {
	background: #D3E3F2 !important;
}
.beta5 {
	border: solid 3px #0166c5 !important;
}
.beta5 a {
	background: #0166c5 !important;
}
.beta6 {
	border: solid 3px #0166c5 !important;
}
@media (min-width: 37.5rem) {
	.beta6 {
		position: relative;
		left: calc(25% - min(8vw, 10rem));
	}
}
.beta6 a,
.beta6 .flag {
	background: #0166c5 !important;
}
.beta6 a:hover {
	background: rgba(1,102,197,0.7) !important;
}
.about-products-item .flag,
.about-products-item .links {
	flex: none;
}
.about-products-item.beta2 .links {
	color: #0166c5 !important;
}

/* 2025.06 追加分 ここまで*/