@charset "UTF-8";
html {
  color: #000;
  background: #FFF;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
select,
main,
address,
span {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 140%;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a,
span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-style: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: text-top;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

legend {
  color: #000;
}

figure {
  margin: 0;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  color: #000;
  font-family: Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
      text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a img {
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

p {
  line-height: 190%;
}

p + p {
  margin-top: 1.2rem;
}

ol {
  padding-left: 2rem;
}

ruby rt {
  font-size: 40%;
}

em {
  color: #ff0000;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px;
  border: 1px solid #b7b7b7;
}

select {
  padding: 10px;
  border: 1px solid #b7b7b7;
}

textarea {
  width: 100%;
  height: 200px;
}

.btn-round {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: inline-block;
  padding: 12px 40px 12px 50px;
  background: #fff;
  border: 1px solid #623435;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn-round::before {
  content: "";
  position: absolute;
  left: 25px;
  top: calc(50% - 4px);
  display: inline-block;
  border-left: 4px solid #000;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  color: #623435;
}

.btn-round.is-yellow {
  background: #fff799;
  font-weight: bold;
  color: #000;
}

.btn-round.is-yellow2 {
  background: #fcd746;
  font-weight: bold;
  color: #623435;
}

.btn-round.is-gray {
  background: #666666;
  font-weight: bold;
  color: #fff;
}

.btn-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: inline-block;
  padding: 12px 30px 12px 30px;
  background: #fcd746;
  border: 1px solid #623435;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: bold;
  color: #623435;
  text-align: center;
}

.btn-submit.is-gray {
  background: #666666;
  font-weight: bold;
  color: #fff;
}

.btn-big {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 360px;
  height: 82px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 2.6rem;
  font-weight: bold;
  -webkit-box-shadow: -5px -5px 10px 0 rgba(0, 0, 0, 0.1) inset;
          box-shadow: -5px -5px 10px 0 rgba(0, 0, 0, 0.1) inset;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-big:hover {
  background: #f7f7f7;
}

.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.col.is-oneline {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.col-contents {
  width: 100%;
}

.is-oneline .col-contents {
  margin-bottom: 0;
}

.is-oneline .col-contents + .col-contents {
  margin-left: 2%;
}

.is-2 .col-contents {
  max-width: 48%;
}

.is-2 .col-contents:nth-child(even) {
  margin-left: calc(4% - 1px);
}

.is-2 .col-contents:nth-child(n+3) {
  margin-top: 30px;
}

.is-3 .col-contents {
  max-width: 32%;
}

.is-3 .col-contents:not(:nth-child(3n+1)) {
  margin-left: calc(2% - 1px);
}

.is-3 .col-contents:nth-child(n+4) {
  margin-top: 30px;
}

.is-4 .col-contents {
  max-width: 23%;
}

.is-4 .col-contents:not(:nth-child(4n+1)) {
  margin-left: calc(2.6% - 1px);
}

.is-4 .col-contents:nth-child(n+5) {
  margin-top: 30px;
}

.col-contents-title {
  margin-bottom: 5px;
}

.col-contents-text {
  margin-top: 5px;
}

.flImgContents-img {
  max-width: 37%;
  width: 100%;
}

.flImgContents-img.is-s {
  max-width: 200px;
}

.flImgContents-img.is-ss {
  max-width: 100px;
}

.flImgContents-img.is-l {
  max-width: 47%;
}

.flImgContents-img.is-fr {
  float: right;
  margin: 0 0 20px 40px;
}

.flImgContents-img.is-fl {
  float: left;
  margin: 0 40px 20px 0;
}

/*　テキスト、フォント　*/
.text-s {
  font-size: 85%;
}

.text-l {
  font-size: 120%;
}

.cl-red {
  color: #ff0000;
}

/* リスト */
.list-normal > li {
  margin: 0 0 10px;
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}

.list-normal > li::before {
  content: "●";
  margin-right: 5px;
  font-size: 10px;
  font-family: sans-serif;
  color: #cf7c00;
}

.list-number {
  padding: 0 0 0 25px;
}

.list-number > li {
  list-style: decimal;
  margin: 0 0 10px;
}

.list-numbold {
  counter-reset: li;
  list-style: none;
  padding-left: 2.5rem;
}

.list-numbold > li::before {
  margin: 0 5px 0 -2rem;
  width: 2.5rem;
  content: counter(li) ". ";
  counter-increment: li;
  font-weight: bold;
}

/* 定義リスト */
.dl-normal dt {
  font-weight: bold;
  font-size: 1.8rem;
}

.dl-normal dd {
  margin-bottom: 30px;
}

.al-r {
  text-align: right;
}

.al-c {
  text-align: center;
}

.full {
  width: 100%;
}

.size-30 {
  width: 30%;
}

.size-60 {
  width: 60%;
}

.indent {
  width: 97%;
  margin: 0 0 0 auto;
}

.link-arrow {
  position: relative;
  padding: 0 0 8px 3px;
  font-size: 1.1rem;
  font-weight: bold;
}

.link-arrow::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 12px;
  background: url(../img/common/arrow-r.svg) center center/contain no-repeat;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform-origin: left;
          transform-origin: left;
}

/*　セクション　*/
.section-small {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-01 {
  margin-top: 30px;
  margin-bottom: 40px;
}

.section-01:first-child {
  margin-top: 0;
}

.section-02 {
  margin-top: 40px;
  margin-bottom: 70px;
}

.section-02:first-child {
  margin-top: 0;
}

.section-03 {
  margin-top: 40px;
  margin-bottom: 100px;
}

.section-03.silicone {
  margin-bottom: 0;
}

.section-03.tabane {
  margin-bottom: 0;
}

.section-03:first-child {
  margin-top: 0;
}

.section-center {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.slider {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.slider__inner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.slider__nav {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.slider-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
}

.slider-bullet__text {
  color: #fff;
  font-size: 0.65rem;
  margin-right: 1rem;
}

.slider-bullet__line {
  background-color: #fff;
  height: 1px;
  width: 1rem;
}

.slider canvas {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

/* テーブル */
.nowrap {
  white-space: nowrap;
}

.caption {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

.table-01 {
  border-collapse: collapse;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}

.table-01 tr {
  border-bottom: 1px solid #ccc;
}

.table-01 th,
.table-01 td {
  padding: 15px 10px;
  font-weight: bold;
}

.table-01 a {
  color: #019ab3;
}

.wfix {
  table-layout: fixed;
}

/* タイトル */
.title-bold {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

.title-en {
  margin-bottom: 25px;
  color: #623435;
  font-size: 1.8rem;
  font-weight: bold;
}

.title-l {
  margin-bottom: 50px;
  font-size: 3rem;
  font-weight: bold;
  color: #623435;
}

.title-l .text-s {
  display: inline-block;
  margin-left: 30px;
  font-size: 2rem;
}

.title-center {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 10px;
  font-family: "Roboto", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.title-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 26px);
  width: 52px;
  height: 1px;
  background: #000;
}

.title-undershortline {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: bold;
}

.title-undershortline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 1px;
  background: #000;
}

.pankuzu {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

.pankuzu-ul {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pankuzu-ul-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  font-size: 1.2rem;
}

.pankuzu-ul-li + .pankuzu-ul-li::before {
  content: ">";
  display: block;
  margin: 0 5px;
}

.pankuzu-ul-li a {
  display: block;
}

.contents {
  margin-top: 80px;
}

.pagination2 {
  margin: 70px 0;
}

.pagination2-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination2-box li {
  font-family: "Roboto", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
}

.pagination2-box li:not(.page-of) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  box-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #623435;
  width: 30px;
  height: 30px;
  margin: 0 5px 5px 0;
  color: #fff;
  border: 1px solid #623435;
}

.pagination2-box li.page-of {
  margin-right: 10px;
  padding-top: 6px;
}

.pagination2-box li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff799;
  color: #623435;
}

.footer {
  padding: 50px 0 100px;
  border-top: 1px solid #eeeeee;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
}

.footerNavi-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footerNavi-ul-li {
  font-size: 1.2rem;
}

.footerNavi-ul-li a {
  display: inline-block;
  padding: 4px 10px;
}

.footerNavi-ul-li a::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  border-left: 4px solid #a9894b;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  z-index: 1;
}

.footerNavi-ul-li a:hover {
  color: #019ab3;
}

.footerNavi-ul-li a.outlink::after {
  content: "";
  display: inline-block;
  margin: 0 0 -3px 5px;
  width: 15px;
  height: 15px;
  background: url(../img/common/icon-outlink.svg) center center/contain no-repeat;
}

.footerLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footerLogo-item.is-amazon {
  width: 115px;
  margin-right: 50px;
}

.footerLogo-item-text {
  display: block;
  margin-bottom: 8px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}

.footerLogo-item.is-kyowa {
  width: 115px;
}

.footerCopy {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  display: block;
  text-align: right;
}

.pagetop {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 50px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 10;
}

.pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
}

.pagetop a:hover {
  background: #f2f2f2;
}

.pagetop img {
  display: block;
  width: 14px;
}

.dwMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 15;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#top .dwMenu {
  opacity: 0;
}

#top.siteOpen .dwMenu {
  opacity: 1;
}

.dwMenu-hamburger {
  position: relative;
  display: block;
  width: 30px;
  height: 18px;
  outline: none;
  border: none;
}

.dwMenu-hamburger span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1.5px;
  display: inline-block;
  background-color: #000;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.dwMenu-hamburger span:nth-of-type(1) {
  top: 0;
  -webkit-animation: menu-bar01 0.75s forwards;
  animation: menu-bar01 0.75s forwards;
}

.dwMenu-hamburger span:nth-of-type(2) {
  top: calc(50% - 1px);
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.dwMenu-hamburger span:nth-of-type(3) {
  top: calc(100% - 2px);
  -webkit-animation: menu-bar02 0.75s forwards;
  animation: menu-bar02 0.75s forwards;
}

.dwMenu-active .dwMenu-hamburger span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
  animation: active-menu-bar01 0.75s forwards;
}

.dwMenu-active .dwMenu-hamburger span:nth-of-type(2) {
  opacity: 0;
}

.dwMenu-active .dwMenu-hamburger span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 0.75s forwards;
  animation: active-menu-bar03 0.75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(12px) rotate(45deg);
            transform: translateY(12px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
            transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(12px) rotate(45deg);
            transform: translateY(12px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
            transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-12px) rotate(-45deg);
            transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-12px) rotate(0);
            transform: translateY(-12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-12px) rotate(-45deg);
            transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-12px) rotate(0);
            transform: translateY(-12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
            transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8.5px) rotate(45deg);
            transform: translateY(8.5px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(12px) rotate(0);
            transform: translateY(12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8.5px) rotate(45deg);
            transform: translateY(8.5px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-12px) rotate(0);
            transform: translateY(-12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8.5px) rotate(-45deg);
            transform: translateY(-8.5px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-12px) rotate(0);
            transform: translateY(-12px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8.5px) rotate(-45deg);
            transform: translateY(-8.5px) rotate(-45deg);
  }
}
.header {
  position: relative;
  height: 141px;
  padding-top: 20px;
  background: rgba(255, 255, 255, 0.699);
  -webkit-transform-origin: top;
          transform-origin: top;
  z-index: 2;
}

#top .header {
  opacity: 0;
}

.siteOpen .header {
  background: white;
}

.header-logo {
  width: 155px;
  margin: 0 auto 30px;
}

.header-logo a {
  display: block;
}

.header-info {
  position: absolute;
  top: 30px;
  right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-info-item a {
  display: block;
}

.header-info-item.is-onlineshop {
  width: 115px;
  margin-right: 40px;
}

.header-info-item.is-insta {
  width: 22px;
}

.headerNavi {
  display: block;
}

.headerNavi-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.headerNavi-ul-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}

.headerNavi-ul-li a,
.headerNavi-ul-li-parent {
  display: block;
  padding: 0 30px;
}

.headerNavi-ul-li a:hover,
.headerNavi-ul-li-parent:hover {
  color: #cf7c00;
}

.headerNavi-ul-li-parent:hover {
  color: #000;
}

.headerNavi-ul-li-sub {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 6px;
  font-weight: normal;
}

.headerNavi-ul-li-sub::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  border-left: 5px solid #ccc;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  z-index: 1;
}

.headerNavi-ul-li-sub-li {
  position: relative;
  font-size: 1.2rem;
}

.headerNavi-ul-li-sub-li + .headerNavi-ul-li-sub-li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 3px;
  height: 18px;
  width: 1px;
  background: #ebebeb;
}

.headerNavi-ul-li-sub-li a {
  display: block;
  padding: 3px 20px;
}

.gNavi {
  position: fixed;
  top: 0;
  right: -435px;
  width: 435px;
  height: 100vh;
  padding: 50px 0 80px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 10;
  background: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.8, -0.02, 0.26, 0.84);
  transition: all 0.3s cubic-bezier(0.8, -0.02, 0.26, 0.84);
  opacity: 0;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}

.gNavi::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.dwMenu-active .gNavi {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 1;
}

.gNavi-ul {
  margin-bottom: 20px;
  padding: 20px 10%;
}

.gNavi-ul-li {
  border-bottom: 1px solid #ccc;
}

.gNavi-ul-li > a,
.gNavi-ul-li-parent {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 10px;
  font-size: 1.7rem;
}

.gNavi-ul-li > a:hover,
.gNavi-ul-li-parent:hover {
  background: rgba(255, 227, 227, 0.342);
}

.gNavi-ul-li > a.outlink::after,
.gNavi-ul-li-parent.outlink::after {
  content: "";
  display: inline-block;
  margin: -3px 0 0 5px;
  width: 18px;
  height: 18px;
  background: url(../img/common/icon-outlink.svg) center center/contain no-repeat;
}

.gNavi-ul-li > a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 8px);
  right: 4.3px;
  width: 10px;
  height: 18px;
  background: url(../img/common/icon-arrow-r.svg) center center/contain no-repeat;
}

.gNavi-ul-li-parent:hover {
  background: none;
}

.gNavi-bottomLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10%;
}

.gNavi-bottomLink a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 47%;
  border: 1px solid #a4a4a4;
  padding: 10px;
  border-radius: 30px;
  text-align: center;
}

.gNavi-bottomLink a.outlink::before {
  content: "";
  display: inline-block;
  margin: -3px 5px 0 0;
  width: 23px;
  height: 23px;
  background: url(../img/common/icon-pdf.svg) center center/contain no-repeat;
}

.gNaviSub {
  display: block;
  margin-bottom: 20px;
  padding-left: 20px;
}

.gNaviSub-li {
  font-size: 1.6rem;
}

.gNaviSub-li + .gNaviSub-li {
  border-top: 1px solid #ccc;
}

.gNaviSub-li a {
  position: relative;
  display: block;
  padding: 15px 10px;
}

.gNaviSub-li a:hover {
  background: rgba(255, 227, 227, 0.342);
}

.gNaviSub-li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 8px);
  right: 4.3px;
  width: 7px;
  height: 12px;
  background: url(../img/common/icon-arrow-r.svg) center center/contain no-repeat;
}

