/* variable
*************************************************** */
:root {
  --clr-primary-default: #3163F6;
  --clr-primary-dark: #1342CC;
  --clr-primary-light: #7699FF;

  --clr-secondary-default: #F97925;
  --clr-secondary-dark: #E95F04;
  --clr-secondary-light: #FF9A58;

  --clr-bg-01: #F4F5F7;
  --clr-bg-02: #ECEDF0;
  --clr-bg-blue01: #EDF4FF;
  --clr-bg-blue02: #E5EDFF;


  --clr-sub-01: #E3F3FC;
  --clr-sub-02: #B6DEF9;
  --clr-sub-03: #7FC4F3;
  --clr-sub-04: #0D2661;
  --clr-sub-05: #4BA8E7;
  --clr-sub-06: #6790B7;

  --clr-mono-01: #EEEEEE;
  --clr-mono-02: #CCCCCC;
  --clr-mono-03: #AAAAAA;
  --clr-mono-04: #888888;
  --clr-mono-05: #666666;
  --clr-mono-06: #444444;

  --clr-text-primary: #19191F;
  --clr-text-secondary: #7A7A81;
  --clr-text-placeholder: #CCCCCC;
  --clr-text-light: #E7E7E7;

  --clr-wht: #fff;
  --clr-blk: #000000;

  --transit-default: all .4s ease-out;



  --font-size-heading1: 4rem;
  --font-size-heading2: 3rem;
  --font-size-heading3: 2.5rem;
  --font-size-heading4: 2rem;
  --font-size-heading5: 1.5rem;
  --font-size-heading6: 1.25rem;

  --font-size-txt-lg: 1.125rem;
  --font-size-txt-md: 1rem;
  --font-size-txt-sm: .875rem;

  --font-wight-defalt: 400;
  --font-wight-heading: 500;
  --font-wight-bold: 700;
}



/* ##############################################################################

    DEFAULT

############################################################################## */
html {
  font-size: clamp(9px, 0.8333333333vw, 1rem);
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-padding-top: 5rem;
}
html.fixed {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body {
  font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--clr-text-primary);
  background-color: var(--clr-wht);
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.8;
  word-break: break-word;
  position: relative;
  overflow-x: clip;
  font-size: var(--font-size-txt-md);
  padding-top: 11.25rem !important;
}
* { letter-spacing: .03em; }
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
ul,
ol { list-style: none; }
a {
  color: var(--clr-text-primary);
  text-decoration: none;
  transition: all .4s ease-out;
  outline : none;
  cursor: pointer;
}
a:hover {
  color: var(--clr-primary-default);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  transition: all .4s ease-out;
}
iframe { vertical-align: bottom; }

@media screen and (min-width: 768px) and (max-width: 1080px) {
  body {
    min-width: 1080px;
  }
}
@media screen and (min-width: 768px) {
  a { 
    -webkit-tap-highlight-color:rgba(0, 0, 0, 0); 
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(3.3816425121vw, 0.875rem);
    scroll-padding-top: 4rem;
  }
  body {
    -webkit-text-size-adjust: none;
    font-size: 1rem;
    padding-top: 5.714rem!important;
  }
}
select, textarea, [type="text"], [type="password"], [type="datetime"], [type="datetime-local"], [type="date"], [type="month"], [type="time"], [type="week"], [type="number"], [type="email"], [type="url"], [type="search"], [type="tel"], [type="color"], .uneditable-input {
  height: 3rem;
  font-size: .875rem;
  padding: .75rem 1rem;
  border-radius: .25rem;
  border: 1px solid var(--clr-text-placeholder);
  background: var(--clr-wht);
}
input,
select {
  -webkit-appearance: none;
  appearance: none;
}


/* ##############################################################################

  COMMON

############################################################################## */

/* inner
**************************************** */
.inner {
  width: 90%;
  max-width: 75rem; /* 1200 */
  margin-left: auto;
  margin-right: auto;
}
.inner-xs {
  max-width: 52.5rem; /* 840 */
}
.inner-sm {
  max-width: 70rem;  /* 1120 */
}
.inner-md {
  max-width: 90rem; /* 1440 */
}
.inner-lg {
  max-width: 100rem;  /* 1600 */
}
.inner-xl {
  max-width: 110rem; /* 1760 */
}
@media screen and (max-width: 767px) {
  .inner {
    width: 88%;
  }
}

/* section_pdg
**************************************** */
.section_pdg {
padding-block: 7.5rem;
}
.section_pdg-top {
padding-top: 7.5rem;
}
.section_pdg-btm {
padding-bottom: 7.5rem;
}

/* section_pdg-sm
**************************************** */
.section_pdg-sm {
  padding-block: 5rem;
}
.section_pdg-sm-top {
  padding-top: 5rem;
}
.section_pdg-sm-btm {
padding-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .section_pdg {
    padding-block: 4rem;
  }
  .section_pdg-top {
    padding-top: 4rem;
  }
  .section_pdg-btm {
    padding-bottom: 4rem;
  }
  .section_pdg-sm {
    padding-block: 3rem;
  }
  .section_pdg-sm-top {
    padding-top: 3rem;
  }
  .section_pdg-sm-btm {
    padding-bottom: 3rem;
  }
}


/* ttl
**************************************** */
.ttl-01,
.ttl-02,
.ttl-03,
.ttl-04,
.ttl-05,
.ttl-06 {
  position: relative;
  letter-spacing: 0.03em;
}
.ttl-01:not([class*=mgn-btm]):not(:last-child) {
  margin-bottom: 3.5rem;
}
.ttl-02:not([class*=mgn-btm]):not(:last-child),
.ttl-03:not([class*=mgn-btm]):not(:last-child),
.ttl-04:not([class*=mgn-btm]):not(:last-child),
.ttl-05:not([class*=mgn-btm]):not(:last-child),
.ttl-06:not([class*=mgn-btm]):not(:last-child) {
  margin-bottom: 1em;
}
.ttl-01 span,
.ttl-02 span,
.ttl-03 span,
.ttl-04 span,
.ttl-05 span,
.ttl-06 span {
  line-height: inherit;
  letter-spacing: inherit;
}

.ttl-01 {
  font-size: var(--font-size-heading3);
  font-weight: var(--font-wight-heading);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    left: 0;
    width: .625rem;
    height: 100%;
    border-left: .625rem solid var(--clr-text-placeholder);
  }
}
@media screen and (max-width: 767px) {
.ttl-01 {
  font-size: 1.5714rem;
  margin-bottom: 1rem;
  &::before {
    width: .35rem;
    border-left: .35rem solid var(--clr-text-placeholder);
  }
}
}
.ttl-01 .subtitle {
margin-top: 1rem;
}
@media screen and (max-width: 767px) {
.ttl-01 .subtitle {
  margin-top: 0.5714285714rem;
}
}
.ttl-01.clr-wht .subtitle {
color: var(--clr-wht);
}
.ttl-01.clr-wht .subtitle::after {
background-color: var(--clr-wht);
}

.ttl-02 {
  font-size: var(--font-size-heading2);
  line-height: 1.6;
  font-weight: var(--font-wight-heading);
  .en {
    font-size: var(--font-size-txt-md);
    color: var(--clr-primary-default);
    font-weight: 700;
    line-height: 1.6;
    margin-top: .625rem;
  }
}
@media screen and (max-width: 767px) {
  .ttl-02 {
    font-size: 1.7142857143rem;
  }
}


.ttl-03 {
  font-size: var(--font-size-heading3);
  font-weight: 400;
  .en {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
.ttl-03 {
  font-size: 1.7142857143rem;
}
}

.ttl-04 {
  font-size: var(--font-size-heading4);
  font-weight: 400;
  .en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
.ttl-04 {
  font-size: 1.4285714286rem;
}
}
.ttl-04.font-en {
font-size: 2rem;
}
@media screen and (max-width: 767px) {
.ttl-04.font-en {
  font-size: 1.4285714286rem;
}
}

.ttl-05 {
  font-size: var(--font-size-heading5);
}
@media screen and (max-width: 767px) {
.ttl-05 {
  font-size: 1.0714285714rem;
}
}
.ttl-05.font-en {
font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
.ttl-05.font-en {
  font-size: 1.2857142857rem;
}
}

.ttl-06 {
font-size: max(18px, 1.25rem);
}
@media screen and (max-width: 767px) {
.ttl-06 {
  font-size: 1.1428571429rem;
}
}
.ttl-06.font-en {
font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
.ttl-06.font-en {
  font-size: 1.2857142857rem;
}
}

.ttl-dash {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  &::before,
  &::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    border-top: 1px dashed var(--clr-primary-light);
    flex: 1;
  }
}
.ttl-underline {
  text-decoration: underline; 
  text-underline-offset: 0.5rem;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--clr-text-secondary);
}
.ttl-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  &::before,
  &::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 3.5rem;
    border-left: 2px dotted var(--clr-primary-default);
  }
  &::before {
    transform: rotate(-30deg);
  }
  &::after {
    transform: rotate(30deg);
  }
}
.txt-line {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--clr-primary-default);
}

@media screen and (max-width: 767px) {
  .ttl-line {
    gap: 1rem;
  }
}

/* subtitle
********************************************** */
.subtitle,
.subtitle-sm {
letter-spacing: 0.03em !important;
}

.subtitle {
display: block;
color: var(--clr-primary-default);
font-size: max(16px, 1.125rem);
}
@media screen and (max-width: 767px) {
.subtitle {
  font-size: 1.1428571429rem;
}
}

/* breadcrumbs
**************************************** */
.breadcrumbs {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  font-size: .813rem; /* 13px */
}
.breadcrumbs + .breadcrumbs {
  margin-top: 1rem;
}
.breadcrumbs a {
  text-decoration: underline;
  &:hover {
    color: var(--clr-primary-default);
    opacity: 1;
  }
}
.breadcrumbs a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.4375rem;
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  background-color: var(--clr-text-placeholder);
  margin: 0.15em 0.5em 0.15em 1em;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* .color
*************************************************** */

