@charset "utf-8";

/* ヘッダー */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #eac9b8;
  width: 100%;
  margin: 0;
}
/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 999; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}
/* ナビゲーションのアニメーション */
.link {
  color: #214785;
  position: relative;
  text-decoration: none;
}
.link::before {
  background: #dbd9d9;
  bottom: -5px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.link::after {
  background: #214785;
  bottom: -5px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: all 0.4s ease-in-out;
  width: 0;
  z-index: 0;
}
.link:hover::after {
  width: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 10px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #214785;
  font-weight: bold;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}

.icons {
  display: flex;
  gap: 5px;
}

/* メインビジュアル */
.main {
  display: flex;
}
.image-container {
  position: relative;
  width: 100%;
}
.bg-hero {
  border-radius: 0 30px 30px 0;
}
.image-container img {
  width: 1350px;
  height: 600px;
  object-fit: cover;
  margin-top: 20px;
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
/* アニメーション */
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SNS セクション  */
.sns-container {
  display: flex;
  position: absolute;
  top: 25%;
  right: 20px;
  padding-right: 30px;
  padding-bottom: 50px;
  margin-right: 10px;
  transform: translateY(-20%);
  text-align: center;
  align-items: center;
  font-size: 24px;
  writing-mode: vertical-rl;
  text-decoration: none;
  gap: 10px;
  animation: slideinTop 1.5s forwards;
}
/* アニメーション */
@keyframes slideinTop {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
.sns-container p {
  font-size: 30px;
  color: #d96767;
  font-weight: bold;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
.sns-container a {
  display: block;
  margin: auto;
}

.sns-container img {
  width: 48px;
  height: 48px;
  align-items: center;
  /* アイコンの間隔 */
  gap: 10px;
}

/* 最新情報 */
/* アコーディオンメニューを作る */
.accordion-004 {
  max-width: 1000px;
  margin-bottom: 7px;
  border: 2px solid #d96767;
  background: #fefee3;
  border-radius: 5px;
  align-items: center;
  text-align: left;
  margin-left: 250px;
  margin-bottom: 20px;
}

.accordion-004 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #5d4100;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.accordion-004 summary::-webkit-details-marker {
  display: none;
}

.accordion-004 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #5d4100b3;
  border-right: 3px solid #5d4100b3;
  content: "";
  transition: transform 0.3s;
}

.accordion-004[open] summary::after {
  transform: rotate(225deg);
}

.accordion-004 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #5d4100;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-004[open] p {
  transform: none;
  opacity: 1;
}

#section1 {
  align-items: center;
  text-align: center;
  margin-bottom: 100px;
}

/* View Moreボタンの装飾 */
.button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #d96767;
  width: 230px;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 18px;
  text-align: center;
  align-items: center;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
/* ホバー */
.button:hover {
  background-color: #b44;
}

/* コンセプト */
.section3 {
  margin-top: 100px;
}
#concept-container {
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: left;
}

#concept-container span {
  font-size: 48px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  border-bottom: 2px solid #d96767;
}
#concept-container p {
  font-size: 18px;
  letter-spacing: 0.12em;
}
#concept-container .img {
  width: 600px;
  height: 500px;
}

#concept-container img {
  animation: slideinLeft 3s forwards;
}
@keyframes slideinLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Slowmotion daily lifeのロゴを作る */
.concept-item .concept-logo {
  font-size: 160px;
  color: #d96767;
  opacity: 0.8;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
  margin-top: 10px;
  padding-left: 60px;
  animation: slideinLeft 5s infinite;
}
/* アニメーション */
@keyframes slideinLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.concept-item {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
}

.concept-item .fuwafuwa {
  margin-right: 5px;
  width: 456px;
  height: 549px;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/concept_item02.png) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
}
/* ふわふわ動くアニメーション */
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}

/* メニュー */
.menu-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #d96767;
  width: 230px;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 18px;
  text-align: center;
  align-items: center;
  margin-left: 650px;
  margin-top: 50px;
  margin-bottom: 60px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
