@charset "UTF-8";

/* * * * * * * * *
* base
* * * * * * * * */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: poppins, sans-serif;
  font-size: 16px;
  color: #2b2b2b;
}
h1, h2, h3, p {
  margin: 0;
  padding: 0;
}
a {
  color: #2b2b2b;
  text-decoration: none;
}

a{
  transition: color 0.3s;
}

a:hover{
  color : #ff7043;
}

section {
  text-align: center;
}
tbody {
  vertical-align: inherit;
}
th, td {
  font-weight: normal;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}

/* * * * * * * * *
* return top
* * * * * * * * */
html{
  scroll-behavior: smooth;
}
.gotop{
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background: #FFF;
  border: 1px solid #999;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  color: #333;
  opacity: 0.5;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}
.gotop::before{
  content: "";
  display: block;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  width: 25%;
  height: 25%;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}
.gotop:hover{
  opacity: 1;
}
@media(max-width:750px){
  .gotop{
      width: 40px;
      height: 40px;
      text-indent: -9999px;
      opacity: 1;
      border: none;
      background: none;
      bottom: 10px;
      right: 10px;
  }
  .gotop::before{
      bottom: 0;
  }
}

/* * * * * * * * *
* utility
* * * * * * * * */
.u-content-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
.u-heading {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 24px;
  font-size: 36px;
  letter-spacing: 2px;
}
.u-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 1px;
  background: #2b2b2b;
  transform: translateX(-50%);
}
.u-text {
  padding-bottom: 40px;
  line-height: 1.8;
  letter-spacing: 1.4px;
}

/* * * * * * * * *
* header
* * * * * * * * */
.header {
  position: relative;
  width: 100%;
  height: 620px;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('img/header.png');
  background-size: cover;
  text-align: center;
  color: #fff;
  font-family: myriad-pro, sans-serif;
}
.header__nav {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 64px;
}
.position-change {
  position: fixed;
  top: 0;
  z-index: 100;
}
.color-chnage {
  background: #000;
  border-bottom: 1px solid #a0a0a0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header__nav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav__logo {
  font-size: 36px;
}
.hamburger-menu {
  position: relative;
  width: 32px;
  height: 64px;
  cursor: pointer;
}
.hamburger-menu__line,
.hamburger-menu__line::before,
.hamburger-menu__line::after,
.hamburger-menu__line--dummy {
  position: absolute;
  left: 0;
  display: block;
  width: 32px;
  height: 1px;
  background: #fff;
}
.color-chnage span,
.color-chnage span::before,
.color-chnage span::after {
  background: #fff;
}
.hamburger-menu__line::before,
.hamburger-menu__line::after {
  content: '';
}

.hamburger-menu__line,
.hamburger-menu__line--dummy {
  top: 50%;
  transition: all .3s;
}

.active .hamburger-menu__line {
  transform: rotate(-45deg);
}
.active .hamburger-menu__line--dummy {
  transform: rotate(45deg);
}

.hamburger-menu__line::before {
  top: calc(50% - 8px);
  transition: all .3s;
}
.active .hamburger-menu__line::before {
  top: 50%;
  opacity: 0;
}

.hamburger-menu__line::after {
  top: calc(50% + 8px);
  transition: all .3s;
}
.active .hamburger-menu__line::after {
  top: 50%;
  opacity: 0;
}

.header-menu {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 100;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  transition: all .3s;
}
.header__menu__item {
  padding: 0;
  line-height: 11vh;
  text-align: center;
  font-size: 18px;
  border-top: 1px solid #ccc;
}
.header__menu__item:last-of-type {
  border-bottom: 1px solid #ccc;
}
.height-change {
  height: calc(100vh - 64px);
}

.header__title {
  padding-top: 300px;
  font-size: 60px;
  font-weight: normal;
}
.header__title__sub {
  word-spacing: 4px;
}
.header__title__sub::before,
.header__title__sub::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 2px;
  margin: 0 8px;
  background: #fff;
  vertical-align: middle;
}

/* * * * * * * * *
* internal_link
* * * * * * * * */
.internal_link {
  width: 100%;
  padding-top: 50px;
  background: #000;
}
.internal_link__persons {
  display: flex;
  justify-content: space-between;
}
.internal_link__person {
  width: 180px;
  padding-bottom: 40px;
  text-align: center;
  line-height: 1.8;
  font-size: 0;
}
.internal_link__person__image {
  width: 100%;
  margin-bottom: 10px;
}
.internal_link__person__name {
  font-size: 12px;
}
.internal_link__person__introduce {
  font-size: 12px;
  letter-spacing: 2px;
  color:#fff;
}

