@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("cssreset.css");

html {
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
  color: #000000;
}
* {
  box-sizing: border-box;
}
a:link {
  color: #000000;
  text-decoration: none;
}
a:visited {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #000000;
  text-decoration: underline;
}
a:active {
  color: #000000;
  text-decoration: underline;
}

.btn {
  padding: 5px 15px;
  border-radius: 5px;
  background-color: #ebebeb;
  color: #000000;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  margin: 0 5px;
}
.btn:active {
  transform: scale(0.85);
}

.pc {
  display: block;
}
.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*--- wrapper ---*/

#wrapper {
  width: 100%;
  margin: 0 auto;
  font-size: 1.7rem;
}
#wrapper img {
  width: 100%;
  height: auto;
}
#wrapper p {
  margin-bottom: 1rem;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.2;
}
h2 span {
  font-weight: 500;
}

section {
  width: 100%;
}
section .inner {
  margin: 0 auto;
}

.intro {
  font-size: 2rem;
  color: #0c2a46;
  line-height: 1.6;
  margin-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1000px + 6%);
  padding: 0 3%;
}

@media only screen and (max-width: 1080px) {
  h2 {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  #wrapper {
    font-size: 3.54vw;
  }
  .intro {
    font-size: 4.0vw;
    margin-bottom: 7.8vw;
  }

  h1 span {
    font-size: 4.16vw;
  }
  h2 {
    font-size: 7.8vw;
  }
  h2 span {
    font-size: 6.2vw;
  }
}

/*--- header ---*/

header {
  width: 100%;
  background-color: #003768;
}
header .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  height: 90px;
}
header .inner .transe {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .inner .logo {
  display: block;
  width: 158px;
}
header .inner .logo a {
  display: block;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding-top: 25.3%;
  height: 0;
}
header .inner .company {
  color: #ffffff;
  font-size: 1.3rem;
}
header .inner .g-nav {
  transform: translateX(300px);
}
header .inner .g-nav a {
  color: #ffffff;
  font-size: 1.7rem;
  position: relative;
}
header .inner .g-nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  font-size: 1.1rem;
  padding-right: 3px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ffa500;
}
header .inner .g-nav a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 1080px) {
  header .inner {
    height: 11.7vw;
  }
}
@media only screen and (max-width: 767px) {

  header .inner .company {
    font-size: 2.0vw;
  }
  header .inner .g-nav {
    transform: translateX(50%);
  } 
  header .inner .logo {
    width: 20.5vw;
  }
}

/*--- kv ---*/

section#kv .inner {
  max-width: 1400px;
  margin-bottom: 6rem;
}
section#kv .inner h1 {
  background-image: url("../images/kv.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 0;
  padding-top: 35.7%;
  text-indent: -999px;
  position: relative;
}
section#kv .inner h1 span {
  position: absolute;
  bottom: 10px;
  left: 0;
  text-indent: 0;
  font-size: 2.4rem;
  color: #ffffff;
  line-height: 1.4;
  white-space: nowrap; 
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 1400px) {
  section#kv .inner h1 span {
    bottom: 0.7vw;
    font-size: 1.7vw;
  }
}
@media only screen and (max-width: 767px) {
  section#kv .inner {
    margin-bottom: 7.8vw;
  }
  
}
/*--- products ---*/

section#products {
  margin-bottom: 6rem;
}

section#products .navicat {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

section#products .navicat-block {
  width: 100%;
  max-width: 1400px;
  border-top: 1px solid #013668;
  margin-left: auto;
  margin-right: auto;
}

section#products .navicat-block:last-child {
  border-bottom: 1px solid #013668;
}
section#products .navicat-block .inner {
  max-width: calc(1000px + 6%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 4rem 3%;
}
section#products .navicat-block .image {
  max-width: 127px;
}
section#products .navicat-block .image.large {
  max-width: 180px;
}
section#products .navicat-block .text {
  font-size: 1.6rem;
  line-height: 1.4;
  flex: 1;
}
section#products .navicat-block .text p {
  color: #013668;
}
section#products .navicat-block .text:has(p) h2 {
  margin-bottom: 3rem;
}
section#products .navicat-block .order {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
}
section#products .navicat-block .order .price-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  color: #013668;
  margin-bottom: 2.8rem;
}
section#products .navicat-block .order .price-list p {
  width: 24rem;
  font-size: 2rem;
}
section#products .navicat-block .order .price-list dl div {
  display: flex;
  justify-content: end;
  gap: 20px;
  font-size: 1.6rem;
}
section#products .navicat-block .order .price-list dl dd span {
  font-size: 2rem;
}
section#products .navicat-block .buttons {
  display: inline-flex;
  justify-content: center;
  gap: 20px;
}
section#products .navicat-block .order .buttons .button {
  width: 184px;
  margin: 0;
  transition: transform 0.3s ease;
}
section#products .navicat-block .order .buttons .button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  font-size: 2rem;
  line-height: 1.4;
  text-indent: 0.3rem;
  border: 1px solid #013668;
  background-color: #013668;
  color: #ffffff;
  border-radius: 30px;
}
section#products .navicat-block .buttons .button:last-child a {
  background-color: #fff;
  color: #013668;
}
section#products .navicat-block .buttons .button:hover {
  transform: scale(1.05);
}

section#products .navicat-block .buttons .button a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 1080px) {
  section#products .navicat-block .buttons {
    display: block;
  }
  section#products .navicat-block .buttons .button a {
    margin-bottom: 1rem;
  }
  section#products .navicat-block .order {
    align-self: center;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  section#products .navicat-block .inner {
    flex-direction: column;
  }
  section#products .navicat-block .text {
    font-size: 4.8vw;
  }
  section#products .navicat-block .text h2 {
    text-align: center;
  }

  section#products .navicat-block .image {
    max-width: 13vw;
  }
  section#products .navicat-block .image.large {
    max-width: 18vw;
  }
  section#products .navicat-block .buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
  section#products .navicat-block .order {
    width: 100%;
  }
  section#products .navicat-block .order .buttons .button a {
    font-size: 4.0vw;
  }
  section#products .navicat-block .order .price-list {
    justify-content: flex-start;
  }
  section#products .navicat-block .order .price-list p {
    width: 100%;
    text-align: center;
    font-size: 6vw;
  }
  section#products .navicat-block .order .price-list dl div {
    display: flex;
    justify-content: end;
    gap: 20px;
    font-size: 4.8vw;
  }
  section#products .navicat-block .order .price-list dl dd span {
    font-size: 4vw;
  }
}

/*--- order ---*/

section#order {
  margin-bottom: 6rem;
}
section#order .inner {
  max-width: calc(1000px + 6%);
  padding: 4rem 3%;
}
section#order h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}
section#order h2 span {
  font-size: 2.6rem;
  font-weight: 500;
}
section#order .navicat {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
}
section#order .navicat-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 15px;
  border-bottom: 2px dotted #b8b8b8;
}
section#order .navicat-block .select-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
section#order .navicat-block .select-product .image {
  max-width: 50px;
}
section#order .navicat-block .select-product .text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
section#order .navicat-block .select-product .select input[type="checkbox"] {
  transform: scale(1.5);
  margin: 5px;
}

section#order .select-option {
  margin-bottom: 2rem;
}

section#order .select-option dl {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  gap: 30px;
}

section#order .select-option dl div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
section#order .select-option dl div dt {
  margin-right: 3rem;
}
section#order .select-option dl dd select {
  max-width: 200px;
  padding: 3px;
  margin-bottom: 5px;
  color: #333333;
}

@media only screen and (max-width: 1080px) {
  section#order .select-option dl {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  section#order h2 {
    font-size: 6.5vw !important;
    margin-bottom: 2.0vw;
  }
  section#order h2 span {
    font-size: 7.1vw !important;
  }
  section#order .navicat-block .select-product {
    flex-direction: column;
  }
  section#order .navicat-block .select-product .image {
    max-width: 14vw;
  }
  section#order .navicat-block .select-product .text {
    flex-direction: column;
  }
  section#order .select-option dl {
    gap: 1.3vw;
    font-size: 4.0vw;
  }
  section#order .select-option dl div dt {
    width: 35vw;
    margin-right: 0;
  }
}

section#order .navicat-block .select-amount dl {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  gap: 20px;
}
section#order .navicat-block .select-amount dl div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
section#order .navicat-block .select-amount dl div dt {
  min-width: 7rem;
}
section#order .navicat-block .select-amount dl div dd {
  min-width: 17rem;
}
section#order .navicat-block .select-amount dl div:last-child dd {
  font-size: 2.3rem;
}
section#order .navicat-block .select-amount dl dd select {
  max-width: 200px;
  padding: 3px;
  margin-bottom: 5px;
  color: #333333;
}
@media only screen and (max-width: 1080px) {
  section#order .navicat-block .select-amount dl {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  section#order h2 {
    font-size: 4.1vw;
  }
  section#order .navicat-block {
    display: flex;
    flex-direction: column;
  }
  section#order .navicat-block .select-amount dl {
    font-size: 3.1vw;
    margin-bottom: 4.0vw;
  }
  section#order .navicat-block .select-amount dl div dt {
    min-width: auto;
    font-size: 4.0vw;
    width: 14vw;
  }
  section#order .navicat-block .select-amount dl div dd {
    min-width: auto;
    font-size: 4.0vw;
    width: 34vw;
  }
  section#order .navicat-block .select-amount dl div:last-child dd {
    font-size: 5.3vw;
  }
  section#order .navicat-block .select-product .text {
    flex-wrap: wrap;
  }
}

/*--- amount-block ---*/

.amount-block {
  display: block;
  margin: 30px auto 80px;
  font-size: 2.8rem;
  max-width: 500px;
}
.amount-block div {
  width: 100%;
  font-size: 2.5rem;
  text-align: center;
  padding-bottom: 10px;
}
.amount-block .final-total {
  font-weight: bold;
  border-top: 1px solid #000;
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  .amount-block {
    font-size: 5.3vw;
  }
}

/*--- button-block ---*/

.button-block {
  display: flex;
  margin: 30px auto 80px;
  justify-content: center;
  gap: 10px;
}
.button-block .btn {
  padding: 10px 20px;
  font-size: 1.5rem;
  letter-spacing: 0.8rem;
  text-indent: 0.8rem;
}

@media only screen and (max-width: 767px) {
  .amount-block {
    font-size: 5.8vw;
  }
  .amount-block div {
    font-size: 5.2vw;
  }

}

/*--- legal info ---*/

#article {
  max-width: calc(1000px + 6%);
  margin: 0 auto;
  padding: 4rem 3%;
}

#article h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: #013668;
}

.legal-info {
  max-width: 900px;
  margin: 0 auto;
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0e0e0;
  padding: 2rem 0;
  align-items: flex-start;
}

.legal-row:last-child {
  border-bottom: none;
}

.legal-label {
  font-weight: bold;
  color: #013668;
  min-width: 180px;
  padding-right: 2rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.legal-value {
  flex: 1;
  line-height: 1.8;
  color: #333333;
}

.legal-value a {
  color: #013668;
  text-decoration: underline;
}

.legal-value a:hover {
  color: #005a9e;
}

@media only screen and (max-width: 767px) {
  #article {
    padding: 4rem 3%;
  }

  #article h2 {
    font-size: 7.8vw;
    margin-bottom: 5vw;
  }

  .legal-row {
    flex-direction: column;
    padding: 3vw 0;
  }

  .legal-label {
    min-width: auto;
    width: 100%;
    padding-right: 0;
    margin-bottom: 2vw;
    font-size: 4.5vw;
  }

  .legal-value {
    width: 100%;
    font-size: 4.0vw;
    line-height: 1.8;
  }
}