.clr-primary-default,
.clr-primary-default * { color: var(--clr-primary-default); }  
.clr-primary-dark,
.clr-primary-dark * { color: var(--clr-primary-dark); }
.clr-primary-light,
.clr-primary-light * { color: var(--clr-primary-light); }
.clr-secondary-default,
.clr-secondary-default * { color: var(--clr-secondary-default); }
.clr-secondary-dark,
.clr-secondary-dark * { color: var(--clr-secondary-dark); }
.clr-secondary-light,
.clr-secondary-light * { color: var(--clr-secondary-light); }  
.clr-bg-01,
.clr-bg-01 * { color: var(--clr-bg-01); }  
.clr-bg-02,
.clr-bg-02 * { color: var(--clr-bg-02); }  
.clr-sub-01,
.clr-sub-01 * { color: var(--clr-sub-01); }  
.clr-sub-02,
.clr-sub-02 * { color: var(--clr-sub-02); }  
.clr-sub-03,
.clr-sub-03 * { color: var(--clr-sub-03); }  
.clr-sub-04,
.clr-sub-04 * { color: var(--clr-sub-04); }  
.clr-sub-05,
.clr-sub-05 * { color: var(--clr-sub-05); }  
.clr-sub-06,
.clr-sub-06 * { color: var(--clr-sub-06); }  
.clr-mono-01,
.clr-mono-01 * { color: var(--clr-mono-01); }  
.clr-mono-02,
.clr-mono-02 * { color: var(--clr-mono-02); }  
.clr-mono-03,
.clr-mono-03 * { color: var(--clr-mono-03); }  
.clr-mono-04,
.clr-mono-04 * { color: var(--clr-mono-04); }  
.clr-mono-05,
.clr-mono-05 * { color: var(--clr-mono-05); }  
.clr-mono-06,
.clr-mono-06 * { color: var(--clr-mono-06); }  
.clr-text-primary,
.clr-text-primary * { color: var(--clr-text-primary); }  
.clr-text-secondary,
.clr-text-secondary * { color: var(--clr-text-secondary); }  
.clr-text-placeholder,
.clr-text-placeholder * { color: var(--clr-text-placeholder); }  
.clr-text-light,
.clr-text-light * { color: var(--clr-text-light); }  
.clr-wht,
.clr-wht * { color: var(--clr-wht); }  
.clr-blk,
.clr-blk * { color: var(--clr-blk); }

.bg-primary-default { background-color: var(--clr-primary-default); }
.bg-primary-dark { background-color: var(--clr-primary-dark); }
.bg-primary-light { background-color: var(--clr-primary-light); }
.bg-secondary-default { background-color: var(--clr-secondary-default); }
.bg-secondary-dark { background-color: var(--clr-secondary-dark); }
.bg-secondary-light { background-color: var(--clr-secondary-light); }
.bg-bg-01 { background-color: var(--clr-bg-01); }
.bg-bg-02 { background-color: var(--clr-bg-02); }
.bg-sub-01 { background-color: var(--clr-sub-01); }
.bg-sub-02 { background-color: var(--clr-sub-02); }
.bg-sub-03 { background-color: var(--clr-sub-03); }
.bg-sub-04 { background-color: var(--clr-sub-04); }
.bg-sub-05 { background-color: var(--clr-sub-05); }
.bg-sub-06 { background-color: var(--clr-sub-06); }
.bg-mono-01 { background-color: var(--clr-mono-01); }
.bg-mono-02 { background-color: var(--clr-mono-02); }
.bg-mono-03 { background-color: var(--clr-mono-03); }
.bg-mono-04 { background-color: var(--clr-mono-04); }
.bg-mono-05 { background-color: var(--clr-mono-05); }
.bg-mono-06 { background-color: var(--clr-mono-06); }
.bg-text-primary { background-color: var(--clr-text-primary); }
.bg-text-secondary { background-color: var(--clr-text-secondary); }
.bg-text-placeholder { background-color: var(--clr-text-placeholder); }
.bg-text-light { background-color: var(--clr-text-light); }
.bg-wht { background-color: var(--clr-wht); }
.bg-blk { background-color: var(--clr-blk); }
.bg-01 { background-color: var(--clr-bg-01); }
.bg-02 { background-color: var(--clr-bg-02); }
.bg-ptn-01 { background-image: url(../images/common/ptn01.png); }
.bg-ptn-02 { background-image: url(../images/common/ptn02.png); }

/* font
**************************************** */
.bold {
  font-weight: 700;
}
.font-jp,
.font-jp-md,
.font-jp-sb,
.font-jp-b {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.font-jp-md {
  font-weight: 500;
}
.font-jp-sb {
  font-weight: 600;
}
.font-jp-b {
  font-weight: 700;
}
.font-en,
.font-en-b {
  font-family: "Montserrat", serif;
  font-weight: 500;
}
.font-en-b {
  font-weight: 700;
}


/* btn
********************************************** */
.btn {
  border: 0;
  background-color: transparent;
  display: inline-block;
  display: block;
  padding: 0;
}
.btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] {
  background-color: transparent;
}
.btn a {
  position: relative;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: .25rem;
  width: fit-content;
  min-width: min(15.25rem, 100%);
  color: var(--clr-text-primary);
  font-weight: 700;
  background-color: transparent;
  text-decoration: none;
  border-radius: .25rem;
  border: 1px solid var(--clr-primary-default);
}
.btn-lg a {
  width: 100%;
}
.arrow {
  width: 1.625rem;
  height: 1.625rem;
  background-color: var(--clr-text-light);
  border-radius: 50%;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  &::before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid var(--clr-text-primary);
    border-right: 2px solid var(--clr-text-primary);
    rotate: 45deg;
    transition: var(--transit-default);
  }
}
.btn a:hover {
  background-color: var(--clr-primary-default);
  color: var(--clr-wht);
}
.btn-arrow a {
  position: relative;
  padding-right: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.375rem;
  &::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid var(--clr-primary-default);
    border-right: 2px solid var(--clr-primary-default);
    rotate: 45deg;
    transition: var(--transit-default);
  }
}
.btn-arrow a:hover {
  &::after {
    border-top-color: var(--clr-wht);
    border-right-color: var(--clr-wht);
  }
}
.btn.btn-ctr a {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {

}

/* --- btn-wh --- */
.btn-wh a {
  color: var(--clr-wht);
  border: 1px solid var(--clr-wht);
}
.btn-wh a:hover {
  color: var(--clr-primary-default);
  background-color:var(--clr-wht);
}
.btn-wh a svg {
  fill: var(--clr-primary-default);
}
.btn-wh a:hover svg {
  fill: var(--clr-wht);
}
.btn-arrow.btn-wh a {
  &::after {
    border-top: 2px solid var(--clr-wht);
    border-right: 2px solid var(--clr-wht);
  }
  &:hover {
    &::after {
      border-top: 2px solid var(--clr-primary-default);
      border-right: 2px solid var(--clr-primary-default);
    }
  }
}

/* --- btn-blue --- */
.btn-blue a {
  background-color: var(--clr-primary-default);
  color: var(--clr-wht);
}
.btn-blue a:hover {
  background-color: var(--clr-wht);
  color: var(--clr-primary-default);
}
.btn-arrow.btn-blue a {
  &::after {
    border-top: 2px solid var(--clr-wht);
    border-right: 2px solid var(--clr-wht);
  }
  &:hover {
    &::after {
      border-top: 2px solid var(--clr-primary-default);
      border-right: 2px solid var(--clr-primary-default);
    }
  }
}

/* --- btn-dark --- */
.btn-dark a {
  background-color: var(--clr-sub-04);
  color: var(--clr-wht);
}
.btn-dark a:hover {
  background-color: var(--clr-wht);
  color: var(--clr-sub-04);
}
.btn-arrow.btn-dark a {
  &::after {
    border-top: 2px solid var(--clr-wht);
    border-right: 2px solid var(--clr-wht);
  }
  &:hover {
    &::after {
      border-top: 2px solid var(--clr-sub-04);
      border-right: 2px solid var(--clr-sub-04);
    }
  }
}

/* --- btn-cta --- */
.btn-cta a {
  background-color: var(--clr-secondary-default);
}
.btn-cta a:hover {
  background-color: var(--clr-secondary-dark);
}

/* box
********************************************** */
.box {
  border-radius: .25rem;
  padding: .75rem 1rem;
  background-color: var(--clr-bg-01);
}
.box-lg {
  border-radius: .5rem;
  padding: 2rem;
  background-color: var(--clr-bg-01);
}
.box-white {
  background-color: var(--clr-wht);
  border-radius: .5rem;
  padding: 2rem 3.5rem 2.5rem;
}
.box-blue {
  border-radius: .25rem;
  padding: 1.5rem 2rem;
  background-color: var(--clr-primary-default);
}
.box-l-blue {
  background-color: var(--clr-bg-blue01);
}
@media screen and (max-width: 767px) {
  .box-lg {
    padding: 1.5rem;
  }
  .box-white {
    padding: 1.5rem;
  }
}

/* table
********************************************** */
table th,
table td {
  vertical-align: middle;
}
.table01 {
  width: 100%;
}
.table01 th {
  background-color: var(--clr-bg-blue02);
  color: var(--clr-sub-04);
  text-align: center;
  font-weight: 700;
  padding: 1rem;
  border: 1px solid var(--clr-mono-02);
}
.table01 td {
  background-color: var(--clr-wht);
  padding: 1rem;
  border: 1px solid var(--clr-mono-02);
}

@media screen and (max-width: 767px) {
  .table-sp-block,
  .table-sp-block th,
  .table-sp-block td {
    width: 100% !important;
  }
  .table-sp-block th,
  .table-sp-block td {
    display: block;
  }
  .table-sp-block th {
    padding: .5rem 1rem .5rem;
  }
  .table-sp-scroll {
    min-width: 70rem;
  }
  .table-sp-scroll,
  .table-sp-scroll th,
  .table-sp-scroll td {
    width: auto!important;
  }

  .table-sp-scroll th,
  .table-sp-scroll td {
    display: table-cell;
  }
  .table01 th {
    padding: .5rem .75rem .5rem;
  }
  .table01 td {
    padding: .75rem;
  }
}
/* table scroll wrapper */
.scroll {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

/* ul
********************************************** */
ul.list > li {
  position: relative;
  padding-left: 1.25rem;
  padding: .5rem 0 .5rem 1.25rem;
  &::before {
    content: "";
    position: absolute;
    top: 1.05rem;
    left: 0;
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    background-color: var(--clr-primary-default);
  }
}
ul.list-sm > li {
  padding-left: 1rem;
  padding: .2rem 0 .2rem 1rem;
  line-height: 1.25;
  &::before {
    top: .65rem;
    width: .5rem;
    height: .5rem;
  }
}
ol.list-num {
  counter-reset: cnt;
  padding-left: 2rem;
  > li {
    counter-increment: cnt;
    text-indent: -2rem;
    line-height: 1.5;
    padding: .5rem 0 .5rem 1rem;
    &::before {
      content: counter(cnt, decimal-leading-zero) ".";
      color: var(--clr-primary-default);
      margin-right: 0.3em;
      letter-spacing: 0;
      font-weight: 700;
    }
    ul li {
      text-indent: 0;
    }    
  }
}
/* --- toggle_list --- */
.toggle_list {
  padding: 0 1rem;
  border-top: 1px solid rgba(0, 0, 0, .1);
  &:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  dt {
    position: relative;
    padding: 1rem 0;
    padding-right: 2.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .4s ease-out;
    &::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      right: 1rem;
      width: .5rem;
      min-width: 0;
      aspect-ratio: 1 / 1;
      border-top: 2px solid;
      border-right: 2px solid;
      color: var(--clr-text-secondary);
      rotate: 135deg;
      pointer-events: none;
      transition: all .4s ease-out;
    }
    &.active::before {
      rotate: -45deg;
    }
    &:hover {
      color: var(--clr-primary-default);
    }
  }
  dd {
    display: none;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background-color: var(--clr-wht);
  }
}
@media screen and (max-width: 767px) {
  .toggle_list {
    padding: 0;
  }
}

/* --- flow_list --- */
.flow_list {
  position: relative;
  counter-increment: number;
  margin-inline-start: 3.5rem;
  > .ttl {
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.25rem; /* 20px */
    line-height: 1.7;
    letter-spacing: .03em;
  }
  > .ttl::before {
    content: counter(number);
    position: absolute;
    top: 0;
    left: -3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 2.75em;
    min-width: 0;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    font-size: 70%;
    color: var(--clr-wht);
    background-color: var(--clr-primary-default);
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
  }
  &:not(:last-child) {
    padding-bottom: 2.5rem;
  }
  &:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3rem;
    left: -2.3rem;
    bottom: .5rem;
    display: block;
    border-right: 1px solid var(--clr-mono-03);
  }
}