.filter {
  background: rgba(0, 0, 0, 0.4);
  opacity: 0.3;
  position: fixed;
  width: 100%;
  height: 120%;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.dwMenu-active .filter {
  opacity: 1;
  pointer-events: auto;
}

.wpArticle {
  word-break: break-all;
}

.wpArticle p {
  margin-bottom: 20px;
}

.wpArticle p a {
  text-decoration: underline;
}

.wpArticle em {
  font-style: italic;
  color: initial;
}

.wpArticle ol {
  margin: 10px 20px;
  padding: 0;
}

.wpArticle ul {
  margin: 10px 20px;
  list-style-type: disc;
  list-style-position: outside;
  list-style-image: none;
}

.wpArticle ul li {
  list-style: unset;
}

.wpArticle blockquote p {
  font-size: 1.8rem;
}

.wpArticle h1 {
  margin: 50px auto;
  padding: 10px 15px;
  background: #eef1f3;
  font-size: 1.9rem;
  font-weight: bold;
}

.wpArticle h2 {
  margin: 50px auto 30px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #623435;
}

.wpArticle h3 {
  margin: 50px auto 20px;
  padding-bottom: 3px;
  border-bottom: 1px solid #e5e5e5;
  color: #623435;
  font-size: 1.6rem;
  font-weight: bold;
}

.wpArticle h4 {
  margin: 50px auto 5px;
  font-size: 1.5rem;
  font-weight: bold;
}

.wpArticle img {
  height: auto;
}

.wpArticle table {
  border-collapse: collapse;
  margin-bottom: 20px;
}

.wpArticle table a {
  text-decoration: underline;
}

.wpArticle table th,
.wpArticle table td {
  padding: 10px;
  border: 1px solid #ccc;
}

.wpArticle table th {
  background: #eee;
}

.wpArticle .wp-block-button__link {
  font-size: 1.4rem;
}

.wpArticle .more-link {
  color: #019ab3;
}

.wpArticle .wp-caption {
  max-width: 100%;
}

.wpArticle .alignright {
  float: right;
  margin: 0 0 20px 30px;
}

.wpArticle .alignleft {
  float: left;
  margin: 0 30px 20px 0;
}

.wpArticle .aligncenter {
  display: block;
  margin: 0 auto;
}

.pageLead {
  margin: -30px 0 80px;
  font-size: 2rem;
  font-weight: bold;
}

.noteText {
  margin-bottom: 70px;
}

.noteText p {
  line-height: 2;
}

.noteText p a {
  text-decoration: underline;
}

.caseSection + .caseSection {
  margin-top: 100px;
}

.caseSection-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 35px;
  gap: 0 5%;
}

.caseSection-img {
  width: 50%;
}

.caseSection-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.caseSection-contents-title {
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: bold;
}

.caseSection-contents-item + .caseSection-contents-item {
  margin-top: 50px;
}

.is-medical .caseSection-contents-item + .caseSection-contents-item {
  margin-top: 30px;
}

.caseSection-contents-item-title {
  margin-bottom: 20px;
  padding: 7px 0;
  border-top: 1px solid #623435;
  border-bottom: 1px solid #623435;
  font-size: 1.6rem;
  font-weight: bold;
}

.caseItem-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.caseItem-1-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.caseItem-1-one + .caseItem-1-one {
  margin-left: 20px;
}

.caseItem-1-one .caseIcon {
  margin-left: 3px;
}

.caseItem-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.caseItem-2-icons .caseIcon + .caseIcon {
  margin-left: 10px;
}

.caseItem-2-illust {
  width: 86px;
}

.caseItem-2-illust.is-bin {
  width: 68px;
}

.caseItem-2-illust.is-jozai {
  width: 54px;
  margin-top: -10px;
}

.caseItem-2-illust.is-kusuri {
  width: 55px;
  margin-top: -10px;
}

.caseItem-2-illust.is-money {
  width: 50px;
  margin-top: -10px;
}

.caseItem-3 {
  position: relative;
}

.caseItem-3-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5px 0;
}

.caseItem-3-item + .caseItem-3-item {
  border-top: 1px dashed #ccc;
}

.caseItem-3-item-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}

.caseItem-3-item-one .caseIcon {
  margin-right: 10px;
}

.caseItem-3-illust {
  width: 43px;
}

.caseItem-3-illust.is-kabu {
  position: absolute;
  top: -13px;
  right: 0;
}

.caseItem-3-illust.is-negi {
  position: absolute;
  bottom: 10px;
  right: -15px;
  width: 62px;
}

.caseText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bold;
  font-size: 1.6rem;
}

.caseIcon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  padding-top: 3px;
  background: #4F3D11;
  font-family: "Teko", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-size: 2.3rem;
  color: #fff;
}

.caseIcon.is-s {
  width: 35px;
  height: 35px;
  font-size: 1.8rem;
}

.caseSectionUses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fcf8ef;
  border-radius: 10px;
  overflow: hidden;
}

.caseSectionUses-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f3eee4;
  width: 193px;
}

.caseSectionUses-title-en {
  display: block;
  font-family: "Teko", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-size: 2rem;
  color: #623435;
}

.caseSectionUses-title-ja {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #623435;
}

.caseSectionUses-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bold;
}

.caseSectionUses-contents-ul {
  padding: 30px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.caseSectionUses-contents-ul-li {
  width: 50%;
  list-style: disc;
}

.caseSectionUses-contents-ul-li.is-nonemark {
  list-style: none;
}

.sokutei {
  margin: 100px auto;
}

.sokutei-start {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
  padding: 30px 0 20px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.sokutei-start::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(100% + 10px);
  right: calc(50% - 71px);
  border-top: 30px solid #e7e7e7;
  border-right: 71px solid transparent;
  border-left: 71px solid transparent;
}

.sokutei-start-boximg {
  width: 296px;
}

.sokutei-start-text {
  margin-left: 40px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}

.sokutei-search-title {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #623435;
  text-align: center;
}

.sokuteiOutline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #623435;
  border-radius: 15px;
  background: #fdf6d9;
  overflow: hidden;
}

.sokuteiOutline-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 138px;
  background: #fcd84a;
  font-size: 1.6rem;
  font-weight: bold;
  color: #623435;
}

.sokuteiOutline-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 30px;
}

.sokuteiOutline-contents-item {
  margin: 10px 50px 10px 0;
  font-family: "Roboto", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-weight: bold;
}

.sokuteiOutline-contents-item a {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
}

.chartArea + .chartArea {
  margin-top: 130px;
}

.chartScollNote {
  display: none;
}

.chartSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.chartSection-titleArea {
  height: 44px;
  width: 197px;
}

.chartSection-titleArea-jougi {
  width: auto;
  height: 100%;
}

.chartSection-titleArea-graph {
  height: 255px;
}

.chartSection-titleArea img {
  width: 100%;
  height: 100%;
}

.chartSection-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  cursor: -webkit-grab;
  cursor: grab;
  overflow-x: hidden;
}

@media (max-width: 1099px) {
  .chartSection-contents {
    overflow-x: scroll;
  }
}

.touchD .chartSection-contents {
  overflow-x: scroll;
}

.chartSection-contents-scroll {
  width: 805px;
  padding-bottom: 20px;
}

.chartSection-contents-memori {
  width: 786px;
  height: 44px;
}

.chartSection-contents-graph {
  position: relative;
  height: 255px;
}

.chartSection-contents-memoriBottom {
  padding-left: 16px;
  width: 788px;
  height: 61px;
}

.chartSection-contents img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.chartSectionNumberIcon {
  position: absolute;
  top: 0;
  left: 4px;
  width: 100%;
  height: 100%;
}

.chartSectionNumberIcon .circleBrown {
  position: absolute;
  top: 0;
  font-size: 2rem;
  cursor: pointer;
}

.chartSectionNumberIcon-yasasiku {
  position: absolute;
  top: 53px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="10"] {
  left: 0px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="12"] {
  left: 39.6px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="14"] {
  left: 158.4px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="16"] {
  left: 277.2px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="18"] {
  left: 396px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="170"] {
  left: 396px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="190"] {
  left: 594px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="20"] {
  left: 237.6px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="25"] {
  left: 396px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="30"] {
  left: 554.4px;
}

.chartArea.is-1 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="35"] {
  left: 752.4px;
}

.chartArea.is-2 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="18"] {
  left: 0px;
}

.chartArea.is-2 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="210"] {
  left: 0px;
}

.chartArea.is-2 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="260"] {
  left: 198px;
}

.chartArea.is-2 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="310"] {
  left: 514.8px;
}

.chartArea.is-2 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="35"] {
  left: 0px;
}

.chartArea.is-2 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="40"] {
  left: 158.4px;
}

.chartArea.is-2 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="45"] {
  left: 356.4px;
}

.chartArea.is-2 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="50"] {
  left: 514.8px;
}

.chartArea.is-2 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="55"] {
  left: 712.8px;
}

.chartArea.is-3 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="310"] {
  left: 0px;
}

.chartArea.is-3 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="360"] {
  left: 79.2px;
}

.chartArea.is-3 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="410"] {
  left: 435.6px;
}

.chartArea.is-3 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="55"] {
  left: 0px;
}

.chartArea.is-3 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="60"] {
  left: 79.2px;
}

.chartArea.is-3 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="65"] {
  left: 277.2px;
}

.chartArea.is-3 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="70"] {
  left: 435.6px;
}

.chartArea.is-3 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="75"] {
  left: 594px;
}

.chartArea.is-4 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="460"] {
  left: 0px;
}

.chartArea.is-4 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="510"] {
  left: 356.4px;
}

.chartArea.is-4 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="560"] {
  left: 712.8px;
}

.chartArea.is-4 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="80"] {
  left: 0px;
}

.chartArea.is-4 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="100"] {
  left: 356.4px;
}

.chartArea.is-5 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="560"] {
  left: 0px;
}

.chartArea.is-5 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="610"] {
  left: 277.2px;
}

.chartArea.is-5 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="660"] {
  left: 633.6px;
}

.chartArea.is-5 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="100"] {
  left: 0px;
}

.chartArea.is-5 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="120"] {
  left: 435.6px;
}

.chartArea.is-6 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="660"] {
  left: 0px;
}

.chartArea.is-6 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="710"] {
  left: 198px;
}

.chartArea.is-6 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="760"] {
  left: 554.4px;
}

.chartArea.is-6 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="120"] {
  left: 0px;
}

.chartArea.is-7 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="760"] {
  left: 0px;
}

.chartArea.is-7 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="810"] {
  left: 118.8px;
}

.chartArea.is-7 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="1010"] {
  left: 475.2px;
}

.chartArea.is-8 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="1010"] {
  left: 0px;
}

.chartArea.is-8 .chartSectionNumberIcon-yasasiku .circleBrown[data-num="1210"] {
  left: 294px;
}

.chartSectionNumberIcon-hyojun {
  position: absolute;
  top: 122px;
}

.chartArea.is-1 .chartSectionNumberIcon-hyojun .circleBrown[data-num="8"] {
  left: 0px;
}

.chartArea.is-1 .chartSectionNumberIcon-hyojun .circleBrown[data-num="10"] {
  left: 198px;
}

.chartArea.is-1 .chartSectionNumberIcon-hyojun .circleBrown[data-num="12"] {
  left: 435.6px;
}

.chartArea.is-1 .chartSectionNumberIcon-hyojun .circleBrown[data-num="175"] {
  left: 396px;
}

.chartArea.is-1 .chartSectionNumberIcon-hyojun .circleBrown[data-num="195"] {
  left: 594px;
}

.chartArea.is-1 .chartSectionNumberIcon-hyojun .circleBrown[data-num="20"] {
  left: 356.4px;
}

.chartArea.is-1 .chartSectionNumberIcon-hyojun .circleBrown[data-num="25"] {
  left: 554.4px;
}

.chartArea.is-1 .chartSectionNumberIcon-hyojun .circleBrown[data-num="30"] {
  left: 752.4px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="14"] {
  left: 0px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="16"] {
  left: 396px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="215"] {
  left: 0px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="265"] {
  left: 198px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="315"] {
  left: 514.8px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="30"] {
  left: 0px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="35"] {
  left: 158.4px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="40"] {
  left: 356.4px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="45"] {
  left: 554.4px;
}

.chartArea.is-2 .chartSectionNumberIcon-hyojun .circleBrown[data-num="50"] {
  left: 752.4px;
}

.chartArea.is-3 .chartSectionNumberIcon-hyojun .circleBrown[data-num="18"] {
  left: 0px;
}

.chartArea.is-3 .chartSectionNumberIcon-hyojun .circleBrown[data-num="315"] {
  left: 0px;
}

.chartArea.is-3 .chartSectionNumberIcon-hyojun .circleBrown[data-num="365"] {
  left: 79.2px;
}

.chartArea.is-3 .chartSectionNumberIcon-hyojun .circleBrown[data-num="415"] {
  left: 435.6px;
}

.chartArea.is-3 .chartSectionNumberIcon-hyojun .circleBrown[data-num="50"] {
  left: 0px;
}

.chartArea.is-3 .chartSectionNumberIcon-hyojun .circleBrown[data-num="55"] {
  left: 158.4px;
}

.chartArea.is-3 .chartSectionNumberIcon-hyojun .circleBrown[data-num="60"] {
  left: 356.4px;
}

.chartArea.is-3 .chartSectionNumberIcon-hyojun .circleBrown[data-num="65"] {
  left: 554.4px;
}

.chartArea.is-3 .chartSectionNumberIcon-hyojun .circleBrown[data-num="70"] {
  left: 752.4px;
}

.chartArea.is-4 .chartSectionNumberIcon-hyojun .circleBrown[data-num="465"] {
  left: 0px;
}

.chartArea.is-4 .chartSectionNumberIcon-hyojun .circleBrown[data-num="515"] {
  left: 356.4px;
}

.chartArea.is-4 .chartSectionNumberIcon-hyojun .circleBrown[data-num="565"] {
  left: 712.8px;
}

.chartArea.is-4 .chartSectionNumberIcon-hyojun .circleBrown[data-num="70"] {
  left: 0px;
}

.chartArea.is-4 .chartSectionNumberIcon-hyojun .circleBrown[data-num="75"] {
  left: 158.4px;
}

.chartArea.is-4 .chartSectionNumberIcon-hyojun .circleBrown[data-num="80"] {
  left: 356.4px;
}

.chartArea.is-5 .chartSectionNumberIcon-hyojun .circleBrown[data-num="565"] {
  left: 0px;
}

.chartArea.is-5 .chartSectionNumberIcon-hyojun .circleBrown[data-num="615"] {
  left: 277.2px;
}

.chartArea.is-5 .chartSectionNumberIcon-hyojun .circleBrown[data-num="665"] {
  left: 633.6px;
}

.chartArea.is-5 .chartSectionNumberIcon-hyojun .circleBrown[data-num="80"] {
  left: 0px;
}

.chartArea.is-5 .chartSectionNumberIcon-hyojun .circleBrown[data-num="100"] {
  left: 356.4px;
}

.chartArea.is-6 .chartSectionNumberIcon-hyojun .circleBrown[data-num="665"] {
  left: 0px;
}

.chartArea.is-6 .chartSectionNumberIcon-hyojun .circleBrown[data-num="715"] {
  left: 198px;
}

.chartArea.is-6 .chartSectionNumberIcon-hyojun .circleBrown[data-num="765"] {
  left: 554.4px;
}

.chartArea.is-6 .chartSectionNumberIcon-hyojun .circleBrown[data-num="100"] {
  left: 0px;
}

.chartArea.is-6 .chartSectionNumberIcon-hyojun .circleBrown[data-num="120"] {
  left: 356.4px;
}

.chartArea.is-7 .chartSectionNumberIcon-hyojun .circleBrown[data-num="765"] {
  left: 0px;
}

.chartArea.is-7 .chartSectionNumberIcon-hyojun .circleBrown[data-num="815"] {
  left: 118.8px;
}

.chartArea.is-7 .chartSectionNumberIcon-hyojun .circleBrown[data-num="1015"] {
  left: 475.2px;
}

.chartArea.is-7 .chartSectionNumberIcon-hyojun .circleBrown[data-num="120"] {
  left: 0px;
}

.chartArea.is-8 .chartSectionNumberIcon-hyojun .circleBrown[data-num="1015"] {
  left: 0px;
}

.chartArea.is-8 .chartSectionNumberIcon-hyojun .circleBrown[data-num="1215"] {
  left: 294px;
}

