@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}

/*
---------------------------------------------

    base settings

*/

:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
  --s13: calc(var(--s1) * 13);
  --s14: calc(var(--s1) * 14);
}

@media screen and (max-width: 1000px) {
  :root {
    font-size: 1vw;
  }
}


/*
---------------------------------------------

    Color settings

*/

:root {
  --site-color01: #7ee5db;
  --site-color02: #e3f4f3;
  --site-color03: #000;
  --site-color03-rgb: 2, 49, 86;
  --site-color04: #bced3d;
  --site-color05: #47C1D3;
  --site-color05-rgb: 108, 192, 183;
  --site-color06: #ebedea;
  --site-color07: #EBEBEB;
  --site-color08: #333333;
  --site-color09: #f4f4f4;
  --site-color10: #1f496a;
  --site-color11: #d3f5f2;
  --site-color12: #d2ece9;
  --site-color13: #999;
  --site-color14: #34a7aa;
  --site-color15: #6a9f0c;
  --site-color16: #dbdbdb;
  --site-color17: #29a7a9;
  --bg-color01: #edf2f1;
  --bg-color02: #f2f2f2;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul,
ol,
dl,
p,
img,
form,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  border: 0;
}

ul li,
ol li {
  list-style: none;
  line-height: 1.5;
  position: relative;
}

.navigation01-menu li { 
  width: 22.5%;
  text-align: center;
}

#index span.selection-price, #contents span.selection-price {
  font-size:1.8rem;
}

@media screen and (max-width: 1279px) { 
.navigation01-menu li { 
  text-align: left;
}
}

.navigation01-menu li:last-of-type { 
  width: 10%;
}

ul:not([class]) li {
  padding-left: 1.5em;
  font-size: 1.8rem;
  line-height: 1.8;
}

.mainvisual-wrap {
  padding-top: 2.4rem;
  border-top: 1px solid #000;
}

.mainvisual-link {
      display: block;
    width: fit-content;
    margin-inline: auto;
}

.mainvisual-link:hover {
  opacity: 0.7;
}

.mainvisual.lower {
  text-align: center;
  margin-bottom: 6.7rem;
}

.mainvisual.lower + .navigation01-menu-area {
  margin-bottom: 5.6rem;
}

.mainvisual.lower .lower-image {
  max-width: 260px;
  margin-inline: auto;
}

#low-page {
  padding-top: 5.7rem;
}

#low-page p strong {
  color: #FD9B23;
}

#low-page ul:not([class]) li {
  font-size: 1.6rem;
  padding-left: 2.4rem;
}

ul:not([class]) li::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: #82DBE8;
  position: absolute;
  top: 0.63em;
  left: 0;
}

#low-page ul:not([class]) li::before  {
  background-color: #FD9B23;
  width: 1.5rem;
  height: 1.5rem;
  top: 0.6rem;
}

ol:not([class]) li {
  padding-left: 1.5em;
  margin-bottom: 1em;
  counter-increment: number;
}

ol:not([class]) li::before {
  content: counter(number);
  width: 2rem;
  color: #fff;
  background-color: #6a9f0c;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0.1em;
  left: 0;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #000;
  transition: opacity 0.6s ease, color 0.6s ease;
}

a:active,
a:hover {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-weight: normal;
}

small {
  font-size: 80%;
}

p:not([class]) {
  line-height: 2;
}

p+p {
  margin-top: 1em;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
}


/*
---------------------------------------------

    Emphasize 

*/

.marker {
  font-weight: 700;
  background-color: #DDBEF6;
}

.txt_bold {
  font-weight: 700;
  color:#fd9b23;
}


/*
---------------------------------------------

    layout center

*/

.l-center {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

.navigation01-menu-area .l-center {
  max-width: 108.18rem;
}

.l-center.nav { 
  max-width: 120.18rem;
  margin: 4rem auto;
}

.sec01.l-center {
  max-width: 109rem;
  padding-top: 40px;
}


/*
---------------------------------------------

    layout stack

*/

.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s4);
  align-items: stretch;
}

.l-stack-small {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.l-stack-small.faq {
  gap: 24px;
}

.l-center.l-stack-small {
  max-width: 106.65rem;
  box-sizing: content-box;
}

.l-center.case-study {
  max-width: 106.8rem;

}

.l-stack-xsmall {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s1);
}

