@charset "utf-8";

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: serif;
  color: #60412B;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
}

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

.w-container {
  max-width: 1200px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  margin-bottom: 1.2em;
  text-align: center;
}

header {
  height: 80px;
  background-color: #dde2dd;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header_inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_inner ul {
  display: flex;
  gap: 32px;
}

.main-visual {
  height: calc(100dvh - 80px);
  background-image: url(../images/main-visual.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 80px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.main-visual_text {
  text-align: center;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.68);
  font-size: 24px;
  letter-spacing: 0.2em;
  grid-column: 2 / 6;
  grid-row: 1 / 3;
}

.main-visual_text h1 {
  font-size: 36px;
}

.main-visual img {
  grid-column: 1 / 2;
  grid-row: 6 / 7;
}

#about {
  background-color: #DDE2E3;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about_inner {
  display: flex;
  gap: 32px;
}

.about_text {
  line-height: 1.7;
  color: #60412B;
}

.about_inner figure {
  flex: 0 0 45%;
}

.about_inner img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

#price {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(../images/yoga-lesson.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.price_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.price_items dl {
  background-color: #fff;
  text-align: center;
}

.price_items dt {
  background-color: #B37C57;
  padding: 1em;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.price_items dd {
  padding: 1em;
  font-size: 18px;
}

.price {
  margin-top: 2em;
}

.price span {
  font-size: 2em;
  padding-right: 0.2em;
  padding-left: 0.2em;
}

#access-contact {
  background-color: #9AACB8;
  padding-top: 80px;
  padding-bottom: 80px;
}

.access_inner {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}

.access_text {
  flex: 1;
  text-align: center;
}

.access_text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1em;
}

.access_text a {
  display: inline-block;
  background-color: #3c455c;
  color: #fff;
  padding: 0.8em 2em;
  margin-top: 1.8em;
  border-radius: 20px;
}

.access_map {
  flex: 1;
}

footer {
  background-color: #dde2e3;
  padding: 1em;
  text-align: center;
}