.chartSectionNumberIcon-sikkari {
  position: absolute;
  top: 192px;
}

.chartArea.is-1 .chartSectionNumberIcon-sikkari .circleBrown[data-num="7"] {
  left: 0px;
}

.chartArea.is-1 .chartSectionNumberIcon-sikkari .circleBrown[data-num="8"] {
  left: 237.6px;
}

.chartArea.is-1 .chartSectionNumberIcon-sikkari .circleBrown[data-num="10"] {
  left: 435.6px;
}

.chartArea.is-1 .chartSectionNumberIcon-sikkari .circleBrown[data-num="180"] {
  left: 396px;
}

.chartArea.is-1 .chartSectionNumberIcon-sikkari .circleBrown[data-num="200"] {
  left: 594px;
}

.chartArea.is-1 .chartSectionNumberIcon-sikkari .circleBrown[data-num="20"] {
  left: 514.8px;
}

.chartArea.is-1 .chartSectionNumberIcon-sikkari .circleBrown[data-num="25"] {
  left: 752.4px;
}

.chartArea.is-2 .chartSectionNumberIcon-sikkari .circleBrown[data-num="12"] {
  left: 0px;
}

.chartArea.is-2 .chartSectionNumberIcon-sikkari .circleBrown[data-num="14"] {
  left: 396px;
}

.chartArea.is-2 .chartSectionNumberIcon-sikkari .circleBrown[data-num="220"] {
  left: 0px;
}

.chartArea.is-2 .chartSectionNumberIcon-sikkari .circleBrown[data-num="270"] {
  left: 198px;
}

.chartArea.is-2 .chartSectionNumberIcon-sikkari .circleBrown[data-num="320"] {
  left: 514.8px;
}

.chartArea.is-2 .chartSectionNumberIcon-sikkari .circleBrown[data-num="25"] {
  left: 0px;
}

.chartArea.is-2 .chartSectionNumberIcon-sikkari .circleBrown[data-num="30"] {
  left: 198px;
}

.chartArea.is-2 .chartSectionNumberIcon-sikkari .circleBrown[data-num="35"] {
  left: 514.8px;
}

.chartArea.is-3 .chartSectionNumberIcon-sikkari .circleBrown[data-num="16"] {
  left: 0px;
}

.chartArea.is-3 .chartSectionNumberIcon-sikkari .circleBrown[data-num="18"] {
  left: 594px;
}

.chartArea.is-3 .chartSectionNumberIcon-sikkari .circleBrown[data-num="320"] {
  left: 0px;
}

.chartArea.is-3 .chartSectionNumberIcon-sikkari .circleBrown[data-num="370"] {
  left: 79.2px;
}

.chartArea.is-3 .chartSectionNumberIcon-sikkari .circleBrown[data-num="420"] {
  left: 435.6px;
}

.chartArea.is-3 .chartSectionNumberIcon-sikkari .circleBrown[data-num="40"] {
  left: 0px;
}

.chartArea.is-3 .chartSectionNumberIcon-sikkari .circleBrown[data-num="45"] {
  left: 277.2px;
}

.chartArea.is-3 .chartSectionNumberIcon-sikkari .circleBrown[data-num="50"] {
  left: 554.4px;
}

.chartArea.is-4 .chartSectionNumberIcon-sikkari .circleBrown[data-num="18"] {
  left: 0px;
}

.chartArea.is-4 .chartSectionNumberIcon-sikkari .circleBrown[data-num="470"] {
  left: 0px;
}

.chartArea.is-4 .chartSectionNumberIcon-sikkari .circleBrown[data-num="520"] {
  left: 356.4px;
}

.chartArea.is-4 .chartSectionNumberIcon-sikkari .circleBrown[data-num="570"] {
  left: 712.8px;
}

.chartArea.is-4 .chartSectionNumberIcon-sikkari .circleBrown[data-num="50"] {
  left: 0px;
}

.chartArea.is-4 .chartSectionNumberIcon-sikkari .circleBrown[data-num="55"] {
  left: 39.6px;
}

.chartArea.is-4 .chartSectionNumberIcon-sikkari .circleBrown[data-num="60"] {
  left: 356.4px;
}

.chartArea.is-4 .chartSectionNumberIcon-sikkari .circleBrown[data-num="65"] {
  left: 633.6px;
}

.chartArea.is-5 .chartSectionNumberIcon-sikkari .circleBrown[data-num="570"] {
  left: 0px;
}

.chartArea.is-5 .chartSectionNumberIcon-sikkari .circleBrown[data-num="620"] {
  left: 277.2px;
}

.chartArea.is-5 .chartSectionNumberIcon-sikkari .circleBrown[data-num="670"] {
  left: 633.6px;
}

.chartArea.is-5 .chartSectionNumberIcon-sikkari .circleBrown[data-num="65"] {
  left: 0px;
}

.chartArea.is-5 .chartSectionNumberIcon-sikkari .circleBrown[data-num="70"] {
  left: 118.8px;
}

.chartArea.is-5 .chartSectionNumberIcon-sikkari .circleBrown[data-num="75"] {
  left: 396px;
}

.chartArea.is-5 .chartSectionNumberIcon-sikkari .circleBrown[data-num="80"] {
  left: 673.2px;
}

.chartArea.is-6 .chartSectionNumberIcon-sikkari .circleBrown[data-num="670"] {
  left: 0px;
}

.chartArea.is-6 .chartSectionNumberIcon-sikkari .circleBrown[data-num="720"] {
  left: 198px;
}

.chartArea.is-6 .chartSectionNumberIcon-sikkari .circleBrown[data-num="770"] {
  left: 554.4px;
}

.chartArea.is-6 .chartSectionNumberIcon-sikkari .circleBrown[data-num="80"] {
  left: 0px;
}

.chartArea.is-6 .chartSectionNumberIcon-sikkari .circleBrown[data-num="100"] {
  left: 356.4px;
}

.chartArea.is-7 .chartSectionNumberIcon-sikkari .circleBrown[data-num="770"] {
  left: 0px;
}

.chartArea.is-7 .chartSectionNumberIcon-sikkari .circleBrown[data-num="820"] {
  left: 118.8px;
}

.chartArea.is-7 .chartSectionNumberIcon-sikkari .circleBrown[data-num="1020"] {
  left: 475.2px;
}

.chartArea.is-7 .chartSectionNumberIcon-sikkari .circleBrown[data-num="100"] {
  left: 0px;
}

.chartArea.is-7 .chartSectionNumberIcon-sikkari .circleBrown[data-num="120"] {
  left: 514.8px;
}

.chartArea.is-8 .chartSectionNumberIcon-sikkari .circleBrown[data-num="1020"] {
  left: 0px;
}

.chartArea.is-8 .chartSectionNumberIcon-sikkari .circleBrown[data-num="1220"] {
  left: 294px;
}

.chartArea.is-8 .chartSectionNumberIcon-sikkari .circleBrown[data-num="120"] {
  left: 0px;
}

.circleBrown {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 5px;
  padding-top: 3px;
  background: #513e22;
  font-family: "Teko", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-size: 2.3rem;
  color: #fff;
}

.omoiArea {
  padding-bottom: 120px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dbdbdb;
}

.conceptArea {
  background: url(../img/concept/) center calc(50% - 25vh)/100% no-repeat;
}

.itudemo-wrap {
  overflow: hidden;
  padding-bottom: 20px;
}

.itudemo-title {
  margin-bottom: 45px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
}

.itudemo-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.itudemo-main.is-1 {
  padding-right: 5%;
}

.itudemo-main.is-2 {
  padding-left: 5%;
}

.itudemo-main + .itudemo-main {
  margin-top: -20px;
}

.itudemo-main-img {
  width: 550px;
  height: 550px;
}