/* * * * * * * * *
* Concept
* * * * * * * * */
.concept {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(#fff 70%, #000 30%);
}
.concept__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* * * * * * * * *
* Featured categories
* * * * * * * * */
.work {
  width: 100%;
  padding-top: 80px;
}
.work__contents {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-between;
  height: 1500px;
}
.work__content {
  width: 420px;
  padding-bottom: 80px;
  text-align: left;
  line-height: 1.8;
}
.work__content:nth-of-type(1) {order: 1;}
.work__content:nth-of-type(2) {
  order: 2;
  /*margin-top: 120px;*/
}
.work__content:nth-of-type(3) {order: 3;}
.work__content:nth-of-type(4) {order: 4;}
.work__content:nth-of-type(5) {order: 5;}


.work__content__image {
  width: 100%;
  margin-bottom: 16px;
}
.work__content__heading {
  font-size: 24px;
}
.work__content__text {
  letter-spacing: 1.5px;
}

/* * * * * * * * *
* Pickup
* * * * * * * * */
.florist {
  width: 100%;
  padding-top: 80px;
  background: linear-gradient(#ededed 30%, #fff 70%);
}
.florist__persons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; /* 追加: カラムが折り返し可能になる */
}
.florist__person {
  width: calc(33.33% - 20px); /* 修正: 3カラムにするための幅を指定。20pxはマージンやパディングの調整のための余白 */
  padding-bottom: 80px;
  text-align: left;
  line-height: 1.8;
  font-size: 0;
  margin-right: 10px; /* 追加: 右側のマージンを追加 */
  margin-left: 10px;  /* 追加: 左側のマージンを追加 */
}
.florist__person:last-child {
  margin-right: 0; /* 追加: 最後の要素の右側のマージンを0にする */
}
.florist__person__image {
  width: 100%;
  margin-bottom: 12px;
}
.florist__person__name {
  font-size: 24px;
}
.florist__person__introduce {
  font-size: 16px;
  letter-spacing: 1.5px;
}

/* * * * * * * * *
* Shop information
* * * * * * * * */
.shopInformation {
  width: 100%;
  padding: 80px 0 120px;
}
.shopInformation__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shopInformation__image {
  width: 50%;
}
.shopInformation__table {
  width: 45%;
  border-spacing: 16px;
  text-align: left;
  letter-spacing: 1.5px;
  line-height: 2;
}
.shopInformation__table__heading {
  width: 25%;
  border-right: 1px solid #a0a0a0;
}

/* * * * * * * * *
* Contact us
* * * * * * * * */
.contactUs {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('img/contact_us.png');
  background-size: cover;
}
.btn__contact {
  position: relative;
  display: inline-block;
  width: 360px;
  padding-left: 40px;
  height: 80px;
  line-height: 80px;
  letter-spacing: 2px;
  border: 1px solid #a0a0a0;
  background: #fff;
  font-size: 20px;
}
.btn__contact::before,
.btn__contact::after {
  content: '';
  position: absolute;
  border-radius: 2px;
}
.btn__contact::before {
  top: 30px;
  left: 85px;
  width: 30px;
  height: 20px;
  border: 1px solid #2b2b2b;
}
.btn__contact::after {
  top: 21px;
  left: 90px;
  width: 20px;
  height: 20px;
  border-right: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  transform: rotate(45deg);
}

/* * * * * * * * *
* footer
* * * * * * * * */
.footer {
  width: 100%;
  text-align: center;
}
.footer__copyright {
  line-height: 40px;
  letter-spacing: 1.4px;
}

/* * * * * * * * *
* レスポンシブ対応
* * * * * * * * */
@media (max-width: 670px) {
  body {
    font-size: 14px;
  }

  /* * * * * * * * *
  * utility
  * * * * * * * * */
  .u-content-wrapper {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  .u-heading {
    font-size: 28px;
  }
  .u-text {
    text-align: center;
    padding-bottom: 32px;
  }
  .u-display__pc {
    display: none;
  }

  /* * * * * * * * *
  * header
  * * * * * * * * */
  .header {
    height: 355px;
    padding-top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(img/header.png) 50%;
    background-size: cover;
  }
  .header__nav {
    position: fixed;
    top: 0;
    z-index: 100;
  }
  .header__nav__logo {
    font-size: 24px;
  }
  .header__title {
    padding-top: 180px;
    font-size: 32px;
  }

    /* * * * * * * * *
  * internal_link
  * * * * * * * * */
  .internal_link {
    padding: 1em;
  }
 
  .internal_link__persons {
    display: flex; 
    flex-wrap: wrap;
  }
  .internal_link__person {
    width: 40vw;
  }
  .internal_link__person__image {
    margin-bottom: 0;
  }

  /* * * * * * * * *
  * Concept
  * * * * * * * * */
  .concept {
    padding: 40px 0;
    background: linear-gradient(#fff 75%, #ededed 25%);
  }

  /* * * * * * * * *
  * Featured categories
  * * * * * * * * */
  .work {
    padding: 40px 0 ;
  }
  .work__contents {
    display:block;
    align-items: center;
    justify-content: center;
    height: auto;  
  }
  .work__content {
    width: 100%;
  }
  
  /* * * * * * * * *
  * Pickup
  * * * * * * * * */
  .florist {
    padding: 40px 0;
    background: #ededed 55%;
  }
  .florist__persons__wrapper {
    display:block;
    align-items: center;
    justify-content: center;
  }

  .florist__person {
    width: 100%;
    margin-right: 0; /* 追加: スマホでの右側のマージンを0にする */
    margin-left: 0;  /* 追加: スマホでの左側のマージンを0にする */  
  }
  .florist__person__image {
    width: 100%;
  }

  /* * * * * * * * *
  * Shop information
  * * * * * * * * */
  .shopInformation {
    padding: 40px 0;
  }
  .shopInformation__contents {
    display: block;
  }
  .shopInformation__image,
  .shopInformation__table {
    width: 100%;
  }

  /* * * * * * * * *
  * Contact us
  * * * * * * * * */
  .contactUs {
    padding: 40px 0 64px;
  }
  .btn__contact {
    width: 280px;
    padding-left: 50px;
  }
  .btn__contact::before {
    left: 45px;
  }
  .btn__contact::after {
    left: 50px;
  }
}


 /* * * * * * * * *
  * Icon
  * * * * * * * * */
.bookmark.icon {
  color: #000;
  position: absolute;
  margin-left: 5px;
  margin-top: 3px;
  width: 10px;
  height: 15px;
  border-radius: 1px 1px 0 0;
  border-top: solid 1px currentColor;
  border-left: solid 1px currentColor;
  border-right: solid 1px currentColor;
}
.bookmark.icon:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 1px;
  width: 7px;
  height: 7px;
  border-top: solid 1px currentColor;
  border-left: solid 1px currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}