/* ##############################################################################

  HEADER

############################################################################## */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: var(--transit-default);
}
/* products_menuがopenのとき、bodyの擬似要素でヘッダー下〜画面下にグレーオーバーレイ */
body.has-products_menu-open::before {
  content: "";
  position: fixed;
  top: 11.125rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
}
.header_top {
  background-color: var(--clr-primary-dark);
  color: var(--clr-wht);
  padding: 0.5rem 0;
  font-size: var(--font-size-txt-sm);
}
.header_top a {
  color: var(--clr-wht);
  text-decoration: underline;
  margin-left: .625rem;
  display: inline-block;
}
.header_mdl {
  padding-left: 2rem;
  padding: .5rem 0 .5rem 2rem;
  background-color: var(--clr-wht);
  border-bottom: 1px solid var(--clr-text-light);
}
.header--logo .catch {
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--clr-mono-04);
}
.header--logo .txt {
  font-size: 1.25rem;
  line-height: 1;
  padding-bottom: .25rem;
}
.header_mdl--rgt .subnav--menu {
  padding-right: 1.5rem;
}
.header_mdl--rgt .subnav--menu a {
  padding-right: 2rem;
  display: flex;
  align-items: center;
  gap: .375rem;
}

.header--cta li {
  padding: .25rem 1rem;
  border-left: 1px solid var(--clr-mono-02);
}
.header--cta--item .num {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}
.header--cta--item .txt {
  font-size: .6875rem;
}
.header_btm {
  background: var(--clr-bg-blue01);
  position: relative;
}
.header--cta--btn a {
  font-size: var(--font-size-txt-sm);
  line-height: 2.5rem;
  border-radius: .25rem;
  border: 1px solid var(--clr-mono-02);
  background: var(--clr-wht);
  padding: 0 1rem;
  font-weight: 700;
}

.gnav--menu li {
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: .5rem;
    left: 0;
    width: 1px;
    height: calc(100% - 1rem);
    background-color: rgba(118, 153, 255, 0.5);
  }
  &:last-child::after {
    content: "";
    position: absolute;
    top: .5rem;
    right: 0;
    width: 1px;
    height: calc(100% - 1rem);
    background-color: rgba(118, 153, 255, 0.5);
  }
  a {
    display: inline-block;
  }
}
.gnav--item {
  line-height: 3rem;
  padding: .5rem 2rem;
}
.gnav--toggle {
  cursor: pointer;
  position: relative;
  &::after {
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    min-width: 0;
    aspect-ratio: 1 / 1;
    transition: all .4s ease-out;
    right: 2rem;
    width: .5rem;
    border-bottom: 2px solid var(--clr-primary-light);
    border-right: 2px solid var(--clr-primary-light);
    rotate: 45deg;
    margin-left: 1rem;
  }
}
.gnav--mem {
  padding-left: 2.5rem;
}
.gnav--login a {
  display: inline-flex;
  align-items: center;
  height: 3rem;
  gap: .5rem;
  color: var(--clr-wht);
  font-size: var(--font-size-txt-sm);
  background-color: var(--clr-primary-default);
  padding: .5rem 1.5rem .5rem 1rem;
  border-radius: .25rem;
  &:hover {
    opacity: 0.8;
  }
}
.gnav--logout a {
  display: inline-flex;
  align-items: center;
  height: 3rem;
  gap: .5rem;
  color: var(--clr-wht);
  font-size: var(--font-size-txt-sm);
  background-color: var(--clr-mono-03);
  padding: .5rem 1.5rem .5rem 1rem;
  border-radius: .25rem;
  &:hover {
    opacity: 0.8;
  }
}
.gnav--cart a {
  position: relative;
  background-color: var(--clr-sub-04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: .25rem;
  width: 3rem;
  height: 3rem;
  .num {
    position: absolute;
    top: -0.375rem;
    right: -0.375rem;
    border-radius: 50%;
    border: 2px solid var(--clr-wht);
    background: var(--clr-secondary-dark);
    color: var(--clr-wht);
    width: 1.25rem;
    height: 1.25rem;
    font-size: .75rem;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.products_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  max-height: calc(100vh - 11.125rem);
  overflow-y: scroll;
  background-color: var(--clr-wht);
  padding: 1.5rem;
  z-index: 9999;
}
.products_menu.is-open {
  display: block;
}
.products_menu--inner {
  max-width: 93.75rem;
  margin: 0 auto;
}
.products_menu .cat--ttl {
  font-weight: 700;
  line-height: 1.625rem;
  color: var(--clr-sub-04);
  margin-bottom: .75rem;
  background-color: var(--clr-bg-blue01);
  padding: 0 .5rem;
}
.products_menu .cat_wrap > ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-bottom: 1.5rem;
}
.products_menu .cat--item > a {
  position: relative;
  padding: .75rem .5rem;
  border-bottom: 1px solid var(--clr-text-placeholder);
  margin-bottom: .75rem;
  transition: all .4s ease-out;
  &::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    min-width: 0;
    aspect-ratio: 1 / 1;
    transition: all .4s ease-out;
    right: 1rem;
    width: .5rem;
    border-bottom: 2px solid var(--clr-text-placeholder);
    border-right: 2px solid var(--clr-text-placeholder);
    rotate: 45deg;
    margin-left: 1rem;
  }
  &:hover {
    border-bottom: 2px solid var(--clr-primary-light);
    transition: all .4s ease-out;
    &::after {
      border-bottom-color: var(--clr-primary-light);
      border-right-color: var(--clr-primary-light);
      transition: all .4s ease-out;
    }
  }
}
.products_menu .cat--item.is-open {
  & > a::after {
    rotate: -135deg;
  }
  & > a {
    border-bottom: 2px solid var(--clr-primary-light);
  }
} 
.products_menu .products {
  display: none;
  padding: .5rem 1rem;
}
.products_menu .cat--item.is-open > .products {
  display: block;
}
.products_menu .product--item a {
  line-height: 1.8;
  padding: .25rem .25rem .25rem 1.25rem;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    width: .5rem;
    height: 2px;
    border-bottom: 2px solid var(--clr-primary-light);
  }

}
.products_menu--close {
  text-align: center;
  padding: .75rem 0 1rem;
}
.products_menu--close_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border-radius: .25rem;
  background: var(--clr-wht);
  border: 1px solid var(--clr-text-placeholder);
  font-weight: 700;
  line-height: 1.8;
}
.products_menu--close_btn .icn {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  position: relative;
  background-color: var(--clr-primary-light);
  border-radius: .125rem;
}
.products_menu--close_btn .icn::before,
.products_menu--close_btn .icn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: .75rem;
  height: 0;
  border-top: 2px solid var(--clr-wht);
}
.products_menu--close_btn .icn::before { transform: rotate(45deg); }
.products_menu--close_btn .icn::after { transform: rotate(-45deg); }
.products_menu--close_btn:hover {
  background: var(--clr-primary-default);
  color: var(--clr-wht);
}
.products_menu--close_btn:hover .icn::before,
.products_menu--close_btn:hover .icn::after {
  border-top-color: var(--clr-wht);
}
@media screen and (max-width: 767px) {
  .header_top {
    font-size: .64285rem;
    padding: .25rem 0;
    height: 1.75rem;
  }
  .header_mdl {
    padding: .5rem 0 .5rem 1.25rem;
    height: 4rem;
  }
  .header_mdl--rgt {
    display: none;
  }
  .header--logo {
    width: 10rem;
  }
  .header--logo .catch {
    display: none;
  }
  .header--logo .txt {
    font-size: 1rem;
    padding-bottom: 0;
  }
  .header_btm .gnav {
    display: none;
  }
  .gnav--mem {
    position: fixed;
    top: 2.25rem;
    right: 5rem;
  }
  .gnav--login a,
  .gnav--logout a {
    padding: .5rem .75rem;
  }
  .gnav_sp {
    position: fixed;
    top: 5.75rem;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: calc(100% - 5.75rem);
    margin: 0;
    padding: 1.5rem 7%;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    background-color: var(--clr-bg-01);
    -webkit-overflow-scrolling: touch;
    transition: all .4s ease-out;;
  }
  .gnav_sp.active {
    opacity: 1;
    pointer-events: auto;
  }
  .gnav--menu li {
    &::before {
      top: 0;
      height: 1px;
      width: 100%;
    }
    &:last-child::after {
      top: auto;
      bottom: 0;
      width: 100%;
      height: 1px;
    }
  }
  .subnav {
    padding: 1rem;
    margin-top: 1rem;
  }
  .products_menu .cat_wrap > ul {
    grid-template-columns: 1fr;
  }
  /* スマホ時はヘッダー高さに合わせてオーバーレイの開始位置を調整 */
  body.has-products_menu-open::before {
    top: 5.75rem;
  }
}
/* ---btn --- */
@media print, screen and (min-width: 1081px) {
  .gnav_btn {
    display: none;
  }
  .gnav_sp {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .gnav_btn {
    position: fixed;
    top: 1.8rem;
    right: 0;
    width: calc(4rem - 5px);
    height: calc(4rem - 5px);
    cursor: pointer;
    z-index: 9998;
    transition: all .4s ease-out;;
  }
  .gnav_btn--lines {
    position: relative;
    width: 1.7142857143rem;
    height: 1.1428571429rem;
  }
  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #404044;
    transition: all .4s ease-out;;
  }
  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }
  .active .gnav_btn--lines span:nth-of-type(1) {
    transform: translateY(0.5rem) rotate(-45deg);
  }
  .active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }
  .active .gnav_btn--lines span:nth-of-type(3) {
    transform: translateY(-0.5rem) rotate(45deg);
  }
}