.menu-button:hover {
  background-color: #b44;
}
/* 季節限定メニュー */
.menu-container {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.card-list {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}

.menu-tag {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0;
  background-color: #eac9b8;
  padding: 5px 5px;
  border-radius: 20px;
  align-items: center;
  text-align: center;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.card-text {
  align-items: center;
  padding-left: 5px;
  flex-grow: 1;
}

/* ギフト */
.gift-container {
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-around;
  font-size: 18px;
}

.section3 .gift-item {
  text-align: center;
  align-items: center;
}
.gift-item {
  position: relative;
  height: 50px; /*リボンの高さ*/
  line-height: 50px; /*リボンの高さ*/
  text-align: center;
  align-items: center;
  padding: 0 30px; /*横の大きさ*/
  font-size: 18px; /*文字の大きさ*/
  font-weight: bold;
  background: #214785; /*塗りつぶし色*/
  color: #fff; /*文字色*/
  box-sizing: border-box;
  margin-left: 250px;
  margin-right: 250px;
  margin-bottom: 50px;
}
.gift-item:before,
.gift-item:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}

.gift-item:before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 15px;
  border-color: transparent transparent transparent #fefee3;
  border-style: solid;
}

.gift-item:after {
  top: 0;
  right: 0;
  border-width: 25px 15px 25px 0px;
  border-color: transparent #fefee3 transparent transparent;
  border-style: solid;
}

.gift-container img {
  width: 502px;
  height: 503px;
  margin-left: 80px;
}
.gift-container p {
  margin-right: 70px;
  letter-spacing: 0.12em;
}
.gift-container span {
  background-color: #5d4100;
  color: #fff;
  border-radius: 10px;
  margin-top: 5px;
  width: 280px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 250px;
  display: block;
  letter-spacing: 0.12em;
}

.gift-container span:hover {
  background-color: #503801;
}

/* よくあるお問い合わせ */
.section4 {
  background-image: url("img/bg-img.png");
  border-radius: 10px;
  position: relative;
  margin-left: 250px;
  margin-right: 250px;
  margin-top: 120px;
}
.faq-container {
  margin-top: 30px;
  padding-bottom: 10px;
  margin-left: 200px;
  align-items: center;
  margin-bottom: 100px;
}
.faq-container .question {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  font-size: 16px;
}
.faq-container .answer {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  font-size: 16px;
}
.faq-container .question span {
  background: #214785;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  margin-right: 20px;
}
.faq-container .answer span {
  background: #d96767;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  margin-right: 20px;
}

/* アクセス */
.section5 {
  border-radius: 10px;
  margin-left: 150px;
  margin-right: 150px;
  margin-top: 100px;
}
.access-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: left;
  font-size: 20px;
  padding-top: 50px;
  margin-top: 30px;
  margin-left: 100px;
  margin-right: 100px;
}

.overview th {
  font-family: "Marcellus", serif;
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  padding-right: 40px;
  letter-spacing: 0.12em;
}

.overview td {
  line-height: 2em;
  padding-bottom: 5px;
  letter-spacing: 0.12em;
}
.map {
  width: 400px;
  height: 400px;
  margin-left: 30px;
  margin-bottom: 20px;
}

/* お問い合わせフォーム */
#section6 {
  margin-top: 100px;
}
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #fff;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #fff;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
/* 送信するボタン */
.Form-Btn {
  border-radius: 10px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 250px;
  display: block;
  letter-spacing: 0.05em;
  background: #d96767;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border: none;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 0 #d01a0a;
}

@media screen and (min-width: 769px) {
  input[type="submit"]:hover {
    transform: translateY(4px);
    box-shadow: none;
  }
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
/* お店の外観写真 */
.shop-img {
  margin-top: 150px;
  align-items: center;
  text-align: center;
}

/* topに戻るボタン */
#page_top {
  position: fixed;
  right: 10px;
  width: 55px;
  height: 55px;
  background: #214785 no-repeat;
  border-radius: 50%;
  opacity: 0.5;
}

#page_top a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077";
  font-size: 25px;
  text-align: center;
}

/* フッター */
footer {
  text-align: center;
  width: 100%;
}

.footer-container {
  background: #eac9b8;
}
.footer-container img {
  padding-bottom: 20px;
}

footer-list {
  color: #214785;
  align-items: center;
}
.footer-header {
  vertical-align: bottom;
  height: auto;
  width: 100%;
}

small {
  color: #214785;
  font-size: 16px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  align-items: center;
  text-align: center;
  padding-top: 5px;
  border-top: 1px dotted #214785;
}