.column-small .l-stack-large {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media screen and (max-width: 767px) {

  .column-small .l-stack-large {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}
}

.l-stack-large {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 7.1rem;
}

.l-stack-xlarge {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s8);
}

/*
---------------------------------------------

    layout cluster

*/

.l-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}


/*
---------------------------------------------

    layout grid

*/

.l-grid-two,
.l-grid-two-flex {
  --minimum: calc((100% - var(--s2)) / 2);
  display: grid;
  grid-gap: var(--s2);
}

.l-grid-two-large {
  --minimum: calc((100% - var(--s4)) / 2);
  display: grid;
  grid-gap: 10px;
}

.l-grid-three,
.l-grid-three-flex {
  --minimum: calc((100% - var(--s2) * 2) / 3);
  display: grid;
  grid-gap: var(--s2);
}


.l-grid-four,
.l-grid-four-flex {
  --minimum: calc((100% - var(--s2) * 3) / 4);
  display: grid;
  grid-gap: var(--s2);
}

@supports (width: min(var(--minimum), 100%)) {

  .l-grid-two,
  .l-grid-two-flex,
  .l-grid-two-large,
  .l-grid-three,
  .l-grid-three-flex,
  .l-grid-four,
  .l-grid-four-flex {
    grid-template-columns: repeat(auto-fit, minmax(min(var(--minimum), 100%), 1fr));
  }
}

.l-grid-three {
  margin-top: 5rem;
}

.sec03 .l-grid-three:last-of-type {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}

.sec03 .l-grid-three:last-of-type .column-small {
  width: calc(33.33333333% - 1.6rem * 2 / 3);
}

.column-medium .l-grid-two-large {
  max-width: 882px;
  margin-left: auto;
  margin-right: auto;
}


/*
---------------------------------------------

    layout sidebar

*/

.l-sidebar {
  display: flex;
  gap: var(--s5);
}

.l-sidebar__side {
  width: calc((100% - var(--s5)) * 0.3);
}

.l-sidebar__main {
  width: calc((100% - var(--s5)) * 0.7);
}


/*
---------------------------------------------

    layout column

*/

.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}

.l-column__side {
  width: calc((100% - var(--s5)) * 0.4);
}

.l-column__main {
  width: calc((100% - var(--s5)) * 0.6);
}

.l-column--row-reverse {
  flex-direction: row-reverse;
}


/*
---------------------------------------------

    layout float

*/

.l-float {
  display: flow-root;
}

.l-float__left-pc {
  width: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}

.l-float__right-pc {
  width: 40rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}

.l-float__center {
  width: 64rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

.l-float__left {
  width: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}

.l-float__right {
  width: 40rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}


/*
---------------------------------------------

    layout scroll x

*/

.l-scroll-x {
  width: 100%;
  padding-bottom: 0.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  /* chrome safari */
}

.l-scroll-x::-webkit-scrollbar {
  height: 0.6rem;
}

.l-scroll-x::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}

.l-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

.l-scroll-x table {
  width: inherit;
}

.l-scroll-x table th,
.l-scroll-x table td {
  min-width: 20rem;
}


/*
---------------------------------------------

    layout header

*/

.l-header {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/*
---------------------------------------------

    layout gnavi

*/

.l-gnavi {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.l-gnavi::-webkit-scrollbar {
  display: none;
}


/*
---------------------------------------------
    toggle sp
*/

.toggle-sp-content {
  display: block;
}

/*---------------------------------------------
    pankuzu
*/
#pankuzuWrap {
  margin: 0;
  background-color: #47C1D3;
  color: #000;
  font-size: 1.4rem;
}

#pankuzu {
  font-size: 1.3rem;
  padding: 1.2rem 0;
  line-height: 1.4;
}

#pankuzu a {
  color: inherit;
  text-decoration: underline;
}

#pankuzu a:hover {
  text-decoration: none;
}

#pankuzu span {
  color: inherit;
  font-weight: inherit;
}


/*---------------------------------------------
    low-page common heading
*/

#low-page p {
  font-size: 1.5rem;
  line-height: 1.9333;
}

#low-page h1:not([class]) {
  width: 100%;
  padding: 3.65rem  var(--s4) 3.65rem  var(--s4);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--site-color03);
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  position: relative;
    margin-bottom: var(--s6);
}

#low-page h1:not([class])::before,
#low-page h1:not([class])::after {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background-color: #47C1D3;
  position: absolute;
  z-index: -1;
}