/* ##############################################################################

  footer上共通

############################################################################## */
.footer_information .information--items{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.information--item {
  border-radius: .5rem;
  background: var(--clr-bg-01);
  padding: 2.5rem 2.625rem;
}
.information--item .btn a {
  width: 100%;
}
.footer_company {
  background-color: var(--clr-wht);
  padding: 3rem 3.5rem 3.625rem;
  border-radius: .5rem;
}
.footer_company .company--cont {
  text-align: center;
  margin-bottom: 2rem;
}
.footer_news {
  background-color: var(--clr-wht);
  padding: 3rem 3.5rem 3.625rem;
  border-radius: .5rem;
}
.footer_news .post--link {
  font-size: var(--font-size-txt-sm);
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 1rem .5rem;
  border-bottom: 1px solid var(--clr-bg-blue02);
}
.footer_news .post--ttl {
  font-weight: 400;
}
.footer_news .post--date {
  color: var(--clr-text-secondary);
}
.footer_cta {
  background-color: var(--clr-primary-dark);
  color: var(--clr-wht);
  display: grid;
  grid-template-columns: 1fr 55rem;
}
.footer_cta .txtarea {
  padding: 6.25rem 8.5rem;
}
.footer_cta .btnarea {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.footer_cta .btn a {
  width: 100%;
  background-color: var(--clr-wht);
  border-radius: .25rem;
  height: 5.125rem;
  font-size: var(--font-size-txt-lg);
}
.footer_cta .tel_box {
  width: 100%;
  border: 1px solid var(--clr-wht);
  border-radius: .25rem;
  color: var(--clr-wht);
  height: 5.125rem;
}
.footer_cta .tel_box .num {
  font-size: var(--font-size-heading5);
  line-height: 1;
  color: var(--clr-wht);
  font-weight: 500;
  letter-spacing: 0;
}
.footer_cta .tel_box .txt {
  font-size: var(--font-size-txt-sm);
  line-height: 1;
  color: var(--clr-wht);
  font-weight: 400;
}
.footer_cta .cta--info .ttl {
  font-size: var(--font-size-txt-lg);
  font-weight: 700;
  line-height: 1.6;
  color: var(--clr-wht);
  margin-bottom: .75rem;
}
.footer_cta .cta--info a {
  color: var(--clr-wht);
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .footer_information .information--items{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer_company {
    padding: 2rem;
  }
  .footer--logo {
    margin-bottom: 1.5rem;
  }
  .footer_cta {
    grid-template-columns: 1fr;
  }
  .footer_cta .txtarea {
    padding: 3rem;
  }
  .footer_cta .btnarea {
    grid-template-columns: 1fr;
  }
}

/* ##############################################################################

  FOOTER

############################################################################## */

.footer--logo .txt {
  font-size: var(--font-size-txt-sm);
  line-height: 1.6;
  color: var(--clr-text-secondary);
}
.footer--info .company {
  color: var(--clr-text-secondary);
  font-size: var(--font-size-txt-sm);
  margin-right: .625rem;
}
.footer--info a {
  color: var(--clr-text-secondary);
  font-size: var(--font-size-txt-sm);
  border-radius: 2px;
  border: 1px solid var(--clr-text-secondary);
  height: 1.5rem;
  padding: 0 .5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  &::after {
    content: "";
    background-image: url("../images/common/arrow_outward.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 1rem;
    height: 1rem;
    transition: var(--transit-default);
  }
  &:hover::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}
.footer--info a:hover {
  background-color: var(--clr-text-secondary);
  color: var(--clr-wht);
}
.footer--mdl {
  margin: 3rem 0;
}
/* フッター中段：コンテンツは初期非表示、ボタンでトグル */
.footer--mdl--cont {
  display: none;
}
.footer--mdl--cont.is-open {
  display: block;
}
.footer--mdl--cont .cat--ttl {
  font-weight: 700;
  line-height: 1.625rem;
  color: var(--clr-sub-04);
  margin-bottom: .75rem;
  background-color: var(--clr-bg-blue01);
  padding: 0 .5rem;
}
.footer--mdl--btn.is-open .toggle_btn::after {
  transform: rotate(0deg);
}
.footer--mdl--btn {
  width: 100%;
  color: var(--clr-sub-04);
  background-color: var(--clr-wht);
  font-size: var(--font-size-txt-lg);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  padding: 1.75rem 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  &:hover {
    background-color: var(--clr-sub-04);
    color: var(--clr-wht);
  }
  &:hover .toggle_btn {
    background-color: var(--clr-wht);
    &::before,
    &::after {
      border-bottom-color: var(--clr-sub-04);
    }
  }
  .toggle_btn {
    width: 2rem;
    height: 2rem;
    background-color: var(--clr-sub-04);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    &::before,
    &::after {
      content: "";
      position: absolute;
      inset: 0;
      margin: auto;
      width: 0.75rem;
      height: 2px;
      border-bottom: 2px solid var(--clr-wht);
      transition: var(--transit-default);
    }
    &::after {
      transform: rotate(90deg);
    }
  }
}
.footer--nav {
  width: 35rem;
  ul {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 1.5rem;
  }
}
.footer--btm--subnav ul {
  gap: 1.5rem;
}
.footer--btm--subnav a {
  color: var(--clr-text-secondary);
  font-size: var(--font-size-txt-sm);
}
.copyright {
  font-size: var(--font-size-txt-sm);
  line-height: 1.6;
  color: var(--clr-text-secondary);
  gap: 1.5rem;
}

@media screen and (max-width: 767px) {
  .footer--nav ul {
    justify-content: center;
  }
  .footer--mdl--btn {
    margin: 1rem 0;
    padding: 1rem 0;
  }
  .footer--btm--subnav {
    margin-bottom: 1rem;
  }
  .footer--btm--subnav ul {
    gap: .25rem;
  }
  .copyright {
    gap: .5rem;
    justify-content: space-between;
  }
}

/* .pager
*************************************************** */
.pager {
  margin-top: 4rem;
}
.pager .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
}
.pager .pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  aspect-ratio: 1 / 1;
  min-width: 0;
  border-radius: 50%;
  background: var(--clr-wht);
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, .10);
  backdrop-filter: blur(.25rem);
}
.pager .pagination a:hover,
.pager .pagination a.active {
  opacity: 1;
  color: var(--clr-wht);
  background: var(--clr-sub-04);
}
.pager .pagination .pre a::before,
.pager .pagination .next a::before {
  content: "";
  width: .5rem;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-top: 2px solid;
  border-right: 2px solid;
  rotate: 45deg;
  transition: all .4s ease-out;
}
.pager .pagination .pre a::before { rotate: -135deg; }
.pager .pagination .all a {
  width: 8rem;
  height: 2.5rem;
  aspect-ratio: auto;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .pager {
    margin-top: 2rem;
  }
}



/* ##############################################################################

  INDEX

############################################################################## */
.hero--cont {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 52rem;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  padding: 4rem;
}
.hero--catch {
  margin-bottom: 1.5rem;
}
.hero--catch .sub {
  font-size: var(--font-size-heading4);
  margin-bottom: 1rem;
}
.hero--catch .sub span {
  color: var(--clr-wht);
  background: var(--clr-text-primary);
  border-radius: 999px;
  line-height: 1.6;
  padding: 0 2rem;
  margin-right: .625rem;
}
.hero--catch .main {
  font-size: var(--font-size-heading2);
  letter-spacing: .03em;
  line-height: 1.4;
}
.hero--items {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero--item {
  background-color: var(--clr-primary-dark);
  border-radius: 50%;
  color: var(--clr-wht);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  aspect-ratio: 1 / 1;
  width: 13.5rem;
}
.hero--item .ttl {
  font-size: 1.6875rem;
  line-height: 1.4;
}
.hero--item .txt {
  font-size: var(--font-size-txt-sm);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hero--cont {
    width: 94%;
    padding: 1.5rem 1rem 1rem;
    height: auto;
  }
  .hero--catch .sub {
    margin-bottom: .5rem;
    font-size: 1.5rem;
  }
  .hero--catch .sub span {
    padding: 0 1rem;
    margin-right: .5rem;
  }
  .hero--catch .main {
    font-size: 1.75rem;
  }
  .hero--items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  .hero--items .hero--item {
    width: 12rem;
    gap: .25rem;
  }
  .hero--item .ttl {
    font-size: 1.25rem;
  }
  .hero--items .hero--item:nth-of-type(3) {
    transform: translateY(-2rem);
  }
}


/* home_rank
********************************************** */
.home_rank .rank--item {
  width: 44rem;
  height: 23rem;
  border-radius: .5rem;
  font-size: var(--font-size-txt-sm);
  background: var(--clr-wht);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  overflow: hidden;
  margin: 0 1rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.home_rank .rank--items .slick-list {
  margin: 0 -0.5rem;
}
.home_rank .rank--items .slick-prev,
.home_rank .rank--items .slick-next {
  width: 2.5rem;
  height: 2.5rem;
  z-index: 2;
  background-color: var(--clr-wht);
  position: absolute;
  bottom: -.75rem;
}
.home_rank .rank--items .slick-prev {
  left: 44%;
  transform: rotate(-135deg);
}
.home_rank .rank--items .slick-next {
  right: 44%;
  transform: rotate(45deg);
}
.home_rank .rank--items .slick-prev::before,
.home_rank .rank--items .slick-next::before {
  color: var(--clr-primary-default);
  font-size: 1.5rem;
  line-height: 1;
}
.home_rank .rank--items .slick-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}
.home_rank .rank--items .slick-dots li {
  button {
    width: .5rem;
    min-width: 0;
    aspect-ratio: 1 / 1;
    padding: 0;
    font-size: 0;
    background-color:rgba(49, 99, 246, 0.5);
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0;
    border-radius: 50%;
  }
  &.slick-active button {
    background-color: var(--clr-primary-default);
  }
}
.home_rank .rank--items .slick-arrow {
  background-color: var(--clr-wht);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  &::before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid var(--clr-text-secondary);
    border-right: 2px solid var(--clr-text-secondary);
  }
  &:hover {
    background-color: var(--clr-text-secondary);
    &::before {
      border-top-color: var(--clr-wht);
      border-right-color: var(--clr-wht);
    }
  }
}
.rank--item--cont {
  display: grid;
  grid-template-columns: 1fr 18.5rem;
  align-items: center;
}
.home_rank .rank--item--ttl .num {
  font-size: var(--font-size-heading4);
  line-height: 1.7;
  color: var(--clr-primary-dark);
  margin-right: .625rem;
}
.rank--item--cont .txtarea {
  padding: 2rem;
}
.rank--item .btnarea {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .125rem;
}
.rank--item .btnarea .btn a {
  width: 100%;
  border-radius: 0;
}
.rank--item .btnarea .btn:first-child a {
  border-radius: 0 0 0 .5rem;
  border: 1px solid var(--clr-primary-default);
}
.rank--item .btnarea .btn:last-child a {
  border-radius: 0 0 .5rem 0;
  border: 1px solid var(--clr-primary-default);
}
@media screen and (max-width: 767px) {
  .home_rank .rank--item {
    height: auto;
  }
  .rank--item--cont {
    grid-template-columns: 1fr;
  }
  .rank--item--cont .txtarea {
    padding: 1rem 1.5rem;
  }
  .rank--item--cont .imgarea {
    width: 80%;
    margin: 0 auto;
  }
  .rank--item .btnarea .btn a {
    padding: 1rem;
  }
  .home_rank .rank--items .slick-prev {
    left: 26%;
  }
  .home_rank .rank--items .slick-next {
    right: 26%;
  }
}
/* recommend
*************************************************** */
.recommend--wrap {
  padding-bottom: 3rem;
}
.recommend--items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.recommend--item {
  position: relative;
}
.recommend--item .imgarea {
  position: relative;
  overflow: hidden;
}
.recommend--item .imgarea .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recommend--item:hover .imgarea .img {
  transform: scale(1.1);
}
.recommend--item .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .recommend--items {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
/* home_banner
*************************************************** */
.home_banner {
  position: relative;
}
.home_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: var(--clr-primary-dark);
}
.home_banner .ttl-04 {
  line-height: 1.6;
}
.home_banner--wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid var(--clr-mono-02);
  border-radius: .5rem;
  border: 3px solid var(--clr-primary-dark);
  background: var(--clr-wht);
  position: relative;
}
.home_banner--wrap .txtarea {
  padding: 0 4.5rem;
}
.home_banner .txt {
  margin-bottom: 1.5rem;
}
.home_banner--wrap .img01 {
  left: 35%;
  bottom: -10%;
}
.home_banner--wrap .img02 {
  right: -10%;
  top: -10%;
}
@media screen and (max-width: 767px) {
  .home_banner--wrap {
    grid-template-columns: 1fr;
  }
  .home_banner--wrap .txtarea {
    padding: 2rem 1.5rem;
  }
  .home_banner--wrap .img01 {
    left: -20%;
    bottom: -19%;
  }
  .home_banner--wrap .img02 {
    right: -19%;
    top: -22%;
  }
}
/* home_table
*************************************************** */
/* .home_table--cont {
  margin-bottom: 7.375rem;
} */
.home_table--tabs {
  display: flex;
  margin: 0 auto 5rem;
  height: 5rem;
  position: relative;
}
.home_table--tabs::before,
.home_table--tabs::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 3px;
  border-bottom: 3px solid var(--clr-primary-dark);
  position: absolute;
  bottom: 0;
}
.home_table--tabs::before {
  left: -1.5rem;
}
.home_table--tabs::after {
  right: -1.5rem;
}
.home_table--tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 4.5rem;
  position: absolute;
  bottom: 0;
  gap: .5rem;
  padding: 1rem;
  border-radius: .5rem .5rem 0 0;
  border: 1px solid transparent;
  color: var(--clr-wht);
  font-weight: 700;
  font-size: var(--font-size-heading5);
  transition: var(--transit-default);
  border-bottom: 3px solid var(--clr-primary-dark);
  background: var(--clr-primary-light);
  cursor: pointer;
}
.home_table--tab::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../images/top/icon-board.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.home_table--tab::after {
  content: "";
  min-width: 0;
  aspect-ratio: 1 / 1;
  transition: var(--transit-default);
  width: .6rem;
  border-bottom: 3px solid var(--clr-wht);
  border-right: 3px solid var(--clr-wht);
  rotate: 45deg;
  margin-left: 1rem;
  margin-bottom: .25rem;
}
.home_table--tab:first-of-type {
  left: 0;
  &::before {
    background-image: url(../images/top/icon-board.svg);
  }
}
.home_table--tab:last-of-type {
  right: 0;
  &::before {
    background-image: url(../images/top/icon-bar.svg);
  }
}
.home_table--tab:hover {
  background-color: var(--clr-primary-dark);
  height: 5rem;
}
.home_table--tab.is-active {
  background: var(--clr-wht);
  color: var(--clr-text-primary);
  height: 5rem;
  border: 3px solid var(--clr-primary-dark);
  border-bottom: none;
  &:first-of-type::before {
    background-image: url(../images/top/icon-board-blue.svg);
  }
  &:last-of-type::before {
    background-image: url(../images/top/icon-bar-blue.svg);
  }
  &::after {
    border-bottom-color: var(--clr-primary-default);
    border-right-color: var(--clr-primary-default);
  }
}
.home_table--panel {
  display: none;
}
.home_table--panel.is-active {
  display: block;
}
.home_table--panel .scroll {
  position: relative;
}
.home_table--panel:not(.is-open) .scroll::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--clr-wht) 70%);
  pointer-events: none;
}
.home_table--table {
  width: 100%;
  border-collapse: separate;
}
.home_table--table th {
  background-color: var(--clr-bg-blue02);
  color: var(--clr-sub-04);
  border: 1px solid var(--clr-mono-02);
  padding: .75em 1em;
  text-align: left;
  white-space: nowrap;
}
.home_table--table td {
  border: 1px solid var(--clr-mono-02);
  padding: .75em 1em;
  line-height: 1.6;
  background-color: var(--clr-wht);
}
.home_table--table thead th {
  text-align: center;
  &:first-of-type {
    border-radius: .5rem 0 0 0;
  }
  &:nth-of-type(2) {
    width: 15.625rem;
  }
  &:last-of-type {
    border-radius: 0 .5rem 0 0;
  }
}
.home_table--table tbody th {
  text-align: left;
  background-color: var(--clr-wht);
  color: var(--clr-text-primary);
}
.home_table--table tbody td.name {
  width: 15.625rem;
  img {
    width: 2.5rem;
  }
  span {
    color: var(--clr-primary-dark);
    border-bottom: 1px solid var(--clr-primary-dark);
    font-weight: 700;
  }
  a:hover {
    span {
      color: var(--clr-text-primary);
      border-bottom: 0;
    }
  }
}
.home_table--table tbody tr:last-of-type {
  th:first-of-type {
    border-radius: 0 0 0 .5rem;
  }
  td:last-of-type {
    border-radius: 0 0 .5rem 0;
  }
}
.home_table--toggle {
  margin-top: 1rem;
  text-align: center;
}
.home_table--toggle a {
  line-height: 3rem;
  border-radius: 999px;
  background: var(--clr-sub-04);
  color: var(--clr-wht);
  padding: 0 2.5rem;
  text-align: left;
  font-weight: 700;
  width: 15rem;
  display: inline-block;
  position: relative;
  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    margin: auto;
    width: 0.75rem;
    height: 1px;
    border-bottom: 2px solid;
    transition: var(--transit-default);
  }
  &::after {
    transform: rotate(90deg);
  }
}
.home_table--toggle a.home_table--btn {
  background: var(--clr-sub-04);
  color: var(--clr-wht);
  &:hover {
    background: var(--clr-primary-light);
  }
}
.home_table--toggle a.home_table--btn.is-open {
  background: var(--clr-wht);
  color: var(--clr-sub-04);
  border: 1px solid var(--clr-sub-04);
  &::after {
    opacity: 0;
  }
  &:hover {
    background: var(--clr-sub-04);
    color: var(--clr-wht);
  }
}
.home_bnr--cont {
  background-image: url(../images/top/custom-bnr-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5.5rem 0;  
  border-radius: .5rem;
  overflow: hidden;
  color: var(--clr-wht);
  margin-bottom: 2.5rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
.home_bnr--cont .txt {
  font-size: var(--font-size-txt-lg);
  line-height: 2;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .home_table--tabs {
    margin: 0 auto 2rem;
  }
  .home_table--tab {
    font-size: 1rem;
    gap: .25rem;
    height: 3rem;
    padding: .5rem;
  }
  .home_table--tab::before {
    width: 1rem;
    height: 1rem;
  }
  .home_table--tab.is-active {
    height: 3.5rem;
  }
  .home_table--panel {
    width: 100%;
  }
  .home_table--table {
    min-width: 134rem;
  }
  .home_table--table thead th {
    &:nth-of-type(2) {
      width: 14rem!important;
    }
  }
}

/* home_feature
*************************************************** */
.home_feature .ttl-02{
  color: var(--clr-wht);
}
.home_feature .ttl-02 .en {
  color: var(--clr-wht);
}
.home_feature .illust01 {
  width: 10rem;
}
.home_feature .illust02 {
  width: 9rem;
}
.home_feature .ttl-04 {
  color: var(--clr-wht);
}
.home_feature .feature--items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
.feature--item {
  border-radius: var(--border-radius-secondary);
  border: 4px solid var(--clr-sub-03);
  background: var(--clr-wht);
  border-radius: .5rem;
  padding: 1.5rem;
  position: relative;
}
.home_feature .feature--item--num {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  background: var(--clr-sub-03);
  border-radius: 0 0 .5rem 0;
  color: var(--clr-wht);
  font-size: var(--font-size-heading4);
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature--item--ttl {
  line-height: 1.6;
}
.home_feature .feature--item .txt {
  line-height: 2;
  font-size: var(--font-size-txt-lg);
}
.home_feature .ttl-deco {
  &::before,
  &::after {
    border-left: 2px dashed var(--clr-wht);
  }
}
@media screen and (max-width: 767px) {
  .home_feature .illust01 {
    position: absolute;
    left: -5%;
    top: -65%;
    width: 6rem;
  }
  .home_feature .illust02 {
    position: absolute;
    right: -5%;
    top: -65%;
    width: 6rem;
  }
  .home_feature .feature--items {
    gap: .5rem;
    grid-template-columns: 1fr 1fr;
  }
  .feature--item {
    padding: 1rem .5rem;
  }
  .home_feature .feature--item--num {
    width: 3rem;
    height: 3rem;
  }
  .home_feature .feature--item--ttl { 
    font-size: 1.25rem;
  }
  .home_feature .feature--item .txt {
    font-size: .92857rem;
    line-height: 1.6;
  }

}

/* ##############################################################################

    SUBPAGE

############################################################################## */
/* .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
} */
.note {
  color: var(--clr-text-secondary);
  font-size: var(--font-size-txt-sm);
}
.cat_link {
  font-size: var(--font-size-txt-sm);
  line-height: 1.6;
  font-weight: 700;
  color: var(--clr-primary-dark);
  border-radius: 999px;
  border: 1px solid var(--clr-primary-dark);
  background: var(--clr-bg-blue01);
  padding: .25rem .75rem;
}
.page_section--ttl {
  font-weight: 700;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--clr-mono-02);
}

/* anchor_list
*************************************************** */
.anchor_list li {
  width: calc((100% - 2.25rem )/4);
}
.anchor_list li a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  border-bottom: 1px solid var(--clr-text-placeholder);
  transition: all .4s ease-out;
  &::after {
    content: "";
    bottom: 0;
    margin: auto;
    min-width: 0;
    aspect-ratio: 1 / 1;
    transition: all .4s ease-out;
    right: 2rem;
    width: .5rem;
    border-bottom: 2px solid var(--clr-text-placeholder);
    border-right: 2px solid var(--clr-text-placeholder);
    rotate: 45deg;
    margin-left: 1rem;
  }
}
.anchor_list li a:hover {
  border-bottom: 1px solid var(--clr-primary-light);
  transition: all .4s ease-out;
  background: var(--clr-bg-blue01);
  &::after {
    border-bottom-color: var(--clr-primary-light);
    border-right-color: var(--clr-primary-light);
    transition: all .4s ease-out;
  }
}

/* anchor
**************************************** */
.anchor {
  position: absolute;
  top: -9rem;
  left: 0;
  pointer-events: none;
}
.anchor#sizes_cutpack {
  top: 0;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -5rem;
  }
}

