@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* 1. Use border-box for all elements */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin from common elements */
body, h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

/* 3. Remove list styles on ul/ol elements with a role of list */
ul[role=list], ol[role=list] {
  list-style: none;
}

/* 4. Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* 5. Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  font-family: system-ui, sans-serif;
  background-color: #fff;
  color: #000;
}

/* 6. Make images easier to work with */
img, picture {
  max-width: 100%;
  display: block;
}

/* 7. Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}

/* 8. Remove animations and transitions for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --font-family--gothic: "Noto Sans JP", sans-serif;
  --color-black: #231815;
  --color-orange: #ec6c00;
  --color-yellow: #fff100;
  --color-summer: #22ac38;
  --color-winter: #0068b7;
  --color-mente: #595757;
  --color-oil: #751485;
  --color-goods: #e4007f;
  --color-event: #ec6c00;
}

html, body {
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-family--gothic);
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.05em;
}

a {
  color: var(--color-black);
  text-decoration: none;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  color: var(--color-black);
}

p {
  margin-bottom: 0.8em;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

@media only screen and (min-width: 991px) {
  .sp {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .tablet {
    display: none !important;
  }
}

@media only screen and (min-width: 991px) {
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 1025px) {
  .pc {
    display: none !important;
  }
}

input[type=submit], input[type=button], input[type=reset] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

.l-pc-layout {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  display: flex;
  gap: 500px;
  background: var(--color-orange);
}

.l-main-container {
  height: 100%;
  width: 100%;
  display: flex;
}

.l-side-container {
  flex: 1;
}
.l-side-container__left {
  background: url("../images/common/bg_pc_l.png") right bottom no-repeat;
  background-size: cover;
  overflow: auto;
}
.l-side-container__left .l-side-container-content {
  display: none;
  width: 250px;
  margin: auto;
  padding-top: 90px;
}
@media only screen and (min-width: 1025px) {
  .l-side-container__left .l-side-container-content {
    display: block;
  }
}
.l-side-container__left .l-side-container-content-header {
  margin-bottom: 42px;
}
.l-side-container__left .l-side-container-content-shop {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
}
.l-side-container__left .l-side-container-content-menu {
  margin-bottom: 30px;
}
.l-side-container__left .l-side-container-content-menu-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-yellow);
}
.l-side-container__left .l-side-container-content-menu-list {
  list-style: none;
  color: white;
  padding: 0;
  margin: 0;
}
.l-side-container__left .l-side-container-content-menu-list li {
  line-height: 2;
}
.l-side-container__left .l-side-container-content-menu-list li a {
  color: white;
}
.l-side-container__left .l-side-container-content-menu-list li a:hover {
  color: var(--color-yellow);
}
.l-side-container__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: url("../images/common/bg_pc_right.png") left bottom no-repeat;
  background-size: cover;
  padding-bottom: 90px;
}
.l-side-container-company {
  display: none;
  color: white;
}
@media only screen and (min-width: 1025px) {
  .l-side-container-company {
    display: block;
  }
}
.l-side-container-company img {
  width: 138px;
  margin-bottom: 10px;
}
.l-side-container-company p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.l-mobile-container-wrapper {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 991px) {
  .l-mobile-container-wrapper {
    min-height: 99.8vh;
    margin-inline: auto;
    overflow: scroll;
  }
}
.l-mobile-container {
  background: white;
}

a {
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 991px) {
  a:hover img {
    filter: brightness(1.1);
  }
}

.l-footer {
  background: var(--color-orange);
  color: white;
  padding: 24px 24px 40px;
}
.l-footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.l-footer-sign img {
  display: block;
  width: 92px;
}
.l-footer-company img {
  width: 182px;
  margin-bottom: 10px;
}
.l-footer-company p {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.875;
  margin-bottom: 0;
}
.l-footer-shop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.l-footer-shop a {
  display: block;
}
.l-footer-shop a:hover {
  background: white;
}
.l-footer-shop img {
  width: 114px;
}

.c-page-top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 100;
}
.c-page-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-container {
  padding-left: 30px;
  padding-right: 30px;
}

.p-front-header {
  background: var(--color-orange);
  padding: 30px 20px 22px;
  height: 242px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media only screen and (min-width: 991px) {
  .p-front-header {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-front-header-title {
  font-size: 3.2rem;
  color: var(--color-yellow);
  text-align: center;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 10px;
}
.p-front-header-title__sub {
  display: block;
  font-size: 0.75em;
}
.p-front-header-title__main {
  display: block;
}
.p-front-header-campaign {
  font-weight: bold;
  color: white;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 10px;
}
.p-front-header-campaign__sub {
  font-size: 2.2rem;
}
.p-front-header-campaign__main {
  font-size: 2.5rem;
}
.p-front-header-campaign__main .sm {
  font-size: 0.8em;
}
.p-front-header-shop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.p-front-header-shop img {
  display: block;
  width: 114px;
}
.p-front-header-shop a:hover {
  background: white;
}
.p-front-header-shop a img {
  display: block;
  width: 114px;
}
.p-front-header-shop a img {
  display: block;
}

.p-front-kv {
  background: url("../images/kv/250704ol.svg") center center no-repeat;
  background-size: cover;
  padding: 50px 30px 70px;
  margin-top: 241px;
  margin-bottom: 50px;
}
.p-front-kv-chara {
  margin: 0 auto 50px;
}
.p-front-kv-coupon-link {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  place-content: center;
  gap: 15px 20px;
  padding: 0;
  margin-bottom: 45px;
  list-style: none;
}
.p-front-kv-coupon-item a {
  display: grid;
  place-content: center;
  width: 150px;
  height: 40px;
  background: var(--color-orange);
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  position: relative;
}
.p-front-kv-coupon-item a:hover {
  filter: brightness(0.85);
}
.p-front-kv-coupon-item a::after {
  content: "";
  width: 10px;
  height: 10px;
  background: white;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.p-front-kv-coupon-item__summer a {
  background: var(--color-summer);
}
.p-front-kv-coupon-item__winter a {
  background: var(--color-winter);
}
.p-front-kv-coupon-item__maintenance a {
  background: var(--color-mente);
}
.p-front-kv-coupon-item__oil a {
  background: var(--color-oil);
}
.p-front-kv-coupon-item__goods a {
  background: var(--color-goods);
}
.p-front-kv-coupon-item__event a {
  background: var(--color-event);
}
.p-front-kv-barcode {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-front-kv-barcode img {
  width: 220px;
  margin: 15px auto;
}
.p-front-kv-barcode-desc {
  padding: 11px 15px;
  display: inline-block;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  background: white;
  border: 1px solid black;
}
.p-front-kv-barcode-desc:hover {
  background: var(--color-orange);
  color: white;
}
.p-front-kv-barcode-desc__yellow {
  background: #ffd900;
  margin-bottom: 10px;
}

.p-front-coupon {
  margin-bottom: 50px;
}
.p-front-coupon-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  display: grid;
  place-content: center;
  width: 240px;
  height: 47px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}
.p-front-coupon-title::before {
  content: "";
  width: calc(100vw - 60px);
  max-width: 440px;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (min-width: 991px) {
  .p-front-coupon-title::before {
    width: 440px;
  }
}
.p-front-coupon__summer .p-front-coupon-title {
  background: var(--color-summer);
}
.p-front-coupon__summer .p-front-coupon-title::before {
  background: var(--color-summer);
}
.p-front-coupon__winter .p-front-coupon-title {
  background: var(--color-winter);
}
.p-front-coupon__winter .p-front-coupon-title::before {
  background: var(--color-winter);
}
.p-front-coupon__maintenance .p-front-coupon-title {
  background: var(--color-mente);
}
.p-front-coupon__maintenance .p-front-coupon-title::before {
  background: var(--color-mente);
}
.p-front-coupon__oil .p-front-coupon-title {
  background: var(--color-oil);
}
.p-front-coupon__oil .p-front-coupon-title::before {
  background: var(--color-oil);
}
.p-front-coupon__goods .p-front-coupon-title {
  background: var(--color-goods);
}
.p-front-coupon__goods .p-front-coupon-title::before {
  background: var(--color-goods);
}
.p-front-coupon__event .p-front-coupon-title {
  background: var(--color-event);
}
.p-front-coupon__event .p-front-coupon-title::before {
  background: var(--color-event);
}
.p-front-coupon-item {
  display: block;
}
.p-front-coupon-item:not(:last-child) {
  margin-bottom: 20px;
}
.p-front-coupon-item img {
  display: block;
  margin: auto;
  width: 350px;
}

.p-front-shop {
  border-top: 5px solid #9fa0a0;
  border-bottom: 5px solid #9fa0a0;
  padding: 50px 0;
}
.p-front-shop-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
}
.p-front-shop-item {
  display: block;
}
.p-front-shop-item:not(:last-child) {
  margin-bottom: 30px;
}
.p-front-shop-item img {
  display: block;
  margin: auto;
  width: 350px;
}

.p-front-terms {
  padding: 50px 30px 60px;
  text-align: center;
}
.p-front-terms-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.p-front-terms-item-title {
  font-size: 2rem;
  font-weight: bold;
}

/*# sourceMappingURL=style.css.map */
