/* ============================
    CSS Variables & Reset
============================ */
:root {
  --color-bg: #EDEDED;
  --color-title: #333;
  --color-text: #2B2B2B;
  --color-accent: #c8a96e;
  --color-border: #A0A0A0;
  --color-white: #fff;
  --nav-height: 64px;
  --font-main: "myriad-pro", sans-serif;
  --font-ttl: "Poppins", sans-serif;
  --font-sub: "Hiragino Kaku Gothic ProN";
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
  display: block;
}

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

/* ============================
    Header
============================ */
.header {
  position: relative;
  min-height: 620px;
  background: url(../img/header.webp) no-repeat top center/cover;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 960px;
  margin: 0 auto 146px;
  padding-top: 58px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header__bg {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
}
.header__bg.is-fixed .header__wrapper {
  margin-bottom: 0;
  padding-bottom: 14px;
}
.header__bg.is-scrolled {
  background: var(--color-white);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.header__bg.is-scrolled .header__logo a {
  color: var(--color-title);
}
.header__bg.is-scrolled .hamburger::before,
.header__bg.is-scrolled .hamburger::after,
.header__bg.is-scrolled .hamburger span {
  background: var(--color-title);
}
.header__bg.is-scrolled .header__wrapper {
  margin: 0 auto;
  padding-top: 14px;
}
.header__logo {
  color: var(--color-white);
  line-height: 0.83;
  font-size: 36px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .header__logo {
    font-size: 31.5px;
  }
}
.header .hamburger {
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}
.header .hamburger::before, .header .hamburger::after, .header .hamburger span {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  width: 32px;
  height: 1px;
  background: var(--color-white);
  -webkit-transition: opacity 0.25s ease, top 0.35s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: opacity 0.25s ease, top 0.35s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.25s ease, top 0.35s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.25s ease, top 0.35s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.header .hamburger::before {
  top: 9px;
}
.header .hamburger span {
  top: 17px;
}
.header .hamburger::after {
  top: 25px;
}
.header .hamburger.is-open::before {
  top: 17px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .hamburger.is-open span {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.header .hamburger.is-open::after {
  top: 17px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header .global-nav {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 999;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  list-style: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, height 0.4s ease;
  transition: opacity 0.4s ease, height 0.4s ease;
  padding: 0;
  text-align: center;
}
.header .global-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  height: calc(100% - 100px);
  padding: 20px 0;
  top: 100px;
}
.header .global-nav.is-closing {
  opacity: 0;
  height: 0;
}
.header .global-nav.nav-bg {
  height: calc(100% - 64px);
  top: 64px;
}
.header .global-nav a {
  line-height: 5;
  padding: 20px 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.header .site-ttl__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .site-ttl {
  color: var(--color-white);
  font-size: 120px;
  font-weight: 400;
  line-height: 0.83;
}
@media screen and (max-width: 767px) {
  .header .site-ttl {
    font-size: 105px;
  }
}
.header .site-ttl--sub {
  position: relative;
  color: var(--color-white);
  font-family: var(--font-sub);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .header .site-ttl--sub {
    font-size: 14px;
  }
}
.header .site-ttl--sub::before, .header .site-ttl--sub::after {
  content: "";
  display: block;
  position: absolute;
  top: 56%;
  -webkit-transform: translateY(-56%);
          transform: translateY(-56%);
  width: 12px;
  height: 2px;
}
.header .site-ttl--sub::before {
  left: -20px;
  background: var(--color-white);
}
.header .site-ttl--sub::after {
  right: -20px;
  background: var(--color-white);
}

/* ============================
    Main
============================ */
.content__ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1em;
  color: var(--color-title);
  font-family: var(--font-ttl);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .content__ttl {
    font-size: 31.5px;
  }
}
.content__ttl::before {
  content: "";
  position: absolute;
  bottom: -24px;
  display: inline-block;
  width: 40px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .content__ttl::before {
    bottom: -14.4px;
  }
}
.content__txt {
  max-width: 576px;
  margin: 57px auto 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .content__txt {
    margin-top: 34.2px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .content__wrapper {
    padding: 0 20px;
  }
}

.concept {
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .concept {
    padding-top: 48px;
  }
}
.concept .content__img {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto 130px;
}
.concept::before {
  content: "";
  background: var(--color-bg);
  position: absolute;
  bottom: -100px;
  width: 100%;
  height: 240px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .concept::before {
    bottom: -50px;
    height: 120px;
  }
}

.work {
  margin-bottom: 100px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .work {
    margin-bottom: 60px;
    padding-top: 48px;
  }
}
.work .content__wrapper {
  max-width: 960px;
  margin: 0 auto;
}
.work__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
}
@media screen and (max-width: 767px) {
  .work__list {
    display: block;
  }
}
.work__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.work__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.work__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  margin-top: 80px;
}
.work__item:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  margin-top: -200px;
}
.work__item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .work__item:nth-child(n+2) {
    margin-top: 40px;
  }
}
.work__item--ttl {
  padding-top: 16px;
  font-family: var(--font-ttl);
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .work__item--ttl {
    font-size: 21px;
  }
}

.florist {
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .florist {
    padding-top: 48px;
  }
}
.florist .content__wrapper {
  position: relative;
  z-index: 10;
}
.florist::before {
  content: "";
  background: var(--color-bg);
  position: absolute;
  top: 0;
  width: 100%;
  height: 374px;
  z-index: 1;
}
.florist__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .florist__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.florist__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.florist__item--ttl {
  padding-top: 16px;
  font-family: var(--font-ttl);
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .florist__item--ttl {
    font-size: 21px;
  }
}

.shop-information {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .shop-information {
    padding-top: 72px;
  }
}
.shop-information__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .shop-information__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28.8px;
  }
}
.shop-information .thumb {
  max-width: 480px;
}
.shop-information .details {
  max-width: 432px;
  padding-top: 32px;
}
.shop-information .details dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
}
.shop-information .details dt {
  width: 100px;
  margin-right: 16px;
  padding-right: 16px;
  border-right: var(--color-border) 1px solid;
}
@media screen and (max-width: 767px) {
  .shop-information .details {
    padding-top: 19.2px;
  }
}

.contact {
  min-height: 450px;
  margin-top: 120px;
  padding-top: 80px;
  background: url(../img/contact.webp) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 72px;
    padding-top: 48px;
  }
}
.contact__button a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 360px;
  height: 80px;
  margin: 0 auto;
  padding-left: 40px;
  background-color: var(--color-white);
  border: var(--color-border) 1px solid;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__button a {
    width: 216px;
    height: 48px;
    padding-left: 24px;
    font-size: 17.5px;
  }
}
.contact__button a::before, .contact__button a::after {
  content: "";
  position: absolute;
}
.contact__button a::before {
  top: 50%;
  left: 79px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 20px;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .contact__button a::before {
    left: 47.4px;
    width: 18px;
    height: 12px;
  }
}
.contact__button a::after {
  top: 20px;
  left: 84px;
  width: 20px;
  height: 21px;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .contact__button a::after {
    top: 12px;
    left: 50.4px;
    width: 12px;
    height: 12.6px;
  }
}

/* ============================
    Footer
============================ */
.footer__wrapper {
  padding: 12px 0;
}
.footer__copyright {
  text-align: center;
}