#low-page h1:not([class])::before {
  bottom: -0.25rem;
  left: -0.25rem;
}

#low-page h1:not([class])::after {
  top: -0.25rem;
  right: -0.25rem;
}

#low-page h2:not([class]) {
  width: 100%;
  margin: 10rem auto 5rem;
  padding: 2.5rem var(--s3) 2.5rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--site-color03);
  background-color: rgba(93, 204, 220, 0.3);
  position: relative;
}

#low-page h3#chapter-6:not([class]) {
  position: relative;
    margin-bottom: 0;
    margin-left: 0;
    padding: var(--s2);
    width: auto;
}



#low-page h3#chapter-6::before {
    content: unset;
}

#low-page h2:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
  color: var(--site-color03);
  position: relative;
  
}
#low-page h2:not([class]) a::after {
  content: '';
    position: absolute;
    width: 3.4rem;
    height: 3.4rem;
    background: url(./img/arrow-right_big.png) no-repeat center / contain;
    right: 0rem;
    top: 56%;
    transform: translateY(-50%);
  
}

#low-page h2:not([class]) a:hover {
  opacity: .6;
}

#low-page h3:not([class]) {
  width: 100%;
  margin-block: 3rem 2rem;
  padding: var(--s2);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--site-color03);
  border-bottom: 2px solid #000;
}

#low-page h3:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
  color: var(--site-color03);
  /* background: url('./img/arrow-01-blg-right.svg') no-repeat center right / auto 1em; */
}

#low-page h3:not([class]) a:hover {
  opacity: .6;
}

#low-page h4:not([class]) {
  width: 100%;
  margin-block: 3rem 2rem;
  padding: var(--s2);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--site-color03);
  border-bottom: 2px dotted #B0A8A7;
}

#low-page h4:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
  color: var(--site-color03);
  /* background: url('./img/arrow-01-blg-right.svg') no-repeat center right / auto 1em; */
}

#low-page h4:not([class]) a:hover {
  opacity: .6;
}

#low-page h5:not([class]) {
  width: 100%;
  margin-block: 3rem 2rem;
  padding: var(--s1) var(--s2) var(--s1) 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--site-color03);
  position: relative;
  /* border-left: 6px solid var(--site-color05); */
}

#low-page h5:not([class])::before {
position: absolute;
content: '';
background-color: var(--site-color05);
left: 0;
width: 6px;
height: 59.6153%;
top: 50%;
transform: translateY(-50%);
}

#low-page h5:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
  color: var(--site-color03);
  /* background: url('./img/arrow-01-blg-right.svg') no-repeat center right / auto 1em; */
}

#low-page h5:not([class]) a:hover {
  opacity: .6;
}

/*---------------------------------------------
low-page center-img
*/
.low-center-img-box {
  display: flow-root;
  margin-block: 4rem;
}

.low-center-img {
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: var(--s2);
  text-align: center;
}

.low-center-img-catch {
  background-color: #47C1D3;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--site-color03);
}

/*---------------------------------------------
low-page left-img
*/
.low-left-img-box {
  display: flow-root;
  margin-block: 4rem;
}

.low-left-img {
  width: 37%;
  margin-right: var(--s4);
  padding-bottom: var(--s1);
  text-align: center;
  float: left;
}

.low-left-img-catch {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--site-color03);
  line-height: 1.5;
}

.low-left-img-catch span {
  background-color: #47C1D3;
}

/*---------------------------------------------
low-page right-img
*/
.low-right-img-box {
  display: flow-root;
  margin-block: 5.4rem;
}

.low-right-img {
  width: 40%;
  margin-left: var(--s3);
  padding-bottom: var(--s1);
  text-align: center;
  float: right;
}

.low-right-img-catch {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--site-color03);
  line-height: 1.5;
}

.low-right-img-catch span {
   background-color: #47C1D3;
}


/*--------------------------------------------
    Caption settings
*/

.caption {
  margin-top: 0.8em;
  color: #707070;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
.caption {
text-align: left;
}
}

.caption a {
  color: var(--site-color13);
}

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

.caption-scroll {
  margin-top: 0.8em;
  color: var(--site-color13);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  /* chrome safari */
}

.caption-scroll a {
  color: var(--site-color13);
}

.caption-scroll::-webkit-scrollbar {
  height: 0.6rem;
}

.caption-scroll::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}

.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}


/*--------------------------------------------
    Table settings
*/