.itudemo-main-img-mask {
  position: relative;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-mask-image: url("../img/concept/mask.svg");
  mask-image: url("../img/concept/mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transition: -webkit-mask-image 1s;
  -webkit-transition: -webkit-mask-image 1s;
  transition: mask-image 1s;
  transition: mask-image 1s, -webkit-mask-image 1s;
}

.itudemo-main-img-mask img {
  position: absolute;
  max-width: none;
  will-change: transform;
}

.is-1 .itudemo-main-img-mask img {
  width: 110%;
  top: -10%;
  left: -10%;
}

.is-2 .itudemo-main-img-mask img {
  width: 150%;
  bottom: -18%;
  left: -20%;
}

.itudemo-main-text {
  margin-left: 20px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.itudemo-main-text p {
  line-height: 3;
}

@-webkit-keyframes wobbling_x {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes wobbling_x {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes wobbling_y {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes wobbling_y {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.bandMessage {
  position: relative;
  height: 860px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.bandMessage-msg {
  margin-bottom: 40px;
}

.bandMessage-msg p {
  line-height: 3;
}

.bandMessage-img {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  height: 507px;
  border-radius: 20px;
  overflow: hidden;
  z-index: -1;
}

.bandMessage-img img {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
}

.kodawari-title {
  margin-bottom: 70px;
  font-weight: bold;
  text-align: center;
}

.kodawari-title-sub {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
}

.kodawari-title-main {
  font-size: 2.8rem;
}

.kodawariSection {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
}

.kodawariSection + .kodawariSection {
  margin-top: 100px;
}

.kodawariSection-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  border-radius: 10px;
  overflow: hidden;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(#000), color-stop(33%, #000), color-stop(66%, transparent), to(transparent));
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 33%, transparent 66%, transparent 100%);
  mask-image: -webkit-gradient(linear, left top, right top, from(#000), color-stop(33%, #000), color-stop(66%, transparent), to(transparent));
  mask-image: linear-gradient(90deg, #000 0%, #000 33%, transparent 66%, transparent 100%);
  -webkit-mask-origin: border-box;
  mask-origin: border-box;
  -webkit-mask-size: 300% auto;
  mask-size: 300% auto;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  will-change: mask-position, z-index;
}

.kodawariSection:nth-child(even) .kodawariSection-img {
  top: 0;
  left: auto;
  right: 0;
}

.kodawariSection-contents {
  position: relative;
  width: 60%;
  margin: 100px 0 0 auto;
  padding: 65px 50px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.kodawariSection:nth-child(even) .kodawariSection-contents {
  margin-right: auto;
  margin-left: 0;
}

.kodawariSection-contents-title {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 25px;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 2.3;
}

.kodawariSection-contents-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: #000;
}

.kodawariSection-contents-text {
  font-weight: bold;
}

.kodawariSection-contents-text p {
  line-height: 2.4;
}

.kodawariSection-contents-text p + p {
  margin-top: 30px;
}

.overflowContainer {
  overflow: hidden;
}

.development, .evolve {
  position: relative;
  margin-bottom: 160px;
  z-index: 1;
}

.development-lead, .evolve-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  opacity: 0;
}

.development-lead-title, .evolve-lead-title {
  margin-bottom: 80px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.9;
}

.development-lead-img, .evolve-lead-img {
  width: 40%;
  margin-left: 20px;
}

.devContents {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 6%;
}

.devContents-des {
  padding-top: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.devContents-des-text p {
  line-height: 2.4;
}

.devContents-des-text p + p {
  margin-top: 35px;
}

.devContents-imgs {
  width: 38%;
}

.devContents-imgs-img + .devContents-imgs-img {
  margin-top: 50px;
}

.devContents-imgs-cap {
  margin-top: 15px;
  text-align: center;
}

.kurou {
  position: relative;
  margin-bottom: 160px;
}

.kurou-img {
  position: absolute;
  right: 0;
  bottom: -13vw;
  width: 70%;
  z-index: -1;
}

.kurou-des {
  max-width: 570px;
  margin-left: calc((100% - 1000px) / 2);
}

.kurou-des-title {
  margin-bottom: 45px;
  font-weight: bold;
  font-size: 1.8rem;
}

.kurou-des-text p {
  line-height: 2.4;
}

.kurou-des-text p + p {
  margin-top: 35px;
}

.aisare {
  position: relative;
  margin-bottom: 100px;
}

.aisare-img {
  position: absolute;
  right: 0;
  bottom: -13vw;
  width: 60%;
  z-index: -1;
}

.aisare-des {
  max-width: 570px;
  margin-left: calc((100% - 1000px) / 2);
}

.aisare-des-title {
  margin-bottom: 45px;
  font-weight: bold;
  font-size: 1.8rem;
}

.aisare-des-text p {
  line-height: 2.4;
}

.aisare-des-text p + p {
  margin-top: 35px;
}

.diagnosisSummary {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
  z-index: 1;
}

.diagnosisSummary-img {
  max-width: 450px;
  margin-right: -20px;
  float: right;
  margin-left: 40px;
}

.diagnosisSummary-contents-text p {
  line-height: 2.2;
}

.diagnosisSummary-contents-text p + p {
  margin-top: 35px;
}

.sindanQuestion {
  position: relative;
  padding: 120px 0 70px;
  background: #fcf8ef;
}

.sindanQuestion::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 115px);
  display: inline-block;
  border-top: 55px solid #fcf8ef;
  border-right: 115px solid transparent;
  border-left: 115px solid transparent;
  z-index: 1;
}

.stepSection-wrap {
  margin-bottom: 80px;
}

.stepSection {
  position: relative;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 45px 5%;
  border-right: 1px solid #623435;
  border-bottom: 1px solid #623435;
  border-left: 1px solid #623435;
  background: #fff;
}

.stepSection::before,
.stepSection::after {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  width: calc(50% - 150px);
  background: #623435;
}

.stepSection::before {
  left: 0;
}

.stepSection::after {
  right: 0;
}

.stepSection + .stepSection {
  margin-top: 90px;
}

.stepSection-title {
  position: absolute;
  top: -20px;
  left: calc(50% - 102px);
  width: 204px;
  padding: 10px;
  background: #fff799;
  border-radius: 30px;
  border: 1px solid #623435;
  text-align: center;
  font-weight: bold;
  color: #623435;
}

.stepSection-contents-lead {
  margin-bottom: 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.stepSectionOutline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stepSectionOutline-img {
  width: 30%;
}

.stepSectionOutline-main {
  width: 60%;
}

.outLineFormArea {
  border: 2px solid #000;
  border-radius: 5px;
}

.outLineFormArea-title {
  padding: 10px;
  text-align: center;
  border-bottom: 2px dotted #000;
  font-weight: bold;
}

.outLineForm-wrap {
  padding: 0 0 8px;
}

.outLineForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 6%;
}

.outLineForm-range {
  width: 170px;
}

.outLineForm-range input {
  width: 100%;
}

.outLineForm-cm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: bold;
}

.outLineForm-cm-num {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100px;
  margin-right: 20px;
  padding: 5px 10px;
  text-align: right;
  font-family: "arial";
  font-size: 4.5rem;
  border: 1px solid #a8a8a8;
  border-radius: 5px;
}

.outLineForm-cm-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.outLineFormNote {
  text-align: center;
  font-weight: bold;
}

.outLineFormNote a {
  text-decoration: underline;
}

.stepSectionBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.stepSectionBtns-item {
  position: relative;
  width: 32%;
  height: 83px;
}

.stepSectionBtns-item-img {
  position: absolute;
  top: -40px;
  left: calc(50% - 30px);
  width: 60px;
}

.is-thickness .stepSectionBtns-item-img {
  width: 100%;
  left: 0;
}

.stepSectionBtns-item-btn {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #000;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  overflow: hidden;
}

.is-thickness .stepSectionBtns-item-btn {
  position: relative;
}

.stepSectionBtns-item-btn input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.stepSectionBtns-item-btn input:checked + label {
  background: #fffc69;
}

.stepSectionBtns-item-btn label {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5px;
  cursor: pointer;
  line-height: 2;
  -webkit-box-shadow: -5px -5px 10px 0 rgba(0, 0, 0, 0.1) inset;
          box-shadow: -5px -5px 10px 0 rgba(0, 0, 0, 0.1) inset;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.sindanGo {
  text-align: center;
}

.diaResult {
  position: relative;
  min-height: 780px;
  padding: 100px 0 150px;
  background: #fcd746;
}

.diaResult-title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}

.diaResult-lead {
  margin-bottom: 50px;
  text-align: center;
}

.diaResult-lead-inner {
  display: inline-block;
  padding: 10px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: inline-block;
}

.resultItemMessage {
  width: 100%;
  padding: 0 5%;
  text-align: center;
}

.resultItemSection-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.resultItemSection-wrap.isLoading {
  opacity: 0;
}

.resultItemLoading {
  position: absolute;
  top: 250px;
  width: 100%;
  text-align: center;
}

.resultItemSection {
  width: 47%;
}

.resultItemSection:nth-child(n+3) {
  margin-top: 80px;
}

.resultItemSection-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.resultItemSection-title-main {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 53px;
  height: 53px;
  margin: 0 20px;
  border-radius: 50%;
  background: #623435;
  color: #fff;
  font-family: "Teko", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
}

.resultItemSection-title-icon {
  display: inline-block;
  min-width: 70px;
  padding: 2px 10px;
  background: #fff;
  font-size: 1.4rem;
  border-radius: 30px;
  text-align: center;
}

.resultItemSection-imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.resultItemSection-imgs-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  border: 1px solid #623435;
  background: url(../img/common/logo.svg) center center/40% #dad0c9 no-repeat;
}

.resultItemSection-imgs-item::before {
  content: "";
  display: inline-block;
  width: 100%;
  padding-bottom: 100%;
}

.resultItemSection-imgs-item img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.resultItemSection-illust {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  padding: 20px 20px 6px;
  background: #fff;
  border: 1px solid #000;
}

.resultItemSection-illust-one {
  position: relative;
  width: 50%;
  padding-bottom: 20px;
}

.resultItemSection-illust-one-ori {
  width: 166px;
  margin: 0 auto 5px;
}

.resultItemSection-illust-one-kiri {
  width: 129px;
  margin: 0 auto 8px;
}

.resultItemSection-illust-one-val {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-family: "Roboto", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.resultItemSection-btn {
  text-align: center;
}

.resultItemSection-btn a {
  width: 270px;
}

.basicSize {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  margin-top: 100px;
  padding: 40px;
  background: #fff;
  border: 1px solid #623435;
}

.basicSize-title {
  text-align: center;
}

.basicSize-title-inner {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 15px;
  border-top: 1px solid #623435;
  border-bottom: 1px solid #623435;
  font-size: 2rem;
  font-weight: bold;
  color: #623435;
}

.basicSize-lead {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.basicSizeIllust-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20%;
}

.basicSizeIllust {
  text-align: center;
}

.basicSizeIllust-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 10px;
  height: 150px;
}

.basicSizeIllust-img.is-ori {
  width: 230px;
}

.basicSizeIllust-img.is-kiri {
  width: 86px;
}

.basicSizeIllust-text {
  font-weight: bold;
}

.basicSizeIllust-text p {
  line-height: 2.3;
}

.factoryArea {
  position: relative;
  margin-top: 80px;
  padding-bottom: 120px;
}

.factoryArea::before {
  content: "";
  position: absolute;
  left: calc(50% - 5px);
  top: 0;
  display: inline-block;
  width: 8px;
  height: 100%;
  background: url(../img/factory/circle.png) center top/100% repeat-y;
}

.factorySection {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 10%;
}

.factorySection + .factorySection {
  margin-top: 120px;
}

.factorySection-step {
  position: absolute;
  left: calc(50% - 55px);
  top: -30px;
  width: 110px;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #000;
  z-index: 1;
}

.factorySection-step::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 2px;
  display: inline-block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: #fff;
  border-radius: 50%;
  border: 1px solid #000;
}

.factorySection-step-num {
  position: relative;
  font-family: "Roboto", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-size: 3rem;
}

.factorySection-step-label {
  position: relative;
  font-weight: bold;
  font-size: 1.6rem;
}

.factorySection-img {
  width: 45%;
}

.factorySection:nth-child(even) .factorySection-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.factorySection-img-note {
  text-align: right;
}

.factorySection-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.factorySection:nth-child(even) .factorySection-contents {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.factorySection-contents-title {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
}

.factorySection:nth-child(odd) .factorySection-contents-title {
  margin-left: 30px;
}

.factorySection-contents-text p {
  line-height: 2.4;
}

.lastFactorySection-img {
  position: relative;
  width: 450px;
  margin: 0 auto 30px;
}

.lastFactorySection-copy {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.filterSelectArea {
  text-align: right;
}

.filterSelectArea-inner {
  display: inline-block;
}

.filterSelectArea-lead {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

.filterSelect-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 15px;
}

.filterSelect {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff799;
  border: 1px solid #623435;
  border-radius: 10px;
  overflow: hidden;
}

.filterSelect-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px;
  background: #623435;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.filterSelect-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 20px;
}

.filterSelect-main-select {
  border-radius: 5px;
}

.filterSelect-main-select select {
  width: 145px;
  height: 31px;
  padding: 0;
}

.filterSelect-main-note {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.itemBox-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px 5%;
  margin-top: 80px;
  margin-bottom: 100px;
}

.itemBox {
  width: 30%;
}

.itemBox-img {
  position: relative;
  margin-bottom: 10px;
}

.itemBox-img a {
  display: block;
}

.itemBox-img a::before {
  content: "";
  display: inline-block;
  width: 100%;
  padding-top: 100%;
  vertical-align: bottom;
}

.itemBox-img img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.itemBox-cap {
  margin-bottom: 30px;
}

.itemBox-cap-main {
  font-size: 1.8rem;
  font-weight: bold;
}

.itemBox-cap-cate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 21px;
  background: #623435;
  margin: -4px 0 0 20px;
  padding: 0 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
  vertical-align: middle;
}

.itemBox-btn {
  width: 80%;
  margin: 0 auto;
}

.itemBox-btn a {
  width: 100%;
}

.detailContainer {
  padding-bottom: 100px;
}

.detailContainer-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

.detailContainer-title-itemName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detailContainer-title-itemName-main {
  font-size: 3rem;
  font-weight: bold;
}

.detailContainer-title-itemName-icon {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 15px;
  background: #623435;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

.detailContaineSubInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
}

.detailContaineSubInfo-item + .detailContaineSubInfo-item {
  margin-left: 25px;
}

.detailContaineSubInfo-item-label {
  display: inline-block;
  background: #fcdb52;
  padding: 1px 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

.detailContaineSubInfo-item-dd {
  margin-left: 3px;
  display: inline-block;
  font-family: "Roboto", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-weight: bold;
}

.detailImgWrap {
  margin: 0 auto;
}

.detailImgs {
  position: relative;
  max-width: calc(650px + 20%);
  width: 100%;
  margin: 0 auto 100px;
  padding: 0 10%;
}

.detailImgs-inner {
  height: 690px;
  position: relative;
  overflow: hidden;
}

.detailImgs-main {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}

.detailImgs-main-photowrap {
  position: relative;
  width: 100%;
}

.detailImgs-main-photowrap-img {
  width: 100%;
  height: 650px;
  background: #f2f2f2;
}

.detailImgs-main-photowrap-cap {
  display: block;
  margin: 10px 5px 0 0;
  text-align: right;
  font-weight: bold;
}

.detailImgs-main-photowrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.detailImgs-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.detailImgs-arrow-item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 300px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/common/icon-arrow-gray.png) center center/14px no-repeat #ebebeb;
  pointer-events: all;
  cursor: pointer;
}

.detailImgs-arrow-item.is-prev {
  right: calc(50% + 350px);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.detailImgs-arrow-item.is-next {
  left: calc(50% + 350px);
}

.detailImgs-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2%;
  cursor: pointer;
}

.detailImgs-sub-item {
  position: relative;
  width: 24%;
}

.detailImgs-sub-item::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.detailImgs-sub-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.detailImgs-sub-item.is-current {
  -webkit-box-shadow: 0 0 0 2px #fcdb52;
          box-shadow: 0 0 0 2px #fcdb52;
}

.itemSpec {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.itemSpec-buy {
  padding: 0 5%;
}

.itemSpecBuy + .itemSpecBuy {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.itemSpecBuy-g {
  margin-bottom: 10px;
}

.itemSpecBuy-btn {
  position: relative;
  width: 345px;
}

.itemSpecBuy-btn a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-right: 10px;
}

.itemSpecBuy-btnTxt {
  width: calc(100% - 36px);
  text-align: left;
}

.itemSpecBuy-btn-amazon {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 20px;
  width: 24px;
  bottom: 0;
  margin: auto;
}

.itemSpecMain-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 80px;
}

.itemSpecMain {
  position: relative;
  margin-bottom: 10px;
  padding: 30px 40px 20px;
  background: #fcf8ef;
}

.itemSpecMain-dl-item-title {
  margin-bottom: 3px;
  font-weight: bold;
}

.itemSpecMain-dl-item + .itemSpecMain-dl-item {
  margin-top: 20px;
}

.itemSpecMain-note {
  margin-top: 20px;
  font-size: 1.3rem;
}

.itemCode {
  text-align: right;
}

.itemNoteBox {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  background: #f9f9f9;
}

.itemNoteBox p {
  line-height: 3rem;
}

.tabCategory-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  padding: 0 10px;
  border-bottom: 1px solid #623435;
}

.tabCategory-ul-li {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.tabCategory-ul-li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 45px;
  padding: 10px 40px;
  background: #623435;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.listBox-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px 5%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.listBox {
  width: 30%;
}

.listBox-img {
  position: relative;
  margin-bottom: 8px;
}

.listBox-img a {
  display: block;
}

.listBox-img a::before {
  content: "";
  display: inline-block;
  width: 100%;
  padding-top: 70%;
}

.listBox-img img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.listBox-title {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.listBox-info {
  overflow: hidden;
  margin-bottom: 5px;
  min-height: 23px;
}

.listBox-info-cate {
  display: block;
  float: right;
  margin-left: 5px;
  padding: 2px 10px;
  border: 1px solid #623435;
  border-radius: 30px;
  font-size: 1.3rem;
  color: #623435;
}

.listBox-info-time {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #999;
}

.listBox-text {
  font-size: 1.3rem;
}

.listBox-text a {
  display: block;
}

.listBox-text p {
  line-height: 1.6;
}

.listBox-tags {
  clear: both;
  margin: 5px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.listBox-tags-one {
  display: inline-block;
  padding: 3px 10px;
  background: #999;
  border: 1px solid #999;
  border-radius: 3px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

.newsArticle {
  overflow: hidden;
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
}

.newsArticle-title {
  position: relative;
  margin-bottom: 10px;
}

.newsArticle-title-time {
  display: inline-block;
  color: #7e7e7e;
  font-size: 1.6rem;
  margin-right: 2rem;
}

.newsArticle-title-text {
  line-height: 1.8;
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
}

.newsArticle-cate {
  margin-bottom: 10px;
  text-align: right;
}

.newsArticle-cate-one {
  display: inline-block;
  margin-right: 5px;
  padding: 3px 15px;
  border-radius: 30px;
  border: 1px solid #623435;
  color: #623435;
}

.newsArticle-tag {
  clear: both;
  margin-bottom: 20px;
}

.newsArticle-tag-one {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #999;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #999;
}

.newsArticle-tag-one + .newsArticle-tag-one {
  margin-left: 5px;
}

.newsArticle-content-img {
  float: right;
  width: 30%;
  margin-left: 60px;
}

.newsArticleBtn {
  margin: 70px auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 70px 0;
}

.pagination-one a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 10px 30px;
  border: 1px solid #623435;
  font-weight: bold;
  color: #623435;
}

.pagination-one a:hover {
  background: #f1f1f1;
}

.pagination-one.is-prev a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #623435;
  border-left: 1px solid #623435;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-right: 10px;
}

.pagination-one.is-next a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #623435;
  border-right: 1px solid #623435;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 10px;
}

.newsArticleTags {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 80px;
}

.newsArticleTags-title {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}

.newsArticleTags-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  border-radius: 5px;
  background: #f7f7f7;
}

.newsArticleTags-items-item a {
  display: inline-block;
  padding: 2px 10px;
  background: #999;
  border-radius: 3px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

.contactArea-lead {
  margin-bottom: 120px;
}

.contactArea-lead p {
  line-height: 2.5;
}

.contactArea-lead p + p {
  margin-top: 30px;
}

.contactArea-lead p em {
  font-weight: bold;
}

.contactTable {
  margin-bottom: 40px;
}

.contactTable th {
  width: 25%;
}

.contactTable .is-hissu {
  display: inline-block;
  margin-left: 5px;
  color: #ff0000;
}

.contactTable-jusho {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contactTable-jusho-postcode {
  width: 40%;
}

.contactTable-jusho-postcode-input {
  width: 100%;
}

.contactTable-jusho-todoufuken {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10%;
  text-align: right;
}

.contactTable-jusho-todoufuken-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  margin-right: 10px;
  width: 180px;
}

.contactTable-jusho-todoufuken input {
  width: 100%;
  min-width: 100px;
}

.contactTable-renrakusaki {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contactTable-renrakusaki-fax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
}

.contactTable-renrakusaki-fax-label {
  display: block;
  margin-right: 10px;
}

.contactTable-renrakusaki-fax input {
  width: 200px;
}

.contactTable input,
.contactTable textarea,
.contactTable select {
  background: #f2f2f2;
  border: none;
  vertical-align: middle;
}

.contactTable input[type=file],
.contactTable textarea[type=file],
.contactTable select[type=file] {
  background: transparent;
}

.contactTable .checkboxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contactTable .checkboxWrap label {
  width: 25%;
  display: inline-block;
  margin: 5px 0 0;
}

.contactTable .checkboxWrap input[type=checkbox],
.contactTable .checkboxWrap input[type=radio] {
  margin-right: 5px;
}

.contactTable .radioWrap label {
  display: inline-block;
  margin: 0 30px 0 0;
}

.contactTable .radioWrap input[type=checkbox],
.contactTable .radioWrap input[type=radio] {
  margin-right: 5px;
}

.fileTd,
.fileTh {
  margin: 10px 0;
}

.fileTd-one + .fileTd-one,
.fileTd-one + .fileTh-one,
.fileTh-one + .fileTd-one,
.fileTh-one + .fileTh-one {
  margin-top: 20px;
}

.contactBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.contactBtns input.is-gray {
  width: 120px;
}

.contactPrivacy {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 40px;
}

.contactPrivacy a {
  color: #019ab3;
  text-decoration: underline;
}

.contactPrivacy-note {
  display: block;
  font-size: 1.4rem;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ebeae9;
  z-index: 1;
  -webkit-transition: all 2s cubic-bezier(0, 1.02, 0.24, 1.01);
  transition: all 2s cubic-bezier(0, 1.02, 0.24, 1.01);
}

.siteOpen .loading {
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
}

.loading-icon {
  position: fixed;
  top: 48%;
  left: calc(50% - 20px);
}

.mv {
  position: relative;
  opacity: 0;
}

.siteOpen .mv {
  opacity: 1;
}

.mv-sizeSelect {
  position: absolute;
  top: -20px;
  right: 5%;
  background: #fff;
  width: 107px;
  height: 107px;
  border-radius: 50%;
  text-align: center;
  line-height: 1.6;
  overflow: hidden;
  z-index: 2;
}

.mv-sizeSelect a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #a9894b;
  font-weight: bold;
}

.mv-sizeSelect a::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid #a9894b;
  border-radius: 50%;
}

.mv-sizeSelect a::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 2px);
  bottom: 18px;
  border-left: 4px solid #a9894b;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  z-index: 1;
}

