@charset "UTF-8";
@font-face {
  font-family: Brown-Regular;
  src: url(../font/Brown-Regular.otf) format("opentype");
}
html {
  font-size: 1px;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 16px;
  background-image: url(../img/bg.png);
  background-size: 38px 36px;
  background-repeat: repeat;
  background-position: top center;
  overflow: hidden;
}
body.sub {
  overflow: auto;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, figure {
  margin: 0;
}

.d-flex {
  display: flex;
}

.flex-reserve {
  flex-direction: row-reverse;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.align-items-center {
  align-items: center;
}

.pc {
  display: flex !important;
}

.pc-block {
  display: block !important;
}

.font-mincho {
  font-family: "Hina Mincho", serif;
}

.sp {
  display: none !important;
}

.sp-block {
  display: none !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center !important;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.jusify-content-left {
  justify-content: left !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_reserve {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scaled_x_down {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.anim {
  opacity: 0;
}
.anim.fadeInUp.is-animated {
  animation: fadeInUp 1s ease-in-out forwards;
}
.anim.fadeInDown.is-animated {
  animation: fadeInDown 0.5s ease-in-out forwards;
}
.anim.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out forwards;
}
.anim.fadeInLeft.is-animated {
  animation: fadeInLeft 1s ease-in-out forwards;
}
.anim.fadeInRight.is-animated {
  animation: fadeInRight 1s ease-in-out forwards;
}
.anim.scaled_x.is-animated {
  transform-origin: left;
  animation: scaled_x 1s ease-in-out forwards;
}
.anim.scaled_x_reserve.is-animated {
  transform-origin: right;
  animation: scaled_x_reserve 1s ease-in-out forwards;
}
.anim.scaled_x_down.is-animated {
  transform-origin: right;
  animation: scaled_x_down 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.133333vw;
  }
  .pc {
    display: none !important;
  }
  .pc-block {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
}
a, p, span, div {
  visibility: hidden;
}

.wf-loading a, .wf-loading p, .wf-loading span, .wf-loading div {
  visibility: hidden;
}

.wf-active a, .wf-active p, .wf-active span, .wf-active div {
  visibility: visible;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.wf-inactive a, .wf-inactive p, .wf-inactive span, .wf-inactive div {
  visibility: visible;
}

header {
  width: 100%;
  height: 140rem;
  padding: 0 calc(50% - 600rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  transition: 0.5s;
}
header a {
  transition: 0.3s;
}
header a:hover {
  opacity: 0.7;
}
header.sub {
  height: 140rem;
  background: #f08c5f;
  position: fixed;
  left: 0;
  top: 0;
}
header.fixed {
  height: 115rem;
  position: fixed;
  left: 0;
  top: 0;
  animation: fadeIn 0.5s forwards;
  background: #f08c5f;
}
header .logo {
  width: 214.75rem;
  display: flex;
  margin-left: -12rem;
}
header ul {
  display: flex;
  align-items: center;
}
header ul li {
  margin-left: 35rem;
}
header ul li.instagram {
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li.instagram .insta__icon.youtube {
  width: 23rem;
}
header ul li.parent {
  position: relative;
}
header ul li.parent:hover ul.child {
  opacity: 1;
  visibility: visible;
}
header ul li.parent ul.child {
  display: block;
  width: 130rem;
  height: 118rem;
  padding: 22rem 10rem 0;
  background: rgba(243, 163, 127, 0.8);
  position: absolute;
  left: 50%;
  top: -8rem;
  transform: translate(-50%);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
header ul li.parent ul.child li {
  margin: 10rem 0;
}
header ul li.parent ul.child li:first-child {
  padding-top: 10rem;
  border-top: 1rem solid rgba(255, 255, 255, 0.5);
}
header ul li.parent ul.child li a, header ul li.parent ul.child li span {
  display: block;
  font-size: 12rem;
  letter-spacing: 0.01em;
  line-height: 24.82rem;
  text-align: center;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif !important;
  font-weight: bold;
}
header ul li a, header ul li span {
  font-family: Brown-Regular !important;
  font-weight: normal;
  font-size: 17rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: left;
  color: #fff;
  -webkit-text-stroke: 0.3rem #fff;
}
header ul li .insta__icon {
  width: 20rem;
  margin: 0 10rem;
  display: flex;
}

.pageTop {
  width: 50rem;
  position: fixed;
  right: 32rem;
  bottom: 32rem;
  transition: 0.3s;
  display: none;
  z-index: 3;
  cursor: pointer;
}
.pageTop.visible {
  display: flex;
  animation: fadeIn 0.5s forwards;
}
.pageTop:hover {
  opacity: 0.7 !important;
}

.frontview {
  max-width: 1300rem;
  margin: auto;
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  margin-top: -300rem;
}
.frontview img {
  position: relative;
  z-index: 1;
}
.frontview .voice__link {
  width: 176rem;
  display: flex;
  position: absolute;
  right: 90rem;
  bottom: 0;
  opacity: 0;
  transition: 1s;
}
.frontview .voice__link.visible {
  opacity: 1;
}
.frontview .front__woman {
  width: 100%;
  display: flex;
  position: absolute;
  left: 0;
  z-index: -1;
  top: 252rem;
}
.frontview .woman {
  opacity: 0;
  transition: 1s;
  transform: scale(1.05);
}
.frontview .woman.visible {
  transform: scale(1);
  opacity: 1;
}
.frontview .front__logo {
  width: 462.5833333333rem;
  display: flex;
  position: absolute;
  bottom: 210rem;
  right: 210rem;
  opacity: 0;
  transform: scale(1.05);
  transition: 1s;
}
.frontview .front__logo.visible {
  opacity: 1;
  transform: scale(1);
}
.frontview .f__mark {
  width: 198.25rem;
  display: flex;
  position: absolute;
  bottom: 640rem;
  right: 65rem;
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.5);
}
.frontview .f__mark.visible {
  opacity: 1;
  transform: scale(1);
}
.frontview .f__slider01 {
  width: 140.8333333333rem;
  position: absolute;
  bottom: 740rem;
  left: 590rem;
  -webkit-mask-image: url(../img/speek_mark.webp);
          mask-image: url(../img/speek_mark.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
}
.frontview .f__slider01 .c__item {
  transform: scale(1.2);
  transition: 0.5s;
}
.frontview .f__slider01.visible {
  opacity: 1;
}
.frontview .f__slider01.visible .c__item {
  transform: scale(1);
}
.frontview .f__slider02 {
  width: 270.8333333333rem;
  position: absolute;
  bottom: 630rem;
  left: 250rem;
  -webkit-mask-image: url(../img/speek_mark.webp);
          mask-image: url(../img/speek_mark.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 0;
  transition: 0.5s;
}
.frontview .f__slider02 .c__item {
  transform: scale(1.2);
  transition: 0.5s;
}
.frontview .f__slider02.visible {
  opacity: 1;
}
.frontview .f__slider02.visible .c__item {
  transform: scale(1);
}
.frontview .f__slider03 {
  width: 196.0833333333rem;
  position: absolute;
  bottom: 450rem;
  left: 100rem;
  -webkit-mask-image: url(../img/speek_mark.webp);
          mask-image: url(../img/speek_mark.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 1s;
}
.frontview .f__slider03 .c__item {
  transform: scale(1.2);
  transition: 1s;
}
.frontview .f__slider03.visible {
  opacity: 1;
}
.frontview .f__slider03.visible .c__item {
  transform: scale(1);
}

.section-front__news {
  width: 630rem;
  height: 65rem;
  padding: 0 40rem;
  margin: auto;
  margin-top: 75rem;
  border-radius: 32.5rem;
  background: #fff;
  display: flex;
  align-items: center;
}
.section-front__news a {
  width: 100%;
  padding-bottom: 7rem;
  display: flex;
  align-items: center;
  border-bottom: 1rem solid #f08c5f;
}
.section-front__news a:hover .title {
  color: #f08c5f;
}
.section-front__news a .date {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 16rem;
  margin-right: 65rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
  color: #73645a;
}
.section-front__news a .title {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #73645a;
  transition: 0.5s;
}

.section-message {
  max-width: 1200rem;
  width: 100%;
  margin: auto;
  margin-top: 52rem;
  padding: 0 95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.section-message .gap01 {
  width: 208rem;
  display: flex;
  position: absolute;
  bottom: 20rem;
  right: -26rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
}
.section-message .gap01.is-animated {
  opacity: 0.5;
}
.section-message .gap02 {
  width: 140rem;
  display: flex;
  position: absolute;
  bottom: -20rem;
  right: 135rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 1s;
  opacity: 0;
  transition: 0.5s;
}
.section-message .gap02.is-animated {
  opacity: 0.5;
}
.section-message .gap03 {
  width: 88.74rem;
  display: flex;
  position: absolute;
  bottom: -100rem;
  right: 62rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 2s;
  opacity: 0;
  transition: 0.5s;
}
.section-message .gap03.is-animated {
  opacity: 0.5;
}
.section-message .main__images {
  position: relative;
}
.section-message .main__images .m__gap01 {
  width: 208rem;
  display: flex;
  position: absolute;
  left: -160rem;
  top: 0;
  opacity: 0;
  transition: 0.5s;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
.section-message .main__images .m__gap01.is-animated {
  opacity: 0.5;
}
.section-message .main__images .m__gap02 {
  width: 139.43rem;
  display: flex;
  position: absolute;
  left: -32rem;
  top: 260rem;
  opacity: 0;
  transition: 0.5s;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 1s;
}
.section-message .main__images .m__gap02.is-animated {
  opacity: 0.5;
}
.section-message .main__images .m__slider01 {
  width: 330rem;
  margin-left: 140rem;
  -webkit-mask-image: url(../img/speek_mark.webp);
          mask-image: url(../img/speek_mark.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.section-message .main__images .m__slider02 {
  width: 438rem;
  margin-top: 30rem;
  -webkit-mask-image: url(../img/speek_mark.webp);
          mask-image: url(../img/speek_mark.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.section-message .message__content {
  position: relative;
}
.section-message .message__content .gap__text {
  width: 353rem;
  display: flex;
  position: absolute;
  right: -50rem;
  top: -100rem;
}
.section-message .message__content .en__txt {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 52rem;
  text-align: left;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
  position: relative;
}
.section-message .message__content .t__title {
  font-weight: bold;
  font-size: 49.78rem;
  letter-spacing: 0.05em;
  line-height: 73.74rem;
  margin-top: 10rem;
  text-align: left;
  color: #73645a;
  position: relative;
}
.section-message .message__content .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 37rem;
  margin-top: 45rem;
  margin-bottom: 30rem;
  text-align: left;
  color: #73645a;
}

@keyframes line_move {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.readmore__btn {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 13rem;
  letter-spacing: 0.15em;
  line-height: 1;
  padding-bottom: 6rem;
  text-align: left;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
  display: inline-block;
  position: relative;
}
.readmore__btn:hover:after {
  animation: line_move 0.5s forwards;
}
.readmore__btn:after {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1rem solid #f08c5f;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.readmore__btn.--white {
  color: white;
  -webkit-text-stroke: 0.3rem #fff;
}
.readmore__btn.--white:after {
  border-color: #fff;
}

.section-video {
  width: 676rem;
  height: 380rem;
  margin: auto;
  margin-top: 60rem;
  background: #bebebe;
  position: relative;
}
.section-video iframe {
  width: 100%;
  height: 100%;
}
.section-video .play__btn {
  width: 52.29rem;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.section-product {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  margin-top: 46rem;
  padding: 0 100rem;
}
.section-product .en__txt {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 52rem;
  text-align: left;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
}
.section-product .p__item {
  padding: 0 45rem;
  position: relative;
  margin-top: 30rem;
}
.section-product .p__item.reserve {
  margin-top: 50rem;
  text-align: right;
}
.section-product .p__item.reserve .gap01 {
  width: 208rem;
  display: flex;
  position: absolute;
  bottom: 265rem;
  left: 22rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
}
.section-product .p__item.reserve .gap01.is-animated {
  opacity: 0.5;
}
.section-product .p__item.reserve .gap02 {
  width: 140rem;
  display: flex;
  position: absolute;
  bottom: 165rem;
  left: 92rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 1s;
  opacity: 0;
  transition: 0.5s;
}
.section-product .p__item.reserve .gap02.is-animated {
  opacity: 0.5;
}
.section-product .p__item.reserve .gap03 {
  width: 70rem;
  display: flex;
  position: absolute;
  bottom: 130rem;
  left: -12rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 2s;
  opacity: 0;
  transition: 0.5s;
}
.section-product .p__item.reserve .gap03.is-animated {
  opacity: 0.5;
}
.section-product .p__item.reserve .gap04 {
  width: 70rem;
  display: flex;
  position: absolute;
  bottom: 68rem;
  left: 114rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 3s;
  opacity: 0;
  transition: 0.5s;
}
.section-product .p__item.reserve .gap04.is-animated {
  opacity: 0.5;
}
.section-product .p__item.reserve .p__gap {
  left: 0;
  right: auto;
}
.section-product .p__item .p__gap {
  width: 560rem;
  display: flex;
  position: absolute;
  right: 0;
  top: 2rem;
}
.section-product .p__item .p__gap img {
  display: none;
}
.section-product .p__item .p__gap img.active {
  display: flex;
  animation: fadeIn 0.3s forwards;
}
.section-product .p__item .p__gap.c01 {
  width: 556rem;
  top: 30rem;
  left: 70rem;
}
.section-product .p__item .content__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.section-product .p__item .content__item .c__image {
  width: 400rem;
  display: flex;
}
.section-product .p__item .content__item .content__text {
  margin-top: 38rem;
  text-align: left;
}
.section-product .p__item .content__item .content__text .c__lbl {
  width: 280rem;
  display: flex;
}
.section-product .p__item .content__item .content__text .c__lbl.c01 {
  width: 330rem;
}
.section-product .p__item .content__item .content__text .c__text {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 16rem;
  letter-spacing: 0.18em;
  line-height: 32rem;
  margin-top: 20rem;
  text-align: left;
  color: #73645a;
}
.section-product .p__item .content__item .content__text .c__text span {
  font-size: 13rem;
  font-weight: 400;
}
.section-product .p__item .content__item .content__text .c__text .example {
  font-size: 0.8em;
  vertical-align: 10%;
}
.section-product .p__item .content__item .content__text ul {
  margin-top: 26rem;
  display: flex;
  margin-bottom: 62rem;
}
.section-product .p__item .content__item .content__text ul li {
  margin-right: 25rem;
  position: relative;
  cursor: pointer;
}
.section-product .p__item .content__item .content__text ul li .c__lbl {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 400;
  font-size: 11rem;
  letter-spacing: 0.1em;
  line-height: 13rem;
  text-align: center;
  color: #73645a;
  position: absolute;
  display: inline-block;
  bottom: -32rem;
  left: 50%;
  transform: translate(-50%);
}
.section-product .p__item .content__item .content__text ul li .c__lbl.c01 {
  bottom: -58rem;
}
.section-product .p__item .content__item .content__text ul li .c__lbl.c02 {
  bottom: -20rem;
}
.section-product .p__item .content__item .content__text ul li .c__image {
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  background: #f08c5f;
  transition: 0.3s;
}
.section-product .p__item .content__item .content__text ul li .c__image:hover {
  transform: scale(1.1);
}
.section-product .p__item .content__item .content__text ul li .c__image.c00 {
  background: transparent;
}
.section-product .p__item .content__item .content__text ul li .c__image.c01 {
  background: #73645a;
}
.section-product .p__item .content__item .content__text ul li .c__image.c02 {
  background: #b2dc64;
}
.section-product .p__item .content__item .content__text ul li .c__image.c03 {
  background: #ffe33f;
}
.section-product .p__item .content__item .content__text ul li .c__image.c04 {
  background: #b3a688;
}

.section-pdf {
  margin-top: 150rem;
  padding: 80rem 0;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-pdf .content__text .c__lbl {
  font-weight: bold;
  font-size: 24.38rem;
  letter-spacing: 0.12em;
  line-height: 42.66rem;
  text-align: center;
  color: #73645a;
}
.section-pdf .content__text .download__btn {
  width: 380rem;
  height: 85rem;
  margin: auto;
  margin-top: 38rem;
  background: transparent;
  border: 1rem solid #73645a;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-pdf .content__text .download__btn span {
  font-weight: bold;
  font-size: 24.38rem;
  letter-spacing: 0.08em;
  line-height: 42.66rem;
  text-align: center;
  color: #73645a;
}
.section-pdf .pdf__image {
  width: 210rem;
  margin-left: 45rem;
  display: flex;
}

.section-company {
  padding: 75rem 0 65rem;
  background: #f08c5f;
  overflow: hidden;
}
.section-company .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding: 0 120rem 0 90rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.section-company .content__inner .c__woman {
  width: 385rem;
  display: flex;
  position: absolute;
  bottom: -65rem;
  left: 180rem;
  animation-delay: 0.5s;
}
.section-company .content__inner .t__title {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: left;
  color: #fff;
  -webkit-text-stroke: 0.3rem #f08c5f;
}
.section-company .content__inner .content__text .c__logo {
  width: 285rem;
  display: flex;
}
.section-company .content__inner .content__text .clean__txt {
  width: 436.19rem;
  margin-top: 50rem;
  display: flex;
}
.section-company .content__inner .content__text .c__txt {
  font-weight: bold;
  font-size: 24.38rem;
  letter-spacing: 0.12em;
  line-height: 42.66rem;
  margin-top: 15rem;
  text-align: left;
  color: #fff;
}
.section-company .content__inner .content__text .txt {
  width: 360rem;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 600;
  font-size: 14rem;
  letter-spacing: 0.22em;
  line-height: 32rem;
  margin-top: 50rem;
  margin-bottom: 30rem;
  text-align: left;
  color: #fff;
}

.section-news {
  padding: 65rem 0 98rem 0;
  overflow: hidden;
  position: relative;
}
.section-news .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  position: relative;
}
.section-news .content__inner .gap01 {
  width: 208.45rem;
  display: flex;
  position: absolute;
  top: -140rem;
  right: 45rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
}
.section-news .content__inner .gap01.is-animated {
  opacity: 0.5;
}
.section-news .content__inner .gap02 {
  width: 139.43rem;
  display: flex;
  position: absolute;
  top: 20rem;
  right: 40rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 1s;
  opacity: 0;
  transition: 0.5s;
}
.section-news .content__inner .gap02.is-animated {
  opacity: 0.5;
}
.section-news .content__inner .gap03 {
  width: 69.4rem;
  display: flex;
  position: absolute;
  top: 122rem;
  right: 211rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 2s;
  opacity: 0;
  transition: 0.5s;
}
.section-news .content__inner .gap03.is-animated {
  opacity: 0.5;
}
.section-news .content__inner .gap04 {
  width: 69.4rem;
  display: flex;
  position: absolute;
  top: 190rem;
  right: 82rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 3s;
  opacity: 0;
  transition: 0.5s;
}
.section-news .content__inner .gap04.is-animated {
  opacity: 0.5;
}
.section-news .content__inner .title {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: left;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
  position: absolute;
  left: 0;
  top: 0;
}
.section-news .content__inner .content__items {
  width: 590rem;
  margin: auto;
  text-align: right;
}
.section-news .content__inner .content__items .list__btn {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #f08c5f;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.section-news .content__inner .content__items .list__btn:hover:after {
  animation: line_move 0.5s forwards;
}
.section-news .content__inner .content__items .list__btn:after {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1rem solid #f08c5f;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.section-news .content__inner .content__items .c__items {
  margin-top: 70rem;
}
.section-news .content__inner .content__items .c__items a {
  display: flex;
  align-items: baseline;
  padding: 30rem 0;
}
.section-news .content__inner .content__items .c__items a:hover .c__text .t__txt {
  color: #f08c5f;
}
.section-news .content__inner .content__items .c__items a:hover .c__text .c__txt {
  color: #f08c5f;
}
.section-news .content__inner .content__items .c__items a:first-child {
  padding-top: 0;
}
.section-news .content__inner .content__items .c__items a:last-child {
  padding-bottom: 0;
}
.section-news .content__inner .content__items .c__items a .date {
  width: 130rem;
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
  color: #73645a;
  vertical-align: baseline;
}
.section-news .content__inner .content__items .c__items a .c__text {
  width: calc(100% - 130rem);
}
.section-news .content__inner .content__items .c__items a .c__text .t__txt {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 24rem;
  text-align: left;
  color: #73645a;
  transition: 0.3s;
}
.section-news .content__inner .content__items .c__items a .c__text .c__txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.06em;
  line-height: 32rem;
  margin-top: 20rem;
  text-align: left;
  color: #73645a;
  transition: 0.3s;
}

footer {
  padding: 40rem 0 70rem;
  background: #f08c5f;
}
footer a {
  transition: 0.3s;
}
footer a:hover {
  opacity: 0.7;
}
footer .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
}
footer .content__inner .footer__menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .content__inner .footer__menu .f__logo {
  width: 214.75rem;
  margin-left: -12rem;
  display: flex;
}
footer .content__inner .footer__menu ul li {
  margin-bottom: 20rem;
}
footer .content__inner .footer__menu ul li ul.child {
  margin-top: 10rem;
}
footer .content__inner .footer__menu ul li ul.child li {
  margin: 5rem 0;
}
footer .content__inner .footer__menu ul li ul.child li a, footer .content__inner .footer__menu ul li ul.child li span {
  font-size: 13rem;
  letter-spacing: 0.08em;
  line-height: 24.82rem;
  text-align: left;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
}
footer .content__inner .footer__menu ul li a, footer .content__inner .footer__menu ul li span {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 17rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: left;
  color: #fff;
  -webkit-text-stroke: 0.3rem #fff;
}
footer .content__inner .bottom__menu {
  margin-top: 44rem;
  display: flex;
  justify-content: space-between;
}
footer .content__inner .bottom__menu ul {
  display: flex;
  align-items: center;
}
footer .content__inner .bottom__menu ul li {
  margin-right: 35rem;
}
footer .content__inner .bottom__menu ul li a, footer .content__inner .bottom__menu ul li span {
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #fff;
}
footer .content__inner .bottom__menu .copyright {
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #fff;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7rem) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.opening__wrapper {
  width: 100%;
  height: 100%;
  background: white;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  transition: 0.5s;
}
.opening__wrapper.disible {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.opening__wrapper .first__page {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.opening__wrapper .first__page .p__logo {
  width: 158rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.opening__wrapper .first__page .p__logo.open {
  display: flex;
  animation: fadeIn 0.3s forwards;
}
.opening__wrapper .first__page .bg {
  width: 120vw;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: 1s;
}
.opening__wrapper .first__page .bg.redu {
  width: 260rem;
}
.opening__wrapper .first__page .skip__btn {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 17.01rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: left;
  color: #fff;
  -webkit-text-stroke: 0.3rem #fff;
  text-shadow: 1rem 1rem 5rem #632609;
  position: absolute;
  right: 60rem;
  bottom: 45rem;
  transition: 0.3s;
  cursor: pointer;
}
.opening__wrapper .first__page .skip__btn:hover {
  opacity: 0.7;
}
.opening__wrapper .first__page p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.opening__wrapper .first__page p span {
  width: 233rem;
  margin: 10rem 0;
  display: flex;
  opacity: 1 !important;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 2s;
}
.opening__wrapper .first__page p span.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.opening__wrapper .first__page p span:nth-child(2) {
  width: 208rem;
  transition-delay: 1.7s;
}
.opening__wrapper .first__page p span:nth-child(3) {
  width: 298rem;
  transition-delay: 4s;
}

.breadcrumb {
  width: auto;
  margin: auto;
  margin-top: 0;
  padding: 0 calc(50% - 600rem);
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 140rem;
  z-index: 1;
}
.breadcrumb.visible {
  z-index: -1;
}
.breadcrumb.red a, .breadcrumb.red span {
  color: #f08c5f;
}
.breadcrumb.messeage {
  position: absolute;
  left: 0;
  top: 140rem;
  margin-top: 0;
  z-index: 6;
  text-shadow: 1rem 1rem 13rem #000, 0 0 5rem rgba(0, 0, 0, 0.6);
}
.breadcrumb.messeage a, .breadcrumb.messeage span {
  color: #fff;
}
.breadcrumb.company {
  position: absolute;
  left: 0;
  top: 140rem;
  margin-top: 0;
  text-shadow: 1rem 1rem 13rem #000, 0 0 5rem rgba(0, 0, 0, 0.6);
  z-index: 6;
}
.breadcrumb.company a, .breadcrumb.company span {
  color: #fff;
}
.breadcrumb.fixed {
  position: fixed;
  left: 0;
  top: 115rem;
}
.breadcrumb .icon {
  font-size: 24rem;
  margin: 0 12rem;
  position: relative;
  top: -3rem;
}
.breadcrumb a, .breadcrumb span {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0;
  line-height: 37rem;
  text-align: left;
  color: #73645a;
}

.product__detail {
  max-width: 1200rem;
  margin: auto;
  margin-top: 285rem;
  padding: 0 85rem;
  position: relative;
}
.product__detail.visible .detail__content {
  opacity: 1;
}
.product__detail.visible .oil__pup {
  opacity: 1;
}
.product__detail.visible .main__image {
  opacity: 1;
}
.product__detail .oil__pup {
  width: 320rem;
  display: flex;
  position: absolute;
  right: 68rem;
  top: -130rem;
  opacity: 0;
  transition: 0.5s;
}
.product__detail .main__image {
  width: 496rem;
  transform: rotate(-10deg);
  display: flex;
  position: absolute;
  right: 200rem;
  top: -40rem;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
}
.product__detail .main__image.oilcloth {
  width: 460rem;
  transform: rotate(0);
  right: 231rem;
  top: -75rem;
}
.product__detail .main__image img {
  display: none;
}
.product__detail .main__image img.active {
  display: flex;
  animation: fadeIn 0.3s forwards;
}
.product__detail .detail__content {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 1s;
}
.product__detail .detail__content h2 {
  width: 358rem;
  display: flex;
}
.product__detail .detail__content h2.brush {
  width: 301rem;
}
.product__detail .detail__content .t__title {
  font-weight: bold;
  font-size: 50rem;
  letter-spacing: -0.03em;
  line-height: 73rem;
  margin-top: 15rem;
  text-align: left;
  color: #73645a;
}
.product__detail .detail__content .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 37rem;
  margin-top: 42rem;
  text-align: left;
  color: #73645a;
}
.product__detail .detail__content .c__txt span {
  font-size: 0.6em;
  vertical-align: 10%;
}
.product__detail .detail__content .c__txt span.block {
  display: block;
}
.product__items {
  margin-top: 15rem;
  display: flex;
  justify-content: center;
}
.product__items .p__item {
  width: auto;
  margin: 0 10rem;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.product__items .p__item .c__image {
  width: 170rem;
  display: flex;
  position: relative;
  cursor: pointer;
}
.product__items .p__item p {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: -0.06em;
  line-height: 19rem;
  text-align: center;
  color: #73645a;
  display: inline-block;
}

.video__frame {
  width: 100%;
  position: relative;
}
.video__frame .gap01 {
  width: 140rem;
  position: absolute;
  bottom: 5rem;
  left: -16rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
}
.video__frame .gap01.is-animated {
  opacity: 0.5;
}
.video__frame .gap02 {
  width: 208rem;
  position: absolute;
  bottom: -145rem;
  left: 6rem;
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
  animation-delay: 1s;
}
.video__frame .gap02.is-animated {
  opacity: 0.5;
}
.video__frame .content__inner {
  width: 680rem;
  margin: auto;
  margin-top: 140rem;
  display: flex;
}
.video__frame .content__inner iframe {
  width: 100%;
  height: 100%;
}

.gap__image {
  width: 436rem;
  margin: auto;
  margin-top: 35rem;
}

.point__content {
  max-width: 960rem;
  width: 95%;
  margin: auto;
  margin-bottom: 103rem;
  padding: 46rem;
  margin-top: 45rem;
  background: #fff;
  position: relative;
}
.point__content .point__text {
  width: 178rem;
  display: flex;
  position: absolute;
  top: 85rem;
  right: 70rem;
}
.point__content .gap01 {
  width: 140rem;
  display: flex;
  position: absolute;
  bottom: 30rem;
  right: -20rem;
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
.point__content .gap02 {
  width: 88rem;
  display: flex;
  position: absolute;
  bottom: -78rem;
  right: -80rem;
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
.point__content .en__txt {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 52rem;
  text-align: center;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
}
.point__content .ja__txt {
  font-weight: bold;
  font-size: 30rem;
  letter-spacing: 0.21em;
  line-height: 50rem;
  text-align: center;
  color: #73645a;
}
.point__content .point__items {
  margin-bottom: 260rem;
  margin-top: 36rem;
  display: flex;
  align-items: self-start;
  position: relative;
}
.point__content .point__items.brush {
  justify-content: space-between;
  margin-bottom: 80rem;
}
.point__content .point__items.brush .p__item:first-child {
  margin: 0;
}
.point__content .point__items.brush .p__item:nth-child(2) {
  position: relative;
  top: auto;
  left: auto;
}
.point__content .point__items .p__item {
  width: 250rem;
  display: flex;
}
.point__content .point__items .p__item:first-child {
  margin-right: 165rem;
}
.point__content .point__items .p__item:nth-child(2) {
  position: absolute;
  top: 190rem;
  left: 185rem;
}
.point__content .point__items .p__item:nth-child(4) {
  position: absolute;
  top: 171rem;
  right: 0;
}
.point__content .apuri__content {
  width: 750rem;
  margin: auto;
  height: auto;
  padding: 45rem;
  background: transparent;
  border: 2rem solid #f08c5f;
  text-align: center;
}
.point__content .apuri__content.brush h2 .n__txt {
  bottom: -35rem;
  right: 0rem;
}
.point__content .apuri__content.brush .c__txt {
  margin-top: 48rem;
}
.point__content .apuri__content.brush .f__images .f__image .c__lbl {
  margin-top: 0;
  margin-bottom: 10rem;
  text-align: center;
}
.point__content .apuri__content .t__icon {
  width: 92.18rem;
  display: flex;
  margin: auto;
}
.point__content .apuri__content h2 {
  font-weight: bold;
  font-size: 30rem;
  letter-spacing: 0.15em;
  line-height: 36rem;
  margin-top: 5rem;
  text-align: center;
  color: #f08c5f;
  position: relative;
  display: inline-block;
}
.point__content .apuri__content h2 .n__txt {
  font-weight: 300;
  font-size: 13rem;
  letter-spacing: 0.18em;
  line-height: 32rem;
  text-align: left;
  color: #73645a;
  position: absolute;
  bottom: 3rem;
  right: -38rem;
  display: inline-block;
}
.point__content .apuri__content h2 span {
  font-size: 20rem;
}
.point__content .apuri__content h2 .example {
  font-size: 0.6em;
  vertical-align: 30%;
}
.point__content .apuri__content .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.12em;
  line-height: 27rem;
  margin-top: 22rem;
  text-align: center;
  color: #73645a;
}
.point__content .apuri__content .f__images {
  margin-top: 38rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.point__content .apuri__content .f__images .f__image {
  width: 135rem;
}
.point__content .apuri__content .f__images .f__image .c__image {
  width: 100%;
  display: flex;
}
.point__content .apuri__content .f__images .f__image .c__lbl {
  font-weight: bold;
  font-size: 14rem;
  letter-spacing: 0.03em;
  line-height: 19rem;
  margin-top: 7rem;
  text-align: left;
  color: #73645a;
}
.point__content .apuri__content .f__images .c__arrow {
  width: 22rem;
  margin: 39rem 8rem 0;
  display: flex;
}
.point__content .point__detail {
  width: 400rem;
  margin: auto;
  margin-top: 60rem;
}
.point__content .point__detail .p__use .t__txt {
  font-weight: bold;
  font-size: 14rem;
  letter-spacing: 0.22em;
  line-height: 24.5rem;
  padding-bottom: 5rem;
  text-align: center;
  color: #73645a;
  border-bottom: 1rem solid #73645a;
}
.point__content .point__detail .p__use .use__items {
  margin-top: 16rem;
  display: flex;
  justify-content: space-between;
}
.point__content .point__detail .p__use .use__items .u__item:nth-child(2) .u__image {
  width: 63rem;
}
.point__content .point__detail .p__use .use__items .u__item:nth-child(3) .u__image {
  width: 60rem;
}
.point__content .point__detail .p__use .use__items .u__item .u__image {
  width: 56rem;
  margin: auto;
  display: flex;
}
.point__content .point__detail .p__use .use__items .u__item .u__lbl {
  font-weight: normal;
  font-size: 14rem;
  line-height: 17.57rem;
  margin-top: 3rem;
  text-align: center;
  color: #73645a;
}
.point__content .point__detail .use__method {
  margin-top: 15rem;
}
.point__content .point__detail .use__method .t__txt {
  font-weight: bold;
  font-size: 14rem;
  letter-spacing: 0.22em;
  line-height: 24.5rem;
  padding-bottom: 5rem;
  text-align: center;
  color: #73645a;
  border-bottom: 1rem solid #73645a;
}
.point__content .point__detail .use__method .c__txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.08em;
  line-height: 21rem;
  padding-top: 8rem;
  text-align: left;
  color: #73645a;
}
.point__content .point__detail .quality__content {
  margin-top: 50rem;
}
.point__content .point__detail .quality__content .t__txt {
  font-weight: bold;
  font-size: 14rem;
  letter-spacing: 0.22em;
  line-height: 24.5rem;
  text-align: center;
  color: #73645a;
}
.point__content .point__detail .quality__content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5rem;
}
.point__content .point__detail .quality__content table tr {
  border-top: 1rem solid #73645a;
}
.point__content .point__detail .quality__content table tr:last-child {
  border-bottom: 1rem solid #73645a;
}
.point__content .point__detail .quality__content table tr td {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.08em;
  line-height: 21rem;
  padding: 5rem 0;
  text-align: left;
  color: #73645a;
}
.point__content .point__detail .quality__content table tr td:first-child {
  vertical-align: top;
  width: 90rem;
  text-align: center;
  padding: 5rem 10rem;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.company__wrapper {
  padding-top: 130rem;
  overflow: hidden;
}

.company__frontview {
  width: 100%;
  margin-top: 0;
  display: flex;
  position: relative;
  opacity: 1;
}
.company__frontview > img {
  opacity: 0;
  transition: 1s;
}
.company__frontview.is-animated > img {
  opacity: 1;
}
.company__frontview.is-animated .company__mark {
  opacity: 1;
  transform: translate(-50%, 0);
}
.company__frontview .company__mark {
  width: 26.6666666667vw;
  display: flex;
  position: absolute;
  left: 50%;
  top: 11vw;
  transform: translate(-50%, 30rem);
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}

.company__content {
  padding-top: 145rem;
  padding-bottom: 120rem;
  position: relative;
  overflow: hidden;
}
.company__content .gap01 {
  width: 140rem;
  display: flex;
  position: absolute;
  right: 76rem;
  top: 20rem;
  transition: 0.5s;
}
.company__content .gap01.is-animated {
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 1s;
}
.company__content .gap02 {
  width: 208rem;
  display: flex;
  position: absolute;
  right: -36rem;
  top: 80rem;
  transition: 0.5s;
}
.company__content .gap02.is-animated {
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
.company__content .gap03 {
  width: 250rem;
  display: flex;
  position: absolute;
  left: -26rem;
  bottom: 90rem;
  transition: 0.5s;
}
.company__content .gap03.is-animated {
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
.company__content .gap04 {
  width: 140rem;
  display: flex;
  position: absolute;
  left: 160rem;
  bottom: 50rem;
  transition: 0.5s;
}
.company__content .gap04.is-animated {
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 1s;
}
.company__content .content__inner {
  max-width: 1200rem;
  margin: auto;
  padding: 0 85rem;
}
.company__content .content__inner .en__lbl {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 52rem;
  text-align: left;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
}
.company__content .content__inner .en__txt {
  width: 700rem;
  display: flex;
  margin-top: 38rem;
}
.company__content .content__inner .ja__txt {
  font-weight: bold;
  font-size: 50rem;
  letter-spacing: 0.05em;
  line-height: 73rem;
  margin-top: 10rem;
  text-align: left;
  color: #73645a;
}
.company__content .content__inner .t__lbl {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.12em;
  line-height: 37rem;
  margin-top: 42rem;
  text-align: left;
  color: #73645a;
}
.company__content .content__inner .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 37rem;
  margin-top: 42rem;
  text-align: left;
  color: #73645a;
}

.company__info {
  padding-bottom: 160rem;
  position: relative;
}
.company__info .gap01 {
  width: 208rem;
  display: flex;
  position: absolute;
  right: -56rem;
  top: 1000rem;
  transition: 0.5s;
}
.company__info .gap01.is-animated {
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.company__info .gap02 {
  width: 140rem;
  display: flex;
  position: absolute;
  right: 110rem;
  top: 1100rem;
  transition: 0.5s;
}
.company__info .gap02.is-animated {
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 0.5s;
}
.company__info .gap03 {
  width: 66rem;
  display: flex;
  position: absolute;
  right: 40rem;
  top: 1250rem;
  transition: 0.5s;
}
.company__info .gap03.is-animated {
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 1s;
}
.company__info .gap04 {
  width: 250rem;
  display: flex;
  position: absolute;
  left: 100rem;
  bottom: 50rem;
  transition: 0.5s;
}
.company__info .gap04.is-animated {
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
.company__info .gap05 {
  width: 140rem;
  display: flex;
  position: absolute;
  left: 40rem;
  bottom: 180rem;
  transition: 0.5s;
}
.company__info .gap05.is-animated {
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  animation-delay: 1s;
}
.company__info .logo__info {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.company__info .logo__info.is-animated .c__logo {
  opacity: 1;
}
.company__info .logo__info.is-animated .content__text {
  opacity: 1;
}
.company__info .logo__info .c__logo {
  width: 450rem;
  margin-right: 90rem;
  display: flex;
  transition: 0.5s;
  opacity: 0;
}
.company__info .logo__info .content__text {
  width: 455rem;
  transition: 0.5s;
  transition-delay: 0.5s;
  opacity: 0;
}
.company__info .logo__info .content__text .e__txt {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 52rem;
  text-align: left;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
}
.company__info .logo__info .content__text .ja__txt {
  font-weight: bold;
  font-size: 50rem;
  letter-spacing: 0.05em;
  line-height: 73rem;
  margin-top: 13rem;
  text-align: left;
  color: #73645a;
}
.company__info .logo__info .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.08em;
  line-height: 37rem;
  margin-top: 45rem;
  text-align: left;
  color: #73645a;
}
.company__info .table__info {
  width: 600rem;
  margin: auto;
  margin-top: 120rem;
  position: relative;
}
.company__info .table__info .c__lbl {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.12em;
  line-height: 37rem;
  text-align: left;
  color: #f08c5f;
}
.company__info .table__info table {
  margin-top: 45rem;
  width: 100%;
  border-collapse: collapse;
}
.company__info .table__info table tr td {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 15rem 0;
  text-align: left;
  color: #73645a;
}
.company__info .table__info table tr td:first-child {
  width: 145rem;
  vertical-align: top;
}
.company__info .table__info .map {
  width: 100%;
  height: 350rem;
  margin-top: 18rem;
}
.company__info .table__info .map iframe {
  width: 100%;
  height: 100%;
}
.company__info .table__info .main__com {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-top: 100rem;
  text-align: left;
  color: #73645a;
}
.company__info .table__info .address__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 35rem;
  margin-top: 20rem;
  text-align: left;
  color: #73645a;
}

.sub__title {
  margin-top: 160rem;
}
.sub__title .en__txt {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 40rem;
  letter-spacing: 0.1em;
  line-height: 55.75rem;
  text-align: center;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
}
.sub__title .ja__txt {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-align: center;
  color: #f08c5f;
}

.news__wrapper {
  margin-top: 105rem;
}
.news__wrapper .note__txt {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 52rem;
  text-align: center;
  color: #73645a;
}
.news__wrapper .cat__items {
  margin-top: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__wrapper .cat__items .cat {
  width: 156rem;
  margin: 0 75rem;
  display: flex;
  transition: 0.3s;
}
.news__wrapper .cat__items .cat:hover {
  opacity: 0.7;
}
.news__wrapper .news__content {
  max-width: 1000rem;
  width: 95%;
  margin: auto;
  margin-top: 50rem;
  margin-bottom: 50rem;
  display: flex;
  justify-content: space-between;
}
.news__wrapper .news__content .news__items {
  width: 740rem;
}
.news__wrapper .news__content .news__items .n__item {
  width: 100%;
  margin-bottom: 120rem;
  position: relative;
}
.news__wrapper .news__content .news__items .n__item .pos_id {
  position: absolute;
  left: 0;
  top: -140rem;
}
.news__wrapper .news__content .news__items .n__item .n__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 5rem;
  border-bottom: 1rem solid #73645a;
}
.news__wrapper .news__content .news__items .n__item .n__info .title {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.09em;
  line-height: 1.6;
  text-align: left;
  color: #73645a;
}
.news__wrapper .news__content .news__items .n__item .n__info .title span {
  font-size: 16rem;
  text-decoration: underline;
  text-underline-offset: 4rem;
}
.news__wrapper .news__content .news__items .n__item .n__info .date {
  font-weight: bold;
  font-size: 12rem;
  letter-spacing: 0.03em;
  line-height: 24rem;
  text-align: right;
  color: #73645a;
}
.news__wrapper .news__content .news__items .n__item .content__text {
  padding-top: 40rem;
}
.news__wrapper .news__content .news__items .n__item .content__text p {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.02em;
  line-height: 37rem;
  text-align: left;
  color: #73645a;
}
.news__wrapper .news__content .year__side {
  width: 122rem;
}
.news__wrapper .news__content .year__side .c__lbl {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.09em;
  line-height: 24rem;
  text-align: left;
  color: #73645a;
}
.news__wrapper .news__content .year__side ul {
  margin-top: 10rem;
}
.news__wrapper .news__content .year__side ul li {
  padding: 10rem 0;
  border-top: 1rem solid #73645a;
}
.news__wrapper .news__content .year__side ul li:last-child {
  border-bottom: 1rem solid #73645a;
}
.news__wrapper .news__content .year__side ul li a {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.09em;
  line-height: 24rem;
  text-align: left;
  color: #73645a;
  padding-left: 20rem;
  position: relative;
}
.news__wrapper .news__content .year__side ul li a:after {
  content: "";
  width: 5.4rem;
  height: 11rem;
  background: url(../img/page/y_arrow.webp);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact__wrapper {
  width: 840rem;
  margin: auto;
  margin-top: 110rem;
  margin-bottom: 170rem;
}
.contact__wrapper form.form, .contact__wrapper form.form input {
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 32px;
  text-align: center;
  color: #73645a;
}
.contact__wrapper .note__txt {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 32rem;
  text-align: center;
  color: #73645a;
}
.contact__wrapper .contact__form {
  width: 840rem;
  margin: auto;
  margin-top: 65rem;
}
.contact__wrapper .contact__form table {
  width: 100%;
  border-collapse: collapse;
}
.contact__wrapper .contact__form table tr td {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 40rem;
  padding: 15rem 0;
  text-align: left;
  color: #73645a;
}
.contact__wrapper .contact__form table tr td .privacy__content {
  width: 560rem;
  height: 300rem;
  padding: 24rem 10rem 24rem 24rem;
  border-radius: 1.92rem 0rem 0rem 1.92rem;
  background: #fce8df;
}
.contact__wrapper .contact__form table tr td .privacy__content .content__text {
  height: 100%;
  padding-right: 20rem;
  overflow: auto;
  /* For WebKit browsers */
}
.contact__wrapper .contact__form table tr td .privacy__content .content__text::-webkit-scrollbar {
  width: 8rem; /* Width of the scrollbar */
}
.contact__wrapper .contact__form table tr td .privacy__content .content__text::-webkit-scrollbar-track {
  background: transparent; /* Background of the scrollbar track */
}
.contact__wrapper .contact__form table tr td .privacy__content .content__text::-webkit-scrollbar-thumb {
  background: #888; /* Color of the scrollbar thumb */
  border-radius: 10rem; /* Rounded corners for the thumb */
}
.contact__wrapper .contact__form table tr td .privacy__content .content__text::-webkit-scrollbar-thumb:hover {
  background: #555; /* Color of the scrollbar thumb on hover */
}
.contact__wrapper .contact__form table tr td .privacy__content .content__text p {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.07em;
  line-height: 28rem;
  text-align: left;
  color: #73645a;
}
.contact__wrapper .contact__form table tr td .privacy__chk {
  margin-top: 50rem;
  margin-left: -28rem;
  display: flex;
  align-items: center;
}
.contact__wrapper .contact__form table tr td .privacy__chk .required {
  font-size: 12rem;
  letter-spacing: 0.15em;
  line-height: 1.6;
  border-radius: 3.13rem;
  padding: 1rem 5rem;
  margin-left: 8rem;
  background: #d50032;
  text-align: left;
  color: #fff;
}
.contact__wrapper .contact__form table tr td .gap__txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.13em;
  line-height: 22rem;
  margin-top: 5rem;
  margin-bottom: 18rem;
  text-align: left;
  color: #73645a;
}
.contact__wrapper .contact__form table tr td select {
  width: 305.19rem;
  height: 44.11rem;
  border-radius: 1.65rem 0rem 0rem 1.65rem;
  background: #ececec;
  font-size: 16rem;
  letter-spacing: 0.15em;
  line-height: 40rem;
  padding-left: 20rem;
  text-align: left;
  color: #73645a;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/page/select_arrow.webp);
  background-size: 16rem 8rem;
  background-position: 268rem 20rem;
  background-repeat: no-repeat;
}
.contact__wrapper .contact__form table tr td .post_addr {
  display: flex;
  margin-bottom: 35rem;
}
.contact__wrapper .contact__form table tr td .post_addr input[type=text] {
  width: 230rem;
}
.contact__wrapper .contact__form table tr td .post_addr .post__btn {
  width: 133.27rem;
  height: 44.11rem;
  margin-left: 40rem;
  border-radius: 3rem;
  background: #b9b1ac;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__wrapper .contact__form table tr td .post_addr .post__btn span {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.13em;
  line-height: 40rem;
  text-align: center;
  color: #fff;
}
.contact__wrapper .contact__form table tr td input[type=text] {
  width: 560rem;
  height: 44.11rem;
  border-radius: 1.65rem 0rem 0rem 1.65rem;
  background: #ececec;
  font-size: 16rem;
  letter-spacing: 0.15em;
  line-height: 40rem;
  padding-left: 20rem;
  text-align: left;
  color: #73645a;
  border: 0;
}
.contact__wrapper .contact__form table tr td textarea {
  width: 560rem;
  height: 223.46rem;
  border-radius: 1.92rem 0rem 0rem 1.92rem;
  background: #ececec;
  font-size: 16rem;
  letter-spacing: 0.15em;
  line-height: 40rem;
  padding: 20rem;
  text-align: left;
  color: #73645a;
  border: 0;
}
.contact__wrapper .contact__form table tr td:first-child {
  width: 280rem;
  padding-right: 60rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact__wrapper .contact__form table tr td:first-child .required {
  font-size: 12rem;
  letter-spacing: 0.15em;
  line-height: 1.6;
  border-radius: 3.13rem;
  padding: 1rem 5rem;
  background: #d50032;
  text-align: left;
  color: #fff;
}
.contact__wrapper .contact__form .submit__btn {
  width: 322.99rem;
  height: 55rem;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 75rem;
  background: #f08c5f;
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.13em;
  line-height: 40rem;
  text-align: center;
  color: #fff;
}

.privacy__wrapper {
  max-width: 1000rem;
  width: 95%;
  margin: auto;
  margin-top: 110rem;
  margin-bottom: 100rem;
}
.privacy__wrapper .content__text {
  width: 100%;
}
.privacy__wrapper .content__text p {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.06em;
  line-height: 37rem;
  text-align: left;
  color: #73645a;
}
.privacy__wrapper .content__text p span {
  padding-left: 20rem;
  display: block;
}
.privacy__wrapper .content__text p span a {
  color: #73645a;
  text-decoration: underline;
}

.message__wrapper {
  padding-top: 130rem;
  overflow: hidden;
}
.message__wrapper .message__content {
  width: 100%;
  padding-top: 140rem;
  position: relative;
  opacity: 1;
}
.message__wrapper .message__content .content__inner.is-animated .m__image01 {
  opacity: 1;
}
.message__wrapper .message__content .content__inner.is-animated .m__image02 {
  opacity: 1;
}
.message__wrapper .message__content .content__inner.is-animated .content__text {
  opacity: 1;
}
.message__wrapper .message__content .gap01 {
  width: 208rem;
  display: flex;
  opacity: 0.5;
  position: absolute;
  right: -74rem;
  top: 100rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
}
.message__wrapper .message__content .gap01.is-animated {
  opacity: 0.5;
}
.message__wrapper .message__content .gap02 {
  width: 140rem;
  display: flex;
  opacity: 0.5;
  position: absolute;
  right: 50rem;
  top: 30rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
  animation-delay: 1s;
}
.message__wrapper .message__content .gap02.is-animated {
  opacity: 0.5;
}
.message__wrapper .message__content .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding: 0 100rem;
  position: relative;
  opacity: 1;
}
.message__wrapper .message__content .content__inner .m__image01 {
  width: 438rem;
  display: flex;
  position: absolute;
  top: 0;
  right: 155rem;
  opacity: 0;
  transition: 0.5s;
}
.message__wrapper .message__content .content__inner .m__image02 {
  width: 180rem;
  display: flex;
  position: absolute;
  top: 330rem;
  right: 100rem;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
}
.message__wrapper .message__content .content__inner .content__text {
  position: relative;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 1s;
}
.message__wrapper .message__content .content__inner .content__text .gap__text {
  width: 353rem;
  display: flex;
  position: absolute;
  left: 215rem;
  top: -90rem;
  z-index: -1;
}
.message__wrapper .message__content .content__inner .content__text .en__lbl {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 52rem;
  text-align: left;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
}
.message__wrapper .message__content .content__inner .content__text .ja__lbl {
  font-weight: bold;
  font-size: 50rem;
  letter-spacing: 0.05em;
  line-height: 73rem;
  margin-top: 14rem;
  text-align: left;
  color: #73645a;
}
.message__wrapper .message__content .content__inner .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 37rem;
  margin-top: 45rem;
  text-align: left;
  color: #73645a;
}
.message__wrapper .brandlogo__content {
  width: 100%;
  padding-top: 240rem;
  padding-bottom: 90rem;
  position: relative;
}
.message__wrapper .brandlogo__content .gap01 {
  width: 208rem;
  display: flex;
  position: absolute;
  left: 44rem;
  top: 65rem;
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
}
.message__wrapper .brandlogo__content .gap01.is-animated {
  opacity: 0.5;
}
.message__wrapper .brandlogo__content .gap02 {
  width: 140rem;
  display: flex;
  position: absolute;
  left: 288rem;
  top: 85rem;
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
  animation-delay: 1s;
}
.message__wrapper .brandlogo__content .gap02.is-animated {
  opacity: 0.5;
}
.message__wrapper .brandlogo__content .gap03 {
  width: 88rem;
  display: flex;
  position: absolute;
  left: 185rem;
  top: 25rem;
  opacity: 0.5;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
  animation-delay: 2s;
}
.message__wrapper .brandlogo__content .gap03.is-animated {
  opacity: 0.5;
}
.message__wrapper .brandlogo__content .content__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.message__wrapper .brandlogo__content .content__inner.is-animated .logo__image {
  opacity: 1;
}
.message__wrapper .brandlogo__content .content__inner.is-animated .content__text {
  opacity: 1;
}
.message__wrapper .brandlogo__content .content__inner .logo__image {
  width: 403rem;
  margin-right: 103rem;
  display: flex;
  transition: 1s;
  opacity: 0;
}
.message__wrapper .brandlogo__content .content__inner .content__text {
  position: relative;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
.message__wrapper .brandlogo__content .content__inner .content__text .en__lbl {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 52rem;
  text-align: left;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
}
.message__wrapper .brandlogo__content .content__inner .content__text .ja__lbl {
  font-weight: bold;
  font-size: 50rem;
  letter-spacing: 0.05em;
  line-height: 73rem;
  margin-top: 14rem;
  text-align: left;
  color: #73645a;
}
.message__wrapper .brandlogo__content .content__inner .content__text .c__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.1em;
  line-height: 37rem;
  margin-top: 45rem;
  text-align: left;
  color: #73645a;
}
.message__wrapper .logo__content {
  padding: 80rem 0;
  background: #fff;
}
.message__wrapper .logo__content .logo {
  width: 590rem;
  margin: auto;
  display: flex;
}
.message__wrapper .products__content {
  padding: 178rem 0 170rem;
  position: relative;
}
.message__wrapper .products__content .gap01 {
  width: 208rem;
  display: flex;
  position: absolute;
  right: -60rem;
  top: 30rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
}
.message__wrapper .products__content .gap01.is-animated {
  opacity: 0.5;
}
.message__wrapper .products__content .gap02 {
  width: 140rem;
  display: flex;
  position: absolute;
  right: 90rem;
  top: 160rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
  animation-delay: 1s;
}
.message__wrapper .products__content .gap02.is-animated {
  opacity: 0.5;
}
.message__wrapper .products__content .gap03 {
  width: 88rem;
  display: flex;
  position: absolute;
  right: 30rem;
  top: 300rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 1s;
  animation-delay: 1s;
}
.message__wrapper .products__content .gap03.is-animated {
  opacity: 0.5;
}
.message__wrapper .products__content .content__inner {
  max-width: 1200rem;
  width: 95%;
  margin: auto;
  padding: 0 100rem;
}
.message__wrapper .products__content .content__inner .en__lbl {
  font-family: Brown-Regular;
  font-weight: normal;
  font-size: 20rem;
  letter-spacing: 0.15em;
  line-height: 52rem;
  text-align: left;
  color: #f08c5f;
  -webkit-text-stroke: 0.3rem #f08c5f;
}
.message__wrapper .products__content .content__inner .ja__lbl {
  font-weight: bold;
  font-size: 50rem;
  letter-spacing: 0.05em;
  line-height: 73rem;
  margin-top: 14rem;
  text-align: left;
  color: #73645a;
}
.message__wrapper .products__content .content__inner .quality__chart {
  width: 990rem;
  height: 990rem;
  margin: auto;
  margin-top: 70rem;
  position: relative;
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .center__text {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .circle01 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .circle02 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .circle03 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .circle04 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .pr01 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .pr02 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .pr03 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .pr04 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .jong__items .item.c01 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .jong__items .item.c02 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .jong__items .item.c03 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart.is-animated .jong__items .item.c04 {
  opacity: 1;
}
.message__wrapper .products__content .content__inner .quality__chart .center__text {
  font-weight: bold;
  font-size: 50rem;
  letter-spacing: 0.05em;
  line-height: 73rem;
  text-align: center;
  color: #f08c5f;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;
  transition-delay: 2s;
}
.message__wrapper .products__content .content__inner .quality__chart .pr01 {
  width: 240rem;
  display: flex;
  position: absolute;
  left: 0;
  top: -20rem;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 2.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .pr02 {
  width: 240rem;
  display: flex;
  position: absolute;
  right: 0;
  top: -20rem;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 2.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .pr03 {
  width: 240rem;
  display: flex;
  position: absolute;
  right: 0;
  bottom: -40rem;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 2.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .pr04 {
  width: 240rem;
  display: flex;
  position: absolute;
  left: 0;
  bottom: -40rem;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 2.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .circle01 {
  width: 290rem;
  display: flex;
  position: absolute;
  top: 220rem;
  right: 170rem;
  opacity: 0;
  transition: 0.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .circle02 {
  width: 290rem;
  display: flex;
  position: absolute;
  bottom: 147rem;
  right: 170rem;
  transform: rotate(85deg);
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .circle03 {
  width: 290rem;
  display: flex;
  position: absolute;
  bottom: 160rem;
  left: 150rem;
  transform: rotate(180deg);
  opacity: 0;
  transition: 0.5s;
  transition-delay: 1s;
}
.message__wrapper .products__content .content__inner .quality__chart .circle04 {
  width: 290rem;
  display: flex;
  position: absolute;
  top: 200rem;
  left: 160rem;
  transform: rotate(-90deg);
  opacity: 0;
  transition: 0.5s;
  transition-delay: 1.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .jong__items {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.message__wrapper .products__content .content__inner .quality__chart .jong__items.long {
  width: 100%;
  flex-direction: row;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.message__wrapper .products__content .content__inner .quality__chart .jong__items.long .item {
  margin: 0;
  margin-right: 0;
  opacity: 0;
  transition: 0.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .jong__items.long .item.c02 {
  transition-delay: 0.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .jong__items.long .item.c04 {
  transition-delay: 1.5s;
}
.message__wrapper .products__content .content__inner .quality__chart .jong__items.long .item:last-child {
  margin-right: 0;
}
.message__wrapper .products__content .content__inner .quality__chart .jong__items .item {
  width: 320rem;
  display: flex;
  position: relative;
  transition: 0.5s;
  opacity: 0;
}
.message__wrapper .products__content .content__inner .quality__chart .jong__items .item.c03 {
  transition-delay: 1s;
}

.w__container {
  padding: 250rem 0 200rem;
  text-align: center;
}

@media screen and (max-width: 1075px) {
  .frontview .front__woman {
    top: 19.2vw;
  }
  .frontview .f__slider01 {
    width: 11vw;
    bottom: 55vw;
    left: 42vw;
  }
  .frontview .f__slider02 {
    width: 21vw;
    bottom: 48vw;
    left: 18vw;
  }
  .frontview .f__slider03 {
    width: 15vw;
    bottom: 33vw;
    left: 9vw;
  }
  .frontview .front__logo {
    width: 35vw;
    bottom: 16vw;
    right: 15vw;
  }
  .frontview .f__mark {
    width: 16vw;
    bottom: 50vw;
    right: 6vw;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.8px;
  }
  .section-message .gap01 {
    right: 0;
  }
  .section-product {
    padding: 0 20rem;
  }
  .section-company .content__inner {
    padding: 0 50rem 0 20rem;
  }
}
@media screen and (max-width: 1000px) {
  .section-company .content__inner .c__woman {
    width: 335rem;
    left: 8vw;
  }
  .section-product .p__item .p__gap {
    width: 50vw;
    top: auto;
    bottom: 0;
  }
  .section-product .p__item .p__gap.c01 {
    width: 50vw;
    top: auto;
    bottom: 0;
    left: 50rem;
  }
  header {
    padding: 0 25rem;
  }
  header ul li {
    margin-left: 15rem;
  }
  .frontview {
    margin-top: -20vw;
  }
  .product__detail .main__image {
    width: 40vw;
    right: auto;
    left: 500rem;
    top: auto;
    bottom: -75rem;
  }
  .product__detail .main__image.oilcloth {
    width: 37vw;
    right: 0;
    left: 510rem;
    top: auto;
    bottom: -65rem;
  }
  .product__detail .oil__pup {
    width: 26vw;
    right: 5vw;
    top: -11vw;
  }
  .point__content .gap02 {
    right: 0;
  }
  .point__content .gap01 {
    right: 0;
  }
  .message__wrapper .products__content .content__inner .quality__chart {
    transform: scale(0.8);
    transform-origin: left;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.2666666vw;
  }
  .frontview {
    overflow: visible;
    margin-top: -20vw;
  }
  .sp-woman {
    width: 100%;
    display: flex;
    margin-top: 178rem;
  }
  header {
    width: 100%;
    height: auto;
    padding: 10rem 20rem;
  }
  header .logo {
    width: 113rem;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .frontview .front__logo {
    width: 155rem;
    bottom: 104rem;
    right: 54rem;
  }
  .frontview .voice__link {
    width: 95rem;
    right: 42rem;
    bottom: -12rem;
  }
  .frontview .f__mark {
    width: 77rem;
    bottom: 254rem;
    right: 32rem;
  }
  .frontview .f__slider01 {
    width: 65rem;
    position: absolute;
    bottom: 350rem;
    left: auto;
    right: 27rem;
  }
  .frontview .f__slider02 {
    width: 124rem;
    bottom: 330rem;
    left: 145rem;
  }
  .frontview .f__slider03 {
    width: 91rem;
    position: absolute;
    bottom: 325rem;
    left: 34rem;
  }
  .opening__wrapper .first__page .p__logo {
    width: 165rem;
  }
  .opening__wrapper .first__page .bg {
    width: 900rem;
  }
  .opening__wrapper .first__page p {
    width: 210rem;
  }
  .opening__wrapper .first__page .bg.redu {
    width: 260rem;
  }
  .opening__wrapper .first__page .skip__btn {
    font-size: 12.01rem;
    right: 30rem;
    bottom: 30rem;
  }
  .section-front__news {
    width: 295rem;
    height: 80rem;
    padding: 0 40rem;
    margin: auto;
    margin-top: 30rem;
    border-radius: 45rem;
  }
  .section-front__news a {
    width: 100%;
    padding-bottom: 0;
    display: block;
    border-bottom: 0;
  }
  .section-front__news a .date {
    font-size: 16rem;
    margin-right: 0;
    letter-spacing: 0.05em;
    padding-bottom: 10rem;
    line-height: 1;
    display: block;
    text-align: center;
    border-bottom: 1rem solid #f08c5f;
  }
  .section-front__news a .title {
    font-size: 14rem;
    letter-spacing: 0.1em;
    line-height: 18rem;
    margin-top: 6rem;
    display: block;
    text-align: center;
  }
  .section-message {
    margin-top: 0;
    padding: 0 15rem;
    padding-top: 170rem;
    justify-content: flex-start;
    align-items: baseline;
    flex-direction: column-reverse;
    overflow: hidden;
  }
  .section-message .message__content .gap__text {
    width: 205rem;
    right: -115rem;
    top: -31rem;
  }
  .section-message .message__content .t__title {
    font-size: 24rem;
    line-height: 42rem;
    margin-top: 4rem;
  }
  .section-message .message__content .c__txt {
    font-size: 15rem;
    letter-spacing: 0.1em;
    line-height: 32rem;
    margin-top: 40rem;
    margin-bottom: 25rem;
  }
  .section-message .main__images .m__slider01 {
    width: 123rem;
    margin-left: 190rem;
  }
  .section-message .main__images .m__slider02 {
    width: 163rem;
    margin-top: -5rem;
    margin-left: 44rem;
  }
  .section-message .main__images .m__gap01 {
    width: 112rem;
    left: -50rem;
    top: -544rem;
    opacity: 0.5;
  }
  .section-message .main__images .m__gap02 {
    width: 62rem;
    left: 50rem;
    top: -460rem;
  }
  .section-message .gap01 {
    width: 102rem;
    bottom: 44rem;
    right: -10rem;
  }
  .pageTop {
    width: 40rem;
    right: 12rem;
    bottom: 12rem;
  }
  .section-video {
    width: 335rem;
    height: 188rem;
    margin: auto;
    margin-top: 100rem;
  }
  .section-video .play__btn {
    width: 46rem;
  }
  .section-product {
    width: 100%;
    margin: auto;
    margin-top: 90rem;
    padding: 0 14rem;
    overflow: hidden;
  }
  .section-product .p__item {
    padding: 0;
    position: relative;
    margin-top: 35rem;
  }
  .section-product .p__item .content__item .c__image {
    width: 207rem;
  }
  .section-product .p__item .content__item {
    align-items: baseline;
  }
  .section-product .p__item .p__gap {
    width: 237rem;
    right: -46rem;
    top: 60rem;
    bottom: auto;
  }
  .section-product .p__item .content__item .content__text {
    margin-top: 85rem;
    padding-left: 10rem;
  }
  .section-product .p__item .content__item .content__text .c__lbl {
    width: 161rem;
  }
  .section-product .p__item .content__item .content__text .c__text {
    font-size: 11rem;
    letter-spacing: 0.18em;
    line-height: 19rem;
    margin-top: 15rem;
  }
  .section-product .p__item .content__item .content__text .c__text span {
    font-size: 9rem;
  }
  .section-product .p__item .content__item .content__text ul {
    margin-top: 16rem;
    margin-bottom: 30rem;
  }
  .section-product .p__item .content__item .content__text ul li .c__image {
    width: 22rem;
    height: 22rem;
  }
  .section-product .p__item .content__item .content__text ul li {
    margin-right: 16rem;
  }
  .section-product .p__item .content__item .content__text ul li .c__lbl {
    font-size: 7rem;
    letter-spacing: 0.1em;
    line-height: 8rem;
    bottom: -23rem;
  }
  .section-product .p__item.reserve .content__item .c__image {
    margin: 0 0 0 auto;
  }
  .section-product .p__item.reserve {
    margin-top: 10rem;
  }
  .section-product .p__item .content__item .content__text .c__lbl.c01 {
    width: 190rem;
  }
  .section-product .p__item .p__gap.c01 {
    width: 243rem;
    top: 111rem;
    bottom: auto;
    left: -10rem;
  }
  .section-product .p__item.reserve .content__item .content__text {
    margin-top: 170rem;
  }
  .section-product .p__item.reserve .gap01 {
    width: 95rem;
    bottom: 138rem;
    left: 10rem;
  }
  .section-product .p__item.reserve .gap02 {
    width: 63rem;
    bottom: 100rem;
    left: 54rem;
  }
  .section-product .p__item.reserve .gap03 {
    width: 31rem;
    bottom: 84rem;
    left: 2rem;
  }
  .section-product .p__item.reserve .gap04 {
    width: 31rem;
    bottom: 56rem;
    left: 68rem;
  }
  .section-product .p__item .content__item .content__text ul li .c__lbl.c01 {
    bottom: -31rem;
  }
  .section-product .p__item .content__item .content__text ul li .c__lbl.c02 {
    bottom: -16rem;
  }
  .section-pdf {
    margin-top: 70rem;
    padding: 30rem 0 65rem;
    display: block;
    position: relative;
  }
  .section-pdf .content__text .c__lbl {
    font-size: 16rem;
    line-height: 24rem;
  }
  .section-pdf .content__text .download__btn {
    width: 197rem;
    height: 50rem;
    margin-left: 40rem;
  }
  .section-pdf .content__text .download__btn span {
    font-size: 16rem;
  }
  .section-pdf .pdf__image {
    width: 77rem;
    margin-left: 0;
    position: absolute;
    top: 69rem;
    right: 40rem;
  }
  .section-company {
    padding: 91rem 0 150rem;
  }
  .section-company .content__inner {
    padding: 0 20rem 0 20rem;
    width: 100%;
    display: block;
  }
  .section-company .content__inner .content__text {
    margin-top: 38rem;
  }
  .section-company .content__inner .content__text .c__logo {
    width: 238rem;
    margin: auto;
  }
  .section-company .content__inner .content__text .c__txt {
    margin-top: 22rem;
    text-align: center;
  }
  .section-company .content__inner .content__text .txt {
    width: 340rem;
    line-height: 32rem;
    margin-top: 30rem;
  }
  .section-company .content__inner .c__woman {
    width: 149rem;
    bottom: -150rem;
    left: 171rem;
  }
  .section-news {
    padding: 90rem 0;
  }
  .section-news .content__inner .content__items {
    width: 335rem;
  }
  .section-news .content__inner .content__items .c__items {
    margin-top: 44rem;
  }
  .section-news .content__inner {
    width: 335rem;
  }
  .section-news .content__inner .content__items .c__items a {
    display: block;
    align-items: baseline;
    padding: 15rem 0;
  }
  .section-news .content__inner .content__items .c__items a .date {
    width: 100%;
    margin-bottom: 20rem;
  }
  .section-news .content__inner .content__items .c__items a .c__text {
    width: 100%;
  }
  .section-news .content__inner .content__items .c__items a .c__text .c__txt {
    font-size: 10rem;
    letter-spacing: 0.06em;
    line-height: 19rem;
  }
  .section-news .content__inner .gap01 {
    width: 104rem;
    top: -49rem;
    right: 4rem;
  }
  .section-news .content__inner .gap02 {
    width: 70rem;
    top: 30rem;
    right: 0;
  }
  .section-news .content__inner .content__items .list__btn {
    font-size: 14rem;
    margin-right: 20rem;
  }
  .section-news .content__inner .gap03 {
    width: 35rem;
    top: 80rem;
    right: 87rem;
  }
  .section-news .content__inner .gap04 {
    width: 35rem;
    top: 108rem;
    right: 26rem;
  }
  footer {
    padding: 40rem 0;
  }
  footer .content__inner .footer__menu .f__logo {
    width: 113rem;
    margin: auto;
  }
  footer .content__inner .bottom__menu .copyright {
    width: 100%;
    font-size: 8rem;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
  }
  footer .content__inner .bottom__menu {
    margin-top: 38rem;
  }
  body {
    background-image: url(../img/bg_sp.webp);
    background-size: cover;
  }
  .sp-menu {
    width: 30rem;
    height: 21rem;
    position: relative;
  }
  .sp-menu.open span:nth-child(1) {
    top: 10rem;
    transform: rotate(45deg);
  }
  .sp-menu.open span:nth-child(2) {
    width: 0;
  }
  .sp-menu.open span:nth-child(3) {
    top: 10rem;
    transform: rotate(-45deg);
  }
  .sp-menu span {
    width: 100%;
    height: 0;
    border-top: 1rem solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s;
  }
  .sp-menu span + span {
    top: 10rem;
  }
  .sp-menu span + span + span {
    top: 20rem;
  }
  header ul {
    width: 100%;
    height: 100%;
    padding: 0 20rem;
    padding-top: 80rem;
    background: #f08c5f;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    overflow: auto;
  }
  header ul li {
    padding: 25rem 0;
    text-align: center;
    margin: 0;
    border-bottom: 1rem solid rgba(255, 255, 255, 0.5);
  }
  header ul li.sp {
    justify-content: center;
  }
  header ul li:last-child {
    border-bottom: 0;
  }
  header ul li.instagram {
    border-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header ul li.instagram .insta__icon {
    margin: 0 15rem;
  }
  header ul li.instagram .insta__icon.youtube {
    width: 22rem;
  }
  header ul li a {
    font-size: 17rem;
    display: block;
    text-align: center;
  }
  header ul li .insta__icon {
    margin: auto;
  }
  .sp-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25rem;
  }
  .sp-btns a, .sp-btns span {
    font-family: "Zen Kaku Gothic Antique", sans-serif !important;
    display: inline-flex;
    font-weight: 500;
    font-size: 12rem;
    margin: 0 20rem;
    letter-spacing: 0.1em;
    line-height: 37rem;
    text-align: left;
    color: #fff;
    -webkit-text-stroke: unset;
  }
  header.fixed {
    height: auto;
    padding: 10rem 20rem;
  }
  .frontview .front__woman {
    top: 19.2vw;
  }
  header ul li.parent ul.child {
    display: none;
    width: 100%;
    height: auto;
    padding: 0rem 100rem 0;
    margin-top: 3rem;
    background: transparent;
    position: relative;
    left: 50%;
    top: 0;
    transform: translate(-50%);
    z-index: 0;
    opacity: 1;
    visibility: visible;
    transition: unset;
  }
  header ul li.parent ul.child li {
    padding-top: 10rem;
    padding: 5rem 0;
    border: 0;
  }
  header ul li.parent ul.child li {
    margin: 4rem 0;
  }
  header ul li.parent ul.child li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  header ul li.parent > a {
    position: relative;
  }
  header ul li.parent > a.open:after {
    opacity: 0;
  }
  header ul li.parent > a:before {
    content: "";
    width: 17rem;
    height: 0;
    border-top: 1rem solid #fff;
    position: absolute;
    right: 20rem;
    top: 50%;
    transform: translateY(-50%);
  }
  header ul li.parent > a:after {
    content: "";
    height: 17rem;
    width: 0;
    border-left: 1rem solid #fff;
    position: absolute;
    right: 28rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .breadcrumb {
    margin-top: 0;
    padding-left: 25rem;
    top: 69rem;
  }
  .product__detail {
    margin-top: 130rem;
    padding: 0 23rem;
  }
  .product__detail .detail__content h2 {
    width: 181rem;
  }
  .product__detail .detail__content h2.brush {
    width: 146rem;
  }
  .product__detail .detail__content .t__title {
    font-size: 24rem;
    line-height: 35rem;
    margin-top: 8rem;
  }
  .product__detail .oil__pup {
    width: 153rem;
    position: relative;
    margin: 0 0 0 auto;
    right: auto;
    top: auto;
  }
  .product__detail .main__image {
    width: 242rem;
    right: auto;
    top: 125rem;
    left: auto;
    bottom: auto;
  }
  .product__detail .main__image.oilcloth {
    width: 242rem;
    right: auto;
    top: 115rem;
    left: 43rem;
    bottom: auto;
  }
  .product__items .p__item {
    width: 44rem;
    margin: 0 6rem;
  }
  .product__items {
    margin-top: 270rem;
  }
  .product__items .p__item p {
    font-size: 9rem;
    letter-spacing: -0.06em;
    line-height: 10rem;
    margin-top: 5rem;
  }
  .product__detail .detail__content .c__txt {
    font-weight: normal;
    font-size: 15rem;
    letter-spacing: 0.05em;
    line-height: 32rem;
    margin-top: 0rem;
  }
  .video__frame .content__inner {
    width: 326rem;
    margin: auto;
    margin-top: 40rem;
  }
  .gap__image {
    width: 210rem;
    margin: auto;
    margin-top: 18rem;
  }
  .video__frame .gap01 {
    width: 67rem;
    bottom: -80rem;
    left: -6rem;
  }
  .video__frame .gap02 {
    width: 100rem;
    position: absolute;
    bottom: -151rem;
    left: 6rem;
  }
  .point__content {
    width: 100%;
    margin: auto;
    margin-bottom: 65rem;
    padding: 26rem;
    margin-top: 70rem;
  }
  .point__content .en__txt {
    font-size: 14rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }
  .point__content .ja__txt {
    font-size: 20rem;
    line-height: 1.8;
  }
  .point__content .point__text {
    width: 118rem;
    top: 85rem;
    right: 12rem;
  }
  .point__content .point__items {
    margin-bottom: 50rem;
    margin-top: 55rem;
    display: block;
  }
  .point__content .point__items .p__item:first-child {
    margin-right: 0;
  }
  .point__content .point__items.brush .p__item:first-child {
    margin: auto;
  }
  .point__content .point__items.brush .p__item:nth-child(2) {
    margin: auto;
    margin-top: 30rem;
  }
  .point__content .point__items.brush .p__item:nth-child(3) {
    margin: auto;
    margin-top: 30rem;
  }
  .point__content .point__items .p__item {
    width: 187rem;
  }
  .point__content .point__items .p__item:nth-child(2) {
    position: relative;
    top: auto;
    left: auto;
    margin: -20rem 0 0 auto;
  }
  .point__content .point__items .p__item:nth-child(4) {
    position: relative;
    top: auto;
    right: auto;
    margin: -53rem 0 0 auto;
  }
  .point__content .apuri__content {
    width: 100%;
    margin: auto;
    height: auto;
    padding: 16rem 0 30rem;
  }
  .point__content .apuri__content .t__icon {
    width: 61rem;
  }
  .point__content .apuri__content h2 {
    font-size: 20rem;
    letter-spacing: 0.15em;
    line-height: 24rem;
  }
  .point__content .apuri__content h2 span {
    font-size: 14rem;
  }
  .point__content .apuri__content h2 .n__txt {
    font-size: 10rem;
    letter-spacing: 0;
    line-height: 32rem;
    text-align: left;
    color: #73645a;
    position: absolute;
    bottom: -4rem;
    right: -27rem;
  }
  .point__content .apuri__content .c__txt {
    font-size: 15rem;
    letter-spacing: 0.02em;
    line-height: 30rem;
    margin-top: 22rem;
  }
  .point__content .apuri__content .f__images {
    width: 240rem;
    margin: auto;
    margin-top: 38rem;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .point__content .apuri__content.brush .f__images {
    width: auto;
    flex-direction: row;
    margin-right: auto;
    margin-left: auto;
  }
  .point__content .apuri__content.brush .f__images .c__arrow {
    margin: auto;
    transform: unset;
  }
  .point__content .apuri__content.brush .f__images .f__image {
    display: block;
  }
  .point__content .apuri__content.brush .f__images .f__image .c__image {
    margin: auto;
  }
  .point__content .apuri__content.brush .f__images .f__image .c__lbl {
    margin-left: auto;
    margin-right: auto;
  }
  .point__content .apuri__content .f__images .f__image {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .point__content .apuri__content .f__images .f__image .c__lbl {
    width: 114rem;
    font-weight: bold;
    font-size: 12rem;
    letter-spacing: 0.03em;
    line-height: 17rem;
    margin-top: 0;
  }
  .point__content .apuri__content .f__images .f__image .c__image {
    width: 114rem;
  }
  .point__content .apuri__content .f__images .c__arrow {
    width: 26rem;
    margin: 16rem auto;
    transform: rotate(90deg);
  }
  .point__content .point__detail {
    width: 320rem;
    margin: auto;
    margin-top: 35rem;
  }
  .point__content .point__detail .p__use .t__txt {
    font-size: 12rem;
    letter-spacing: 0.22em;
    line-height: 1.3;
  }
  .point__content .point__detail .p__use .use__items .u__item .u__image {
    width: 48rem;
  }
  .point__content .point__detail .p__use .use__items .u__item .u__lbl {
    font-weight: normal;
    font-size: 12rem;
  }
  .point__content .point__detail .p__use .use__items .u__item:nth-child(2) .u__image {
    width: 53rem;
  }
  .point__content .point__detail .p__use .use__items .u__item:nth-child(3) .u__image {
    width: 49rem;
  }
  .point__content .point__detail .quality__content .t__txt {
    font-size: 12rem;
    letter-spacing: 0.22em;
    line-height: 1.3;
  }
  .point__content .point__detail .use__method .t__txt {
    font-size: 12rem;
    letter-spacing: 0.22em;
    line-height: 1.3;
  }
  .point__content .point__detail .use__method .c__txt {
    font-size: 12rem;
    letter-spacing: 0.08em;
    line-height: 19rem;
  }
  .point__content .point__detail .quality__content table tr td {
    font-size: 12rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
  }
  .point__content .gap01 {
    width: 67rem;
    bottom: -18rem;
    right: 58rem;
  }
  .point__content .gap02 {
    width: 42rem;
    bottom: -55rem;
    right: 23rem;
    opacity: 0.5;
  }
  header.sub {
    height: auto;
  }
  .product__items {
    margin-top: 160rem;
  }
  .product__items.brush .p__item .c__image {
    width: 29rem;
    height: 29rem;
    margin: auto;
    margin-bottom: 6rem;
    border-radius: 50%;
    background: #F08C5F;
  }
  .product__items.brush .p__item:nth-child(2) .c__image {
    background: #73645A;
  }
  .product__items.brush .p__item:nth-child(3) .c__image {
    background: #B2DC64;
  }
  .product__items.brush .p__item:nth-child(4) .c__image {
    background: #FFE33F;
  }
  .message__wrapper {
    padding-top: 71rem;
  }
  .company__frontview .company__mark {
    width: 153rem;
    top: 18vw;
  }
  .message__wrapper .message__content .content__inner {
    width: 320rem;
    margin: auto;
    padding: 0;
  }
  .message__wrapper .message__content .content__inner .content__text .en__lbl {
    font-size: 13.3rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }
  .message__wrapper .message__content .content__inner .content__text .ja__lbl {
    font-size: 20rem;
    letter-spacing: 0.05em;
    line-height: 30rem;
    margin-top: 16rem;
  }
  .message__wrapper .message__content .content__inner .content__text .c__txt {
    font-weight: normal;
    font-size: 15rem;
    letter-spacing: 0.1em;
    line-height: 32rem;
    margin-top: 36rem;
  }
  .message__wrapper .message__content .content__inner .m__image01 {
    width: 210rem;
    position: relative;
    top: auto;
    right: auto;
    margin-left: 90rem;
    margin-top: 35rem;
  }
  .message__wrapper .message__content .content__inner .m__image02 {
    width: 87rem;
    position: relative;
    top: auto;
    right: auto;
    margin-left: 230rem;
    margin-top: -70rem;
  }
  .message__wrapper .message__content .content__inner .content__text .gap__text {
    width: 171rem;
    position: absolute;
    left: 175rem;
    top: -59rem;
  }
  .message__wrapper .message__content .gap01 {
    width: 100rem;
    position: absolute;
    right: -30rem;
    top: auto;
    bottom: 195rem;
  }
  .message__wrapper .message__content .gap02 {
    width: 66rem;
    opacity: 0.5;
    position: absolute;
    right: 34rem;
    top: auto;
    bottom: 254rem;
  }
  .message__wrapper .brandlogo__content .content__inner {
    width: 320rem;
    margin: auto;
    flex-direction: column-reverse;
  }
  .message__wrapper .brandlogo__content {
    width: 100%;
    padding-top: 100rem;
    padding-bottom: 90rem;
  }
  .message__wrapper .brandlogo__content .content__inner .content__text .en__lbl {
    font-size: 13rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }
  .message__wrapper .brandlogo__content .content__inner .content__text .ja__lbl {
    font-size: 20rem;
    line-height: 1.5;
  }
  .message__wrapper .brandlogo__content .content__inner .content__text .c__txt {
    font-size: 15rem;
    letter-spacing: 0.1em;
    line-height: 32rem;
    margin-top: 35rem;
  }
  .message__wrapper .brandlogo__content .content__inner .logo__image {
    width: 194rem;
    margin: auto;
    margin-top: 35rem;
  }
  .message__wrapper .brandlogo__content .gap01 {
    width: 120rem;
    left: -14rem;
    top: -65rem;
  }
  .message__wrapper .brandlogo__content .gap02 {
    width: 66rem;
    position: absolute;
    left: 68rem;
    top: 0;
  }
  .message__wrapper .brandlogo__content .gap03 {
    display: none;
  }
  .message__wrapper .logo__content .logo {
    width: 300rem;
  }
  .message__wrapper .logo__content {
    padding: 35rem 0;
  }
  .message__wrapper .products__content {
    padding: 70rem 0;
  }
  .message__wrapper .products__content .content__inner {
    width: 320rem;
    margin: auto;
    padding: 0;
  }
  .message__wrapper .products__content .content__inner .en__lbl {
    font-size: 13rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }
  .message__wrapper .products__content .content__inner .ja__lbl {
    font-size: 20rem;
    line-height: 30rem;
    margin-top: 14rem;
  }
  .message__wrapper .products__content .content__inner .quality__chart {
    width: 340rem;
    height: 340rem;
    margin: auto;
    margin-left: -10rem;
    margin-top: 55rem;
    transform: scale(1);
  }
  .message__wrapper .products__content .content__inner .quality__chart .jong__items .item {
    width: 115rem;
  }
  .message__wrapper .products__content .content__inner .quality__chart .pr01 {
    width: 86rem;
    left: 0;
    top: 0;
  }
  .message__wrapper .products__content .content__inner .quality__chart .pr02 {
    width: 86rem;
    right: 0;
    top: 0;
  }
  .message__wrapper .products__content .content__inner .quality__chart .pr03 {
    width: 86rem;
    right: 0;
    bottom: 0;
  }
  .message__wrapper .products__content .content__inner .quality__chart .pr04 {
    width: 86rem;
    left: 0;
    bottom: 0;
  }
  .message__wrapper .products__content .content__inner .quality__chart .center__text {
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  .message__wrapper .products__content .content__inner .quality__chart .circle01 {
    width: 130rem;
    top: 50rem;
    right: 55rem;
  }
  .message__wrapper .products__content .content__inner .quality__chart .circle02 {
    width: 130rem;
    bottom: 47rem;
    right: 55rem;
  }
  .message__wrapper .products__content .content__inner .quality__chart .circle03 {
    width: 130rem;
    bottom: 45rem;
    left: 50rem;
  }
  .message__wrapper .products__content .content__inner .quality__chart .circle04 {
    width: 130rem;
    top: 50rem;
    left: 55rem;
  }
  .message__wrapper .products__content .gap01 {
    width: 66rem;
    right: 36rem;
    top: 20rem;
  }
  .company__wrapper {
    padding-top: 71rem;
  }
  .company__content {
    padding-top: 55rem;
    padding-bottom: 120rem;
  }
  .company__content .content__inner {
    width: 320rem;
    margin: auto;
    padding: 0;
  }
  .company__content .content__inner .en__txt {
    width: 280rem;
    margin-top: 25rem;
  }
  .company__content .content__inner .ja__txt {
    font-size: 20rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
  .company__content .content__inner .t__lbl {
    font-size: 15rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-top: 36rem;
  }
  .company__content .content__inner .c__txt {
    font-size: 15rem;
    letter-spacing: 0.05em;
    line-height: 32rem;
    margin-top: 38rem;
  }
  .company__content .gap02 {
    width: 100rem;
    right: -36rem;
    top: 71rem;
  }
  .company__content .gap01 {
    width: 66rem;
    right: 26rem;
    top: 40rem;
  }
  .company__content .gap03 {
    width: 100rem;
    left: -26rem;
    bottom: 5rem;
  }
  .company__content .gap04 {
    width: 66rem;
    left: 50rem;
    bottom: 50rem;
  }
  .company__info .logo__info {
    width: 320rem;
    margin: auto;
    flex-direction: column-reverse;
  }
  .company__info .logo__info .content__text {
    width: 100%;
  }
  .company__info .logo__info .content__text .e__txt {
    font-size: 13rem;
    line-height: 1;
  }
  .company__info .logo__info .content__text .ja__txt {
    font-size: 20rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 20rem;
  }
  .company__info .logo__info .content__text .c__txt {
    font-size: 15rem;
    letter-spacing: 0.08em;
    line-height: 32rem;
  }
  .company__info .logo__info .c__logo {
    width: 260rem;
    margin: auto;
    margin-top: 20rem;
  }
  .company__info .table__info {
    width: 320rem;
    margin: auto;
    margin-top: 100rem;
  }
  .company__info .table__info .c__lbl {
    font-size: 12rem;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .company__info .table__info table tr td {
    font-size: 12rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
    padding: 10rem 0;
  }
  .company__info .table__info table tr td:first-child {
    width: 90rem;
  }
  .company__info .gap01 {
    width: 100rem;
    right: -20rem;
    top: 540rem;
  }
  .company__info .gap02 {
    width: 66rem;
    right: 56rem;
    top: 606rem;
  }
  .company__info .gap03 {
    width: 42rem;
    right: 20rem;
    top: 670rem;
  }
  .company__info .table__info .map {
    width: 288rem;
    height: 158rem;
    margin: auto;
    margin-top: 20rem;
  }
  .company__info .table__info .main__com {
    font-size: 12rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin-top: 55rem;
  }
  .company__info .table__info .address__txt {
    font-size: 12rem;
    letter-spacing: 0.1em;
    line-height: 18rem;
    display: inline-block;
    vertical-align: text-top;
    margin-top: 6rem;
    margin-left: 40rem;
  }
  .company__info .gap04 {
    width: 120rem;
    left: 60rem;
  }
  .company__info .gap05 {
    width: 66rem;
    left: 30rem;
    bottom: 130rem;
  }
  .product__items .p__item .c__image {
    width: 29rem;
    margin: auto;
  }
  .sub__title .en__txt {
    font-size: 20rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: left;
    margin-left: 20rem;
  }
  .sub__title .ja__txt {
    display: none;
  }
  .news__wrapper {
    width: 340rem;
    margin: auto;
    margin-top: 35rem;
  }
  .news__wrapper .note__txt {
    font-size: 15rem;
    letter-spacing: 0.1em;
    line-height: 32rem;
    text-align: left;
  }
  .news__wrapper .cat__items {
    justify-content: space-between;
  }
  .news__wrapper .cat__items .cat {
    width: 97rem;
    margin: 0;
  }
  .news__wrapper .news__content {
    width: 100%;
    margin: auto;
    margin-top: 45rem;
    display: block;
  }
  .news__wrapper .news__content .news__items .n__item .n__info {
    position: relative;
    display: block;
  }
  .news__wrapper .news__content .news__items .n__item .n__info .title {
    letter-spacing: 0;
  }
  .news__wrapper .news__content .news__items .n__item .n__info .title span {
    display: inline-block;
    margin-bottom: 10rem;
  }
  .news__wrapper .news__content .news__items {
    width: 100%;
  }
  .news__wrapper .news__content .news__items .n__item .n__info .date {
    position: absolute;
    bottom: -25rem;
    right: 0;
  }
  .news__wrapper .news__content .news__items .n__item .content__text p {
    font-size: 15rem;
    letter-spacing: 0.02em;
    line-height: 32rem;
  }
  .news__wrapper .news__content .news__items .n__item:last-child {
    margin-bottom: 0;
  }
  .news__wrapper .news__content .year__side {
    width: 100%;
    margin: 25rem 0 40rem;
  }
  .news__wrapper .news__content .year__side ul {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .news__wrapper .news__content .year__side ul li {
    width: 48%;
    border-top: 0;
    border-bottom: 1rem solid #73645a;
  }
  .news__wrapper .news__content .year__side .c__lbl {
    padding-bottom: 4rem;
    padding-left: 3rem;
    border-bottom: 1rem solid #73645a;
  }
  .privacy__wrapper {
    width: 335rem;
    margin: auto;
    margin-top: 35rem;
    margin-bottom: 40rem;
  }
  .privacy__wrapper .content__text p {
    font-size: 15rem;
    letter-spacing: 0.06em;
    line-height: 32rem;
  }
  .privacy__wrapper .content__text p span {
    word-break: break-all;
  }
  .contact__wrapper {
    width: 335rem;
    margin: auto;
    margin-top: 35rem;
    margin-bottom: 60rem;
  }
  .contact__wrapper .note__txt {
    font-size: 15rem;
    letter-spacing: 0;
    line-height: 32rem;
    text-align: justify;
  }
  .contact__wrapper .contact__form {
    width: 100%;
    margin: auto;
    margin-top: 50rem;
  }
  .contact__wrapper .contact__form table tr {
    display: grid;
  }
  .contact__wrapper .contact__form table tr td:first-child {
    width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }
  .contact__wrapper .contact__form table tr td input[type=text] {
    width: 100%;
    height: 44.11rem;
    background: #ececec;
    font-size: 15rem;
  }
  .contact__wrapper .contact__form table tr td textarea {
    width: 100%;
    height: 170rem;
    font-size: 15rem;
    letter-spacing: 0.15em;
    line-height: 1.6;
  }
  .contact__wrapper .contact__form table tr td .post_addr input[type=text] {
    width: 190rem;
  }
  .contact__wrapper .contact__form table tr td .privacy__content {
    width: 100%;
    height: 300rem;
    padding: 14rem 10rem 14rem 14rem;
  }
  .contact__wrapper .contact__form table tr td .post_addr .post__btn {
    width: 136rem;
    height: 44.11rem;
    margin-left: 10rem;
  }
  .contact__wrapper .contact__form table tr td select {
    width: 236rem;
    background-position: 208rem 20rem;
  }
  .contact__wrapper .contact__form table tr td .privacy__content .content__text p {
    font-size: 15rem;
    letter-spacing: 0.07em;
    line-height: 25rem;
  }
  .contact__wrapper .contact__form table tr td {
    font-size: 15rem;
    letter-spacing: 0.05em;
    line-height: 32rem;
  }
  .contact__wrapper .contact__form table tr td .privacy__chk {
    position: relative;
    margin-left: 0;
    line-height: 24rem;
  }
  .contact__wrapper .contact__form table tr td .privacy__chk input {
    margin-right: 10rem;
  }
  .contact__wrapper .contact__form table tr td .privacy__chk .required {
    position: absolute;
    top: 27rem;
    right: 200rem;
  }
  .contact__wrapper .contact__form .submit__btn {
    width: 250rem;
  }
  .breadcrumb.fixed {
    top: 65rem;
  }
  .breadcrumb.messeage {
    top: 65rem;
  }
  .breadcrumb.messeage.visible {
    z-index: -1;
  }
  .breadcrumb.company {
    top: 65rem;
  }
  .breadcrumb.company.visible {
    z-index: -1;
  }
  .news__wrapper .news__content .news__items .n__item .pos_id {
    position: absolute;
    left: 0;
    top: -90rem;
  }
}
.contact__wrapper iframe {
  height: 2230px;
}

@media screen and (max-width: 1280px) {
  .contact__wrapper iframe {
    height: 2400px;
  }
}
@media screen and (max-width: 768px) {
  .contact__wrapper iframe {
    height: 2650px;
  }
}
@media screen and (max-width: 582px) {
  .contact__wrapper iframe {
    height: 2960px;
  }
}/*# sourceMappingURL=style.css.map */