@charset "UTF-8";
* {
  box-sizing: border-box;
}

/* Grid System width Flex */
.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

/*margin*/
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 0.3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 0.3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: 0.5em;
}

textarea::-moz-placeholder, input::-moz-placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous, .pager .next,
.pager .back {
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: flex;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}
.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul, .breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
.slick-archive__label {
    font-size: 1rem;
  }
  .slick-archive__title {
    font-size: 1.2rem;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
main {
  background: #020303;
}
main a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}
main a:hover {
  text-decoration: none;
  opacity: 0.65;
}
main li {
  margin: 0;
  list-style: none;
}
main ul, main ol {
  margin: 0;
  padding: 0;
}
main b, main strong {
  font-weight: bolder;
}
main h1, main h2, main h3, main h4, main h5, main h6, main p, main figure, main dd, main dt, main dl {
  margin: 0;
}
main img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.container_l {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }
  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
@font-face {
  font-family: "Triumph Grand";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/TriumphGrand-Roman.woff2) format("woff2");
}
@font-face {
  font-family: "ARMochi";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/armochic90jp_bd.woff2) format("woff2");
}
.bold {
  font-weight: bold;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

.ms-madi {
  font-family: "Ms Madi", serif;
}

.fz12 {
  font-size: 12px;
}

.fz24 {
  font-size: clamp(18px, 3vw, 24px);
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn-A {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 90%;
  background: #020303;
  border-radius: 10px;
  color: #fff;
  padding: 30px 45px;
  text-align: center;
}

.btn-A:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 35px;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  z-index: 2;
}

.btn-A__en {
  font-family: "TriumphGrand";
  font-size: clamp(12px, 2.1vw, 16px);
  letter-spacing: 0.22em;
  line-height: 1.2;
}

.btn-A__ja {
  font-family: "ARMochi";
  font-size: clamp(20px, 4.6vw, 35px);
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.btn-center {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .btn-A {
    padding: 15px 25px;
  }
  .btn-A:after {
    right: 15px;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg_01 {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.hdg_01__en {
  font-family: "TriumphGrand";
  font-size: clamp(12px, 6.2vw, 32px);
  letter-spacing: 0.2em;
  line-height: 1.4;
}

.hdg_01__ja {
  font-family: "AR白玉書体PH16C90";
  font-size: clamp(18px, 3.7vw, 24px);
}

/***************************

object/project/top.scss

***************************/
.himewaza01 {
  width: 100%;
}

.himewaza-main-visual {
  width: 100%;
}
.himewaza-main-visual picture img {
  width: 100%;
}

.himewaza02 {
  position: relative;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 160px;
  background: url(../img/top/back-pc-parts01.png) no-repeat;
  background-position: top right;
}

.himewaza02:after {
  position: absolute;
  content: "";
  width: 714px;
  height: 465px;
  background: url(../img/top/back-pc-parts02.png) no-repeat;
  background-position: top right;
  left: 0;
  top: 40%;
  z-index: 1;
}

.himewaza-mv-under {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.himewaza-mv-under_pagelink {
  max-width: 470px;
  width: 56%;
}

.himewaza-mv-under_pagelink a {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 20px 40px;
  text-align: center;
}

.himewaza-mv-under_pagelink a:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  right: 25px;
  top: 50%;
  translate: 0 -50%;
  rotate: -45deg;
}

.himewaza-mv-under_pagelink a p {
  font-family: "TriumphGrand";
  letter-spacing: 0.22em;
  line-height: 1.2;
  font-size: 12px;
  color: #A19F9F;
  margin-bottom: 5px;
}

.himewaza-mv-under_pagelink a h3 {
  font-family: "ARMochi";
  font-size: 36px;
}

.himewaza-mv-under_movie {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  .himewaza02 {
    background: url(../img/top/back-parts01.png) no-repeat;
    background-position: top right;
    padding-top: 50px;
    padding-bottom: 80px;
    background-size: 100% auto;
  }
  .himewaza02:after {
    width: 46%;
    height: 815px;
    background: url(../img/top/back-parts02.png) no-repeat;
    background-position: top right;
    background-size: 100% auto;
  }
  .himewaza02 .container_l {
    padding-left: 10px;
  }
  .himewaza-mv-under_image {
    width: 40%;
  }
  .himewaza-mv-under_pagelink {
    width: 60%;
  }
  .himewaza-mv-under_pagelink a h3 {
    font-size: clamp(31px, 6vw, 46px);
  }
  .himewaza-mv-under_pagelink a {
    padding: 20px 30px;
  }
  .himewaza-mv-under_pagelink a:after {
    width: 10px;
    height: 10px;
    right: 15px;
  }
}
@media screen and (max-width: 500px) {
  .himewaza02:after {
    background-position: bottom left;
  }
  .himewaza-mv-under {
    flex-wrap: wrap;
  }
  .himewaza-mv-under_image {
    width: 100%;
    text-align: center;
  }
  .himewaza-mv-under_pagelink {
    width: 100%;
  }
  .himewaza-mv-under_pagelink a {
    padding: 10px 30px;
  }
  .himewaza-mv-under_pagelink a.mb30 {
    margin-bottom: 10px;
  }
}
.himewaza03 {
  position: relative;
  z-index: 2;
  padding-bottom: 200px;
  background: url(../img/top/back-pc-parts03@2x.png) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.product-details_block {
  position: relative;
  width: 100%;
  z-index: 2;
}

.product-details_block_data01 {
  position: relative;
  max-width: 680px;
  width: 100%;
  margin: 0 auto -50px;
  z-index: 2;
}

.product-details_block_data01 h3 {
  font-family: "ARMochi";
  font-size: 42px;
  line-height: 1.3;
  color: #E4DFD9;
}

.product-details_block_data01 p {
  font-size: 18px;
  color: #E4DFD9;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.product-details_block_data02 {
  position: relative;
  max-width: 680px;
  width: 100%;
  margin: -50px auto 0;
  text-align: right;
  z-index: 2;
}

.product-details_block_data02 h3 {
  font-family: "ARMochi";
  font-size: 50px;
  line-height: 1.3;
  color: #E4DFD9;
}

.product-details_block_data02 p {
  font-size: 26px;
  color: #E4DFD9;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.product-details_block_image {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .himewaza03 {
    padding-bottom: 100px;
    background: url(../img/top/back-parts03.png) no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
  .product-details_block_data02 h3 {
    font-size: clamp(30px, 6.5vw, 50px);
  }
  .product-details_block_data02 p {
    font-size: clamp(16px, 2.6vw, 20px);
  }
  .product-details_block_data01 p {
    font-size: 15px;
  }
  .product-details_block_data01 h3 {
    font-size: clamp(28px, 6.5vw, 32px);
  }
}
@media screen and (max-width: 500px) {
  .product-details_block_image {
    width: 90%;
  }
  .product-details_block_data01 {
    margin-bottom: -30px;
  }
  .product-details_block_data02 {
    margin-top: -30px;
  }
  .product-details_block_data01 h3,
.product-details_block_data02 h3 {
    font-size: 35px;
  }
  .product-details_block_data01 h3 {
    font-size: 24px;
  }
  .product-details_block_data01 p {
    font-size: clamp(13px, 2.6vw, 20px);
  }
}
.himewaza04 {
  width: 100%;
  padding-bottom: 160px;
}

.himewaza-product-list_spWrap {
  display: block;
  overflow: hidden;
}

.himewaza-product-list_sp {
  padding-bottom: 60px;
}

.himewaza-product-list_sp .slick-track {
  display: flex;
}

.slick-track {
  display: flex;
  align-items: center;
}

.himewaza-product-list_sp .slick-slide {
  height: auto !important;
}

.himewaza-product-list_item_ttl {
  position: relative;
  background: #23221E;
  padding: 15px 45px;
  border-left: 2.5px solid #E4DFD9;
  border-right: 2.5px solid #E4DFD9;
  font-family: "ARMochi";
  font-size: clamp(23px, 6.2vw, 48px);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 25px;
}

.himewaza-product-list_item_ttl:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 100%;
  background: linear-gradient(180deg, #E4DFD9 2.5px, transparent 2.5px, transparent 98%, #E4DFD9 98%);
  left: 0;
  top: 0;
}

.himewaza-product-list_item_ttl:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 100%;
  background: linear-gradient(180deg, #E4DFD9 2.5px, transparent 2.5px, transparent 98%, #E4DFD9 98%);
  right: 0;
  top: 0;
}

.himewaza-product-list_item_inner {
  margin-bottom: 40px;
  background-color: #23221E;
  border-radius: 10px;
}

@media screen and (min-width: 1080px) {
  .himewaza-product-list_item:nth-child(n+2) .himewaza-product-list_item_inner img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 300px;
  }
  .himewaza-product-list_sp .himewaza-product-list_item {
    width: 500px !important;
  }
}
.himewaza04 .slick-track {
  align-items: flex-start;
}

.himewaza-product-list_sp .himewaza-product-list_item {
  padding: 0 20px;
  color: #E4DFD9;
}

.himewaza-product-list_sp .himewaza-product-list_item:first-child {
  text-align: center;
}

.himewaza-product-list_sp .slick-list {
  overflow: visible;
}

.slick-list h4 img {
  width: auto;
  margin: 0 auto;
}

.himewaza-product-list_sp .himewaza-product-logo {
  margin-bottom: 30px;
  text-align: center;
}

.himewaza-product-list_sp .himewaza-product-logo img {
  width: auto;
  margin: 0 auto;
}

.himewaza-product-list_item:first-child .himewaza-product-text {
  font-size: clamp(18px, 3.2vw, 25px);
  line-height: 2;
}

.himewaza-product-list_item_innerflex {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.himewaza-product-list_sp .slick-dots li {
  width: 82px;
  height: 8px;
  margin: 0 10px;
}

.himewaza-product-list_sp .slick-dots li button {
  width: 82px;
  height: 8px;
  padding: 0;
}

.himewaza-product-list_sp .slick-dots button:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #6B6762;
  border-radius: 800px;
}

.himewaza-product-list_sp .slick-dots .slick-active button:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 800px;
}

@media screen and (max-width: 768px) {
  .himewaza04 {
    padding-bottom: 15vw;
  }
}
@media screen and (max-width: 600px) {
  .himewaza-product-list_sp .himewaza-product-list_item {
    padding: 0 10px;
  }
}
@media screen and (max-width: 500px) {
  .himewaza-product-list_sp .slick-dots li {
    width: 15vw;
  }
  .himewaza-product-list_sp .slick-dots li button {
    width: 15vw;
  }
  .himewaza-product-list_sp .himewaza-product-list_item:first-child {
    text-align: left;
  }
  .himewaza-product-list_sp .himewaza-product-logo img {
    margin-left: 0;
  }
}
.himewaza05 {
  position: relative;
  width: 100%;
  background: #F1EEEA;
  margin-top: 110px;
  padding-bottom: 220px;
}

.himewaza05:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 197px;
  background: url(../img/top/campaign-parts@2x.png) no-repeat center top;
  background-size: 100% auto;
  left: 0;
  top: -197px;
  z-index: 3;
}

@media screen and (min-width: 1501px) {
  .himewaza05 {
    margin-top: 8vw;
  }
  .himewaza05:before {
    height: 17vw;
    top: -16.8vw;
  }
}
.himewaza-campaign-onlinePcWrap {
  display: block;
  margin-bottom: 80px;
}

.himewaza-campaign-onlineSpWrap {
  display: none;
  overflow: hidden;
}

.himewaza-campaign-online-ttl {
  max-width: 680px;
  width: 100%;
  font-size: clamp(18px, 3.3vw, 25px);
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  background: #86BEB1;
  padding: 10px 20px;
  margin: 0 auto 30px;
}

.himewaza-campaign-list.is-pc {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto 40px;
}

.himewaza-campaign-list.is-sp {
  margin-bottom: 40px;
}

.himewaza-campaign-list.is-sp .slick-list {
  overflow: visible;
}

.himewaza-campaign-list.is-sp .himewaza-campaign-list_item {
  padding: 0 20px;
}

.himewaza-campaign-list.is-sp .slick-prev {
  width: 60px;
  height: 60px;
  background: url(../img/common/slide-arrow-prev.png) no-repeat center center;
  background-size: 100% auto;
  left: 0;
}

.himewaza-campaign-list.is-sp .slick-next {
  width: 60px;
  height: 60px;
  background: url(../img/common/slide-arrow-next.png) no-repeat center center;
  background-size: 100% auto;
  right: 0;
}

.himewaza-campaign-shopWrap {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  background: #E79090;
  padding: 35px 40px;
}

.himewaza-campaign-shop-ttl {
  max-width: 680px;
  width: 100%;
  font-size: clamp(18px, 3.3vw, 25px);
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #E79090;
  text-align: center;
  border-radius: 100px;
  background: #fff;
  padding: 10px 20px;
  margin: 0 auto 30px;
}

.himewaza-campaign-shopWrap .banner {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .himewaza05 {
    padding-bottom: 20vw;
  }
  .himewaza-campaign-onlinePcWrap {
    display: none;
  }
  .himewaza-campaign-onlineSpWrap {
    display: block;
    margin-bottom: 40px;
  }
  .himewaza05:before {
    height: 15vw;
    top: -14vw;
  }
}
.himewaza05:before {
  height: 15vw;
  top: -14vw;
  z-index: 0;
}

@media screen and (max-width: 600px) {
  .himewaza-campaign-list.is-sp .slick-prev,
.himewaza-campaign-list.is-sp .slick-next {
    width: 40px;
    height: 40px;
  }
  .himewaza-campaign-list.is-sp .himewaza-campaign-list_item {
    padding: 0 10px;
  }
}
.himewaza06 {
  position: relative;
  width: 100%;
  background: url(../img/top/linup-back-parts01.png) no-repeat, url(../img/top/linup-back-parts02.png) no-repeat, url(../img/top/linup-back-parts03.png) no-repeat;
  background-position: left top, left bottom 20%, right bottom 40%;
  background-color: #fff;
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 220px;
}

.himewaza06:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 180px;
  background: url(../img/top/linup-pc-parts.png) no-repeat center top;
  background-size: 100% auto;
  left: 0;
  top: -179px;
  z-index: 3;
}

@media screen and (min-width: 1501px) {
  .himewaza06 {
    margin-top: 8vw;
  }
  .himewaza06:before {
    height: 15vw;
    top: -14.8vw;
  }
}
.himewaza-lineup-list .himewaza-lineup-list_item h4 {
  text-align: center;
  margin-bottom: 20px;
}

.himewaza-lineup-list .himewaza-lineup-list_item h3 img {
  width: auto;
  margin: 0 auto;
}

.himewaza-lineup-list_item_imageWrap {
  position: relative;
  padding-bottom: 30px;
}

.btn-B {
  display: block;
  max-width: 370px;
  width: 100%;
  margin: 20px auto 0;
  border-radius: 90px;
  font-family: "ARMochi";
  font-size: clamp(25px, 2.4vw, 35px);
  text-align: center;
  padding: 20px;
  color: #47413F;
}

.btn-B:after {
  display: inline-block;
  content: "";
  width: 2.5vw;
  height: 28px;
  background: url(../img/common/btn-parts01.png) no-repeat center center;
  background-size: 100% auto;
  margin-left: 10px;
  vertical-align: middle;
}

.is-wire .btn-B {
  background: #EEA18C;
}

.is-nonewire .btn-B {
  background: #D8EE8C;
}

.is-hybrid .btn-B {
  background: #CCC6E5;
}

.himewaza-lineup-listSpWrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 120px;
  z-index: 5;
}

.himewaza-lineup-list.is-sp .himewaza-lineup-list_item {
  padding: 0 30px;
}

.himewaza-lineup-list.is-sp {
  padding-bottom: 70px;
}

.himewaza-lineup-list.is-sp .slick-dots li {
  width: 82px;
  height: 8px;
  margin: 0 10px;
}

.himewaza-lineup-list.is-sp .slick-dots li button {
  width: 82px;
  height: 8px;
  padding: 0;
}

.himewaza-lineup-list.is-sp .slick-dots button:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #CFCDCD;
  border-radius: 800px;
}