table {
  width: 100%;
  line-height: 1.5;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

table th,
table td {
  padding: var(--s1);
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}



table th {
  background-color: #e9eff0;
  text-align: left;
}

#low-page table th {
  background-color: #F7F7F7;
  text-align: center;
  font-size: 1.5rem;

}

#low-page table td {
  width: 75.7%;
  font-size: 1.5rem;
}

#low-page table th, #low-page table td {
  padding: 1.15rem var(--s1) 1.15rem;
}

#low-page table td {
  padding-left: 2.9rem;
}

.column-medium table  {
 max-width: 89rem;
 margin-left: auto;
 margin-right: auto;
 border-color: #000;
 position: relative;
}



.onb-m-title5 + table {
  max-width: none;
}

.column-medium table th {
  font-size: 1.6rem;
  background-color: #F7F7F7;
  text-align: center;
  border-color: #000;
}

@media screen and (max-width: 767px) {
.column-medium table th {
 font-size: 1.5rem;
}

#low-page table th{
    width: 30%;
}



}


.column-medium table td {
  font-size: 1.5rem;
  /* width: 72.6%; */
  width: 46%; /*一旦変更*/
  border-color: #000;
  padding: 1.3rem 0.8rem 1.3rem 3.7rem;
}


.column-medium table td span.plan-price {
    font-weight: bold;
}

.column-medium table td span.plan-price span.plan-price-numbers {
    color: #47C1D3;
    font-size: 2.8rem;
}

@media screen and (max-width: 767px) {
.column-medium table td span.plan-price span.plan-price-numbers {
    font-size: 2rem;
}
}

@media screen and (max-width: 767px) {

  .column-medium table td {
  font-size: 1.5rem;
  width: 72.6%;
  border-color: #000;
  padding: var(--s1);
}
}

.onb-m-title5 + table td {
  width: 73.9%;
}

/*---------------------------------------------
    low-page table
*/
#low-page table {
  margin-block: 4rem;
  }
  
/*---------------------------------------------
    low-page list
*/
#low-page ul:not([class]),
#low-page ol:not([class]) {
  margin-block: 4rem;
}

#low-page ul:not([class]) li a {
 background: url(./img/arrow-right_big.png) no-repeat center right / auto 17px;
 padding-right: 2rem;
 text-decoration: none;
}

#low-page ul:not([class]) li a:hover {
opacity: 0.6;
}

/*--------------------------------------------
    Button Internal settings
*/

.btn-internal {
  max-width: 46rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
}

.btn-internal a {
  width: 100%;
  margin: 0;
  padding: 2.8rem var(--s6) 2.8rem var(--s5);
  background: var(--site-color01) url("./img/arrow-01-bk-right.svg") no-repeat center right 2rem / auto 1em;
  display: block;
  color: var(--site-color08);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
  border-radius: 100vmax;
}

.btn-internal::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--site-color03);
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.8rem, 0.8rem);
  border-radius: 100vmax;
}

.guide .btn-internal::after {
  background-color: #47C1D3;
  transform: translate(0.5rem, 0.5rem);
}

.btn-internal:hover a {
  transform: translate(0.5rem, 0.5rem);
}

.guide .btn-internal:hover a {

}

.guide .btn-internal {
  max-width: 39.9rem;
  margin-bottom: 5.914rem;
  
  border-radius: 4rem;
}

.guide .btn-internal a {
  background: var(--site-color01) url("./img/white_arrow_right.png") no-repeat center right 2rem / auto 1em;
  background-color: #000000;
  color: #fff;
  font-size: 1.8rem;
}

.guide .btn-internal a {
padding: 2.8rem 3.25rem 2.8rem 3.25rem;
}

/*--------------------------------------------
    下層ページ用ボタンレイアウト（btn-internal）
*/

#low-page .btn-internal::after{
background-color: #47C1D3;
color: #fff;
transform: translate(0.5rem, 0.5rem);
}

#low-page .btn-internal a{
background: #000 url("./img/white_arrow_right.png") no-repeat center right 2rem / auto 1.7rem;
color: #fff;
font-size: 1.8rem;
padding: 2.65rem 3.25rem 2.65rem 3.25rem;
border-radius: 100vmax;
}

#low-page .btn-internal2 a{
background: #000 url("./img/white_arrow_bottom.png") no-repeat center right 2rem / auto 1rem;
color: #fff;
font-size: 1.8rem;
padding: 2.65rem 3.25rem 2.65rem 3.25rem;
border-radius: 100vmax;
}