.mv-copy {
  position: absolute;
  top: 27%;
  left: calc(50% - 500px);
  width: 292px;
  z-index: 1;
  background: url(../img/top/bg-maincopy.svg) center center/100% 100% no-repeat;
  z-index: 8;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.mv-mouse {
  position: absolute;
  bottom: -15px;
  left: calc(50% - 9px);
  -webkit-animation: mouse 2s ease-out infinite;
  animation: mouse 2s ease-out infinite;
}

.mv-mouse img {
  display: block;
  width: 17px;
}

.mv-mouse::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: 3.7px;
  width: 10px;
  height: 6px;
  background: url(../img/common/icon-arrow-b.svg) center center/contain no-repeat;
}

@-webkit-keyframes mouse {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes mouse {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.mvSlider {
  position: relative;
  height: 50.5vw;
  overflow: hidden;
}

.topReason {
  background: url(../img/top/bg-band.jpg) right 80%/cover no-repeat;
}

.topReason-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 618px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
}

.topReason-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 40px;
  font-size: 3.6rem;
  color: #623435;
  font-weight: bold;
}

.topReason-title-logo {
  display: block;
  width: 179px;
}

.topReason-title-ja {
  margin-left: 18px;
  margin-bottom: -3px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #623435;
}

.topReason-text {
  margin-bottom: 40px;
  width: 45%;
  font-size: 1.6rem;
  font-weight: bold;
}

.topReason-text p {
  line-height: 2.5;
}

.topWagomuSize {
  padding: 80px 0;
  border-bottom: 1px solid #dbdbdb;
  background: url(../img/top/img-bandhand.png) calc(50% + 270px) 30px/45% no-repeat #fcf8ef;
}

.topWagomuSize .topWagomuSize-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* .evolveContents_top .evolve_inner{
  max-width: 1000px;
  width: 100%;
  margin: 80px auto;
} */
.topWagomuSize-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topWagomuSize-tag-item {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #623435;
  background: #fff;
  color: #623435;
  font-weight: bold;
  font-size: 1.3rem;
}

.topWagomuSize-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topWagomuSize-title-ja {
  font-size: 3rem;
  font-weight: bold;
  color: #623435;
}

.topWagomuSize-title-illust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}

.topWagomuSize-title-illust-one.is-book {
  width: 50px;
}

.topWagomuSize-title-illust-one.is-bento {
  width: 58px;
}

.topWagomuSize-title-illust-one.is-vesi {
  width: 50px;
}

.topWagomuSize-title-illust-one + .topWagomuSize-title-illust-one {
  margin-left: 15px;
}

.topWagomuSize-lead {
  width: 61%;
  margin-bottom: 40px;
}

.topWagomuSize-lead p {
  line-height: 2.3;
  font-weight: bold;
}

.topSizeItem-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}

.topSizeItem {
  position: relative;
  width: 30%;
  padding-right: 30px;
  padding-left: 30px;
  border: 1px solid #623435;
  border-top: none;
  background: #fff;
}

.topSizeItem::before,
.topSizeItem::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  height: 1px;
  width: 13%;
  background: #623435;
}

.topSizeItem::before {
  left: 0;
}

.topSizeItem::after {
  right: 0;
}

.topSizeItem-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70%;
  height: 40px;
  margin: -20px auto 10px;
  background: #fff799;
  border-radius: 30px;
  border: 1px solid #623435;
  color: #623435;
  font-size: 1.6rem;
  font-weight: bold;
}

.topSizeItem-img {
  margin-bottom: 20px;
}

.topSizeItem-text {
  padding: 0 10px 20px;
  font-size: 1.2rem;
}

.topNews {
  border-bottom: 1px solid #dbdbdb;
}

.topNews-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  padding: 80px 0;
}

.topNews-more {
  float: right;
  margin-right: 60px;
}

.topNewsSection-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topNewsSection {
  width: 23%;
}

.topNewsSection-img {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}

.topNewsSection-img a {
  display: block;
}

