@charset "utf-8";
@import "reset.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Inter',,sans-serif;
    line-height: 1.6;
    color: 333;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
}

.wrapper{
    background-color: #EDEDEF;
    background-image: url(images/background.png);
    background-position: center;
    background-attachment: fixed;
    padding-bottom: 20px;
    background-repeat: no-repeat;
  }


h2{
  color: #4f4f4f;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

main{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  color: #2d2d2d;
  font-size: 16px;
}

/*ヘッダー*/
.header_logo img{
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-top: 15px;
}

.header {
  background: linear-gradient(90deg,#1a2a6c,#4a148c,#2a0845);
  width: 100%;
  height: 90px;
  position: relative;
  margin-bottom: 0;
}

.header_container {
  max-width:100% ;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 40px;
}

/* ナビを画面外に隠す */
.nav {
  position: fixed;
  top: 90px;
  right: -100%; /* 初期は右に隠す */
  width: 100%;
  height: 100%;
  background:  linear-gradient(90deg,#1a2a6c,#4a148c,#2a0845);;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 1000;
}

.nav.active {
  right: 0; /* 表示状態 */
}

.nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav_item a {
  display: block;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.nav_item a:hover {
  background: #ccc;
}

/* ハンバーガーボタン（変化付き） */
.hamburger {
  width: 40px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1100; /* ナビより上に */
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
  margin-right: 0;
}


/* バツに変化 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

footer {
  padding: 10px 20px 0;
  text-align: left;
  border-top: 1px solid #ddd;
  background-image: url(images/footer.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


.footer_nav{
  text-align: left;
}

footer .footer_nav ul {
  display: block;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

footer .footer_nav a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}

footer .nav-small {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

footer .nav-small a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;   /* ← 小さめ */
}

footer .copyright {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  color: #fff;
}

.footer_sns{
  display: flex;
}

footer .footer_logo{
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.nav_bottom{
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 90px;
}

.footer_sns i{
  color: #fff;
}

.x-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 6px;
  text-decoration: none;
}

#page_top{
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  transition: .3s;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.top a{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background: #fff;
  text-decoration: none;
   width: 60px;
  height: 60px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
}

#page_top.show {
    opacity: 1;
    transition: opacity 1.0s;
}

.top a:hover{
  transition: opacity 0.5s;
  opacity: 0.5;
}

.footer_bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-top: 1px solid #ddd;
}

.copyright{
  font-size: 12px;
  color: #666;
}

/*メインビジュアル*/
.sns_link img{
   width: 100%;
   height: 200px;
   object-fit: cover;
   margin: 30px 0 30px;
}

.sns_link img{
  width: 100%;
  height: 150px;
}

/*お知らせ,お問い合わせ*/
.news h2{
  padding-top: 15px;
  padding-bottom: 10px;
}

.news_contact{
  background-color: #fff;
  padding: 0 20px;
}
.news ul{
  display: flex;
  margin: 0 auto;
  list-style: none;
  border-top: 2px dashed #4f4f4f;
  border-bottom: 2px dashed #4f4f4f;
}

.more-button{
   right: 0;;
   margin: 10px 45px;
   position: absolute;
   font-size: 14px;
  color: #4f4f4f;
  text-align: right;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.news a:hover{
  color: #004080;
}

.contact h2{
  margin-top: 50px;
}

.contact p,.items a{
  text-align: center;
}

.line-link{
  display: inline-block;
  background-color: #06c755;
  color: #fff;
  text-decoration: none;
  padding: 10px 30px;
  width: 200px;
  height: 50px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition:0.3s ;
  line-height: 1;
  margin: 10px auto 20px;
  font-size: 24px;
}

.line-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.contact{
  text-align: center;
}


/*アイテム一覧*/
.items h2{
  margin: 40px auto;
  color: #fff;
}

.item img{
  width: 145px;
  height: 215px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.item-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.price{
  display: block;
  margin-top: 8px;
  background-color: #ccc;
  width: 145px;
  text-align: center;
  font-size: 18px;
  font-family: 'Yuji Boku';
}

.item-list .item:nth-child(13){
  grid-column: 1/-1;
  justify-self: center;
  margin-bottom: 15px;
}

.item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.items .line-link,footer .line-link{
  display:block;
  justify-content: center;
  text-align: center;
}

.price_note{
  text-align: center;
}

/*取引方法*/
.how-to-buy h2{
  color: #fff;
}

.how-to-buy .step {
  display: flex;
  flex-direction: column;    /* 縦並び */
  align-items: center;       /* 中央揃え */
  background: #fff;          /* 白背景 */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: center;
  justify-content: center;
  margin: 20px auto;
}

.how-to-buy i {
  display: block;
  font-size: 90px;          
  margin-bottom: 0 auto;
  text-align: center ;
  color: #fff;
}

.how-to-buy .step p {
  font-size: 20px;
  color: #333;
  margin: 0;
}

.how-to-buy .step a {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  color: #4771b8;
  text-decoration: underline;
}

.how-to-buy h3{
  font-size: 24px;
  font-weight: bold;
  margin: 15px auto;
}

.how-to-buy .step a{
  color: #4771b8;
  font-weight: bold;
  text-decoration: underline;
}

.how-to-buy .step a:hover{
  color: #365799;
}


/*下層ページ*/
/*お知らせページ*/
.news_page h1,.question h1,.works h1{
  position: relative;
  background-image: url(images/header.png);
  background-size: cover;
  background-position: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.news_page h1,.question h1,.works h1{
  color: #fff;
  font-size: 2rem;
  margin: 0;
  writing-mode: horizontal-tb;
}

.news_contens{
  padding: 20px;
  background-color: #fff;
  margin: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.news_contens ul{
  list-style: none;
}

.news_page span,strong{
  border-bottom: solid 2px #333;
  width: 100%;
}

.news_text{
  padding: 10px 0;
}

.news_page{
  min-height: 70vh;
  background-image: url(images/background.png);
  background-repeat: no-repeat;
  padding-bottom: 20px;
  background-position: center;
  background-attachment: fixed;
}

/*よくある質問*/
.question{
  background-image: url(images/background.png);
  background-repeat: no-repeat;
  padding-bottom: 20px;
  background-position: center;
  background-attachment: fixed;
}

.faq{
  padding: 20px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.arrow {
  transition: transform 0.3s;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.icon{
  font-size: 30px;
}

/*当店の実績と信頼される理由*/
.works{
  background-image: url(images/background.png);
  background-repeat: no-repeat;
  padding-bottom: 20px;
  background-position: center;
  background-attachment: fixed;
}

.work{
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.work h2{
  margin-bottom: 5px;
  text-align: left;
}

.works p{
  line-height: 2.0;
}

.work1{
  margin-bottom: 20px;
}

.work2{
  margin-bottom: 25px;
}

.link{
  margin-bottom: 10px;
}

.work3{
  margin-bottom: 20px;
}

.ruv{
  margin-bottom: 15px;
}

.account_wrapper{
  align-items: center;
  display: flex;
  gap: 20px;
}

.account_wrapper img{
  width: 100px;
  height: 100px;
}


/*利用規約,プライバシーポリシー*/
.tos,.privacy{
  font-family: sans-serif;
  padding: 0 20px;
  margin-bottom: 20px;
}


.tos h1,.privacy h1{
  font-size: 24px;
  margin-top: 20px;
}

.tos h2,.privacy h2{
  font-size: 18px;
  text-align: left;
  margin-top: 15px ;
}

.tos p,.privacy p{
  font-size: 16px;
}

.tos ul li,.privacy ul li{
  list-style: none;
}


/*PC版レスポンシブ*/
@media(min-width: 1024px){
  .header {
    height: 100px;
  }

  .header_logo img {
    width: 90px;
    height: 90px;
    margin-top: 10px;
  }

  .hamburger {
  position: relative;
  width: 40px;
  height: 35px;
  cursor: pointer;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1100;
}

.hamburger span {
  position: absolute; /* ← これが重要！ */
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 線の配置（上・中・下） */
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* バツに変化 */
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

  /* ナビ：左揃えに戻す＋上に余白追加 */
  .nav_list {
    align-items: flex-start; /* 左揃え */
    padding-top: 40px;       /* 上に余白 */
  }

  .nav_item a {
    text-align: left;
    font-size: 18px;
    padding-left: 40px; 
    font-size: 25px;
  }

  .nav{
    position: fixed;
    top: 100px; 
   right: -100%;
   width: 100%;
   height: 100vh; 
   background: linear-gradient(90deg, #1a2a6c, #4a148c, #2a0845);
   box-shadow: -2px 0 5px rgba(0,0,0,0.2);
   transition: right 0.3s ease;
   z-index: 1000;
   overflow-y: auto; 
  }

  .main-visual img{
    width: 100%;
    max-height: 640px;
    object-fit: cover;
  }

  .sns_link img{
    height: auto;
  }

  .news_contact {
  background-color: #fff;
  padding: 40px 20px;
  max-width: 1000px; /* ← 横幅を中央に収める */
  margin: 0 auto;    /* ← 中央寄せ */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- お知らせタイトル --- */
.news h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 30px;
}

/* --- 「もっと見る」ボタン --- */
.more-button {
  position: static; /* ← 絶対配置解除 */
  display: block;
  text-align: right;
  margin-top: 10px;
  font-size: 20px;       /* ← 大きくする */
  color: #004080;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.more-button:hover {
  color: #002b5c;
  text-decoration: underline;
}

/* --- お知らせリスト --- */
.news ul {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  border-top: none; /* ← 今の点線を消すならここで調整 */
  max-width: 800px; /* ← コンテンツ幅を整える */

}

.news ul li a {
  display: block;
  padding: 8px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px dashed #ccc;
  transition: 0.3s;
}

.news ul li a:hover {
  color: #004080;
  background-color: #f8f8f8;
}

.contact h2{
  margin: 30px auto 15px;
}

.contact p{
  font-size: 20px;
  margin-bottom: 15px;
}

h2{
  font-size: 30px;
}

.line-link {
  display: inline-block;
  background-color: #06c755;
  color: #fff;
  text-decoration: none;
  padding: 18px 40px;     /* ← 余白を広めに */
  width: 260px;           /* ← 少し幅広く */
  height: auto;           /* ← 高さ固定を解除 */
  border-radius: 50px;
  font-size: 26px;        /* ← 文字も少し大きく */
  font-weight: bold;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 20px auto 30px;
  text-align: center;
}

.line-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
}

.item-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 70px; /* ← 余白を少し広めに */
  }

  .item img {
    width: 100%;
    height: 450px; /* 商品写真をしっかり見せたい高さ */
    object-fit: cover;
  }

  .item p {
    font-size: 26px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }

  .price_note{
    font-size: 20px;
  }

  .how-to-buy .step img{
    width: 200px;
    height: 200px;
  }

.how-to-buy h3{
  font-size: 30px;
}

.how-to-buy .step p{
  font-size: 24px;
}

.how-to-buy .step{
  margin: 20px 60px;
}

.how-to-buy .step a{
  font-size: 24px;
}

footer .footer_nav ul {
    display: flex;               /* ← 横並びにする */
    justify-content: center;     /* ← 中央寄せ */
    align-items: center;
    gap: 40px;                   /* ← 項目の間隔を広げる */
    text-align: center;
    margin: 20px auto;
  }

  footer .footer_nav a {
    font-size: 18px;             /* ← 少し小さめに整えると綺麗 */
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }

  footer .footer_nav a:hover {
    opacity: 0.8;
  }

 .nav_bottom {
    display: flex;
    justify-content: center;   /* 中央寄せ */
    align-items: center;
    gap: 60px;                 /* 各要素の間の余白 */
    margin: 20px;
  }

  /* 利用規約・プライバシーポリシーを横並びに */
footer .footer_nav a{
  font-size: 18px;
}

  .nav_bottom .nav-small ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav_bottom .nav-small a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
  }

  .nav_bottom .nav-small a:hover {
    opacity: 0.8;
  }

  /* SNSアイコンの調整 */
  .footer_sns {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .x-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
  }

  .footer_sns i {
    font-size: 30px;
  }

  footer .footer_logo{
    width: 90px;
    height: 90px;
    object-fit: cover;
  }

  .footer_bottom{
    height: 120px;
  }

  footer .copyright{
    font-size: 14px;
  }

  .work{
    max-width: 1100px;
    margin: 20px auto;
  }

  .works h1,.news_page h1,.question h1{
    height: 250px;
    object-fit: cover;
  }

  .work p{
    font-size: 18px;
  }

  p.account{
    font-size: 20px;
  }

  .account_wrapper img{
    width: 150px;
    height: 150px;
  }

  .faq-item{
    padding: 25px;
    margin: 40px auto;
    max-width: 1000px;
  }

  .faq-question{
    font-size: 20px;
  }

  .faq-answer{
    font-size: 18px;
  }

  .news_page{
    min-height: 100vh;
  }

  .news_contens{
    max-width: 1000px;
    margin: 20px auto;
  }

.news_page span,strong{
  font-size: 20px;
}

.news_text{
  font-size: 18px;
}


}