/*--------------------------------------------
    下層ページ用ボタンレイアウト（btn-web）
*/

#low-page .btn-web {
  max-width: 46rem;
}

#low-page .btn-web a {
padding: 2.5rem var(--s6) 2.5rem var(--s5);
font-size: 2rem;
background: #FD9B23 url("./img/black_arrow_right.png") no-repeat center right 3.2rem / auto 1.7rem;
border-radius: 100vmax;
}


/*--------------------------------------------
    Button Ancher settings
*/

.btn-ancher {
  max-width: 46rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
}

.btn-ancher a {
  width: 100%;
  margin: 0;
  padding: var(--s3) var(--s6) var(--s3) var(--s5);
  background: var(--site-color01) url("./img/arrow-01-bk-down.svg") no-repeat center right 2rem / auto 0.8em;
  display: block;
  color: var(--site-color08);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
  border-radius: 5rem;
}

.btn-ancher::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--site-color03);
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(var(--s1), var(--s1));
  border-radius: 5rem;
}

.btn-ancher:hover a {
  transform: translate(var(--s1), var(--s1));
}


/*--------------------------------------------
    Button Web settings
*/

.btn-web {
  max-width: 30.7rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
  z-index: 5;
}

.btn-web a {
  width: 100%;
  margin: 0;
  padding: 1rem var(--s6) 1rem var(--s5);
  background: #FD9B23 url("./img/black_arrow_right.png") no-repeat center right 2rem / 1rem auto;
  display: block;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
  border-radius: 100vmax;
  font-size: 2rem;
}

.column-small .btn-web a {
  padding: 1rem var(--s6) 1rem var(--s5);
}

.column-medium .btn-web {
  max-width: 46rem;
}

.column-medium .btn-web a{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 3.6rem;
  padding-right: 4rem;
}

.btn-web::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--site-color03);
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(5px, 5px);
  border-radius: 100vmax;
}

.btn-web:hover a {
  transform: translate(var(--s1), var(--s1));
}

.column-small .btn-web {
 margin-top: 25px;
  margin-bottom: 0;
}

@media screen and (max-width: 1100px) {
.column-small .btn-web {
  max-width: 90%;
  margin-inline: auto;
}
}

@media screen and (max-width: 767px) {
.column-small .btn-web {
  max-width: none;
 
}
}


/*--------------------------------------------
    Text Link settings
*/

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

.acc-area .btn-link {
  margin-top: 2.5rem;
}

.btn-link a {
  margin: 0;
  padding: 1rem 2.8rem 1rem 0;
  background: url("./img/arrow-right_big.png") no-repeat center right/auto 20px;
  display: inline-block;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: underline;
}

.btn-link a:hover {
  text-decoration: underline;
  opacity: 0.6;
}


/*--------------------------------------------
    Tel Link settings
*/

.btn-tel {
  display: none;
}


/*
---------------------------------------------
    PC footer
*/
.footer-area {
  padding: var(--s5) 0 0;
  background: #EEEEEE;
    margin-top: 20rem;
}

.footer-area a:hover {
  opacity: .6;
  transition: .2s;
}

.footer-area-logo {
  width: 32rem;
  margin: 0 auto var(--s5);
}