.himewaza-lineup-list.is-sp .slick-dots .slick-active button:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #47413F;
  border-radius: 800px;
}

@media screen and (max-width: 1024px) {
  .himewaza06 .container_l {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 985px) {
  .himewaza06:before {
    background: url(../img/top/linup-pc-parts.png) no-repeat center bottom;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 768px) {
  .himewaza06 {
    margin-top: 60px;
    padding-top: 0;
    padding-bottom: 110px;
    background-size: 22vw auto, 56vw auto, 29vw auto;
  }
  .himewaza06:before {
    background: url(../img/top/linup-parts@2x.png) no-repeat center top;
    background-size: 100% auto;
    height: 20vw;
    top: -20vw;
  }
  .himewaza-lineup-listSpWrap {
    margin-bottom: 60px;
  }
  .btn-B:after {
    width: 21px;
  }
}
@media screen and (max-width: 600px) {
  .himewaza-lineup-list.is-sp .himewaza-lineup-list_item {
    padding: 0 15px;
  }
  .btn-B {
    padding: 10px;
  }
}
@media screen and (max-width: 500px) {
  .himewaza-lineup-list.is-sp .slick-dots li {
    width: 15vw;
  }
  .himewaza-lineup-list.is-sp .slick-dots li button {
    width: 15vw;
  }
}
@media screen and (max-width: 375px) {
  .himewaza06 {
    margin-top: 40px;
  }
}
.himewaza-fixed-menu {
  position: fixed;
  max-width: 280px;
  width: 100%;
  z-index: 99;
  bottom: 40px;
  right: 30px;
}

.himewaza-fixed-menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.himewaza-fixed-menu ul li {
  width: 100%;
}

.himewaza-fixed-menu ul li a {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
  padding: 20px;
  background: #19ABA8;
  border-radius: 10px;
  text-align: center;
}

.himewaza-fixed-menu ul li:last-child a {
  background: #DD6969;
}

.fixedmenu__en {
  font-family: "TriumphGrand";
  font-size: 9px;
  letter-spacing: 0.22em;
}

.fixedmenu__ja {
  font-family: "ARMochi";
  font-size: clamp(20px, 4.6vw, 35px);
  letter-spacing: 0.1em;
  line-height: 1;
}

@media screen and (min-width: 1080px) {
  .himewaza-lineup-list_item {
    width: 500px !important;
  }
}
@media screen and (max-width: 768px) {
  .himewaza-fixed-menu {
    position: fixed;
    max-width: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
  }
  .himewaza-fixed-menu ul {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
  .himewaza-fixed-menu ul li {
    width: 50%;
  }
  .himewaza-fixed-menu ul li a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media screen and (max-width: 500px) {
  .himewaza-fixed-menu ul li a {
    padding: 10px 20px;
  }
}
/*# sourceMappingURL=style.css.map */