/* .img_txt
*************************************************** */
.img_txt {
  display: flex;
  align-items: center;
  gap: 2rem;
  > * {
    width: 50%;
  }
}
.txt_img {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 2rem;
  > * {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .img_txt {
    flex-direction: column;
    gap: 1.5rem;
    > * {
      width: 100%;
    }
  }
  .txt_img {
    flex-direction: column;
    gap: 1.5rem;
    > * {
      width: 100%;
    }
  }
}

/* product list
*************************************************** */
.list-head-sort {
  .list-head-sort--select {
      position: relative;
  }
  select {
    padding: .25rem 1.15rem .25rem .5rem;
    border: none;
    background-color: var(--clr-bg-02);
    cursor: pointer;
  }
}
.list-head-sort dt {
  margin-right: .5rem;
}
.list-head-sort--select {
  .list-head-sort--select::before {
    content: "";
    display: inline-block;
    width: .75rem;
    height: .5rem;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: var(--clr-mono-02);
    position: absolute;
    right: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.product_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.product {
  position: relative;
  cursor: pointer;
}
.product a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.product .imgarea {
  overflow: hidden;
}
.product:hover {
  img {
    transform: scale(1.05);
  }
  .recommend--item--ttl {
    color: var(--clr-primary-default);
  }
}


@media screen and (max-width: 767px) {
  .product_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* news
*************************************************** */
.post--link {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1rem .5rem;
  border-bottom: 1px solid var(--clr-bg-blue02);
}
.post--ttl {
  font-size: 1.5rem;
}
.post--date {
  color: var(--clr-text-secondary);
}

.news_list .post--ttl {
  font-size: 1rem;
  font-weight: 400;
}

/* product/item
*************************************************** */
.product_top {
  padding-bottom: 5rem;
  align-items: flex-start;
}
.product_top .imgarea {
  max-width: 40rem;
}
.product--ttl {
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--clr-mono-02);
}
.product--price-lg {
  font-size: 1.5rem;
}
.product--price-lg .txt-sm {
  font-size: 1.25rem;
  margin-left: .5rem;
}
.product--order {
  background-color: var(--clr-bg-blue01);
  padding: 2rem;
  border-radius: .5rem;
}
.product--quantity {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 20rem;
  margin-bottom: 1rem;
}
.product--quantity .label {
  font-size: var(--font-size-txt-sm);
  font-weight: bold;
}
.product--order .btn-wrap {
  margin-top: 1.5rem;
}
.product--order .outstock-btn {
  background-color: var(--clr-mono-02);
  color: var(--clr-wht);
  border-radius: .25rem;
  padding: 1rem 2.5rem;
  text-align: center;
}
.product_content {
  background-color: var(--clr-bg-01);
  padding-top: 5rem;
  padding-bottom: 7.5rem;
}
.product_content--inner {
  width: 90%;
  max-width: 70rem;
  margin-inline: auto;
}
.product_spec--table {
  width: 100%;
  margin-bottom: 3.5rem;
}
.product_spec--table th {
  min-width: 11.25rem;
  background-color: var(--clr-bg-blue02);
  color: var(--clr-sub-04);
  border-top: 1px solid var(--color-mono-02, #CCC);
  border-bottom: 1px solid var(--color-mono-02, #CCC);
  border-left: 1px solid var(--color-mono-02, #CCC);
  padding: 1rem 1.5rem 1rem;
  text-align: left;
  vertical-align: middle;
}
.product_spec--table td {
  padding: 1rem 1.5rem 1rem;
  background-color: var(--clr-wht);
  border-top: 1px solid var(--color-mono-02, #CCC);
  border-bottom: 1px solid var(--color-mono-02, #CCC);
  border-right: 1px solid var(--color-mono-02, #CCC);
}
.product_spec--list li,
.product_usage--list li,
.product_process--list li,
.sub_list > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5em 0;
  width: 100%;
  &::before {
    content: "";
    /* position: absolute; */
    top: 0;
    bottom: 0;
    left: 0;
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    background-color: var(--clr-primary-default);
  }
}
.sub_list > li > ul {
  display: block;
}
.product_overview,
.product_feature,
.product_usage {
  margin-bottom: 4rem;
}
.product_feature--list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
  row-gap: 1.5rem;
  margin-bottom: 1rem;
}
.product_feature--item .ttl {
  color: var(--clr-primary-dark);
  font-size: var(--font-size-txt-lg);
  font-weight: 700;
  padding-left: 2rem;
  margin-bottom: .5rem;
  position: relative;

}
.product_feature--item .ttl::before {
  content: "";
  display: inline-block;
  width: 1.25rem; /* 20px */
  min-width: 0;
  aspect-ratio: 1 / 1;
  background-image: url(../images/common/check_circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  margin: auto;
}
.product_feature--item .txt {
  padding-left: 2rem;
  line-height: 1.8;
}
.product_usage--list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.product_process--list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 2.5rem;
}
.favorite {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.favorite-icon {
  border-radius: .25rem;
  border: 1px solid var(--clr-text-placeholder);
  background: var(--clr-wht);
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: var(--transit-default);
  cursor: pointer;
  &:hover {
    color: var(--clr-text-primary);
    opacity: .8;
  }
  &::after {
    content: '';
    display: inline-block;
    width: 1.375rem;
    min-width: 0;
    aspect-ratio: 1 / 1;
    background-image: url(../images/common/icn-favorite-off.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: var(--transit-default);
  }
  &.favorite-on {
    &::after {
      background-image: url(../images/common/icn-favorite-on.svg);
    }
    &:hover::after {
      background-image: url(../images/common/icn-favorite-off.svg);
    }
  }
  &.favorite-off {
    &::after {
      background-image: url(../images/common/icn-favorite-off.svg);
    }
    &:hover::after {
      background-image: url(../images/common/icn-favorite-on.svg);
    }
  }
}
.favorite-icon.hide {
  display: none;
}

@media screen and (max-width: 767px) {
  .product_top {
    padding-bottom: 2rem;
  }
  .product--quantity {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .product_feature--list {
    grid-template-columns: 1fr;
  }
  .product_usage--list {
    grid-template-columns: 1fr 1fr;
  }
  .product_spec--table th {
    padding: .5rem 1rem .5rem;
    border-right: 1px solid var(--clr-mono-02);
  }
  .product_spec--table td {
    border-left: 1px solid var(--clr-mono-02);
  }
}

/* --- makeshop-option-wrap --- */
.makeshop-option-wrap {
  display: grid;
  grid-template-columns: 1fr 20rem;
  align-items: center;
  margin-bottom: .625rem;
}
.makeshop-option-label {
  font-size: var(--font-size-txt-sm);
  font-weight: bold;
}
.makeshop-option-select {
  width: 100%;
  padding: .75rem;
  border: none;
  background-color: var(--clr-wht);
  border: 1px solid var(--clr-mono-02);
  cursor: pointer;
}
.makeshop-option-select-wrap {
  position: relative;
}
.makeshop-option-select-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  min-width: 0;
  aspect-ratio: 1 / 1;
  transition: all .4s ease-out;
  right: 1.5rem;
  width: .5rem;
  border-bottom: 2px solid var(--clr-primary-light);
  border-right: 2px solid var(--clr-primary-light);
  rotate: 45deg;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .product--quantity {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .makeshop-option-wrap {
    grid-template-columns: 1fr;
    gap: .25rem;
    margin-bottom: 1rem;
  }
}
/* --- input --- */
/* input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input.productnum {
  font-size: 24px;
  color: #6E6E6E;
  width: 100px;
  height: 40px;
  float: left;
  text-align: right;
  padding: 0 5px;
}
div.button {
  float: left;
  width: 16px;
  padding-left: 16px;
}
input.spinner-up {
  margin-top: 3px;
  border: 0px;
  width: 13px;
  height: 13px;
  background: url("/view/images/template/6/up.png") no-repeat;
  cursor: pointer;
}
input.spinner-down {
  margin-top: 3px;
  border: 0px;
  width: 13px;
  height: 13px;
  background: url("/view/images/template/6/down.png") no-repeat;
  cursor: pointer;
}
.productnum-wrap {
  padding-top: 24px;
} */


/* --- img_slider-dots --- */
.img_slider-dots .slick-dots {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: .5rem;
  margin-top: 1rem;
}
.img_slider-dots .pager-img {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 120 / 84;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .4s ease-out;
}
.img_slider-dots .pager-img:hover,
.img_slider-dots li.slick-active .pager-img {
  border-color: var(--clr-primary-default);
  &::before { opacity: 1; }
}
@media screen and (max-width: 767px) {
  .img_slider-dots .slick-dots {
    grid-template-columns: repeat(6, 1fr);
  }
}


/* feature
*************************************************** */
.page_feature--top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.page_feature--top .ttl {
  font-weight: 700;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--clr-mono-02);
}
.page_feature--top .catch {
  font-size: var(--font-size-heading5);
  font-weight: 700;
  color: var(--clr-primary-dark);
  margin-bottom: 2rem;
}
.page_feature--middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.page_feature .feature_item + .feature_item {
  margin-top: 4rem;
}
.page_feature--bottom {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--clr-bg-01);
}
.feature_item--usage_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.feature_item--process_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.feature_item--usage_list li,
.feature_item--process_list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.feature_item--usage_list li,
.feature_item--process_list li {
  &::before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    background-color: var(--clr-primary-default);
  }
}
@media screen and (max-width: 767px) {
  .page_feature--top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .page_feature--top .catch {
    font-size: 1.2857142857rem;
    margin-bottom: 1rem;
  }
  .page_feature--middle {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* properties
*************************************************** */
.page_properties {
  padding-bottom: 5rem;
}
.page_properties table {
  width: 100%;
}
.page_properties table th {
  background-color: var(--clr-bg-blue02);
  color: var(--clr-sub-04);
  border: 1px solid var(--clr-mono-02);
  padding: .75em 1em;
  line-height: 1.5;
}
.page_properties table td {
  text-align: center;
  border: 1px solid var(--clr-mono-02);
  line-height: 1.5;
  padding: .75em 1em;
}
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}
@media screen and (max-width: 767px) {
  .table-sp-scroll {
    min-width: 70rem;
  }
  .page_properties table th {
    font-size: .8571428571rem;
  }
  .page_properties table td {
    font-size: .8571428571rem;
    padding: .5em 1em;
  }
}


/* side
*************************************************** */
.page_size .size--top {
  margin-bottom: 4rem;
}
.page_size .size--top .ttl {
  font-weight: 700;
  font-size: var(--font-size-heading4);
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--clr-mono-02);
  margin-bottom: 1rem;
}
.page_size .size--table .table_cols {
  align-items: flex-start;
}

.page_size .table_cols--item {
  width: 100%;
  table {
    flex: 1 1 0;
    width: 100%;
    min-width: 0; 
  }
}
.page_size table th {
  background-color: var(--clr-bg-blue02);
  color: var(--clr-sub-04);
  border: 1px solid var(--clr-mono-02);
  padding: .75em 1em;
  line-height: 1.5;
  white-space: nowrap;
}
.page_size table td {
  text-align: center;
  border: 1px solid var(--clr-mono-02);
  line-height: 1.5;
  padding: .75em 1em;
  min-width: 6.25rem;
}
.sub_list li {
  padding: .5em 0;
  font-weight: 700;
}
.size--table .ttl img {
  margin-right: .5rem;
}
@media screen and (max-width: 767px) {
  .page_size .size--top .ttl {
    font-size: 1.2857142857rem;
  }
  .page_size table th {
    white-space: normal;
    padding: .25em .1em;
    font-size: .7857142857rem;
  }
  .page_size table td {
    min-width: 0;
  }
  .sub_list li {
    font-size: .8571428571rem;
  }
}


/* tick_box
**************************************** */
.tick_box {
  --gap: 70;
  position: relative;
  overflow: clip;
  display: flex;
  white-space: nowrap;
}
.js-tick {
	--tick-duration: 60s;

  position: relative;
  display: flex;
  flex-shrink: 0;
  padding-right: calc(var(--gap) * var(--rem-pc));
  animation: loop-tick var(--tick-duration) linear infinite;
}
.js-tick-item {
/* 文字スタイルとか */
  flex-shrink: 0;
  &:not(:last-child) {
   padding-right: calc(var(--gap) * var(--rem-pc));
  }
}

@keyframes loop-tick {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* 幅の均等化（.page_size 配下の .size--table のみ）
********************************************** */
/* .page_size .size--table .table_cols .table_cols--item {
  flex: 1 1 0;
  width: auto;
  min-width: 0; 
}
.page_size .size--table table {
  width: 100%;
  table-layout: fixed;
}
.page_size .size--table table th,
.page_size .size--table table td {
  word-break: break-word;
} */

/* cart
*************************************************** */
.cart-text-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .25em;
  font-size: .875rem; /* 14px */
  font-weight: 500;
  text-align: center;
  background: var(--clr-bg-03);
  border-bottom: 1px solid var(--clr-mono-02);
  background: var(--clr-bg-blue01);
  > div:not(:last-child) {
    border-right: solid 1px var(--clr-bg-01);
  }
}
.cart-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--clr-mono-02);
  align-items: center;
}

/* --- img name --- */
.cart-table .name-head {
  flex: 1;
}
.cart-table .img {
  width: 20%;
  padding-right: 2rem;
}
.cart-item-text {
  display: flex;
  justify-content: space-between;
  width: 76%;
  align-items: center;
}
.cart-table .name {
  a {
    font-weight: 700;
    text-decoration: underline;
  }
}
.cart-option-area {
  margin-top: .5rem;
  font-size: .875rem; /* 14px */
  li {
    display: block;
    margin-top: .5rem;
    font-size: .875rem; /* 14px */
  }
}

/* --- qty --- */
.cart-table .qty-head,
.cart-table .qty {
  width: 13rem;
}
.cart-table .qty {
  display: flex;
  justify-content: center;
  align-items: center;
}
.quantity-notification {
  width: 4rem;
  padding: .65rem .75rem;
  background-color: var(--clr-wht);
  border: 1px solid var(--clr-mono-02);
  cursor: pointer;
  border-radius: 0;
}
.update a {
  min-width: 0;
  padding: .525rem .75rem;
  font-size: .75rem; /* 12px */
  background-color: var(--clr-sub-04);
  color: var(--clr-wht);
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  &::before {
    display: none;
  }
}

/* --- price --- */
.cart-table .price-head,
.cart-table .price {
  width: 9rem;
  text-align: center;
  font-weight: 500;
}
.cart-table .price {
  color: var(--clr-secondary-dark);
}

/* --- remove --- */
.cart-table .remove-head,
.cart-table .remove {
  width: 5rem;
  text-align: center;
}
.cart-table .remove-sp {
  display: none;
}

.total-text {
  text-align: right;
}
.total-text .total-price {
  font-size: 1.75rem;
  color: var(--clr-secondary-dark);
  margin-left: 1rem;
}
.total-text .txt-sm {
  font-size: 1rem;
  margin-left: .5rem;
}
.payment-add-btn {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.add-btn a {
  font-size: 1.25rem;
  width: 22rem;
}
@media screen and (max-width: 767px) {
  .cart-text-head {
    display: none;
  }
  .cart-product {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 1rem 0;
    &:nth-child(2) {
      border-top: 1px solid var(--clr-mono-02);
    }
  }
  
  /* --- img name --- */
  .cart-table .img {
    width: 8rem;
    padding-right: 1rem;
  }
  .cart-item-text {
    flex: 1;
    flex-direction: column;
    width: auto;
  }
  /* --- qty --- */
  .cart-table .qty {
    width: 100%;
    margin-top: .75rem;
    order: 4;
  }
  .cart-table .qty {
    justify-content: flex-end;
  }
  .quantity-btn a {
    padding: .6125rem .75rem;
  }
  
  /* --- price --- */
  .cart-table .price {
    order: 3;
    width: 100%;
    margin-top: .25rem;
    text-align: right;
    font-size: 1.286rem; /* 18px */
  }
  
  /* --- remove --- */
  .cart-table .remove-sp {
    width: 100%;
    margin-top: .5rem;
  }
  .cart-table .remove {
    display: none;
  }
  .cart-table .remove-sp {
    display: block;
    text-align: right;
    text-decoration: underline;
    order: 5;
  }
  .payment-add-btn {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* news
*************************************************** */
/* .news_list .post {
  border: 1px solid var(--clr-);
  padding: 1rem;
}
.news_list .post--date {
  font-size: var(--font-size-txt-sm);
  color: var(--clr-mono-02);
}
.news_list .post--ttl {
  font-size: var(--font-size-txt-lg);
  color: var(--clr-mono-02);
}
.news_list .post--link {
  font-size: var(--font-size-txt-lg);
  color: var(--clr-mono-02);
} */

/* specifications
*************************************************** */
.cat_label {
  font-size: var(--font-size-heading6);
  font-weight: 700;
  line-height: 1.6;
  color: var(--clr-sub-04);
  background-color: var(--clr-bg-blue02);
  padding: .5rem 1rem;
  margin-bottom: 1rem;
}
.cat_item a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  border-bottom: 1px solid var(--clr-text-placeholder);
  transition: all .4s ease-out;
  &::after {
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    min-width: 0;
    aspect-ratio: 1 / 1;
    transition: all .4s ease-out;
    right: 2rem;
    width: .5rem;
    border-bottom: 2px solid var(--clr-text-placeholder);
    border-right: 2px solid var(--clr-text-placeholder);
    rotate: 45deg;
    margin-left: 1rem;
  }
  &:hover {
    border-bottom: 1px solid var(--clr-primary-light);
    transition: all .4s ease-out;
    &::after {
      border-bottom-color: var(--clr-primary-light);
      border-right-color: var(--clr-primary-light);
      transition: all .4s ease-out;
    }
  }
}
.btn_info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: var(--font-size-txt-sm);
  color: var(--clr-wht);
  background-color: var(--clr-sub-04);
  padding: 1.25rem 1.5rem;
  border-radius: .25rem;
  width: fit-content;
  margin-inline: auto;
  cursor: pointer;
  transition: var(--transit-default);
}
.btn_info:hover {
  opacity: .8;
}

.fixed_anchor {
  position: fixed;
  top: 22vh;
  left: 0;
  z-index: 9998;
  transform: translateX(0);
  transition: var(--transit-default);
}
.fixed_anchor--open {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  left: 18.75rem;
  top: 0;
  border-radius: 0 .25rem .25rem 0;
  background: var(--clr-sub-04);
  color: var(--clr-wht);
  line-height: 3;
  padding: 2rem 0;
  cursor: pointer;
  transition: var(--transit-default);
  display: flex;
  align-items: center;
  gap: 1rem;
  height: max-content;
}
.fixed_anchor--inner {
  width: 18.75rem;
  border-radius: 0 0 .25rem 0;
  border: 1px solid var(--clr-text-placeholder);
  overflow: hidden;
}
.fixed_anchor .cat_label {
  font-size: var(--font-size-txt-sm);
  padding: .5rem;
  margin-bottom: 0;
  cursor: pointer;
  transition: var(--transit-default);
  position: relative;
  border-bottom: 1px solid var(--clr-text-placeholder);
  &::after {
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    min-width: 0;
    aspect-ratio: 1 / 1;
    transition: all .4s ease-out;
    position: absolute;
    right: 1.15rem;
    width: .5rem;
    border-bottom: 2px solid var(--clr-sub-04);
    border-right: 2px solid var(--clr-sub-04);
    rotate: 45deg;
    transition: var(--transit-default);
  }
}
.fixed_anchor .cat_label.active {
  background: var(--clr-primary-dark);
  color: var(--clr-wht);
  &::after {
    border-bottom-color: var(--clr-wht);
    border-right-color: var(--clr-wht);
    transition: var(--transit-default);
    rotate: -135deg;
  }
}
.fixed_anchor .cat_wrap:last-of-type .cat_label {
  border-bottom: none;
}
.fixed_anchor .cat_list {
  background-color: var(--clr-wht);
  padding: .5rem;
  display: none;
}
.fixed_anchor .cat_list.is-open {
  display: block;
}
.fixed_anchor .cat_item a {
  font-size: .75rem;
  background-color: var(--clr-wht);
  padding: .5rem;
  position: relative;
}
.fixed_anchor .cat_item a::after {
  position: absolute;
  right: 1.25rem;
}
@media (min-width: 768px) {
  .fixed_anchor.is_click {
    transform: translateX(-100%);
    transition: var(--transit-default);
  }
  .fixed_anchor--open:hover {
    background: var(--clr-primary-dark);
    color: var(--clr-wht);
    transition: var(--transit-default);
  }
  .fixed_anchor--open img {
    transform: rotate(180deg);
    transition: var(--transit-default);
  }
  .fixed_anchor.is_click .fixed_anchor--open {
    img {
      transform: rotate(0);
      transition: var(--transit-default);
    }
  }
  .fixed_anchor .cat_label:hover {
    background: var(--clr-primary-dark);
    color: var(--clr-wht);
    transition: var(--transit-default);
    &::after {
      border-bottom-color: var(--clr-wht);
      border-right-color: var(--clr-wht);
      transition: var(--transit-default);
    }
  }
}
@media (max-width: 767px) {
  .cat_item a {
    padding: .25rem;
  }
  .fixed_anchor {
    top: 6rem;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-block;
    width: 90%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transit-default), visibility var(--transit-default);
  }
  .fixed_anchor.is-inview {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .fixed_anchor--inner {
    width: 100%;
    border-radius: .25rem;
    border: 1px solid var(--clr-mono-02);
    background: var(--clr-wht);
    padding: 1rem .625rem;
    display: none;
  }
  .fixed_anchor--open {
    position: relative;
    writing-mode: unset;
    left: auto;
    justify-content: center;
    padding: 0;
    border-radius: .25rem;
    margin-bottom: .25rem;
  }
  .fixed_anchor--open img {
    transform: rotate(90deg);
    transition: var(--transit-default);
  }
  .fixed_anchor.is_click .fixed_anchor--open img {
    transform: rotate(-90deg);
    transition: var(--transit-default);
  }
  .fixed_anchor.is_click .fixed_anchor--inner {
    display: block;
  }
}
/* ポップアップ
********************************************** */
.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transit-default);
}
.popup_overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.popup_modal {
  position: relative;
  background-color: var(--clr-wht);
  border-radius: .5rem;
  max-width: 50rem;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 4rem 3rem;
  transform: scale(.9);
  transition: var(--transit-default);
}
.popup_overlay.is-open .popup_modal {
  transform: scale(1);
}
.popup_close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--clr-text-primary);
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transit-default);
  z-index: 1;
}
.popup_close:hover {
  opacity: .6;
}
.popup_content {
  position: relative;
}
.popup_title {
  font-size: var(--font-size-heading5);
  font-weight: var(--font-wight-bold);
  margin-bottom:2rem;
  text-align: center;
}
.popup_section {
  margin-bottom: 2rem;
}
.popup_section:last-child {
  margin-bottom: 0;
}
.popup_subtitle {
  font-size: var(--font-size-heading6);
  font-weight: var(--font-wight-bold);
  color: var(--clr-primary-default);
  margin-bottom: 1rem;
}
.popup_section p {
  line-height: 1.8;
}
.popup_list {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.popup_list li {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.popup_list li:last-child {
  margin-bottom: 0;
}
.popup_symbol {
  display: inline-block;
  width: 2rem;
  text-align: center;
  margin-right: .5rem;
  font-size: 1.5rem;
}
.btn_info_fixed {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 8888;
}

@media (max-width: 767px) {
  .popup_modal {
    width: 95%;
    padding: 3rem 2rem;
    max-height: 85vh;
  }
  .popup_close {
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
  }
  .popup_title {
    font-size: 1.285rem;
    margin-bottom: 1.5rem;
  }
  .popup_section {
    margin-bottom: 2rem;
  }
  .popup_subtitle {
    font-size: 1.14285rem;
    margin-bottom: .5rem;
    line-height: 1.5;
  }
  .popup_symbol {
    width: auto;
    font-size: 1rem;
    margin-right: .25rem;
  }
  .btn_info_fixed {
    display: none;
  }
}

.spec_card {
  border: 1px solid var(--clr-mono-02);
  border-radius: .5rem;
  overflow: hidden;
  background: var(--clr-wht);
}
.spec_card + .spec_card {
  margin-top: 8rem;
}
.spec_card--head {
  background: var(--clr-primary-dark);
  color: var(--clr-wht);
  padding: 1.25rem 1.5rem;
}
.spec_card--ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: var(--font-size-heading5);
  line-height: 1.6;
}
.spec_card--ttl img {
  width: 4rem;
  aspect-ratio: 5/3;
  object-fit: cover;
  border-radius: .125rem;
}
.spec_chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  background-color: var(--clr-wht);
  padding: 1rem 2.5rem;
  border-radius: .25rem;
}
.spec_chips .chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  line-height: 1.6;
  color: var(--clr-sub-04);
  font-weight: 700;
}
.spec_chips .chip .lbl {
  background-color: var(--clr-bg-blue02);
  border-radius: .25rem;
  padding: .25rem .5rem;
}
.spec_chips .chip .val {
  font-size: var(--font-size-txt-lg);
}
.spec_card--body {
  background: var(--clr-wht);
  padding-bottom: 1.5rem;
}
.spec_card--table > tbody > tr > th {
  min-width: 10rem;
}
.spec_detail--table {
  font-size: .8125rem;
  width: 100%;
}
.spec_detail--table th {
  background: var(--clr-bg-02);
  font-size: .8125rem;
  color: var(--clr-mono-06);
  font-weight: 700;
  border: 1px solid var(--clr-mono-02);
  padding: .75em .5em;
  line-height: 1.5;
}
.spec_detail--table td {
  font-size: .8125rem;
  padding: .75em .5em;
}
.spec_detail .spec_detail--wrap {
  position: relative;
}
.spec_detail .spec_detail--wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--clr-wht) 80%);
  pointer-events: none;
}
.spec_detail .is-more {
  display: none;
}
.spec_detail.is-open .is-more {
  display: table-row;
}
.spec_detail.is-open .spec_detail--wrap::after {
  display: none;
}
.spec_table--toggle {
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .spec_card + .spec_card {
    margin-top: 4rem;
  }
  .spec_card--ttl {
    font-size: 1.2857rem;
  }
  .spec_chips {
    padding: 1rem;
    gap: 1rem;
    column-gap: 1rem;
    row-gap: .75rem;
    margin-top: 1rem;
    justify-content: flex-start;
  }
  .spec_chips .chip {
    gap: .25rem;
  }
  .spec_detail {
    max-width: 81vw;
    width: auto;
  }
}