.footer-main {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

.footer-bottom {
  padding: var(--s2) 0;
  background: #000;
  color: #FFF;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-box+.footer-box {
  margin-top: var(--s5);
}

.footer-menu-title {
  margin-bottom: var(--s1);
  font-size: 1.4rem;
  line-height: 1.6;
  border-bottom: 1px solid #000;
    font-weight: 700;
}

.footer-menu-title__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

.footer-menu__item {
  width: calc((100% - var(--s2) * 3) / 4);
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-menu__item::before {
  display: none;
}

.footer-menu__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}

.footer-menu-sub {
  margin-left: var(--s1);
}

.footer-menu-sub__item {
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-menu-sub__item::before {
  display: none;
}

.footer-menu-sub__link {
  padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
  display: block;
  text-decoration: none;
  position: relative;
}

.footer-menu-sub__link::before {
  content: "└";
  position: absolute;
  top: var(--s-2);
  left: 0;
}

.footer-disclaimer {
  width: 70rem;
  margin: var(--s5) auto;
  padding: var(--s2) var(--s4);
  background: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-disclaimer__label {
  display: inline;
}

.footer-disclaimer__text {
  display: inline;
}

.footer-nocopy {
  margin: var(--s5) 0;
  font-size: 1.2rem;
  text-align: center;
}

.footer-copyright {
  font-size: 1.2rem;
}

.footer-copyright__link {
  color: #FFF;
  text-decoration: none;
}

.footer-copyright__link:hover {
  color: #FFF;
  opacity: .7;
}

.footer-sitemap {
  font-size: 1.2rem;
}

.footer-sitemap__link {
  padding: 0 1.2em 0 0;
  background: url("./img/arrow-01-right.svg") no-repeat center right/auto 1em;
  color: #FFF;
  text-decoration: none;
}

.footer-sitemap__link:hover {
  color: #FFF;
  opacity: 0.6;
}

/*---------------------------------------------------------
    Page top Button
  */
.page-top {
  width: 6rem;
  height: 6rem;
  border-radius: 10rem;
  position: fixed;
  right: var(--s4);
  bottom: var(--s7);
  z-index: 10;
  overflow: hidden;
}

.page-top__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-top__link:hover {
  opacity: 0.6;
}

/*
  ---------------------------------------------
      sp footer
  */
@media screen and (max-width: 767px) {
  .footer-area {
    padding: var(--s3) 0 0;
    margin-top: 4rem;
  }
  

  .footer-main {
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
  }

  .footer-bottom {
    padding: var(--s1) 0;
  }

  .footer-logo {
    margin: var(--s3) var(--s1);
    font-size: 1.8rem;
  }

  .footer-box+.footer-box {
    margin-top: var(--s2);
  }

  .footer-menu-title {
    margin-bottom: 0;
  }

  .footer-menu-title__link {
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    position: relative;
  }

  .footer-menu-title__link::after {
    content: "";
    width: var(--s2);
    height: 100%;
    background: url("./img/arrow-01-black-down.svg") no-repeat center/100%;
    position: absolute;
    top: 0;
    right: var(--s2);
    transform: rotate(0);
    transition: transform 0.3s;
  }

  .footer-menu-title__link.is-open::after {
    transform: rotate(180deg);
  }

  .footer-menu-title__link--not-toggle::after {
    background: url("./img/arrow-01-black-right.svg") no-repeat center/auto 1em;
  }

  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.8);
    gap: 0;
  }

  .footer-menu__item {
    width: 100%;
  }

  .footer-menu__link {
    padding: var(--s1) var(--s3) var(--s1) var(--s2);
    background: url("./img/arrow-01-black-right.svg") no-repeat 95% center/auto 1em;
  }

  .footer-menu-sub {
    margin-left: var(--s2);
  }

  .footer-menu-sub__link {
    padding: var(--s1) var(--s2) var(--s1) 1.1em;
  }

  .footer-menu-sub__link::before {
    top: var(--s1);
  }

  .footer-disclaimer {
    width: calc(100% - var(--s2));
    margin: var(--s2) auto;
    padding: var(--s1) var(--s2);
  }

  .footer-nocopy {
    margin: var(--s2) var(--s1);
    font-size: 1rem;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .footer-sitemap {
    display: none;
  }

  .page-top {
    width: 4rem;
    height: 4rem;
    right: var(--s1);
    bottom: var(--s3);
  }

  .page-top__link {
    background-size: 1.5rem auto;
  }

  .page-top__link:hover {
    opacity: 1;
  }
}


@media screen and (max-width: 767px) {

  /*
  ---------------------------------------------

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }

  .sp_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
}

@media screen and (max-width: 767px) {

  /*
  ---------------------------------------------

      sp layout center

  */
  .l-center {
    padding-right: calc(var(--s1) + var(--s-2));
    padding-left: calc(var(--s1) + var(--s-2));
    box-sizing: border-box;
  }

  /*
  ---------------------------------------------

      sp layout stack

  */
  .l-stack {
    gap: var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout cluster

  */
  .l-cluster {
    gap: var(--s1);
  }

  /*
  ---------------------------------------------

      sp layout grid

  */
  .l-grid-two,
  .l-grid-two-large {
    grid-template-columns: 100%;
  }

  .l-grid-three {
    grid-template-columns: 100%;
  }

  .l-grid-four {
    grid-template-columns: 100%;
  }

  .l-grid-two-flex,
  .l-grid-three-flex,
  .l-grid-four-flex {
    --minimum: calc((100% - var(--s2)) / 2);
  }

  /*
  ---------------------------------------------

       sp toggle sp

  */
  .toggle-sp-content {
    display: none;
  }

  /*
  ---------------------------------------------

      sp layout sidebar

  */
  .l-sidebar__side {
    display: none;
  }

  .l-sidebar__main {
    width: 100%;
  }

  /*
  ---------------------------------------------

      sp layout column

  */
  .l-column {
    gap: var(--s2);
  }

  .l-column__side {
    width: 100%;
  }

  .l-column__main {
    width: 100%;
  }

  /*
  ---------------------------------------------

      sp layout float

  */
  .l-float__left-pc {
    width: 100%;
    margin-right: 0;
    float: none;
  }

  .l-float__right-pc {
    width: 100%;
    margin-left: 0;
    float: none;
  }

  .l-float__center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .l-float__left {
    width: 45%;
    margin-right: var(--s2);
    margin-bottom: var(--s1);
  }

  .l-float__right {
    width: 45%;
    margin-left: var(--s2);
    margin-bottom: var(--s1);
  }

  /*
  ---------------------------------------------

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow: hidden;
    overflow-x: scroll;
    overflow-y: visible;
    /* chrome safari */
  }

  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }

  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }

  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }

  /*---------------------------------------------
        pankuzu
    */
  #pankuzuWrap {
    position: relative;
    overflow: auto;
    margin: 0 auto var(--s3);
    padding: 1.0rem 0;
    white-space: nowrap;
  }

  #pankuzu {
    padding: 0.7rem 0;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    line-height: 1.2;
  }

  #pankuzu a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }

  #pankuzu a:hover {
    text-decoration: underline;
  }

  #pankuzu span:last-child {
    margin-right: calc(var(--s1) + var(--s-2));
  }

  #pankuzu a span:last-child {
    margin-right: 0;
  }

  /*---------------------------------------------
    low-page common heading
  */
  
  #low-page{
    padding-top: var(--s2);
  }
  
  .mainvisual.lower{
    margin-bottom: var(--s3);

  }
  
  #low-page h1:not([class]) {
    padding: var(--s2);
    font-size: 2.4rem;
  }

  #low-page h2:not([class]) {
    padding: var(--s2);
    font-size: 2.1rem;
        margin-bottom: var(--s3);
        margin-top: var(--s5);
  }

  #low-page h3:not([class]) {
    font-size: 2.1rem;
    border-bottom: 3px solid var(--site-color05);
  }

  #low-page h4:not([class]) {
    font-size: 1.8rem;
  }

  #low-page h5:not([class]) {
    font-size: 1.8rem;
  }

  /*---------------------------------------------
    low-page center-img
    */
  .low-center-img {
    max-width: 100%;
  }

  /*---------------------------------------------
    low-page left-img
    */
  .low-left-img {
    width: 100%;
    margin-right: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }

  /*---------------------------------------------
    low-page right-img
    */
  .low-right-img {
    width: 100%;
    margin-left: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }

  /*
  ---------------------------------------------
      sp table
    */
  .sp-table-vertical th,
  .sp-table-vertical td {
    width: 100%;
    display: block;
  }

  .table-label thead {
    display: none;
  }

  .table-label tbody th {
    background: #ccc;
  }

  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }

  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #efefef;
    border-right: solid 1px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    text-align: center;
  }

  .table-label__cell {
    padding: var(--s1) var(--s2);
  }

  .l-scroll-x table thead,
  .l-scroll-x-sp table thead {
    display: table-header-group;
  }

  .l-scroll-x table tbody,
  .l-scroll-x-sp table tbody {
    display: table-row-group;
  }

  .l-scroll-x table tr,
  .l-scroll-x-sp table tr {
    display: table-row;
  }

  .l-scroll-x table th,
  .l-scroll-x table td,
  .l-scroll-x-sp table th,
  .l-scroll-x-sp table td {
    width: inherit;
    min-width: 15rem;
    display: table-cell;
  }

  .l-scroll-x-sp table {
    width: inherit;
  }

  /*--------------------------------------------
      Button Internal settings
  */
  .btn-internal {
    margin: var(--s3) var(--s1) var(--s3) 0;
  }

  .btn-internal a {
    padding: var(--s2) var(--s3) var(--s2) var(--s1);
    background: var(--site-color01) url("./img/arrow-01-bk-right.svg") no-repeat center right 1rem / auto 1em;
  }

  .btn-internal:hover a {
    transform: none;
  }

  /*--------------------------------------------
      Button Ancher settings
  */
  .btn-ancher {
    margin: var(--s3) var(--s1) var(--s3) 0;
  }

  .btn-ancher a {
    padding: var(--s2) var(--s3) var(--s2) var(--s1);
    background: var(--site-color01) url("./img/arrow-01-bk-down.svg") no-repeat center right 0.8rem / auto 0.8em;
  }

  .btn-ancher:hover a {
    transform: none;
  }

  /*--------------------------------------------
      Button Web settings
  */
  .btn-web {
    margin: var(--s3) var(--s1) var(--s3) 0;
    position: relative;
  }

  .btn-web a {
    padding: var(--s2) var(--s3) var(--s2) var(--s1);
    background: #FD9B23 url("./img/arrow-01-bk-right.svg") no-repeat center right 0.8rem / auto 0.8em;
    font-size: 1.6rem;
  }

  .btn-web:hover a {
    transform: none;
  }

  /*----------------------------------------------
    Btn Link settings
  */
  .btn-link {
    margin: var(--s1) auto;
  }

  .btn-link a {
    padding: var(--s2) var(--s4);
    border: 1px solid #000;
    border-radius: 100vmax;
    background: url("./img/arrow-01-black-right.svg") no-repeat 95% center/auto 1em;
    text-align: left;
    line-height: 1.5;
    display: block;
    text-decoration: none;
    text-align: center;
  }

  .btn-link a:hover {
    opacity: 1;
  }

  /*----------------------------------------------
    Button Tel settings
  */
  .btn-tel {
    margin: var(--s3) var(--s1) var(--s3) 0;
    display: block;
    position: relative;
  }

  .btn-tel a {
    width: 100%;
    margin: 0 auto;
    padding: 1.4rem 4rem;
    background-color: #47C1D3;;
    color: #000;
    display: block;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    border-radius: 100vmax;
  }

  .btn-tel::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--site-color03);
    border-width: 0 1px 1px 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(5px, 5px);
    border-radius: 100vmax;
  }
}


