@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
}

a:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.65;
}

a:active, a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, dd, dt, dl {
  margin: 0;
}

figcaption, figure, main,
article, aside, footer,
header, nav, section {
  display: block;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

/* 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 .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: .5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 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: .5em;
}

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 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  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 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  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 {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  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%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -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: .2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
 /***************************

layout/header.scss

***************************/
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

 /***************************

 header

***************************/
.header {
  position: relative;
  width: 100%;
  background-color: #EB6402;
  padding: 30px 0;
}

.home .header {
  display: none;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  gap: 40px;
}

.header_inner .shop {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .header_inner .shop {
    font-size: 2.2rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 500px) {
  .header_inner .shop {
    font-size: 1.6rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 500px) {
  .header {
    padding: 15px 0;
  }

  .header .logo {
    width: 190px;
  }

  .header_inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .header_inner .shop {
    display: flex;
    gap: 20px;
  }

  .header_inner .shop br {
    display: none;
  }
}
 /***************************

layout/footer.scss

***************************/
.footer {
  position: relative;
  background: #EB6402;
  color: #fff;
}
.footer .copyright {
  background: #3E3A39;
  padding: 10px 20px;
  text-align: center;
}

.footer a, .footer a:hover {
  color: #fff;
}

.pagetop {
  position: absolute;
  z-index: 99;
  top: -85px;
  left: 50%;
  translate: -50% 0;
}

.footer_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  gap: 40px;
  padding: 40px 0;
}

@media screen and (max-width: 500px) {
  .pagetop {
    top: -50px;
  }

  .pagetop img {
    width: 100px;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
.container_l {
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.wrap {
  max-width: 1540px;
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .wrap {
    width: 100%;
  }
}

.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

////////////////////////*/
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.m-plus-1p {
  font-family: "M PLUS 1p", sans-serif;
}

.thin {
  font-weight: 100;
}

.extralight {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

.fz22 {
  font-size: clamp(18px, 2.9vw, 22px);
}

.col_red {
  color: #D21619;
}

/***************************

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;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-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;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-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;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-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;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-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;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@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;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn-B {
  display: block;
  max-width: 340px;
  width: 100%;
  background: #fff;
  border-radius: 60px;
  font-size: 2.2rem;
  font-weight: 600;
  color: #eb6420;
  padding: 15px 20px;
  text-align: center;
}
.btn-B:hover {
  color: #eb6420;
}

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .btn-B {
    padding: 10px 15px;
    font-size: 1.8rem;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
/***************************

object/project/top.scss

***************************/
.mv {
  width: 100%;
}

.main-visual img {
  width: 100%;
}

.top01 {
  width: 100%;
}

.compare-ttl {
  width: 90%;
  margin-top: -2vw;
  margin-bottom: 40px;
}
.compare-ttl img {
  width: 100%;
}

.car-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 30px;
}

.car-attention {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .car-list {
    gap: 30px;
  }

  .car-attention {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 500px) {
  .car-list {
    grid-template-columns: 100%;
    gap: 15px;
  }

  .car-attention {
    font-size: 1.2rem;
  }
}
.top02 {
  width: 100%;
  background: url(../img/top/faq-back-parts.png);
  background-size: 100% 100%;
  padding-top: 12.8vw;
  padding-bottom: 100px;
}

.faq-ttl {
  text-align: center;
  margin-bottom: 40px;
}

.faq-cont {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top02 {
    padding-bottom: 50px;
  }
}
.top03 {
  width: 100%;
  padding: 120px 0;
}

.service-ttl {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #EB6402;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
}

.service-cont-list {
  max-width: 1920px;
  width: 100%;
  margin: 60px auto 0;
}

.service-cont-block {
  width: 87.5%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.service-cont-block:nth-child(even) {
  flex-direction: row-reverse;
  margin-left: auto;
}
.service-cont-block:not(:last-child) {
  margin-bottom: 80px;
}
.service-cont-block .text {
  position: relative;
  min-width: 530px;
}
.service-cont-block .text:after {
  position: absolute;
  content: '';
  max-width: 582px;
  max-height: 554px;
  width: 30vw;
  height: 29vw;
  background: url(../img/top/service-back-parts.png) no-repeat;
  background-size: 100% auto;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.service-cont-block .text h4 {
  font-size: 4.5rem;
  font-weight: 900;
  color: #EB6402;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}
.service-cont-block .text p {
  max-width: 33vw;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 2;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .service-cont-block {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .service-cont-block {
    flex-direction: column;
    gap: 60px;
  }

  .service-cont-block .text:after {
    width: 308px;
    height: 295px;
  }

  .service-cont-block:nth-child(even) {
    flex-direction: column;
  }

  .service-cont-block .image {
    padding: 0 20px;
  }

  .service-cont-block .image img {
    border-radius: 60px;
  }

  .service-cont-block .text {
    width: 100%;
    min-width: auto;
    padding: 0 40px;
  }

  .service-cont-block .text h4 br {
    display: none;
  }

  .service-cont-block .text p {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top03 {
    padding: 60px 0;
  }

  .service-ttl {
    font-size: clamp(30px, 6.5vw, 50px);
    margin-bottom: 30px;
  }

  .service-cont-block .text h4 {
    font-size: clamp(25px, 5.3vw, 40px);
  }

  .service-cont-block .text p {
    font-size: 1.8rem;
  }
}
.top04 {
  width: 100%;
  background: #3E3A39;
  padding: 120px 0;
}

.shop-ttl {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5em;
  text-align: center;
  margin-bottom: 40px;
}

.shop-cont-box {
  width: 100%;
  margin-bottom: 50px;
}
.shop-cont-box:not(:last-of-type) {
  margin-bottom: 120px;
}

.shop-name {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.shop-info {
  display: flex;
  margin-bottom: 30px;
  gap: 25px 50px;
}
.shop-info .text p {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.addr-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 1024px) {
  .shop-info {
    flex-direction: column;
  }

  .shop-info .image {
    text-align: center;
  }

  .shop-info .text {
    text-align: center;
  }
  .shop-info .text .btn-B {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .top04 {
    padding: 60px 0 120px;
  }

  .shop-cont-box:not(:last-of-type) {
    margin-bottom: 60px;
  }

  .shop-ttl {
    font-size: clamp(25px, 4.6vw, 35px);
    margin-bottom: 20px;
  }

  .shop-name {
    font-size: clamp(20px, 3.2vw, 25px);
  }

  .shop-info .text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  .top04 {
    padding-bottom: 80px;
  }
}
/***************************

object/project/contact.scss

***************************/
.contact01 {
  width: 100%;
  padding: 60px 0 120px;
}

.contact-ttl {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #EB6402;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}
.contact-ttl.tal {
  text-align: left;
}

.form-wrap {
  width: 100%;
  border: 25px solid #F9DECB;
  margin-top: 40px;
}

.form-image {
  width: 100%;
  border-bottom: 25px solid #F9DECB;
}
.form-image img {
  width: 100%;
}

.formTable {
  width: 100%;
  padding: 70px 50px 90px;
}

.privacypolicy {
  width: 100%;
  padding: 0 50px;
  margin-bottom: 100px;
}

.form-block {
  width: 100%;
}
.form-block:not(:last-child) {
  margin-bottom: 50px;
}
.form-block dt {
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.form__radio .form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop__radio .form-control {
  justify-content: center;
  gap: 10px 18%;
}

.time__radio .form-control {
  flex-direction: column;
}

.form__radio .form-list-item {
  background: #fff;
  border: none;
}

.form__radio .form-list-item input[type=radio] {
  display: none;
}

.privacypolicy .form-list-item input[type=checkbox] {
  display: none;
}

.form__radio .form-list-item .form-list-item-label {
  position: relative;
  padding: 0 0 0 35px;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  display: block;
}

.privacypolicy .form-list-item .form-list-item-label {
  position: relative;
  padding: 0 0 0 35px;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  display: block;
}

.form__radio .form-list-item .form-list-item-label::after,
.form__radio .form-list-item .form-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all .3s;
}

.privacypolicy .form-list-item .form-list-item-label::after,
.privacypolicy .form-list-item .form-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all .3s;
}

.form__radio .form-list-item .form-list-item-label::after {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50%;
}

.privacypolicy .form-list-item .form-list-item-label::before {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
}

.form__radio .form-list-item .form-list-item-label::before {
  left: 5px;
  top: 50%;
  translate: 0 -50%;
  margin-top: 0;
  width: 16px;
  height: 16px;
  background: #EB6402;
  border-radius: 100%;
  opacity: 0;
  z-index: 1;
  border: 0;
}

.privacypolicy .form-list-item .form-list-item-label::after {
  left: 5px;
  top: 45%;
  translate: 0 -50%;
  margin-top: 0;
  width: 16px;
  height: 8px;
  border-left: 2px solid #EB6402;
  border-bottom: 2px solid #EB6402;
  rotate: -45deg;
  opacity: 0;
  z-index: 5;
}

.form__radio .form-radio input[type=radio]:checked + .form-list-item-label::before {
  opacity: 1;
}

.privacypolicy input:checked + .form-list-item-label::after {
  opacity: 1;
}

.data__block {
  display: flex;
  gap: 20px 40px;
}

.contact_form input[type=date] {
  max-width: 400px;
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  padding: 5px;
  font-size: 2.2rem;
}

.type__block {
  display: flex;
  align-items: center;
  gap: 20px 40px;
}
.type__block dt {
  margin-bottom: 0;
}

.type__radio .form-control {
  gap: 10px 40px;
}

.contact_form input[type=text],
.contact_form input[type=email],
.contact_form input[type=tel] {
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  padding: 5px;
  font-size: 2.2rem;
}

.contact_form input::placeholder {
  font-size: 2.2rem;
  color: #B9BABA;
}

.contact_form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  padding: 5px;
  font-size: 2.2rem;
}

.name-block {
  display: flex;
  gap: 20px;
}

.name-block-inner {
  width: calc(50% - 10px);
}

.privacypolicy {
  display: flex;
  align-items: center;
  gap: 20px;
}
.privacypolicy p {
  font-weight: 700;
  font-size: 2.3rem;
}
.privacypolicy a {
  color: #0090D9;
  text-decoration: underline;
}

.submit-wrap {
  position: relative;
  width: 100%;
  padding: 8px 50px;
  margin-bottom: 50px;
  text-align: center;
}

.btn-submit-border {
  position: absolute;
  content: '';
  width: calc(100% - 100px);
  height: 100%;
  background: linear-gradient(175deg, #F5EFBE, #F0B100 25%, #D9A011 50%, #F0B100 75%, #874D02 100%);
  z-index: 1;
  border-radius: 46px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.btn-submit {
  position: relative;
  width: calc(100% - 16px);
  background: #0090D9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  padding: 15px 10px;
  border-radius: 36px;
  z-index: 2;
  border: none;
}
.btn-submit:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: all .6s;
}

@media screen and (max-width: 1024px) {
  .formTable {
    padding: 35px 25px 45px;
  }

  .form-block:not(:last-child) {
    margin-bottom: 30px;
  }

  .form-block dt {
    margin-bottom: 10px;
  }

  .privacypolicy {
    padding: 0 25px;
    margin-bottom: 50px;
  }

  .submit-wrap {
    padding: 8px 25px;
    margin-bottom: 30px;
  }

  .btn-submit-border {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 768px) {
  .contact01 {
    padding: 30px 0 120px;
  }

  .contact-ttl {
    font-size: clamp(30px, 6.5vw, 50px);
    margin-bottom: 10px;
  }

  .form-wrap {
    border-width: 12px;
  }

  .form-image {
    border-width: 12px;
  }

  .form-block dt {
    font-size: 1.8rem;
  }

  .form__radio .form-list-item .form-list-item-label {
    font-size: 1.6rem;
  }

  .shop__radio .form-control {
    justify-content: flex-start;
  }

  .contact_form input[type=text],
  .contact_form input[type=email],
  .contact_form input[type=tel] {
    font-size: 1.6rem;
  }

  .contact_form input::placeholder {
    font-size: 1.6rem;
  }

  .contact_form textarea {
    font-size: 1.6rem;
  }

  .privacypolicy p {
    font-size: 1.8rem;
  }

  .privacypolicy .form-list-item .form-list-item-label {
    font-size: 1.6rem;
  }

  .btn-submit {
    font-size: 2.5rem;
  }

  .submit-wrap {
    padding: 4px 25px;
  }

  .btn-submit {
    width: calc(100% - 8px);
  }
}
@media screen and (max-width: 650px) {
  .shop__radio .form-control {
    gap: 10px 40px;
  }

  .data__block {
    flex-direction: column;
  }

  .type__block {
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }
  .type__block dt, .type__block dd {
    width: 100%;
  }

  .privacypolicy {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .contact01 {
    padding-bottom: 80px;
  }
}
.thanks01 {
  min-height: 60vh;
}
