@charset "UTF-8";

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

html{
  scroll-behavior: smooth;
}

body {
  position: relative;
  display: flex;
  min-height: 100vh;
  background: #D3E5F3;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  align-items: flex-start;
  color: #232323;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0s;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-color: #BBCAD7;
  opacity: 0.25;
  background-repeat: repeat;
  background-size: 150px 150px;
}

img {
  width: 100%;
}

p {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.scroll {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), 
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* サイトバー左（ロゴ） */
.site_left {
  width: calc((100vw - 500px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 1s;
}

.site_left img {
  max-width: 228px;
  height: auto;
}

.site_left p {
  font-family: "EB Garamond", serif;
  padding-top: 16px;
  font-size: 16px;
}

/* サイト中央（メイン） */
.site_center {
  width: 500px;
  margin: 0 auto;
  background: #D7EBEF;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

.top_section {
  position: relative;
  width: 100%;
  height: 890px;
  overflow: hidden;
}

.main_fv_img {
  display: block;
  width: auto;
  height: 890px;
  min-width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.wave_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.wave_overlay svg {
  position: relative;
  width: 100%;
  height: 60px;
  bottom: -3px;
}

.wave_overlay .shape_fill {
  fill: #D7EBEF;
}

.wave_mobile {
  display: none;
}

.top_logo {
  position: absolute;
  width: 300px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.site_center h1,
.site_center h2 {
  font-weight: 400;
}

.top_title { 
  position: absolute;
  top: 650px;
  left: 43px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  font-size: 37px;
  z-index: 2;
}

.title_bg_w {
  background: #FFFFFF;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 4px 12px;
  margin-bottom: 8px;
}

.t_w {
  margin-right: -0.5em;
}

.shop_area {
  position: fixed;
  top: 70%;
  left: 47%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  width: 500px;
  z-index: 100;
}

.shop_btn {
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #232323;
  line-height: 1.1;
  font-size: 21px;
}

.shop_btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 1;
  width: 100%;
}

.shop_btn img {
  display: block;
  width: 186px;
  height: auto;
  animation: spin-anime 24s linear infinite;
}

.concept {
  padding: 80px 43px 0;
}

.concept h2 {
  font-size: 24px;
  line-height: 42.7px;
  padding-bottom: 80px;
  letter-spacing: 0.2em;
}

.concept_text p {
  line-height: 37px;
  padding-bottom: 40px;
}

.concept_video {
  display: flex;
  justify-content: space-between;
  padding-left: 43px;
  width: 100%;
  height: 450px;
}

.c_peanut1 {
  display: flex;
  flex-direction: column;
  width: 170px;
}

.c_peanut1 video {
  border-radius: 16px;
}

.c_peanut2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 220px;
}

.c_peanut2 video {
  border-radius: 16px 0 0 16px;
}

/* About */
.about {
  padding: 85px 40px 0;
}

.section_top {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  padding-bottom: 43px;
}

.section_top h2 {
  font-size: 32px;
  line-height: 1.5;
}

.accent {
  color: #B08A6A;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.about_section {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 85px 0;
  gap: 85px;
}

.about_section > img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  min-width: 120%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.section_box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 42px;
  font-size: 18px;
  line-height: 37px;
  letter-spacing: 0.08em;
}

.about_section_title {
  font-weight: 400;
  color: #B08A6A;
  font-size: 24px;
}

.about_img {
  padding: 0 55px;
}

.bird_box {
  display: flex;
  align-items: center;
  padding: 21px;
  border: 1.3px solid #E6D1B8;
  border-radius: 10px;
  gap: 21px;
}

.bird_box img {
  max-width: 93px;
  max-height: 93px;
}

.bird_box p {
  font-size: 16px;
  line-height: 1.7;
}

/* lineup */
.lineup {
  position: relative;
  top: -50px;
  z-index: 0;
  scroll-margin-top: -45px;
  background-color: #E8E2DC;
  padding: 200px 43px 0;
}

.lineup1 {
}

.lineup_bird {
  display: flex;
  margin: 0 auto;
  padding-bottom: 64px;
  width: 133px;
}

.lu_menu_top {
  position: relative;
  width: 460px;
  left: -43px;
  box-sizing: border-box;
}

.lu_menu_top img {
  display: block;
  max-width: 100%;
}

.bake_title_sab {
  font-family: "EB Garamond", serif;
  position: absolute;
  font-size: 85px;
  color: #FFFFFF;
  bottom: -22px;
  left: 0;
  z-index: 1;
}

#ls {
  letter-spacing: 0.2em;
  padding-bottom: 64px;
}

.peanut_sable_title {
  padding: 42px 0;
}

.peanut_sable_title p {
  font-size: 26px;
  letter-spacing: 0.2em;
  padding: 0 20px;
  color: #7A2E2A;
  background: #FFFFFF;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.lu_menu_text {
  line-height: 2;
  padding-bottom: 86px;
}

.minimal img {
  display: flex;
  width: 216px;
  padding: 84px 0 64px;
  margin: 0 auto;
}

.minimal p {
  font-size: 16px;
  line-height: 29px;
  padding-bottom: 200px;
}

.sable_menu_box {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  margin: 0 auto;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
  pointer-events: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

/* ラジオボタンは非表示 */
input[type="radio"] {
  display: none;
}

/* インジケーター */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-indicators label {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators label:hover {
  opacity: 0.3;
}

/* デフォルトで最初の画像を表示 */
.carousel-container .carousel-slide.slide1 {
  opacity: 1;
  pointer-events: auto;
}

/* アクティブな画像を表示（2枚対応） */
.carousel-container input[type="radio"]:nth-of-type(1):checked ~ .carousel-slides .slide1 {
  opacity: 1;
  pointer-events: auto;
}

.carousel-container input[type="radio"]:nth-of-type(1):checked ~ .carousel-slides .slide2 {
  opacity: 0;
  pointer-events: none;
}

.carousel-container input[type="radio"]:nth-of-type(2):checked ~ .carousel-slides .slide2 {
  opacity: 1;
  pointer-events: auto;
}

.carousel-container input[type="radio"]:nth-of-type(2):checked ~ .carousel-slides .slide1 {
  opacity: 0;
  pointer-events: none;
}

/* デフォルトで最初のインジケーターをアクティブに */
.carousel-indicators label:nth-of-type(1) {
  background: #7A2E2A;
}

/* アクティブなインジケーター（2枚対応） */
.carousel-container input[type="radio"]:nth-of-type(1):checked ~ .carousel-indicators label:nth-of-type(1) {
  background: #7A2E2A;
}

.carousel-container input[type="radio"]:nth-of-type(1):checked ~ .carousel-indicators label:nth-of-type(2) {
  background: rgba(0, 0, 0, 0.2);
}

.carousel-container input[type="radio"]:nth-of-type(2):checked ~ .carousel-indicators label:nth-of-type(2) {
  background: #7A2E2A;
}

.carousel-container input[type="radio"]:nth-of-type(2):checked ~ .carousel-indicators label:nth-of-type(1) {
  background: rgba(0, 0, 0, 0.2);
}

/* 画像クリックエリア */
.slide-click-area { 
  position: absolute;    
  width: 100%;
  height: 100%;    
  cursor: pointer;
  z-index: 2;
  top: 0;
  left: 0;
}

.sable_box_w {
  background: #FFFFFF;
  padding: 43px 32px 32px;
  border-radius: 0 0 20px 20px;
}

.sable_box_w h3 {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 400;
  padding-bottom: 43px;
  gap: 10px;
}

.sable_box_w p {
  line-height: 37.3px;
  letter-spacing: 0.08em;
  padding-bottom: 43px;
}

.material {
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  padding: 10px 0;
  color: #B08A6A;
  font-size: 16px;
}

.material th {
  width: 83px;
  text-align: left;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.sable_btn_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 43px;
  gap: 30px;
}

.sable_shop_btn {
  width: 250px;
  background: #E2B66F;
  font-size: 18px;
  text-align: center;
  color: #232323;
  text-decoration: none;
  padding: 15px 0;
  border-radius: 42px;
  transition: 0.3s ease;
}

.sable_shop_btn:hover {
  background: #B98F46;
  color: #FFFFFF;
  transition: 0.3s;
}

.limited {
  font-size: 16px;
  padding: 5px 10px 8px;
  background: #7A2E2A;
  color: #FFFFFF;
  border-radius: 50px;
  letter-spacing: 0;
}

.lineup2 {
  position: relative;
}

.f_ell {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  height: 111%;
  min-width: calc(100% + 86px);
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

#F_top {
  left: 0;
  right: -43px;
}

.bake_title_fin {
  font-family: "EB Garamond", serif;
  position: absolute;
  font-size: 85px;
  color: #FFFFFF;
  bottom: -22px;
  right: 5px;
  z-index: 1;
}

.peanut_fiancier_title {
  display: flex;
  justify-content: flex-end;
  padding: 42px 0;
}

.peanut_fiancier_title p {
  background: #7A2E2A;
  font-size: 26px;
  padding: 0 20px;
  color: #FFFFFF;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.yoko_sc {
  display: flex;
  margin-left: -43px;
  margin-right: -43px;
  width: auto;
  height: 414px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 11px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.yoko_sc::-webkit-scrollbar {
  display: none;
}

.yoko_sc::before,
.yoko_sc::after {
  content: "";
  display: block;
  flex: 0 0 43px;
}

.yoko_sc img {
  width: 414px;
  height: 414px;
  object-fit: contain;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.yoko_sc img:first-of-type {
  scroll-margin-left: 43px;
}

.fin_text {
  line-height: 2;
  padding-top: 43px;
}

.kv {
  padding-top: 80px;
}

.kv_text {
  position: relative;
  display: flex;
  background-image: url('img/Supervised-by.png');
  background-size: cover;
  background-position: center;
  flex-direction: column;
  gap: 40px;
  color: #FFFFFF;
  padding: 80px 32px;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box; 
  border-radius: 16px;
}

.kv_text h3 {
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 5px 0;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

.kansyu {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.kv_text p {
  line-height: 2; 
}

/* Mission */
.mission {
  position: relative;
  padding: 200px 0 85px;
  background: #B08A6A;
  z-index: -2;
}

.accent_mis {
  color: #E6D1B8;
}

.w_title {
  color: #FFFFFF;
}

.mission_img {
  position: relative;
}

.mission_text {
  position: absolute;
  color: #FFFFFF;
  font-size: 21px;
  line-height: 32px;
  left: 43px;
  bottom: 64px;
}

.mission_img img {
  display: block;
  max-width: 100%;
}

.mission_btn_area {
  display: flex;
  justify-content: center;
  padding-top: 43px;
}

.mission_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  width: 360px;
  letter-spacing: 0.08em;
  border: 1px solid #E8E2DC;
  font-size: 21px;
  border-radius: 50px;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.mission_btn:hover {
  background: #8E735E;
  transition: 0.3s;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 5.7px 0 5.7px 22px;
  border-radius: 9999px;
  background-color: #ffffff;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

.contact {
  background: #FFFFFF;
  padding: 85px 43px;
}

.contact_text {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact_text p {
  text-align: center;
  letter-spacing: -1px;
  line-height: 2;
}

.contact_btn_area {
  display: flex;
  justify-content: center;
}

.contact_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #AFC8CF;
  font-size: 24px;
  text-align: center;
  width: 360px;
  height: 71px;
  border-radius: 50px;
  color: #232323;
  text-decoration: none;
  transition: 0.3s ease;
  letter-spacing: 0.08em;
}

.contact_btn:hover {
  background: #6F8E97;
  color: #FFFFFF;
  transition: 0.3s;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal_img {
  position: relative;
  width: 100%;
}

.modal_img img {
  display: block;
  width: 100%;
  height: auto;
}

.modal_top_text {
  position: absolute;
  color: #FFFFFF;
  font-size: 21px;
  line-height: 32px;
  left: 43px;
  bottom: 64px;
  z-index: 2;
  margin: 0;
}

.modal:target {
  display: block;
}

.modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0.9;
}

.modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #D3E5F3;
  width: 500px;
  height: 100%;
  overflow-y: auto;
  overflow-x: visible
  z-index: 1001;
}

.modal_btn_area {
  display: flex;
  justify-content: center;
  margin-bottom: 85px;
}

.modal_close_btn {
  background-color: transparent;
  border: 1px solid #AFC8CF;
  font-size: 20px;
  color: #232323;
  padding: 15px 0;
  width: 270px;
  border-radius: 42px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-family: "Shippori Mincho", serif;
}

.modal_close_btn:hover {
  opacity: 1.0;
  background: #8B8B8E;
  color: #FFFFFF;
  transition: 0.3s;
}

/* ×ボタンのスタイル変更 */
.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 0;  /* テキストを非表示 */
  cursor: pointer;
  padding: 0;
  width: 60px;
  height: 60px;
  z-index: 1002;  /* 画像の上に表示 */
}

.modal_close::before,
.modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 1px;
  background-color: #FFFFFF;
}

.modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_content h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 400;
}

.modal_text_area {
  padding: 64px 43px;
}

.modal_text_area img {
  padding-bottom: 43px;
}

.modal_text {
  line-height: 1.7;
  letter-spacing: 0.08em;
  padding-bottom: 43px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes spin-anime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  animation: fadeInOverlay 0.3s ease-out forwards;
}

@keyframes fadeInOverlay {
  to {
    opacity: 0.9;
  }
}

.modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #D3E5F3;
  width: 500px;
  height: 100%;
  overflow-y: auto;
  z-index: 1001;
  opacity: 0;
  animation: fadeInUp 0.4s ease-out 0.1s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.modal_text:last-child {
  padding-bottom: 0;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 85px 0;
}

.footer_logo img {
  width: 190px;
}

.copyright_footer {
  font-size: 13px;
  font-family: "EB Garamond", serif;
}

/* サイトバー右（メニュー） */
.site_right {
  width: calc((100vw - 500px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 1s;
}

.site_right a {
  text-decoration: none;
  color: #232323;
  display: block;
  transition: color 0.3s;
  position: relative;
}

.menu_list,
.menu_site {
  list-style: none;
  width: 100%;
}

.menu_list li {
  width: fit-content;
  margin-bottom: 32px;
  text-align: left;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.menu_list li:last-child {
  margin-bottom: 0;
}

.menu_list a {
  font-size: 24px;
  letter-spacing: 0.08em;
}

.menu_list a::after {
  background-color: #232323;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  width: 100%;
}

.menu_list a:hover {
  color: #B08A6A;
}

.menu_list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu_site {
  margin-top: 48px;
}

.menu_site li {
  width: fit-content;
  margin-bottom: 10px;
}

.menu_site li:last-child {
  margin-bottom: 0;
}

.menu_site a {
  font-size: 14px;
  letter-spacing: -0.08em;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu_site a:hover {
  color: #B08A6A;
}

#m_t {
  letter-spacing: -0.2em;
}

.point_r {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 1px;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: #232323;
  transition: transform 0.3s ease;
}

.point_r::before,
.point_r::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #232323;
  transform-origin: calc(100% - 0.5px) 50%;
}

.point_r::before {
  transform: rotate(45deg);
}

.point_r::after {
  transform: rotate(-45deg);
}

.menu_site a:hover .point_r {
  transform: translateX(8px);
}

.insta {
  position: relative;
  display: inline-block;
  width: 28px;
}

.insta_link {
  position: relative;
  display: block;
}

.right_footer {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.insta_default,
.insta_hover {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
}

.insta_hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.insta:hover .insta_default {
  opacity: 0;
}

.insta:hover .insta_hover {
  opacity: 1;
}

.copyright_s_r {
  font-size: 10px;
  font-family: "EB Garamond", serif;
}


@media (max-width: 740px) {

  body {
    padding: 0;
    justify-content: center;
  }

  .site_left,
  .site_right {
    display: none;
  }

  .site_center {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    margin: 0;
  }

  .shop_area {
    width: 100%;
  }

  .top_title {
    font-size: 26px;
  }

  #F_top {
    right: 0;
  }

  .lu_menu_top {
    width: calc(100% + 43px);
  }

}

@media (max-width: 450px) {

  p {
    font-size: 14px;
    line-height: 2;
  }

  .wave_desktop {
    display: none;
  }

  .wave_mobile {
    display: block;
  }

  .top_section {
    height: 670px;
  }

  .top_logo {
    width: 226px;
  }

  .main_fv_img {
    height: 670px;
  }

  .top_title {
    top: 400px;
    left: 35px;
  }

  .shop_area {
    top: 75%;
  }

  .shop_btn p {
    line-height: 1;
    font-size: 14px;
  }

  .shop_btn img {
    width: 130px;
  }

  .title_bg_w {
    padding: 0;
  }

  .concept {
    padding: 60px 30px 0;
  }

  .concept_video {
    height: 400px;
    padding-left: 30px;
    gap: 40px;
  }

  .c_peanut1 {
    min-width: 130px;
    width: 100%;
  }

  .c_peanut2 {
    min-width: 160px;
    width: 100%;
  }

  .c_peanut1 video ,
  .c_peanut2 video {
    width: 100%;
    height: auto;
  }

  #lineup {
    scroll-margin-top: -50px;
  }

  .lineup {
    padding: 130px 30px 0;
  }

  .concept h2 {
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    padding-bottom: 40px;
  }

  .concept_text p {
    line-height: 1.7;
    padding-bottom: 25px;
  }

  .concept_img {
    margin: 0 0 20px 30px;
  }

  .about {
    padding: 40px 30px 0;
  }

  .accent {
    font-size: 16px;
  }

  .section_top h2 {
    font-size: 24px;
  }

  .about_section {
    gap: 40px;
  }

  .section_box {
    gap: 20px;
  }

  .about_section_title {
    font-size: 20px;
  }

  .bird_box {
    padding: 15px;
    gap: 16px;
  }

  .bird_box img {
    max-width: 65px;
    max-height: 65px;
  }

  .bird_box p {
    font-size: 10px;
  }

  .lineup_bird {
    padding-bottom: 40px;
  }

  #ls {
    padding-bottom: 20px;
  }

  .section_top {
    padding-bottom: 20px;
  }

  .bake_title_sab {
    font-size: 64px;
    bottom: -40px;
    left: 10px;
  }

  .peanut_sable_title {
    padding: 20px 0;
  }

  .peanut_sable_title p {
    font-size: 20px;
    padding: 0 10px;
  }

  .lu_menu_text {
    padding-bottom: 50px;
  }

  .sable_box_w {
    padding: 20px 15px;
  }

  .sable_box_w h3 {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .sable_box_w p {
    line-height: 2;
    letter-spacing: 0;
    padding-bottom: 20px;
  }

  .material th {
    width: 60px;
  }

  .material th,
  .material td {
    font-size: 12px;
  }

  .sable_btn_area {
    padding-top: 30px;
  }

  .sable_shop_btn {
    width: 200px;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
  }

  .limited {
    font-size: 12px;
    padding: 3px 5px 5px;
  }

  .minimal img {
    width: 200px;
    padding: 60px 0 45px;
  }

  /* Mission */
  .mission {

  }

  .mission_text {
    font-size: 18px;
    left: 30px;
    bottom: 50px;
  }

  .mission_btn {
    width: 270px;
    font-size: 14px;
    padding: 15px 0;
  }

  .arrow {
    width: 14px;
    margin: auto 0 auto 10px;
  }

  .arrow::before,
  .arrow::after {
    width: 8px;
  }

  /* lineup2 */
  .f_ell {
    height: 117%;
    top: -160px;
    min-width: calc(100% + 60px);
  }

  .lu_menu_top {
    width: calc(100% + 30px);
    left: -30px;
  }

  .bake_title_fin {
    font-size: 64px;
    bottom: -40px;
  }

  .peanut_fiancier_title {
    padding: 20px 0;
  }

  .peanut_fiancier_title p {
    font-size: 21px;
    padding: 0 5px;
  }

  .yoko_sc {
    height: 330px;
  }

  .yoko_sc img {
    max-width: 330px;
    height: 330px;
  }

  .fin_text {
    padding-top: 20px;
  }

  .kv {
    padding-top: 60px;
  }

  .kv_text {
    padding: 60px 30px;
    gap: 25px;
  }

  .kv_text h3 {
    font-size: 18px;
    padding: 10px 0;
  }

  .contact {
    padding: 60px 30px;
  }

  .contact_text p {
    font-size: 14px;
  }

  .contact_btn {
    font-size: 18px;
    width: 270px;
    height: 60px;
  }

  .modal_content {
    width: 100%;
  }

  .modal_close::before,
  .modal_close::after {
    width: 45px;
}

  .modal_top_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2em;
  }

  .modal_close_btn {
    font-size: 16px;
  }

  .footer {
    padding: 60px 0;
  }

}