.cmn02-text-banner-box__image img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  object-fit: cover;
}

.index-banner_pc {
  margin: 5rem 0 0 0;
  position: fixed;
  right: 0;
  bottom: 15rem;
  z-index: 310;
  display: none;
}

.index-banner_pc a {
  text-decoration: none;
}

.index-banner_pc a:hover{
  opacity: 0.6;
}

.image-banner-box {
  max-width: 220px;
}
@media screen and (max-width: 480px){
  .index-banner_pc{
    display:none !important;
  }
}

/*
---------------------------------------------

    swiper sum layout

*/
.swiper-thumbs .swiper-wrapper {
    justify-content: center;
}

/*
---------------------------------------------

    TOP company name height

*/
@media screen and (min-width: 481px){
.sec03 .m-title02 {
  display: flex;
    align-items: center;
}

.sec03 .m-title02 a {
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    width: 100%;
}
}

/*
---------------------------------------------

    table layout table wrap

*/

#low-page .table-wrap table {
    table-layout: fixed;
}

#low-page span.scroll-caution {
  display: none;
}

#low-page .table-wrap table td {
    padding: 1.5rem;
}

#low-page .table-wrap table th {
    width: 125px;
}

#low-page .table-wrap table.other-tbl th {
    font-size:1.2rem;
  width: auto;
}

#low-page .product-img-area {
  text-align: center;
}

@media screen and (max-width: 480px){
#low-page span.scroll-caution {
  display: block;
  font-size: 12px;
    font-weight: bold;
}
  
#low-page .table-wrap {
    overflow-x: scroll;
}
  
#low-page .table-wrap table {
  width:1000px;
    margin: 1rem 0;
    border-top: 1px solid #ccc;
}

#low-page .table-wrap table:not([class]) th {
    display: table-cell;
    width: auto;
}
  
#low-page .table-wrap table:not([class]) th:first-child {
    width: 17rem;
    padding: 0.5rem;
}
  
#low-page .table-wrap table:not([class]) td {
    display: table-cell;
    width: auto;
  padding: 1.5rem;
}

  
#low-page .table-wrap table:not([class]) td img {
    width:70%;
  display:block;
  margin:0 auto;
    }
}




