@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

:root {
  --black_2b: #2b2b2b;
  --black_33: #333;
  --white: #fff;
  --red: #E92323;
  --navy: #042283;
  --light-blue: #00A3D9;
  --yellow: #F5F50E;
}

.zenold {
  font-family: "Zen Old Mincho", serif;
}

.anton {
  font-family: "Anton", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black_2b);
}

html {
  scrollbar-gutter: stable;
}

main {
  overflow-x: hidden;
}

.l-wrapper {
  margin-top: 160px;
}
@media screen and (max-width: 576px) {
  .l-wrapper {
    margin-top: 80px;
  }
}

.l-container {
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

.l-br__sp {
  display: none;
}
@media screen and (max-width: 576px) {
  .l-br__sp {
    display: block;
  }
}

a {
  transition: all 0.4s;
}

a:hover {
  opacity: 0.6;
}

.c-Ybtn {
  background-color: var(--yellow);
  padding: 16px 160px;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media screen and (max-width: 576px) {
  .c-Ybtn {
    padding: 8px 80px;
  }
}

.c-Ybtn__contact {
  width: fit-content;
  border: 2px solid var(--yellow);
  background-color: var(--yellow);
  color: var(--black_2b);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  margin: 0 auto;
  transition: all 0.4s;
}

.c-Ybtn__contact::before {
  content: "";
  background: center/contain no-repeat url(../images/common/icon_mail.svg);
  width: 41px;
  height: 30px;
  margin: 3px 8px 0 0;
  transition: all 0.4s;
}

.c-Ybtn:hover {
  color: var(--yellow);
  background-color: #000;
  opacity: 1;
}

.c-Ybtn__contact:hover {
  color: var(--white);
  border: 2px solid var(--yellow);
  background-color: var(--black_2b);
  opacity: 1;
}

.c-Ybtn__contact:hover::before {
  background-image: url(../images/common/icon_mail-white.svg);
}

.c-Bbtn {
  width: fit-content;
  background-color: var(--light-blue);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.6;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-pucrchace__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  gap: 24px;
  max-width: 100%;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .c-pucrchace__items {
    gap: 24px 16px;
    grid-template-columns: repeat(auto-fill, 163px);
  }
}

.c-pucrchace__item {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  font-weight: 700;
  width: 250px;
  padding: 4px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .c-pucrchace__item {
    width: 163px;
    padding: 4px 8px;
  }
}

.c-pucrchace__name {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.c-pucrchace__name small {
  display: block;
  font-size: 65%;
}

.c-pucrchace__price {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-top: 1px solid var(--navy);
  padding-top: 12px;
}
@media screen and (max-width: 576px) {
  .c-pucrchace__price {
    padding-top: 8px;
  }
}

.c-pucrchace__price .anton {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0;
  padding: 0 4px;
  margin-right: 3px;
}

.c-pucrchace__item.up .c-pucrchace__price .anton, .anton.c-yellowBack {
  background-color: var(--yellow);
}

.anton.c-yellowBack {
  font-weight: 600;
}

.up .c-pucrchace__price {
  position: relative;
}

.up .c-pucrchace__price::after {
  content: "";
  position: absolute;
  margin-left: 16px;
  width: 46px;
  height: 35px;
  background: center/contain no-repeat url(../images/common/icon_up.svg);
}
@media screen and (max-width: 768px) {
  .up .c-pucrchace__price::after {
    top: 5px;
  }
}
@media screen and (max-width: 576px) {
  .up .c-pucrchace__price::after {
    width: 34.6px;
    height: 23.6px;
    top: auto;
  }
}

.c-under__mv {
  background-image: url(/images/news/mv_news.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .c-under__mv {
    height: 277px;
  }
}
.c-under__mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: rgba(4, 46, 131, 0.8);
}
@media screen and (max-width: 576px) {
  .c-under__mv::before {
    height: 277px;
  }
}

.c-under__mv-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-under__mv-text {
  position: relative;
  color: var(--white);
  margin-inline: auto;
  width: fit-content;
}
@media screen and (max-width: 576px) {
  .c-under__mv-text {
    text-align: center;
  }
}

.c-under__mv-ttl {
  font-family: "Anton", sans-serif;
  font-size: 160px;
  font-size: clamp(6.4rem, 10vw, 16rem);
  line-height: 1;
}

.c-under__mv-sub {
  font-size: 40px;
  font-size: clamp(1.8rem, 2.5vw, 4rem);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}

.c-under__breadcrumb {
  padding: 16px 0 0 16px;
  max-width: 1200px;
  margin-inline: auto;
}

.c-under__breadcrumb-list {
  display: flex;
  gap: 20px;
}

.c-under__breadcrumb-item {
  font-size: 14px;
  position: relative;
}
.c-under__breadcrumb-item::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #999;
  border-top: 2px solid #999;
  transform: translateY(-50%) rotate(45deg);
}
.c-under__breadcrumb-item:last-of-type::after {
  content: none;
}

.c-under__breadcrumb-link {
  color: #828388;
}

.c-under__breadcrumb-text {
  color: var(--navy);
}

.c-under__heading {
  border-left: 10px solid var(--light-blue);
  color: var(--light-blue);
  font-size: clamp(4rem, 2.5vw, 4.8rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 24px;
  margin-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .c-under__heading {
    border-left: 6px solid var(--light-blue);
    padding-left: 12px;
    margin-bottom: 40px;
  }
}

.u-pc {
  display: block;
}
@media screen and (max-width: 576px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 576px) {
  .u-sp {
    display: block;
  }
}

.l-header {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), left/cover no-repeat url(../images/top/MV.png);
  width: 100vw;
  height: 100vh;
  color: var(--white);
  padding: 40px;
  position: fixed;
  z-index: 50;
  top: -120vh;
  transition: 0.4s;
  overflow-y: auto;
}
@media screen and (max-width: 1024px) {
  .l-header {
    background-position: center;
  }
}
@media screen and (max-width: 576px) {
  .l-header {
    top: -100vh;
  }
}

.l-header.open {
  top: 0;
}

.l-header__logo {
  max-width: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .l-header__logo {
    max-width: 80px;
  }
}

.l-header__company {
  font-weight: 700;
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 576px) {
  .l-header__company {
    font-size: 3.2rem;
  }
}

.l-header__nav {
  width: fit-content;
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
}
@media screen and (max-width: 576px) {
  .l-header__nav {
    gap: 8px;
    margin: 40px auto;
  }
}

.l-header__nav-item {
  font-size: 3.2rem;
}
@media screen and (max-width: 576px) {
  .l-header__nav-item {
    font-size: 1.8rem;
  }
}

.l-header__nav-item::before {
  content: "";
  background: center/contain no-repeat url(../images/common/icon_arrrow.svg);
  width: 34.6px;
  height: 20px;
  margin-right: 12px;
  display: inline-block;
}
@media screen and (max-width: 576px) {
  .l-header__nav-item::before {
    width: 22.53px;
    height: 13px;
  }
}

@media screen and (max-width: 576px) {
  .l-header .c-Ybtn__contact {
    font-size: 1.38rem;
    padding: 6px 28px;
  }
}

@media screen and (max-width: 576px) {
  .l-header .c-Ybtn__contact::before {
    width: 26px;
    height: 19px;
    margin: 3px 8px 0 0;
  }
}

.l-header__menu {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  color: var(--light-blue);
  position: fixed;
  top: 40px;
  right: 13%;
  width: 55px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  z-index: 100;
}
@media screen and (max-width: 576px) {
  .l-header__menu {
    font-size: 1rem;
    width: 35px;
    top: 24px;
    right: 16px;
  }
}

.l-header__menu span {
  display: block;
  height: 8px;
  width: 100%;
  background-color: var(--light-blue);
  margin: 8px 0;
  transition: 0.4s;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  transform-origin: center;
}
@media screen and (max-width: 576px) {
  .l-header__menu span {
    height: 5px;
    margin: 5px 0;
  }
}

.l-header__menu span:last-of-type {
  margin-bottom: 0;
}

.l-header__menu.open span:nth-of-type(1) {
  transform: translateY(16px) rotate(30deg);
  box-shadow: none;
  transform-origin: center;
}
@media screen and (max-width: 576px) {
  .l-header__menu.open span:nth-of-type(1) {
    transform: translateY(10px) rotate(30deg);
  }
}

.l-header__menu.open span:nth-of-type(2) {
  opacity: 0;
}

.l-header__menu.open span:nth-of-type(3) {
  transform: translateY(-16px) rotate(-30deg);
  box-shadow: none;
  transform-origin: center;
}
@media screen and (max-width: 576px) {
  .l-header__menu.open span:nth-of-type(3) {
    transform: translateY(-10px) rotate(-30deg);
  }
}

.l-footer {
  width: 100%;
  background-color: var(--black_33);
  margin-top: 160px;
  color: var(--white);
}
@media screen and (max-width: 576px) {
  .l-footer {
    margin-top: 80px;
  }
}

.l-footer__container {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 40px 0;
}
@media screen and (max-width: 1280px) {
  .l-footer__container {
    flex-direction: column;
    padding: 40px 16px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .l-footer__container {
    gap: 24px;
    padding: 40px 16px;
  }
}

.l-footer__1stBox {
  display: flex;
  flex-direction: column;
  gap: 56px 16px;
}
@media screen and (max-width: 1280px) {
  .l-footer__1stBox {
    flex-direction: row;
  }
}
@media screen and (max-width: 576px) {
  .l-footer__1stBox {
    flex-direction: column;
  }
}

.l-footer_adress-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.l-footer__map {
  max-width: 100%;
  width: 400px;
  height: 247px;
}
@media screen and (max-width: 1280px) {
  .l-footer__map {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .l-footer__map {
    height: 150px;
  }
}

.l-footer .c-Ybtn__contact {
  font-size: clamp(1.38rem, 2.5vw, 2.4rem);
  padding: 6px 28px;
  margin: 24px 0;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .l-footer .c-Ybtn__contact {
    padding: 0px 28px;
  }
}

.l-footer .c-Ybtn__contact::before {
  width: 23.75px;
}
@media screen and (max-width: 576px) {
  .l-footer .c-Ybtn__contact::before {
    width: 26px;
  }
}

.l-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  font-size: 1.6em;
  font-weight: 500;
}

.l-footer__nav-item::before {
  content: "";
  background: center/contain no-repeat url(../images/common/icon_arrrow.svg);
  width: 17.33px;
  height: 10px;
  margin-right: 8px;
  display: inline-block;
}

.l-footer__company-info {
  line-height: 1.6;
  flex: 1;
}

.l-footer__dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: -7px;
}
@media screen and (max-width: 768px) {
  .l-footer__dl {
    flex-direction: column;
    gap: 0px;
    padding-top: 16px;
  }
}
@media screen and (max-width: 576px) {
  .l-footer__dl {
    flex-direction: row;
    padding: 4px;
    gap: 8px;
  }
}

.l-footer__company {
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  margin-bottom: 12px;
}

.l-footer__company-sub {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.l-footer__company-sub span {
  font-size: clamp(1.4rem, 2vw, 2rem);
  padding-left: 4px;
  display: inline-block;
}

.l-footer__address {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.l-footer__tell {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  align-items: start;
  flex-direction: column;
  gap: 0;
  line-height: 1.25;
  margin-bottom: 12px;
}

.l-footer__tell-label span {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-left: -8px;
}

.l-footer__tell a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
  padding-left: 8px;
}
@media screen and (max-width: 1024px) {
  .l-footer__tell a {
    pointer-events: auto;
    cursor: pointer;
  }
}

.l-footer__tellNum {
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  color: var(--yellow);
}

.l-footer__contactInfo .l-footer__dl {
  margin-bottom: 8px;
}
.l-footer__contactInfo .l-footer__dl:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .l-footer__contactInfo .l-footer__dl {
    margin-bottom: 0;
  }
}

.l-footer__fax {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.l-footer__mail {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.l-footer__copyright {
  font-size: 1.2rem;
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 4px;
}

.l-footer__totop {
  position: fixed;
  bottom: 25px;
  right: 13%;
  width: 60px;
  height: 60px;
  z-index: 40;
  background-color: var(--light-blue);
  color: var(--white);
  font-size: 12px;
  padding: 6px 11px;
}
@media screen and (max-width: 1024px) {
  .l-footer__totop {
    right: 16px;
  }
}

.l-footer__totop--icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 22px solid var(--white);
  border-top: 0;
  display: block;
  margin-inline: auto;
  margin-top: 6px;
}

.p-top__Ybtn {
  margin-top: 40px;
}

.p-top__tt01-en {
  font-family: "Anton", sans-serif;
  font-size: clamp(5.6rem, 10vw, 16rem);
  line-height: 1;
}

.p-top__ttl01_sub {
  font-size: clamp(1.8rem, 2.5vw, 4rem);
  font-weight: 700;
}

.p-top__MV-conatiner {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), center/cover no-repeat url(../images/top/MV.png);
  max-width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .p-top__MV-conatiner {
    display: none;
  }
}

.p-top__MV-conatiner--sp {
  display: none;
}
@media screen and (max-width: 576px) {
  .p-top__MV-conatiner--sp {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), center/cover no-repeat url(../images/top/MV.png);
    max-width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.p-top__MV-inner--sp {
  display: flex;
  margin-bottom: -26px;
}

.p-top__MV-heading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.p-top__MV-heading::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  bottom: -30px;
  left: -30px;
  background: var(--white);
  filter: blur(20px);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.9;
}
@media screen and (max-width: 576px) {
  .p-top__MV-heading::before {
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
  }
}

.p-top__MV-logo {
  max-width: 150px;
}
@media screen and (max-width: 576px) {
  .p-top__MV-logo {
    max-width: 60px;
  }
}

.p-top__MV-headingText {
  font-size: 7.2rem;
  letter-spacing: 0.1em;
  color: #008BCE;
  font-weight: 700;
  text-align: center;
  max-width: 643px;
}
@media screen and (max-width: 768px) {
  .p-top__MV-headingText {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 576px) {
  .p-top__MV-headingText {
    font-size: 3.2rem;
  }
}

.p-top__MV-headingSub {
  font-size: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top__MV-headingSub {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 576px) {
  .p-top__MV-headingSub {
    font-size: 2.4rem;
  }
}

.p-top__pucrchace {
  background: linear-gradient(rgba(4, 34, 131, 0.8), rgba(4, 34, 131, 0.8)), center/cover no-repeat url(../images/top/bgPurchace.png);
  max-width: 100%;
  height: auto;
  padding: 40px 0 80px;
}

.p-top__pucrchace-heading {
  color: var(--white);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 24px;
}

.p-top__purchace-ttl {
  font-weight: 700;
  font-size: clamp(4rem, 2.5vw, 4.8rem);
  letter-spacing: 0.1em;
}

.p-top__purchace-day {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.p-top__ttl-slash {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(6.72rem, 10vw, 19.2rem);
}

.p-top__scrap-wrapper {
  position: relative;
  overflow: hidden;
  height: 1589px;
}
@media screen and (max-width: 768px) {
  .p-top__scrap-wrapper {
    height: 1407px;
  }
}
@media screen and (max-width: 576px) {
  .p-top__scrap-wrapper {
    height: 1330px;
  }
}

.p-top__scrap-wrapper:after {
  content: "";
  position: absolute;
  width: 120vw;
  height: 67%;
  background: linear-gradient(rgba(0, 163, 213, 0.53), rgba(0, 163, 213, 0.53)), center/cover no-repeat url(../images/top/bgScrap.jpeg);
  z-index: -1;
  top: 440px;
  left: -10vw;
  transform: rotate(-5deg);
}
@media screen and (max-width: 768px) {
  .p-top__scrap-wrapper:after {
    height: 1102px;
    top: 270px;
  }
}
@media screen and (max-width: 576px) {
  .p-top__scrap-wrapper:after {
    height: 1102px;
    width: 100%;
    left: 0;
    transform: rotate(0deg);
    top: 227px;
  }
}

.p-top__scrap-inner {
  margin-top: 104px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px 40px;
}
@media screen and (max-width: 576px) {
  .p-top__scrap-inner {
    gap: 24px 0;
    justify-content: space-around;
    margin-top: 40px;
  }
}

@media screen and (max-width: 576px) {
  .p-top__scrap-img {
    height: 224px;
  }
}

.p-top__scrap-card {
  max-width: 410px;
  height: 460px;
  background-color: var(--white);
  padding-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  .p-top__scrap-card {
    max-width: 340px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top__scrap-card {
    max-width: 252px;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  .p-top__scrap-card {
    max-width: 157px;
    height: auto;
  }
}

.p-top__scrap-top {
  display: flex;
  flex-direction: column;
  flex-flow: column-reverse;
}

.p-top__scrap-bottom {
  padding: 8px 8px 14px;
}

.p-top__scrap-ttl {
  font-weight: 700;
  font-size: clamp(2.6rem, 2.5vw, 4rem);
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--navy);
}

.p-top__scrap-top {
  margin-bottom: 16px;
}

.p-top__scrap-text {
  font-weight: 500;
  font-size: 1.65rem;
  height: 91px;
}
@media screen and (max-width: 576px) {
  .p-top__scrap-text {
    height: auto;
    margin-bottom: 14px;
  }
}

.p-top__scrap-btn {
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 576px) {
  .p-top__scrap-btn .c-Bbtn {
    padding: 4px 14px;
  }
}

.p-top__scrap-cardShift {
  position: relative;
  bottom: 30px;
}
@media screen and (max-width: 576px) {
  .p-top__scrap-cardShift {
    position: static;
    bottom: 0;
  }
}

.p-top__ttl-right {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .p-top__ttl-right {
    order: 1;
  }
}
@media screen and (max-width: 576px) {
  .p-top__ttl-right {
    order: 1;
  }
}

.p-top__ttl-white {
  color: var(--white);
}

.p-top__company-wrapper .p-top__textBox {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 27px 24px 0;
}
@media screen and (max-width: 1280px) {
  .p-top__company-wrapper .p-top__textBox {
    padding-bottom: 27px;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__company-wrapper .p-top__textBox {
    order: 3;
  }
}
@media screen and (max-width: 576px) {
  .p-top__company-wrapper .p-top__textBox {
    padding: 24px 16px 0;
    font-size: 1.6rem;
    order: 3;
  }
}

.p-top__company-container {
  max-width: 1560px;
  background: var(--navy);
  margin-left: auto;
}

.p-top__company-inner {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 40px 16px;
}
@media screen and (max-width: 1280px) {
  .p-top__company-inner {
    align-items: end;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__company-inner {
    flex-direction: column;
  }
}

.p-top__comapany-flexBlock {
  max-width: 576px;
}
@media screen and (max-width: 1024px) {
  .p-top__comapany-flexBlock {
    display: contents;
  }
}

.p-top__company-btn {
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .p-top__company-btn {
    width: 100%;
    margin-top: 40px;
    order: 4;
  }
}

.p-top__comapany-img {
  max-width: 565px;
}
@media screen and (max-width: 1280px) {
  .p-top__comapany-img {
    max-width: 40%;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-top__comapany-img {
    max-width: fit-content;
    order: 2;
  }
}
@media screen and (max-width: 576px) {
  .p-top__comapany-img {
    max-width: 400px;
    margin-top: 40px;
    order: 2;
  }
}

.p-top__sdgs-wrapper {
  position: relative;
  height: 695px;
  margin-top: 215px;
}
@media screen and (max-width: 576px) {
  .p-top__sdgs-wrapper {
    margin-top: 0px;
  }
}

.p-top__sdgs-wrapper::after {
  content: "";
  position: absolute;
  width: 120vw;
  height: 695px;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), 0 47%/cover no-repeat url(../images/top/bgSDGs.jpg);
  z-index: -1;
  top: 0;
  left: -8vw;
  transform: rotate(-5deg);
}
@media screen and (max-width: 576px) {
  .p-top__sdgs-wrapper::after {
    transform: rotate(0deg);
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), 0 47%/cover no-repeat url(../images/top/bgSDGs-sp.png);
  }
}

@media screen and (max-width: 1280px) {
  .p-top__ttl-sdgs {
    order: 1;
  }
}

.p-top__sdgs-container {
  max-width: 100%;
  height: auto;
}

.p-top__sdgs-container .c-Ybtn {
  padding: 8px 75.5px;
}

.p-top__sdgs-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .p-top__sdgs-inner {
    align-items: end;
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .p-top__sdgs-inner {
    padding: 40px 0;
    flex-direction: column;
    align-items: flex-end;
  }
}

.p-top__ttl-shadow {
  text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.4);
}

.p-top__sdgs-flexBox {
  max-width: 670px;
}
@media screen and (max-width: 1280px) {
  .p-top__sdgs-flexBox {
    max-width: 50%;
    display: contents;
  }
}
@media screen and (max-width: 576px) {
  .p-top__sdgs-flexBox {
    display: contents;
  }
}

.p-top__sdgs-textBox {
  font-weight: 900;
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  line-height: 160%;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .p-top__sdgs-textBox {
    letter-spacing: 0.075em;
    order: 2;
  }
}

.p-top__sdgs-img {
  max-width: 348px;
}
@media screen and (max-width: 1280px) {
  .p-top__sdgs-img {
    margin: 40px auto 0;
    width: 100%;
    order: 3;
  }
}

@media screen and (max-width: 576px) {
  .p-top__sdgs-img img {
    width: 169px;
    display: block;
    margin: 40px auto 0;
  }
}

@media screen and (max-width: 1280px) {
  .p-top__sdgs-btn {
    margin: 24px auto 0;
    order: 4;
  }
}

.p-top__news-list {
  max-width: 1100px;
  margin: 40px auto;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 24px 34px;
  border-top: 1px solid var(--light-blue);
  border-bottom: 1px solid var(--light-blue);
}
@media screen and (max-width: 576px) {
  .p-top__news-list {
    padding: 24px 0;
  }
}

.p-top__news-list .p-news__item:last-child {
  margin-bottom: 0px;
}

.p-top__news-btn {
  margin: 0 auto;
}

.p-news__main {
  font-weight: 500;
}

.p-news__list {
  border-top: 1px solid var(--light-blue);
  border-bottom: 1px solid var(--light-blue);
  padding: 24px 34px;
}
@media screen and (max-width: 576px) {
  .p-news__list {
    padding-inline: 0;
  }
}

.p-news__item {
  font-size: 16px;
  display: flex;
  gap: 16px;
  padding: 0 8px 8px 8px;
  margin-bottom: 14px;
  border-bottom: 1px solid #B9B9B9;
}
@media screen and (max-width: 576px) {
  .p-news__item {
    flex-direction: column;
    gap: 0;
  }
}

/* pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.pagination {
  display: flex;
  gap: 8px;
}

.pagination .dots {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-blue);
  line-height: 1.8;
}

/* スライディングウィンドウ表示の制御 */
.pagination.is-windowed .page {
  display: none;
}

.pagination.is-windowed .page.show,
.pagination.is-windowed .page:last-child,
.pagination.is-windowed .page.page-ellipsis {
  display: inline-flex;
}

.pagination .page a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  border: 1px solid var(--light-blue);
  color: var(--light-blue);
  background: transparent;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}

.pagination .page.navi-active a,
.pagination .page.active a {
  background: var(--light-blue);
  color: var(--white);
  border-color: var(--light-blue);
}

.pagination .page a:hover {
  opacity: 0.8;
}

.p-sdgs__main {
  font-weight: 500;
  line-height: 1.6;
}

.p-sdgs__mv {
  background-image: url(../images/sdgs/mv_sdgs.jpg);
  background-position: center;
}
.p-sdgs__mv::before {
  background-color: rgba(255, 255, 255, 0.2);
}

.p-sdgs__partner--wrapper {
  max-width: 1100px;
}

.p-sdgs__partner--content {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 576px) {
  .p-sdgs__partner--content {
    flex-direction: column;
  }
}

.p-sdgs__partner--text {
  font-size: 2.4rem;
}
@media screen and (max-width: 576px) {
  .p-sdgs__partner--text {
    font-size: 1.8rem;
  }
}

.p-sdgs__partner--heading {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.6em;
  margin-inline: auto;
  margin-top: 40px;
  width: fit-content;
}
@media screen and (max-width: 576px) {
  .p-sdgs__partner--heading {
    margin: 24px auto 0 0;
  }
}
.p-sdgs__partner--heading-inner {
  background-color: var(--yellow);
  padding-inline: 4px;
}

.p-sdgs__declaration--wrapper {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
@media screen and (max-width: 576px) {
  .p-sdgs__declaration--wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.p-sdgs__declaration--text {
  font-size: 2.4rem;
}
@media screen and (max-width: 576px) {
  .p-sdgs__declaration--text {
    font-size: 1.8rem;
  }
}

.p-sdgs__declaration--list {
  background-color: #F0FFE9;
  border-radius: 10px;
  padding: 24px;
  width: 100%;
  max-width: 384px;
  margin-top: 24px;
}
@media screen and (max-width: 576px) {
  .p-sdgs__declaration--list {
    padding: 16px;
  }
}

.p-sdgs__declaration--item {
  font-size: 1.4rem;
  margin-top: 16px;
  position: relative;
  padding-left: 28px;
}
.p-sdgs__declaration--item:first-of-type {
  margin-top: 0;
}
.p-sdgs__declaration--item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/sdgs/check.png);
  background-size: contain;
  position: absolute;
  left: 0;
}

.p-sdgs__detail--item {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 576px) {
  .p-sdgs__detail--item {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
  }
}
.p-sdgs__detail--item::first-of-type {
  margin-top: 0;
}

.p-sdgs__detail--content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 576px) {
  .p-sdgs__detail--content {
    gap: 40px;
  }
}

.p-sdgs__detail--heading {
  font-size: 3.2rem;
  font-weight: bold;
}
.p-sdgs__detail--heading.--01 {
  color: #FABD00;
}
.p-sdgs__detail--heading.--02 {
  color: #970A31;
}
.p-sdgs__detail--heading.--03 {
  color: #DC097B;
}
.p-sdgs__detail--heading.--04 {
  color: #407936;
}
.p-sdgs__detail--heading.--05 {
  color: #1E51A2;
}

.p-sdgs__detail--text {
  font-size: 1.8rem;
  margin-top: 16px;
  letter-spacing: 0.05em;
}
.p-sdgs__detail--text strong {
  color: var(--red);
}

.p-company__mv {
  background-image: url(../images/company/mv_company.jpg);
  background-position: center;
}

.p-company__overview--table {
  max-width: 1000px;
  font-weight: 500;
}

.p-company__overview--table--item {
  display: flex;
}
@media screen and (max-width: 576px) {
  .p-company__overview--table--item {
    flex-direction: column;
  }
}

.p-company__overview--table--head {
  color: var(--white);
  font-size: 1.8rem;
  background-color: var(--light-blue);
  border-bottom: 1px solid var(--white);
  text-align: center;
  padding: 8px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .p-company__overview--table--head {
    font-size: 14px;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
  }
}

.p-company__overview--table--text {
  font-size: 1.8rem;
  border-bottom: 1px solid var(--light-blue);
  padding: 8px;
  width: 80%;
}
@media screen and (max-width: 576px) {
  .p-company__overview--table--text {
    font-size: 14px;
    width: 100%;
    border-bottom: none;
  }
}

.p-company__tell a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 1024px) {
  .p-company__tell a {
    pointer-events: auto;
    cursor: pointer;
  }
}

.p-company__overview--comment {
  margin-top: 80px;
  background-color: var(--light-blue);
  padding: 24px 28px;
}
@media screen and (max-width: 1024px) {
  .p-company__overview--comment {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (max-width: 576px) {
  .p-company__overview--comment {
    padding: 24px;
  }
}

.p-company__overview--comment--heading {
  color: var(--white);
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-company__overview--comment--heading {
    font-size: 24px;
  }
}

.p-company__overview--comment--wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .p-company__overview--comment--wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 576px) {
  .p-company__overview--comment--wrapper {
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.p-company__overview--comment--img:nth-of-type(1),
.p-company__overview--comment--img:nth-of-type(3) {
  margin-top: 32px;
}
@media screen and (max-width: 1024px) {
  .p-company__overview--comment--img:nth-of-type(1),
  .p-company__overview--comment--img:nth-of-type(3) {
    margin: 0;
  }
}

.p-company__overview--comment--img:nth-of-type(2),
.p-company__overview--comment--img:nth-of-type(4) {
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .p-company__overview--comment--img:nth-of-type(2),
  .p-company__overview--comment--img:nth-of-type(4) {
    margin: 0;
  }
}

.p-company__overview--comment--img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .p-company__overview--comment--img {
    margin: 0;
  }
}

.p-company__access--box {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.p-company__access--wrapper {
  width: 500px;
}
@media screen and (max-width: 1024px) {
  .p-company__access--wrapper {
    width: 100%;
  }
}

.p-company__access--ttl {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1.6;
  padding-bottom: 8px;
}

.p-company__access--map {
  position: relative;
  width: 100%;
  height: 340px;
  padding-top: 41.4%;
  aspect-ratio: 500/340;
}
@media screen and (max-width: 576px) {
  .p-company__access--map {
    height: 225px;
    padding-top: 0;
  }
}

.p-company__access--map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p-company__access--link {
  margin: 0 0 0 auto;
  display: block;
  width: fit-content;
  text-decoration: underline;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
}

.p-purchase__mv {
  background-image: url(../images/purchase/mv_purchase.jpg);
  background-position: center;
}

.p-purchase__mv--title {
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .p-purchase__mv--title {
    white-space: normal;
  }
}

.p-purchase__chart--title {
  margin-bottom: 32px;
}

.p-purchase__chart--heading {
  margin-bottom: 0;
}

.p-purchase__chart--day {
  font-size: 18px;
  font-weight: bold;
  padding-left: 20px;
}
@media screen and (max-width: 576px) {
  .p-purchase__chart--day {
    padding-left: 8px;
  }
}

.p-purchase__chart--icon {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.p-purchase__chart--icon-text {
  font-size: 40px;
  font-weight: bold;
  color: var(--red);
}
@media screen and (max-width: 576px) {
  .p-purchase__chart--icon-text {
    font-size: 32px;
  }
}

.p-purchase__chart--list {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 576px) {
  .p-purchase__chart--list {
    margin-top: 40px;
    margin-inline: calc(50% - 50vw);
  }
}

.p-purchase__chart--item {
  background-image: url(../images/purchase/bg_01.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: -1;
}
.p-purchase__chart--item.--01 {
  background-image: url(../images/purchase/bg_01.jpg);
}
.p-purchase__chart--item.--02 {
  background-image: url(../images/purchase/bg_02.jpg);
}
.p-purchase__chart--item.--03 {
  background-image: url(../images/purchase/bg_03.png);
  background-position-y: -64px;
}
.p-purchase__chart--item.--04 {
  background-image: url(../images/purchase/bg_04.jpg);
}
.p-purchase__chart--item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.p-purchase__chart--lead--wrapper {
  padding-block: 16px 40px;
}
@media screen and (max-width: 576px) {
  .p-purchase__chart--lead--wrapper {
    padding-block: 16px 24px;
  }
}

.p-purchase__chart--lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 64px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  border-bottom: 3px solid var(--white);
  width: fit-content;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (max-width: 576px) {
  .p-purchase__chart--lead {
    font-size: 32px;
  }
}

.p-purchase__chart--content {
  background-color: rgba(4, 34, 131, 0.6);
  padding-block: 40px;
}

.p-purchase__contact--wrapper {
  background-image: url(../images/purchase/bg_05.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .p-purchase__contact--wrapper {
    margin-inline: calc(50% - 50vw);
    width: auto;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
  }
}

.p-purchase__contact--content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 72px 32px;
  max-width: 675px;
  width: 70%;
}
@media screen and (max-width: 576px) {
  .p-purchase__contact--content {
    padding: 70px 16px;
    width: 100%;
  }
}

.p-purchase__contact--text--wrapper {
  color: var(--white);
  margin-bottom: 16px;
  font-family: "Zen Old Mincho", serif;
}

.p-purchase__contact--text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}

.p-purchase__contact--tel {
  font-size: 36px;
  font-weight: 500;
  display: block;
  margin-top: 8px;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 1024px) {
  .p-purchase__contact--tel {
    pointer-events: auto;
    cursor: pointer;
  }
}

.p-purchase__contact--tel-small {
  font-size: 24px;
}

.p-purchase__contact--btn {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 576px) {
  .p-purchase__contact--btn {
    margin-inline: auto;
    padding-block: 8px;
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */