/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 5rem;

  /*========== Colors ==========*/
  --komeya-blue: #203B8F;
  --komeya-red: #C40032;
  --komeya-green: #5EA58A;
  --komeya-cyan: #29ABE2;
  --komeya-orange: #E67D75;
  --white-color: #fff;
  --text-color: #333;
  --middle-gray: #999;
  --light-gray: #bfbfbf;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Noto Sans JP", sans-serif;
  --biggest-font-size: clamp(2.1rem, 1.409rem + 3.45vw, 4rem);
  --h1-font-size: clamp(1.5rem, 0.5rem + 5vw, 2.5rem);
  --h2-font-size: clamp(1rem, 0.25rem + 3.75vw, 1.75rem);
  --normal-font-size: clamp(0.7rem, 0.2rem + 2.5vw, 1.2rem);
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-normal: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 800;

  /*========== z index ==========*/
  --z-fixed: 100;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-feature-settings: "palt";
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  outline: none;
  border: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.grid {
  display: grid;
  grid-template-columns: 0.5rem 1fr 0.5rem;
}

.container {
  max-width: 640px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

@media screen and (min-width: 641px) {
  .container {
    margin: 0 auto;
  }
}

.section {
  padding: 1rem 0 1rem;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
}

.nav__logo img {
  width: 370px;
}

.nav__link {
  font-size: var(--body-font);
  color: var(-komeya-blue);
  font-weight: var(--font-semi-bold);
  text-decoration: underline;
}

.nav__toggle {
  font-size: var(--h2-font-size);
}

/*=============== SHOP AREA ===============*/
.hero {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 640px;
  margin: 3rem auto 1rem;
}

.hero_main {
  max-width: 100%;
  object-fit: contain;
}

.shop {
  grid-column: 1/-1;
  max-width: 640px;
  margin: 120px auto 30px auto;
}

.shop h1 {
  color: var(--komeya-blue);
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  text-align: center;
}

.shop h2 {
  color: var(--text-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  text-align: center;
}

.date {
  margin-top: 0.75rem;
  display: flex;
  column-gap: 1rem;
  justify-content: center;
  align-items: center;
}


.kouza {
  font-weight: var(--font-semi-bold);
  font-size: var(--h2-font-size);
  color: var(--komeya-red);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: -0.5rem;
}


/*=============== SHOP INFO ===============*/
.shop__button {
  margin-top: -2.5rem;
  grid-column: 2/-2;
  display: flex;
  justify-content: center;
}

.button {
  display: inline-block;
  background-color: var(--komeya-red);
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding: 0.8rem 1.8rem;
  border-radius: 1rem;
  font-size: var(--h2-font-size);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}

.button__service {
  display: inline-block;
  background-color: var(--komeya-green);
  margin-top: 5rem;
  margin-bottom: 2rem;
  margin: 2rem 0.3rem 2rem 0.3rem;
  padding: 0.3rem 0.5rem;
  font-size: var(--normal-font-size);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}

.button__cyan {
  background-color: var(--komeya-cyan);
}

.button__orange {
  background-color: var(--komeya-orange);
}

.shop__info-up {
  grid-column: 2/-2;
  text-align: left;
  margin-top: -1rem;

}

.shop__info {
  grid-column: 2/-2;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.shop__info h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
}


/*=============== MAP ===============*/
.map-area {
  grid-column: 1/-1;
  margin: 0.25rem auto 0;
  max-width: 640px;
}

.map-area iframe {
  width: 100%;
  height: 400px;
}

.shop__button__under {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/*===============FOOTER ===============*/
.footer {
  background-color: var(--komeya-blue);
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer p {
  color: var(--white-color);
  font-weight: var(--font-normal);
  font-size: var(--smaller-font-size);
}