.topNewsSection-img a::before {
  position: relative;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 64%;
  background: -webkit-gradient(linear, left top, left bottom, from(#663100), to(#b8980a));
  background: linear-gradient(#663100, #b8980a);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  mix-blend-mode: overlay;
  z-index: 1;
}

.topNewsSection-img a:hover::before {
  opacity: 1;
}

.topNewsSection-img a:hover img {
  opacity: 1;
}

.topNewsSection-img img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.topNewsSection-info {
  overflow: hidden;
  margin-bottom: 5px;
}

.topNewsSection-info-time {
  font-size: 1.2rem;
  font-weight: bold;
  color: #747474;
}

.topNewsSection-info-cate {
  float: right;
  display: block;
  padding: 3px 5px;
  border-radius: 5px;
  background: #b0b0b0;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.topNewsSection-cap {
  clear: both;
  width: 100%;
  font-size: 1.2rem;
}

.topObandStory {
  padding: 40px 0 70px;
  border-bottom: 1px solid #dbdbdb;
}

.topObandStory-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
}

.topObandStoryBn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topObandStoryBn-item {
  width: 49%;
}

.topObandStoryBn-item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.topObandStoryBn-item-title {
  position: absolute;
  top: 40%;
  left: 8%;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}

.is-hiwa .topObandStoryBn-item-title {
  color: #000;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/common/lightbox/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/common/lightbox/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/common/lightbox/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/common/lightbox/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
  a:hover img {
    opacity: 0.8;
  }
  p a:hover {
    color: #019ab3;
  }
  .pagination2-box li a:hover {
    background: #ffee37;
  }
  .headerNavi-ul-li + .headerNavi-ul-li {
    border-left: 1px solid #ccc;
  }
  .contactBtns input {
    width: 255px;
  }
  .topWagomuSize-tag-item + .topWagomuSize-tag-item {
    margin-left: 10px;
  }
  .topNewsSection:not(:nth-child(4n+1)) {
    margin-left: 2%;
  }
  .topNewsSection:nth-child(n+5) {
    margin-top: 80px;
  }
}
@media (min-width: 980px) {
  .caseSectionUses-contents-ul-li:nth-child(n+3) {
    margin-top: 10px;
  }
}
@media (max-width: 979px) {
  .bandMessage-img {
    border-radius: 0;
    height: 45vw;
    margin-bottom: 40px;
  }
  .itemSpec {
    display: block;
  }
  .itemSpecBuy + .itemSpecBuy {
    margin-top: 0;
    margin-top: 0;
    padding-top: 0;
    border: none;
  }
  .itemSpecBuy-btn a {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 65%;
  }
  .pc {
    display: none !important;
  }
  a:active img {
    opacity: 0.8;
  }
  p a:active {
    color: #019ab3;
  }
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    font-size: 1.6rem;
  }
  .btn-big {
    width: 100%;
  }
  .col {
    display: block;
  }
  .col.is-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .col-contents {
    max-width: 100%;
  }
  .col:not(.is-sp-flex) .col-contents + .col:not(.is-sp-flex) .col-contents {
    margin-top: 10px;
  }
  .is-oneline:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-oneline:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
  .is-2 .col-contents:nth-child(n+3) {
    margin-top: 30px;
  }
  .is-2:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-2:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
  .is-3 .col-contents:nth-child(n+4) {
    margin-top: 10px;
  }
  .is-3:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-3:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
  .is-4 .col-contents:nth-child(n+5) {
    margin-top: 10px;
  }
  .is-4:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-4:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
  .flImgContents-img {
    max-width: 100%;
  }
  .flImgContents-img.is-s {
    max-width: 100%;
  }
  .flImgContents-img.is-ss {
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .flImgContents-img.is-l {
    max-width: 100%;
  }
  .flImgContents-img.is-fr {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fr:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fr.is-sp-float {
    width: 35%;
    margin: 0 0 10px 10px;
  }
  .flImgContents-img.is-fl {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fl:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fl.is-sp-float {
    width: 35%;
    margin: 0 10px 10px 0;
  }
  .size-30 {
    width: 70%;
  }
  .size-60 {
    width: 100%;
  }
  .section-center-sp {
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
  }
  .slider__nav {
    opacity: 0;
  }
  .table-01 th,
  .table-01 td {
    font-size: 1.3rem;
  }
  .table-01.sidetitle tr {
    padding: 15px 0;
  }
  .table-01.sidetitle th {
    margin-bottom: 10px;
  }
  .sidetitle tr {
    display: block;
  }
  .sidetitle th,
  .sidetitle td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .sidetitle th {
    margin-bottom: 5px;
    font-weight: bold;
  }
  .tableScrollWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .title-l .text-s {
    display: block;
    margin-left: 0;
  }
  .contents {
    margin-top: 40px;
  }
  .footer {
    padding: 30px 5% 80px;
  }
  .footer-inner {
    display: block;
  }
  .footerNavi-ul {
    display: block;
  }
  .footerLogo {
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footerCopy {
    text-align: center;
    font-size: 1rem;
  }
  .pagetop {
    bottom: 0;
  }
  .dwMenu {
    right: 10px;
    top: 5px;
  }
  .header {
    height: 60px;
    padding: 15px 3%;
  }
  .header-logo {
    display: inline-block;
    width: auto;
    height: 30px;
    margin-bottom: 0;
  }
  .header-logo img {
    width: auto;
    height: 100%;
    max-height: 100%;
  }
  .header-logo a {
    height: 100%;
  }
  .header-info {
    top: 18px;
    right: 70px;
  }
  .header-info-item.is-onlineshop {
    width: 28px;
    margin-right: 15px;
  }
  .headerNavi {
    display: none;
  }
  .gNavi {
    right: -80%;
    width: 80%;
    height: 100%;
  }
  .gNavi-ul {
    margin-bottom: 0;
  }
  .gNavi-ul-li > a,
  .gNavi-ul-li-parent {
    padding: 14px;
    font-size: 1.5rem;
  }
  .gNavi-bottomLink {
    font-size: 1.2rem;
  }
  .gNavi-bottomLink a {
    padding: 5px;
  }
  .gNavi-bottomLink a.outlink::before {
    width: 15px;
  }
  .gNaviSub-li {
    font-size: 1.4rem;
  }
  .gNaviSub-li a {
    padding: 10px;
  }
  .wpArticle h1 {
    margin-bottom: 30px;
  }
  .wpArticle h2 {
    font-size: 1.8rem;
  }
  .wpArticle img {
    display: block;
    margin: 10px auto;
  }
  .wpArticle table th,
  .wpArticle table td {
    font-size: 1.3rem;
  }
  .wpArticle .alignright {
    float: none;
    margin: 10px auto;
  }
  .wpArticle .alignleft {
    float: none;
    margin: 10px auto;
  }
  .pageLead {
    margin-bottom: 40px;
  }
  .caseSection-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .caseSection-img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100%;
    margin: 0 auto 30px;
  }
  .caseSection-contents {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .caseSection-contents-title {
    font-size: 2.8rem;
    text-align: center;
  }
  .caseItem-1-one {
    text-align: center;
  }
  .caseItem-2-illust {
    margin-right: 30px;
  }
  .caseItem-3-item-one {
    margin-bottom: 3px;
  }
  .caseItem-3-illust.is-negi {
    width: 50px;
    bottom: 0;
  }
  .caseText {
    display: block;
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
  .caseIcon {
    width: 35px;
    height: 35px;
    font-size: 1.8rem;
  }
  .caseSectionUses {
    display: block;
  }
  .caseSectionUses-title {
    width: 100%;
    padding: 10px;
  }
  .caseSectionUses-contents-ul {
    display: block;
    padding: 20px 10%;
  }
  .caseSectionUses-contents-ul-li {
    width: 100%;
  }
  .caseSectionUses-contents-ul-li + .caseSectionUses-contents-ul-li {
    margin-top: 10px;
  }
  .sokutei {
    margin: 60px auto 100px;
  }
  .sokutei-start {
    display: block;
  }
  .sokutei-start-boximg {
    width: 50%;
    margin: 0 auto 30px;
  }
  .sokutei-start-text {
    margin-left: 0;
    text-align: center;
  }
  .sokuteiOutline {
    display: block;
  }
  .sokuteiOutline-title {
    width: 100%;
    padding: 10px;
  }
  .sokuteiOutline-contents-item {
    margin: 10px 0;
    width: 50%;
  }
  .chartArea + .chartArea {
    margin-top: 80px;
  }
  .chartScollNote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: sticky;
    top: 0;
    padding: 10px 0;
    background: #fff;
    margin-bottom: 10px;
    z-index: 1;
  }
  .chartScollNote::before {
    content: "";
    display: inline-block;
    background: url(../img/common/arrow-r2.svg) center center/contain no-repeat;
    margin-right: 5px;
    width: 24px;
    height: 24px;
  }
  .chartSection-titleArea {
    width: 131px;
  }
  .chartSectionNumberIcon .circleBrown {
    width: 46px;
    height: 46px;
  }
  .circleBrown {
    width: 35px;
    height: 35px;
    font-size: 1.8rem;
  }
  .itudemo + .itudemo {
    margin-top: 80px;
  }
  .itudemo-title {
    font-size: 2rem;
  }
  .itudemo-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .itudemo-main.is-1 {
    padding: 0 3%;
  }
  .itudemo-main.is-2 {
    padding: 0 3%;
  }
  .itudemo-main + .itudemo-main {
    margin-top: 50px;
  }
  .itudemo-main-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 80%;
    height: 78vw;
    margin: 0 auto 10px;
    border-radius: 50%;
  }
  .itudemo-main-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 0;
  }
  .bandMessage {
    height: auto;
  }
  .bandMessage-msg p {
    line-height: 2;
  }
  .bandMessage-img img {
    bottom: 0;
  }
  .kodawari-title {
    margin-bottom: 60px;
  }
  .kodawari-title-sub {
    font-size: 4.8vw;
  }
  .kodawari-title-main {
    font-size: 6.3vw;
  }
  .kodawariSection + .kodawariSection {
    margin-top: 20px;
  }
  .kodawariSection-img {
    width: 80%;
    height: 70vw;
    border-radius: 0 10px 10px 0;
  }
  .kodawariSection-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom left;
    object-position: bottom left;
  }
  .kodawariSection:nth-child(even) .kodawariSection-img {
    border-radius: 10px 0 0 10px;
  }
  .kodawariSection-contents {
    width: 85%;
    margin-top: 60vw;
    padding: 30px 5%;
    background: rgba(255, 255, 255, 0.897);
  }
  .kodawariSection-contents-title {
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .development, .evolve {
    margin-bottom: 80px;
    padding-top: 0;
  }
  .development-lead {
    display: block;
  }
  .evolve-lead {
    display: block;
  }
  .development-lead-title, .evolve-lead-title {
    font-size: 6vw;
    text-align: left;
    margin-bottom: 40px;
    line-height: 1.8;
  }
  .development-lead-img, .evolve-lead-img {
    width: 100%;
    margin-left: 0;
  }
  .devContents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: rgba(255, 255, 255, 0.805);
  }
  .devContents-des {
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .devContents-des-text p {
    line-height: 2;
  }
  .devContents-imgs {
    width: 60%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .devContents-imgs-cap {
    height: 30px;
    font-size: 1.1rem;
  }
  .kurou {
    padding-bottom: 263px;
    margin-bottom: 0;
  }
  .kurou-img {
    width: 100%;
    bottom: 0;
  }
  .kurou-des-text p {
    line-height: 2;
  }
  .aisare {
    padding-bottom: 200px;
    margin-bottom: 0;
  }
  .aisare-img {
    width: 100%;
    bottom: 0;
  }
  .aisare-des {
    width: 100%;
  }
  .aisare-des-text p {
    line-height: 2;
  }
  .sindanQuestion {
    padding: 80px 5%;
  }
  .stepSection-wrap {
    margin-bottom: 60px;
  }
  .stepSection::before,
  .stepSection::after {
    width: 15%;
  }
  .stepSection + .stepSection {
    margin-top: 70px;
  }
  .stepSection-title {
    width: 60%;
    left: 20%;
  }
  .stepSection-contents-lead {
    margin-bottom: 30px;
  }
  .stepSectionOutline {
    display: block;
  }
  .stepSectionOutline-img {
    width: 50%;
    margin: 0 auto 30px;
  }
  .stepSectionOutline-main {
    width: 100%;
  }
  .outLineForm-range {
    width: 50%;
    padding: 30px 3%;
  }
  .outLineForm-cm {
    width: 45%;
    display: block;
    text-align: right;
  }
  .outLineForm-cm-num {
    width: 50%;
    margin-right: 5px;
    font-size: 2rem;
  }
  .stepSectionBtns {
    margin-top: 50px;
  }
  .stepSectionBtns-item-img {
    top: -50px;
  }
  .stepSectionBtns-item-btn {
    font-size: 1.3rem;
  }
  .stepSectionBtns-item-btn label {
    padding-top: 3px;
    line-height: 1.3;
  }
  .diaResult {
    padding-bottom: 60px;
  }
  .diaResult-title {
    font-size: 6vw;
  }
  .resultItemSection-wrap {
    display: block;
  }
  .resultItemSection {
    width: 100%;
  }
  .resultItemSection + .resultItemSection {
    margin-top: 60px;
  }
  .resultItemSection-title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .resultItemSection-title-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .resultItemSection-illust {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10px;
    padding: 20px 5%;
  }
  .resultItemSection-illust-one {
    width: 44%;
  }
  .resultItemSection-illust-one-ori {
    width: 100%;
    margin-bottom: 10px;
  }
  .resultItemSection-illust-one-kiri {
    width: 100%;
  }
  .resultItemSection-illust-one-val {
    font-size: 1.4rem;
  }
  .resultItemSection-btn a {
    width: 100%;
  }
  .basicSize-title-inner {
    padding: 10px 0;
    font-size: 5.5vw;
  }
  .basicSizeIllust-wrap {
    display: block;
  }
  .basicSizeIllust-img {
    height: auto;
  }
  .basicSizeIllust-img.is-kiri {
    margin-top: 40px;
  }
  .factoryArea {
    padding-bottom: 40px;
  }
  .factoryArea::before {
    display: none;
    left: 6%;
  }
  .factorySection {
    display: block;
  }
  .factorySection-step {
    top: -90px;
  }
  .factorySection-img {
    width: 100%;
    float: left;
    margin-bottom: 20px;
  }
  .factorySection-contents {
    width: 100%;
    margin: 0 0 0 auto;
    clear: both;
  }
  .factorySection-contents-title {
    line-height: 1.7;
  }
  .factorySection:nth-child(odd) .factorySection-contents-title {
    margin-left: 0;
  }
  .lastFactorySection-img {
    width: 80%;
  }
  .filterSelectArea-inner {
    width: 100%;
  }
  .filterSelect-wrap {
    gap: 0 10px;
  }
  .filterSelect {
    display: block;
    width: 100%;
    float: none;
    margin-bottom: 30px;
  }
  .filterSelect-title {
    text-align: center;
  }
  .filterSelect-main {
    padding: 8px 10px;
  }
  .filterSelect-main-select {
    width: 100%;
  }
  .filterSelect-main-select select {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    max-width: 100%;
  }
  .itemBox-wrap {
    gap: 40px 4%;
    margin-top: 60px;
  }
  .itemBox {
    width: 48%;
  }
  .itemBox-cap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10px;
  }
@media (max-width: 767px) {
  .itemBox-cap.shinka{
    flex-direction: column;
    gap: 5px;
  }
}
  .itemBox-cap-main {
    font-size: 1.2rem;
  }
@media (max-width: 375px) {
  .itemBox-cap-main {
    font-size: 1.15rem;
  }
}
  .itemBox-cap-cate {
    margin-top: 0;
    margin-left: 5px;
    padding: 2px 10px;
    font-size: 1.1rem;
    white-space: nowrap;
  }
  .itemBox-btn a {
    padding: 5px 10px 5px 20px;
    font-size: 1.2rem;
  }
  .detailContainer-title {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }
  .detailContainer-title-itemName {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  .detailContainer-title-itemName-main {
    font-size: 2rem;
  }
  .detailContaineSubInfo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
  }
  .detailImgs {
    margin-bottom: 40px;
    padding: 0;
  }
  .detailImgs-inner {
    width: 100%;
    height: 93vw;
    padding: 0 10%;
  }
  .detailImgs-main-photowrap-img {
    height: 80vw;
  }
  .detailImgs-main-photowrap-cap {
    font-size: 3.3vw;
  }
  .detailImgs-arrow-item {
    top: 35vw;
  }
  .detailImgs-arrow-item.is-prev {
    right: auto;
    left: 2%;
  }
  .detailImgs-arrow-item.is-next {
    right: 2%;
    left: auto;
  }
  .detailImgs-sub {
    width: 90%;
    margin: 0 auto;
  }
  .itemSpec-buy {
    display: block;
    padding: 0 5%;
  }
  .itemSpecBuy {
    margin-bottom: 30px;
  }
  .itemSpecBuy-btn {
    max-width: 300px;
    width: 100%;
  }
  .itemSpecBuy-btn a {
    padding-right: 15px;
  }
  .itemSpecMain {
    padding: 30px 40px;
  }
  .itemCode {
    text-align: left;
    font-size: 1.3rem;
  }
  .itemNoteBox p {
    margin-top: 0;
  }
  .tabCategory-ul {
    gap: 10px 4%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    border-bottom: 0;
  }
  .tabCategory-ul-li {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    width: 48%;
    border-radius: 0;
  }
  .tabCategory-ul-li a {
    height: 30px;
    font-size: 1.2rem;
  }
  .listBox-wrap {
    gap: 40px 4%;
    margin-top: 60px;
  }
  .listBox {
    width: 48%;
  }
  .listBox-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 5px;
    font-size: 1.3rem;
  }
  .listBox-info-cate {
    line-height: 1;
    font-size: 1.1rem;
  }
  .listBox-tags-one {
    padding: 3px 4px;
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .newsArticle-title {
    margin-bottom: 20px;
  }
  .newsArticle-title-time {
    display: block;
    font-size: 1.4rem;
  }
  .newsArticle-title-text {
    display: block;
    font-size: 2.4rem;
  }
  .newsArticle-cate-one {
    font-size: 1.2rem;
  }
  .newsArticle-tag-one {
    padding: 3px 4px;
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .newsArticle-content-img {
    float: none;
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
  }
  .newsArticleTags-items-item a {
    padding: 3px 4px;
    font-size: 1.1rem;
  }
  .contactArea-lead {
    margin-bottom: 40px;
  }
  .contactArea-lead p {
    line-height: 1.8;
  }
  .contactTable th {
    width: 100%;
  }
  .contactTable-jusho {
    display: block;
  }
  .contactTable-jusho-todoufuken {
    display: block;
    margin-top: 20px;
    margin-left: 0;
    text-align: left;
  }
  .contactTable-jusho-todoufuken-label {
    display: block;
    width: auto;
    margin-bottom: 10px;
  }
  .contactTable-renrakusaki {
    display: block;
  }
  .contactTable-renrakusaki-fax {
    margin-top: 20px;
    text-align: left;
  }
  .contactTable-renrakusaki-fax-label {
    display: block;
  }
  .contactTable-renrakusaki-fax input {
    width: 70%;
  }
  .contactTable input,
  .contactTable textarea,
  .contactTable select {
    font-size: 1.6rem;
    max-width: 100%;
  }
  .contactTable .checkboxWrap label {
    width: 46%;
    margin: 15px 0 0;
  }
  .fileTd-one input,
  .fileTh-one input {
    width: 100%;
  }
  .contactBtns input.is-gray {
    width: auto;
  }
  .contactPrivacy {
    font-size: 1.4rem;
  }
  .contactPrivacy-note {
    font-size: 1.2rem;
  }
  .mv-sizeSelect {
    display: none;
    top: calc(100% + 5px);
  }
  .mv-copy {
    display: none;
    left: 3%;
    width: 50%;
  }
  .mv-mouse {
    display: none;
  }
  .mvSlider {
    height: 130vw;
  }
  .topReason {
    background-position: right 10% bottom;
    background-size: 150% auto;
    padding-bottom: 65vw;
  }
  .topReason-inner {
    min-height: auto;
  }
  .topReason-title {
    display: block;
    font-size: 7.5vw;
    margin-top: 30px;
    line-height: 1.6;
  }
  .topReason-title-ja {
    margin: 0;
    font-size: 2rem;
  }
  .topReason-text {
    width: 90%;
    margin: 0 auto 20px;
  }
  .topReason-btn {
    margin-left: 5%;
  }
  .topWagomuSize {
    padding: 40px 0;
    background-position: right 160px;
    background-size: 60%;
    overflow: hidden;
  }
  .topWagomuSize.evolveContents {
    background-position: top 240px right 15px;
    background-size: 45%;
    overflow: hidden;
  }
  .topWagomuSize-tag {
    display: block;
    width: calc(100% - 115px);
    margin-bottom: 30px;
  }
  .topWagomuSize-tag-item {
    font-size: 1.2rem;
  }
  .topWagomuSize-tag-item + .topWagomuSize-tag-item {
    margin-top: 10px;
  }
  .topWagomuSize-title {
    position: relative;
    display: block;
    margin: 60px auto;
  }
  .topWagomuSize-title-ja {
    font-size: 9vw;
    -moz-text-align-last: left;
    text-align-last: left;
    line-height: 1.4;
  }
  .topWagomuSize-title-illust {
    position: absolute;
    right: -10px;
    top: -160px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 2% 0 0;
    width: 120px;
    height: 90px;
  }
  .topWagomuSize-title-illust-one {
    position: absolute;
  }
  .topWagomuSize-title-illust-one.is-book {
    left: 0;
    bottom: 0;
  }
  .topWagomuSize-title-illust-one.is-bento {
    right: 0;
    bottom: 0;
  }
  .topWagomuSize-title-illust-one.is-vesi {
    left: 33%;
    top: 0;
  }
  .topWagomuSize-lead {
    width: 100%;
  }
  .topSizeItem-wrap {
    display: block;
  }
  .topSizeItem {
    width: 100%;
    padding-top: 1px;
  }
  .topSizeItem + .topSizeItem {
    margin-top: 40px;
  }
  .topSizeItem-img {
    height: 55vw;
  }
  .topSizeItem-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .topNews .title-en {
    margin-left: 5%;
  }
  .topNewsSection-wrap {
    display: block;
  }
  .topNewsSection {
    overflow: hidden;
  }
  .topNewsSection + .topNewsSection {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
  }
  .topNewsSection-img {
    float: left;
    width: 100px;
    margin-right: 10px;
    margin-bottom: 0;
  }
  .topNewsSection-info-time {
    margin-right: 10px;
  }
  .topNewsSection-cap {
    clear: none;
  }
  .topNewsSection-cap p {
    line-height: 1.5;
  }
  .topObandStory {
    padding: 40px 5%;
  }
  .topObandStoryBn {
    display: block;
  }
  .topObandStoryBn-item {
    width: 100%;
  }
  .topObandStoryBn-item + .topObandStoryBn-item {
    margin-top: 10px;
  }
  .topObandStoryBn-item-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .pankuzu-ul {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .caseSection-contents {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .caseSectionUses {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .development-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .evolve-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .silicone_mv h1 {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .devContents {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .kurou-des {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .aisare-des {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .diagnosisSummary {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .resultItemSection-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .basicSize {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .itemBox-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .itemCode {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .itemNoteBox {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .listBox-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .newsArticle {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .newsArticleTags {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .contactArea {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .topReason-title {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
  .topWagomuSize .topWagomuSize-inner {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
  }
  .evolveContents_top .evolve_inner {
    max-width: 90%;
    width: 90%;
    margin: 80px auto;
  }
  .topNewsSection {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.silicone_mv h1.title-l {
  width: 100%;
  max-width: 1000px;
  text-align: left;
  color: #2A4C61;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .section-center {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .pankuzu-ul {
    max-width: 90%;
    width: 90%;
  }
  .footer-inner {
    max-width: 90%;
    width: 90%;
  }
  .footerCopy {
    max-width: 90%;
    width: 90%;
  }
  .caseSection-img {
    width: 40%;
  }
  .caseItem-3-illust.is-negi {
    right: -45px;
  }
  .chartSection-titleArea-graph {
    border-right: 1px solid #333;
  }
  .bandMessage {
    height: 77vw;
  }
  .bandMessage-img {
    max-width: 90%;
    width: 90%;
  }
  .kodawariSection {
    max-width: 90%;
    width: 90%;
  }
  .development-lead, .evolve-lead {
    max-width: 90%;
    width: 90%;
  }
  .silicone_mv h1 {
    max-width: 90%;
    width: 90%;
  }
  .devContents {
    max-width: 90%;
    width: 90%;
  }
  .aisare-des {
    margin-left: 5%;
  }
  .diagnosisSummary {
    max-width: 90%;
    width: 90%;
  }
  .stepSection {
    width: 90%;
  }
  .resultItemSection-wrap {
    max-width: 90%;
    width: 90%;
  }
  .basicSize {
    max-width: 90%;
    width: 90%;
  }
  .itemBox-wrap {
    max-width: 90%;
    width: 90%;
  }
  .detailImgs-arrow-item.is-prev {
    right: auto;
    left: 2%;
  }
  .detailImgs-arrow-item.is-next {
    right: 2%;
    left: auto;
  }
  .itemSpec {
    max-width: 90%;
    width: 90%;
  }
  .itemSpec-buy {
    padding-left: 0;
  }
  .itemNoteBox {
    max-width: 90%;
    width: 90%;
  }
  .listBox-wrap {
    max-width: 90%;
    width: 90%;
  }
  .newsArticle {
    max-width: 90%;
    width: 90%;
  }
  .newsArticleTags {
    max-width: 90%;
    width: 90%;
  }
  .mv-copy {
    left: 3%;
  }
  .topReason {
    background-position: center center;
  }
  .topReason-inner {
    max-width: 90%;
    width: 90%;
  }
  .topWagomuSize .topWagomuSize-inner {
    max-width: 90%;
    width: 90%;
  }
  .evolveContents_top .evolve_inner {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
  }
  .topSizeItem-text p {
    line-height: 1.6;
  }
  .topNews-inner {
    max-width: 90%;
    width: 90%;
  }
  .topObandStory-inner {
    max-width: 90%;
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerNavi-ul {
    display: block;
  }
  .caseSectionUses-contents-ul {
    display: block;
  }
  .caseSectionUses-contents-ul-li {
    width: 100%;
  }
  .caseSectionUses-contents-ul-li + .caseSectionUses-contents-ul-li {
    margin-top: 10px;
  }
  .itudemo-main.is-1 {
    padding: 0 3%;
  }
  .itudemo-main.is-2 {
    padding: 0 3%;
  }
  .itudemo-main-img {
    width: 50%;
    height: 48vw;
  }
  .itudemo-main-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .kodawariSection + .kodawariSection {
    margin-top: 40px;
  }
  .kodawariSection-contents {
    margin-top: 100px;
    padding: 30px 30px;
  }
  .kodawariSection-contents-title {
    line-height: 1.8;
  }
  .kurou {
    padding-bottom: 20vw;
  }
  .kurou-img {
    bottom: -30vw;
  }
  .kurou-des {
    width: 90%;
    margin: 0 auto;
    max-width: none;
  }
  .aisare-des {
    width: 50%;
  }
  .filterSelect {
    float: none;
    margin-bottom: 30px;
  }
  .itemSpec-buy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 0;
  }
  .itemSpecBuy {
    width: 46%;
    margin-bottom: 30px;
  }
  .itemSpecBuy-btn {
    width: 100%;
  }
  .contactTable th {
    padding: 15px;
    width: 30%;
  }
  .topReason-inner {
    min-height: 0;
    padding: 5vw 0;
  }
}
@media (min-width: 980px) and (max-width: 1099px) {
  .kurou-des {
    margin-left: 5%;
  }
}
@media (hover: hover) {
  .btn-round:hover {
    background: #fffafa;
  }
  .btn-round.is-yellow:hover {
    background: #fce815;
  }
  .btn-round.is-yellow2:hover {
    background: #f3a20c;
  }
  .btn-round.is-gray:hover {
    background: #494646;
  }
  .btn-submit:hover {
    background: #f3a20c;
  }
  .btn-submit.is-gray:hover {
    background: #494646;
  }
  .link-arrow:hover {
    color: #019ab3;
  }
  .link-arrow:hover::after {
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }
  .headerNavi-ul-li-sub-li a:hover {
    background: #fffafa;
  }
  .gNavi-bottomLink a:hover {
    background: #f7f7f7;
  }
  a.caseIcon:hover {
    background: #a38b01;
  }
  .sokuteiOutline-contents-item a:hover {
    color: #019ab3;
  }
  a.circleBrown:hover {
    background: #da9900;
    color: #fff;
  }
  .stepSectionBtns-item-btn label:hover {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1) inset;
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1) inset;
  }
  .tabCategory-ul-li a:hover {
    background: #b38300;
  }
  .listBox-info-cate:hover {
    background: #fcf1ed;
  }
  .listBox-tags-one:hover {
    background: #623435;
  }
  .newsArticle-tag-one:hover {
    background: #fcf1ed;
  }
  .newsArticleTags-items-item a:hover {
    background: #ff8800;
  }
  .mv-sizeSelect a:hover {
    background: #f5e3e3;
  }
}
/* header modal*/
.header button {
  border: none;
  background-color: transparent;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
}

.modal__overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.modal__container {
  background: #fff;
  border: 2px solid #623435;
  overflow-y: auto;
  width: 94vw;
  height: 90vh;
  background-size: 100% auto;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal__flexWrap {
  width: 100%;
}

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

.modal__title {
  font-weight: 600;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.modal__title-inner {
  display: inline-block;
  font-size: 2.8rem;
  color: #623435;
}

.modal__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  border-bottom: solid 2px #623435;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: border_anim 1.2s linear forwards;
          animation: border_anim 1.2s linear forwards;
}

@-webkit-keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.modal__title-icon {
  width: 32px;
}

.modal_outer {
  position: relative;
  /*padding-top: 36px;*/
}

.modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #623435;
  border: none;
  cursor: pointer;
  outline: none;
  z-index: 2;
}

.modal__close::before {
  content: "✕";
  color: #fff;
  font-size: 18px;
}

.modal__content {
  max-width: 780px;
  margin: 3rem auto;
  line-height: 1.5;
  padding: 0 20px;
}

.modal__content .head-shop__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.modal__content .head-shop__btnWrap li {
  width: calc(50% - 10px);
}

.modal__content .head-shop__btnWrap li:nth-child(-n+4) {
  margin-bottom: 15px;
}

.modal__content .head-shop__btnWrap li .btn-round {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  font-size: 1.8rem;
  padding: 16px 25px;
  color: #623435;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #fff799;
  border-radius: 50px;
  border: 2px solid #623435;
  -webkit-box-shadow: 0.2rem 0.2rem 0px 0.1rem #ccc;
          box-shadow: 0.2rem 0.2rem 0px 0.1rem #ccc;
  min-height: 82px;
}

.modal__content .head-shop__btnWrap li .btn-round::before {
  left: inherit;
  right: 20px;
}

.modal__content .head-shop__btnWrap li .btn-round.amazon {
  padding: 20px 25px 9px;
}

.modal__content .head-shop__btnWrap li .btn-round.amazon img {
  width: 100px;
  height: 30px;
}

.modal__content .head-shop__btnWrap li .btn-round.kaunet img {
  width: 150px;
}

.modal__content .head-shop__btnWrap li .btn-round.kaunet img {
  min-width: 64px;
}

.modal__content .head-shop__btnWrap li .btn-round.askul img {
  width: 150px;
}

@media (hover: hover) {
  .modal__content .head-shop__btnWrap li .btn-round:hover {
    -webkit-transform: translate3d(0.2rem, 0.2rem, 0);
            transform: translate3d(0.2rem, 0.2rem, 0);
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
/* Animation */
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.8s cubic-bezier(0.34, 0.07, 0.095, 0.995);
          animation: mmfadeIn 0.8s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.8s cubic-bezier(0.34, 0.07, 0.095, 0.995);
          animation: mmslideIn 0.8s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.8s cubic-bezier(0.34, 0.07, 0.095, 0.995);
          animation: mmfadeOut 0.8s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.8s cubic-bezier(0.34, 0.07, 0.095, 0.995);
          animation: mmslideOut 0.8s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

@media (max-width: 767px) {
  .modal__content .head-shop__btnWrap li {
    width: 100%;
    margin-bottom: 15px;
  }
  .modal__content {
    padding: 0 20px 10px;
  }
  .modal__content .head-shop__btnWrap li:last-child {
    margin-bottom: 0;
  }
  .modal__content .head-shop__btnWrap li .btn-round {
    min-height: 74px;
  }
  .modal__close {
    top: 20px;
    right: 20px;
  }
}
.itemSpec-buy button.btn-round.is-yellow {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  width: 100%;
  text-align: left;
  font-size: 1.4rem;
  font-family: Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
}

/*========================================================*/
/*===進化した輪ゴム=====*/
/*========================================================*/
span.inline {
  display: inline-block;
}

span.block {
  display: block;
  margin-bottom: 15px;
  line-height: 1.9;
}

.evolveBand {
  width: 47.5%;
}

@media screen and (max-width: 767px) {
  .evolveBand {
    width: 100%;
  }
}
.evolvePage {
  margin-bottom: 80px;
}

.evolve-lead {
  opacity: 1;
}

@media (max-width: 767px) {
  .evolve-lead {
    display: block;
  }
}
.evolve-lead-text {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .evolve-lead-text {
    width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .evolve-lead-text {
    width: 90%;
    max-width: 90%;
  }
}
.evolve-lead-text p {
  text-align: left;
  font-size: 16px;
}

.evolve-lead-text p span {
  font-size: 16px;
}

.evolveContents {
  width: 100%;
  padding: 120px 0 70px;
}

.evolveContents.silicone_bg {
  background-color: #eef4f7;
}

.evolveContents .siliconeH2 {
  margin: 0 auto 45px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #2A4C61;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ccdde7));
  background: linear-gradient(transparent 50%, #ccdde7 50%);
}

@media (max-width: 767px) {
  .evolveContents .siliconeH2 {
    font-size: 2rem;
  }
}
.evolveContents .siliconeBox .itudemo-main-text p.title {
  font-size: 22px;
  font-weight: bold;
  color: #2A4C61;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.evolveContents .siliconeBox .itudemo-main-text p.title span.dots {
  padding-bottom: 4px;
  border-bottom: 4px dotted #538BAD;
}

.evolveContents p.small {
  text-align: center;
  font-weight: bold;
  margin-top: 80px;
}

.evolveContents.silicone_bg {
  background-color: #eef4f7;
}

.evolveContents.tabane {
  background-color: #d7edea;
}

.cv {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin: 160px auto;
  padding: 45px 5%;
  background-color: #FCD746;
}

.cv.silicone {
  background-color: #bbd1de;
}

.cv.silicone a.btn-round {
  border: 1px solid #2A4C61;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .cv {
    width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .cv {
    width: 90%;
    max-width: 90%;
  }
}
.cv p {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}

.cv .btnArea {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cv .btnArea .btnArea_left {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cv .btnArea .btnArea_left img {
  width: auto;
  height: 300px;
}

.cv .btnArea a {
  width: 49%;
}

@media screen and (max-width: 767px) {
  .cv .btnArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cv .btnArea img {
    width: 100%;
    margin-bottom: 40px;
  }
  .cv .btnArea a {
    width: auto;
  }
}
.cv.silicone {
  background-color: #bbd1de;
}

.cv.silicone a.btn-round {
  border: 1px solid #2A4C61;
}

.cv.silicone .btnArea_left img {
  -o-object-fit: contain;
  object-fit: contain;
}

.cv.tabane {
  background-color: #d7ebe8;
  width: 100%;
  max-width: 100%;
}

.cv.tabane .btnArea_left img {
  -o-object-fit: contain;
  object-fit: contain;
}

.cv.tabane a.btn-round {
  border: 1px solid #2F6159;
}

.cv.tabane a.btn-round:hover {
  background-color: #eff7f6;
}

.selectBtn {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #2F6159;
  background-color: #ffffff;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .selectBtn {
    width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .selectBtn {
    width: 90%;
    max-width: 90%;
  }
}
.selectBtn li {
  margin: 2%;
}

.selectBtn li a.tabaneBtn {
  border: 1px solid #2F6159;
  font-weight: bold;
  background-color: #e8f4f2;
  color: #2F6159;
}

.selectBtn li a.tabaneBtn:hover {
  background-color: #ffffff;
}

.selectBtn li a.tabaneBtn:before {
  border-left: 4px solid #2F6159;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.tabaneBox {
  scroll-margin-top: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 120px;
  border: 1px solid #2F6159;
  padding: 0 30px;
  background-color: #ffffff;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .tabaneBox {
    width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .tabaneBox {
    width: 90%;
    max-width: 90%;
  }
}
.tabaneBox .topSizeItem-title.tabaneH3 {
  background: #e8f4f2;
  border: 1px solid #2F6159;
  color: #2F6159;
}

.tabaneBox .tabaneH3 {
  position: relative;
}

.tabaneBox .item {
  width: 70%;
  margin: 60px auto;
  height: 300px;
}

.tabaneBox .item02 {
  width: 100%;
  margin: 60px auto;
}

.tabaneBox .contentsInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tabaneBox .contentsInner .leftBox {
  width: 50%;
  padding: 1%;
}

.tabaneBox .contentsInner .rightBox {
  width: 50%;
  padding: 1%;
}

.tabaneBox .contentsInner .rightBox._01box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabaneBox .contentsInner .rightBox._01box figure {
  width: 50%;
  padding: 0 1%;
}

.tabaneBox .contentsInner .rightBox._01box figure figcaption {
  text-align: center;
}

.tabaneBox .contentsInner figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.tabaneBox .contentsInner p.title {
  font-size: 18px;
  font-weight: bold;
  color: #2F6159;
}

.tabaneBox .contentsInner p.message {
  line-height: 1.6;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .tabaneBox .contentsInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tabaneBox .contentsInner .leftBox {
    width: 100%;
  }
  .tabaneBox .contentsInner .rightBox {
    width: 100%;
  }
  .tabaneBox .contentsInner._reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .tabaneBox .item02 {
    margin: 30px auto;
  }
}
.tabaneBox .tsukaikata h4, .tabaneBox .youto h4, .tabaneBox .meyasu h4 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.tabaneBox .tsukaikata .imgBox, .tabaneBox .youto .imgBox, .tabaneBox .meyasu .imgBox {
  width: 100%;
  height: 200px;
  margin-bottom: 120px;
  overflow-y: hidden;
}

.tabaneBox .tsukaikata .imgBox img.youtoImg, .tabaneBox .youto .imgBox img.youtoImg, .tabaneBox .meyasu .imgBox img.youtoImg {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata_home, .tabaneBox .youto .imgBox.tsukaikata_home, .tabaneBox .meyasu .imgBox.tsukaikata_home {
  height: auto;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata_home .flow_home, .tabaneBox .youto .imgBox.tsukaikata_home .flow_home, .tabaneBox .meyasu .imgBox.tsukaikata_home .flow_home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 20px;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata_home .flow_home img, .tabaneBox .youto .imgBox.tsukaikata_home .flow_home img, .tabaneBox .meyasu .imgBox.tsukaikata_home .flow_home img {
  max-width: calc((100% - 40px) / 3);
}

.tabaneBox .tsukaikata .imgBox.tsukaikata_home .flow_hazushikata, .tabaneBox .youto .imgBox.tsukaikata_home .flow_hazushikata, .tabaneBox .meyasu .imgBox.tsukaikata_home .flow_hazushikata {
  width: 100%;
  margin-top: 40px;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata_home .flow_hazushikata img, .tabaneBox .youto .imgBox.tsukaikata_home .flow_hazushikata img, .tabaneBox .meyasu .imgBox.tsukaikata_home .flow_hazushikata img {
  max-width: 66%;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata, .tabaneBox .youto .imgBox.tsukaikata, .tabaneBox .meyasu .imgBox.tsukaikata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata .flow, .tabaneBox .youto .imgBox.tsukaikata .flow, .tabaneBox .meyasu .imgBox.tsukaikata .flow {
  border: 1px solid #2F6159;
  padding: 3px;
  margin: 15px;
  position: relative;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata .flow img, .tabaneBox .youto .imgBox.tsukaikata .flow img, .tabaneBox .meyasu .imgBox.tsukaikata .flow img {
  position: relative;
  z-index: 0;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata .flow:before, .tabaneBox .youto .imgBox.tsukaikata .flow:before, .tabaneBox .meyasu .imgBox.tsukaikata .flow:before {
  content: attr(data-number);
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2F6159;
  background-color: #e8f4f2;
  border: 1px solid #2F6159;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .tabaneBox .tsukaikata .imgBox.tsukaikata, .tabaneBox .youto .imgBox.tsukaikata, .tabaneBox .meyasu .imgBox.tsukaikata {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tabaneBox .tsukaikata .imgBox.tsukaikata .flow, .tabaneBox .youto .imgBox.tsukaikata .flow, .tabaneBox .meyasu .imgBox.tsukaikata .flow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.tabaneBox .tsukaikata figure, .tabaneBox .youto figure, .tabaneBox .meyasu figure {
  width: 100%;
}

.tabaneBox .tsukaikata figure img, .tabaneBox .youto figure img, .tabaneBox .meyasu figure img {
  display: block;
  height: 200px;
  overflow-y: hidden;
}

.tabaneBox .tsukaikata figure figcaption, .tabaneBox .youto figure figcaption, .tabaneBox .meyasu figure figcaption {
  text-align: center;
  margin: 10px 0 120px;
}

.tabaneBox .tsukaikata ul.meyasuList li p, .tabaneBox .youto ul.meyasuList li p, .tabaneBox .meyasu ul.meyasuList li p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  font-size: 16px;
  font-weight: bold;
  color: #623435;
  padding: 5px 10px;
  border-top: 1px solid #623435;
  border-bottom: 1px solid #623435;
  margin-bottom: 30px;
}

.tabaneBox .tsukaikata ul.meyasuList li .imgBox, .tabaneBox .youto ul.meyasuList li .imgBox, .tabaneBox .meyasu ul.meyasuList li .imgBox {
  margin-bottom: 60px;
}

.tabaneBox .youto .imgBox.youto {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.tabaneBox .youto .imgBox.youto img {
  width: 100%;
  height: 100%;
  max-width: calc((100% - 60px - 12px - 4px) / 3);
  padding: 3px;
  border: 1px solid #2F6159;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .tabaneBox .youto .imgBox.youto img {
    max-width: calc((100% - 20px - 12px - 4px) / 2);
  }
}
.tabaneBox .youto .imgBox._home {
  background-color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  gap: 20px;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* .tabaneBox .youto .imgBox._home figure {
  width: calc((100% - 60px - 12px - 4px) / 3);
} */
.tabaneBox .youto .imgBox._home figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border: 1px solid #2F6159;
  padding: 3px;
}

.tabaneBox .youto .imgBox._home figcaption {
  text-align: center;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .tabaneBox .youto .imgBox._home figure {
    width: calc((100% - 40px - 12px - 4px) / 2);
  }
}
.tabaneBox .meyasu h4 {
  margin-bottom: 60px;
}

.tabaneBox .meyasu .chartSection-contents {
  overflow-x: scroll;
}

.tabaneBox .meyasu .chartScollNote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 0;
  background: #fff;
  margin-bottom: 10px;
  z-index: 1;
}

.tabaneBox .meyasu .chartScollNote:before {
  content: "";
  display: inline-block;
  background: url(../img/common/arrow-r2.svg) center center/contain no-repeat;
  margin-right: 5px;
  width: 24px;
  height: 24px;
}

.tabaneBox .btnArea._tabane {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tabaneBox .btnArea._tabane p {
  width: 100%;
  font-size: 16px;
  margin: 10px auto;
}

.padding {
  padding-top: 20px;
}

img.tabaneImage {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 320px;
}

/*シリコーンページ追加css*/
/*=========================================*/
.contents._siliconePage {
  margin-top: 0;
  background-color: #eef4f7;
}

.silicone_mv {
  padding: 80px 0;
  background-image: url(../img/silicone/silicone_band_img-003_bg.jpg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.silicone_mv h1.title-l {
  color: #2A4C61;
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .silicone_mv h1.title-l {
    width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .silicone_mv h1.title-l {
    width: 90%;
    max-width: 90%;
  }
}
.silicone_mv h1.title-l span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #a9c5d6));
  background: linear-gradient(transparent 50%, #a9c5d6 50%);
}

.silicone_mv h2.evolve-lead-title {
  margin-bottom: 0;
}

.silicone_mv .evolve-lead-text {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .silicone_mv .evolve-lead-text {
    width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .silicone_mv .evolve-lead-text {
    width: 90%;
    max-width: 90%;
  }
}
.silicone_mv.tabane_mv {
  background-image: url(../img/tabane/tabane_bg.jpg);
  background-color: rgba(255, 255, 255, 0.25);
  background-blend-mode: soft-light;
}

.silicone_mv.tabane_mv h1.tabane {
  color: #2F6159;
}

.silicone_mv.tabane_mv h1.tabane span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(179, 222, 215, 0.4)));
  background: linear-gradient(transparent 50%, rgba(179, 222, 215, 0.4) 50%);
}

section.evolve.silicone {
  background-color: #eef4f7;
  padding-bottom: 160px;
  margin-bottom: 0;
}

section.evolve.tabane {
  padding-bottom: 160px;
  margin-bottom: 0;
  background-color: #d7ebe8;
}

@media screen and (max-width: 767px) {
  .topSizeItem-title {
    width: 90%;
  }
}
/*フロントページの追加コンテンツcss*/
/*=========================================*/
.evolveContents_top {
  background-color: #fff;
}

.evolveContents_top .evolve_lead {
  width: 100%;
  max-width: 1000px;
  margin: 80px auto;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url(../img/top/siliconeY_TabaneMix.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  min-height: 176px;
}

.evolveContents_top .evolve_lead h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #623435;
  margin-bottom: 1rem;
}

.evolveContents_top .evolve_lead p {
  font-weight: bold;
}

.evolveContents_top .evolveBand_box .evolveBand_contents {
  margin-bottom: 30px;
}

.evolveContents_top .evolveBand_box .evolveBand_contents.silicone {
  background-image: url(../img/top/silicone_top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.evolveContents_top .evolveBand_box .evolveBand_contents.tabane {
  background-image: url(../img/top/tabane_top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox {
  padding: 30px;
  height: auto;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox h3.silicone {
  color: #2A4C61;
}

.evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox h3.tabane {
  color: #2F6159;
}

.evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox h3.silicone {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ccdde7));
  background: linear-gradient(transparent 50%, #ccdde7 50%);
  font-size: 2rem;
  display: inline-block;
  padding: 0 5px;
}

.evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox h3.tabane {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #b3ded7));
  background: linear-gradient(transparent 50%, #b3ded7 50%);
  font-size: 2rem;
  display: inline-block;
  padding: 0 5px;
}

.evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox p {
  font-weight: bold;
  height: 70px;
}

.evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox p.sircle_img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

.evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox p.sircle_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .evolveContents_top .evoleve_inner {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }
  .evolveContents_top .evolve_lead {
    background-size: auto 150px;
    padding-bottom: 150px;
    background-position: right bottom;
  }
  .evolveContents_top .evolve_lead h2 {
    font-size: 9vw;
  }
  .evolveContents_top .evolve_lead p {
    line-height: 2.3;
  }
  .evolveContents_top .evolveBand_box .evolveBand_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .silicone_mv {
    background-position: center;
  }
}
@media (max-width: 400px) {
  .evolveContents_top .evolve_lead {
    background-size: 80% auto;
    background-position: center bottom;
  }
  .evolveContents_top .evolveBand_box .evolveBand_contents .evolve_leftbox p.tabane {
    height: 120px;
  }
}
/*0707フロントページ追加css*/
/*=========================================*/
.evolveBand_box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.evolveBand_box section.evolveBand_contents {
  width: 50%;
}

.evolveContents_top .evolveBand_box .evolveBand_contents {
  margin-bottom: 0;
}

.evolveContents_top .evolveBand_box .evolveBand_contents.tabane {
  background-position: center right;
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: screen;
}

@media screen and (max-width: 767px) {
  .evolveBand_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .evolveBand_box section.evolveBand_contents {
    width: 100%;
  }
}
/*0719たばねページ追加*/
/*=========================================*/
.tabaneBox .tsukaikata .imgBox.tsukaikata .flow p {
  text-align: center;
  font-weight: bold;
}

.tabaneBox .youto .imgBox.youto .youtoImgList {
  width: calc((100% - 60px) / 2);
}

.tabaneBox .youto .imgBox.youto .youtoImgList img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border: none;
}

.tabaneBox .youto .imgBox.youto .youtoImgList p {
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding: 3px;
  width: 80%;
  margin: 0 auto;
}

.tabaneBox .meyasu .chartScollNote {
  display: none;
}

.tableSection {
  width: 100%;
  overflow-x: scroll;
}

.tableSection table {
  width: 100%;
  min-width: 767px;
}

.tableSection table, .tableSection td {
  border: 1px solid #2F6159;
  border-collapse: collapse;
}

.tableSection td {
  text-align: center;
  padding: 10px;
}

.tableSection tr.head__row td {
  font-weight: bold;
}

.tableSection tr.head__row td:not(:first-of-type) {
  width: 29.3333333333%;
}

.tableSection td.head__column {
  width: 12%;
}

.tableSection a.size__number {
  background-color: #623435;
  color: #fff;
  display: inline-block;
  font-family: "Teko", Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin: 0 auto;
  line-height: 45px;
}

.tableSection a.size__number:hover {
  background-color: #d99901;
}

.tableSection td.two-size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  border: 1px;
}

.tableSection td.two-size a {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .tabaneBox .youto .imgBox.youto .youtoImgList {
    width: 100%;
  }
  .tabaneBox .meyasu .chartScollNote {
    display: block;
  }
}
.chartSectionNumberIcon.tabane {
  top: 115px;
  height: 50px;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane {
  width: 100%;
  height: 100%;
  position: relative;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane .circleBrown[data-num="14"] {
  left: 0;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane .circleBrown[data-num="16"] {
  left: 77px;
  top: 56px;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane .circleBrown[data-num="18"] {
  left: 157px;
  top: 110px;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane .circleBrown[data-num="20"] {
  left: 230px;
  top: 167px;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane .circleBrown[data-num="25"] {
  left: 460px;
  top: 222px;
}

.silicone_mv.tabane_mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-position: left;
  background-color: rgba(255, 255, 255, 0.5);
}

.silicone_mv.tabane_mv .evolve-lead {
  margin-bottom: 30px;
}

.silicone_mv.tabane_mv .text-anime_box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .silicone_mv.tabane_mv .text-anime_box {
    width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .silicone_mv.tabane_mv .text-anime_box {
    width: 90%;
    max-width: 90%;
  }
}
.silicone_mv.tabane_mv .gifanime {
  width: 100%;
  max-width: 300px;
  text-align: right;
  margin: 0 0 0 20px;
}

.silicone_mv.tabane_mv .gifanime img {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
}

.silicone_mv.tabane_mv .evolvePage {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .silicone_mv.tabane_mv .text-anime_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .silicone_mv.tabane_mv .text-anime_box .evolve-lead-text {
    width: 100%;
    max-width: 100%;
  }
  .silicone_mv.tabane_mv .text-anime_box .gifanime {
    margin: 20px 0 0 0;
  }
}
/*0817たばねページ修正*/
/*=========================================*/
.selectBtn {
  border: none;
  background-color: inherit;
}

.selectBtn li a.tabaneBtn {
  background-color: #2F6159;
  color: #ffffff;
  border: none;
}

.selectBtn li a.tabaneBtn:before {
  border-left: 4px solid #ffffff;
}

.selectBtn li a.tabaneBtn:hover {
  color: #2F6159;
}

.selectBtn li a.tabaneBtn:hover:before {
  border-left: 4px solid #2F6159;
}

.tabaneBox .contentsInner .rightBox._01box figure:not(:nth-of-type(2)) {
  width: calc((100% - 40px - 2%) / 2);
}

.tabaneBox .contentsInner .rightBox._01box figure:nth-of-type(2) {
  width: 40px;
}

.tabaneBox .youto .imgBox.youto .youtoImgList p {
  border: none;
}

.chartSection-contents-scroll {
  margin-left: -3px;
}

.chartSectionNumberIcon.tabane {
  top: 115px;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane .circleBrown[data-num="14"] {
  left: 6px;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane .circleBrown[data-num="18"] {
  left: 211px;
}

.tabaneBox .tsukaikata h4 {
  margin-bottom: 15px;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata, .tabaneBox .youto .imgBox.tsukaikata, .tabaneBox .meyasu .imgBox.tsukaikata.home {
  margin-bottom: 40px;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata .flow, .tabaneBox .youto .imgBox.tsukaikata .flow, .tabaneBox .meyasu .imgBox.tsukaikata.home .flow {
  max-width: calc((100% - 90px) / 3);
}

@media screen and (max-width: 767px) {
  .tabaneBox .tsukaikata .imgBox.tsukaikata .flow, .tabaneBox .youto .imgBox.tsukaikata .flow, .tabaneBox .meyasu .imgBox.tsukaikata.home .flow {
    max-width: none;
  }
}
.tabaneBox .tsukaikata .imgBox {
  margin-bottom: 50px;
}

.hazushikata {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*0817たばねページ修正*/
/*=========================================*/
.selectBtn {
  border: none;
  background-color: inherit;
}

.selectBtn li a.tabaneBtn {
  background-color: #2F6159;
  color: #ffffff;
  border: none;
}

.selectBtn li a.tabaneBtn:before {
  border-left: 4px solid #ffffff;
}

.selectBtn li a.tabaneBtn:hover {
  color: #2F6159;
}

.selectBtn li a.tabaneBtn:hover:before {
  border-left: 4px solid #2F6159;
}

.tabaneBox .contentsInner .rightBox._01box figure:not(:nth-of-type(2)) {
  width: calc((100% - 40px - 2%) / 2);
}

.tabaneBox .contentsInner .rightBox._01box figure:nth-of-type(2) {
  width: 40px;
}

.tabaneBox .youto .imgBox.youto .youtoImgList p {
  border: none;
}

.chartSection-contents-scroll {
  margin-left: -3px;
}

.chartSectionNumberIcon.tabane {
  top: 104px;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane .circleBrown[data-num="14"] {
  left: 4px;
}

.chartSectionNumberIcon.tabane .chartSectionNumberIcon-tabane .circleBrown[data-num="18"] {
  left: 157px;
}

.tabaneBox .tsukaikata h4 {
  margin-bottom: 15px;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata, .tabaneBox .youto .imgBox.tsukaikata, .tabaneBox .meyasu .imgBox.tsukaikata.home {
  margin-bottom: 40px;
}

.tabaneBox .tsukaikata .imgBox.tsukaikata .flow, .tabaneBox .youto .imgBox.tsukaikata .flow, .tabaneBox .meyasu .imgBox.tsukaikata.home .flow {
  max-width: calc((100% - 90px) / 3);
}

@media screen and (max-width: 767px) {
  .tabaneBox .tsukaikata .imgBox.tsukaikata .flow, .tabaneBox .youto .imgBox.tsukaikata .flow, .tabaneBox .meyasu .imgBox.tsukaikata.home .flow {
    max-width: none;
  }
}
.tabaneBox .tsukaikata .imgBox {
  margin-bottom: 50px;
}

.hazushikata {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*=======================*/
/*0830たばね修正*/
/*=======================*/
.rightBox__text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rightBox__text p {
  width: calc((100% - 40px) / 2);
  margin-top: 0;
  text-align: center;
}

.chartSection.tabane .chartSection-contents {
  position: static;
}

.chartSection.tabane .chartSection-contents-scroll {
  position: relative;
  margin-top: 4px;
}

.chartSection.tabane .chartSection-contents-scroll .chartSectionNumberIcon.tabane {
  top: 69px;
}

.tabaneBox .topSizeItem-title.tabaneH3 {
  padding: 5px 20px;
  height: auto;
}

.tabaneBox .item {
  height: auto;
}

@media screen and (max-width: 767px) {
  .cv .btnArea .btnArea_left img {
    width: 100%;
    height: auto;
  }
}
.tabaneBox .youto .imgBox._home {
  gap: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tabaneBox .youto .imgBox._home figure {
  padding: 0 3px 3px;
  padding: 0 3px 3px;
  margin: 15px;
  width: calc((100% - 120px) / 3);
}

.tabaneBox .youto .imgBox._home figure img {
  border: none;
}

.tabaneBox .youto .imgBox._home figure figcaption span {
  font-weight: bold;
}

.tabaneBox .youto .imgBox._home figure img {
  width: calc(100% - 20px);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .tabaneBox .youto .imgBox._home figure {
    width: 100%;
  }
  section.evolve.tabane {
    margin-bottom: 80px;
  }
}
/*=======================*/
/*0906たばね修正*/
/*=======================*/
.tableSection table {
  border-collapse: collapse;
}

.tabaneBox .youto figure figcaption {
  margin: 0 10px;
}

.tabaneBox .topSizeItem-title.tabaneH3 {
  display: block;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tabaneBox .youto .imgBox._home {
    margin-bottom: 0;
  }
  .tabaneBox .tsukaikata .imgBox.tsukaikata_home {
    margin-bottom: 0;
  }
  .tabaneBox {
    margin-top: 60px;
  }
  .evolveContents {
    padding: 80px 0;
  }
  .cv.tabane {
    margin: 60px auto;
  }
  section.evolve.tabane {
    margin-bottom: 0;
  }
  section.evolve.tabane {
    padding-bottom: 0;
  }
}
/*=======================*/
/*0913 archive-items2修正*/
/*=======================*/
.filterSelectArea.items2 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .filterSelectArea.items2 {
    max-width: 90%;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .filterSelectArea.items2 {
    max-width: 90%;
  }
}

/*=======================*/
/*0915 archive-items2修正*/
/*=======================*/
.filterSelect-title.evolve-filter {
  padding: 0px;
}
.filterSelect-title.evolve-filter a {
  color: #ffffff;
  display: block;
  padding: 15px 30px;
  width: 100%;
  height: 100%;
}
