/*
Theme Name: furisode MARUISHI
Theme URI: https://www.sejuku.net/
Description: きものの丸石
Version: 1.0.0
Author: Mikiko
Author URI: https://www.sejuku.net/
*/

/* PC、スマホ共通スタイル */

/* padding とborderが自動で考慮される */
* {
  box-sizing: border-box;
}
/* .wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
} */

p {
  font-size: 15px;
  @media screen and (max-width: 767px) {
    font-size: 13px;
  }
}
a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}
body {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  @media screen and (max-width: 767px) {
    margin: 0 auto;
  }
}
h1 {
  color: #665990;
  display: flex;
  align-items: center; /* ← 文字と高さを揃える */
}
h2 {
  margin-top: 40px;
  margin-left: 10px;
  padding-left: 10px;
  font-size: 24px;
}
h2::after {
  content: "";
  display: inline-block;
  width: 200px;
  height: 30px;
  background-image: url("image/title_01.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 20px;
}
h3 {
  font-size: 16px;
}
li {
  list-style: none;
  margin-bottom: 0;
  /* border-bottom: 1px solid #aaa5d1; */
}
section {
  margin-left: 20px;
  margin-top: 30px;
  margin-bottom: 100px;
  margin: 30px 20px 100px 20px;
  @media screen and (max-width: 768px) {
    margin: 30px;
  }
}
img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.thumbnail img {
  width: 100%;
  height: auto;
  @media screen and (max-width: 767px) {
    width: 70%; /* ← 好きな割合に */
    margin: 0 auto; /* 中央寄せ */
    display: block;
  }
}

main {
  margin-top: 60px;
  z-index: 1;
}
/* ヘッダー */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px;
}
/* ヘッダー固定 */
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 9999 !important;
  @media screen and (max-width: 768px) {
    top: 0;
    margin: 0 auto;
  }
}
.page-id-121 header {
  top: 0;
}
#menu-content {
  display: flex;
  flex-direction: column;
}
#contact-nav {
  display: flex;
  justify-content: flex-end;
  margin: 5px;
  height: 30px;
}
.site-logo {
  width: clamp(70px, 10vw, 120px);
  height: auto;
}

#catalog {
  padding: 0.5em 1em;
  /* margin: 2em 0; */
  color: #ffffff;
  background: #aaa5d1; /*背景色*/
  border-radius: 10px; /*角の丸み*/
  font-size: 12px;
  margin-right: 5px;
  margin-top: 0;
  margin-bottom: 0;
  @media screen and (max-width: 768px) {
    font-size: 10px;
  }
}
#resavation {
  padding: 0.5em 1em;
  /* margin: 2em 0; */
  color: #ffffff;
  background: #f8acac; /*背景色*/
  border-radius: 10px; /*角の丸み*/
  font-size: 12px;
  margin-right: 5px;
  margin-top: 0;
  margin-bottom: 0;
  @media screen and (max-width: 768px) {
    font-size: 10px;
  }
}
#contact-nav a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}
#nav-pc {
  font-size: 14px;
  text-decoration: none;
}
#nav-pc ul {
  display: flex;
  padding-left: 0;
}
#nav-pc li {
  list-style: none;
}
#nav-pc > ul > li {
  position: relative;
}
/* 現在のページ */
.nav-pc > li.current > a {
  /* border-bottom: solid #665990; */
}
nav .child-menu {
  position: absolute;
  width: 180px;
  background: #d1cdf0;
  top: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
nav .child-menu a {
  color: #fff;
  padding: 10px 10px;
  display: block;
}
nav .parent-menu > ul {
  display: flex;
  flex-direction: column;
}
/* ホバーで子メニュー表示 */
nav .parent-menu:hover ul {
  opacity: 1;
  visibility: visible;
}
/* nav li.parent-menu li a:hover {
  background: #aaa5d1;
} */

/* ナビゲーションのリンクの装飾設定 */
#nav-pc a {
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px;
  margin-right: 20px;
  color: #0d0d0d;
}
#nav-pc li:hover {
  background-color: #aaa5d1;
}
/* スマホ用ナビを非表示 */
#nav-sp,
#menu-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  /* スマートフォン用のスタイルを指定する */
  /* PC用ナビゲーション非表示 */
  #nav-pc {
    display: none;
  }
  /* ハンバーガーメニュー */
  #menu-sp {
    display: block;
    background-color: transparent;
    float: right;
    padding: 0;
    border: none;
  }
  .icon-image {
    height: 30px;
    width: 30px;
  }
  /* SPではサブメニューは完全に消す */
  @media screen and (max-width: 767px) {
    .sp-child-menu {
      display: none !important;
      visibility: visible !important;
      opacity: 1 !important;
      height: auto !important;
    }

    .sp-child-menu.open {
      display: block !important;
    }
  }
}
/* スマホ用ナビゲーションの表示切替*/
/* 初期状態、レイアウトと非表示設定 */
#nav-sp {
  background-color: #a59fd4;
  position: fixed;
  left: 0;
  top: 55px;
  height: auto;
  width: 100%;
  display: none;
  z-index: 100;
  overflow-y: auto; /* ← 中身が多い時スクロール */
}
/* SPメニュー全体を完全リセット */
.sp-menu,
.sp-menu ul,
.sp-menu li {
  position: relative;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border-bottom: #fff 1px solid; /* 親メニューの区切り線（下） */
}

/* 親メニュー */
.sp-parent-menu {
  position: relative;
  padding: 15px, 0;
}

/* 親リンク */
.sp-parent-menu > a {
  padding-left: 0;
  margin-left: 0;
  display: block;
}
/* 矢印を付けたい場合 */
.sp-parent-link::after {
  content: "▾";
}
/* 開いたら色を変える */
.sp-child-menu.open {
  background: #aba8c6;
}

/* サブメニューは最初は非表示 */
.sp-child-menu {
  display: none;
  position: static;
  padding-left: 1em;
}
/* JSで open が付いたら表示 */
.sp-menu .sp-child-menu.open {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}
.sp-child-menu li a {
  font-size: 14px;
}
.sp-menu .sp-child-menu {
  position: static; /* ← absolute を上書き */
  display: none;
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.sp-parent-menu > a {
  display: block;
}

/* ×ボタン */
#close {
  /* position: absolute; */
  position: fixed;
  top: 20px;
  right: 15px;
  background-color: transparent;
  border: none;
}

#nav-sp nav ul {
  padding-left: 20px;
}

#nav-sp nav li {
  list-style: none;
}
#nav-sp nav ul li:last-child {
  border-bottom: none;
}

/* ナビゲーションメニュー用ロゴ */
#logo-sp {
  margin: 80px 0 30px 20px;
  background-color: transparent;
}
/* ナビゲーションのリンクの装飾設定 */
#nav-sp nav a {
  display: block;
  color: #ffffff;
}

#nav-sp nav a:hover {
  text-decoration: underline;
}

#nav-sp .menu {
  text-decoration: none;
  margin: 0 20px 0 20px;
  height: 44px;
  font-size: 16px;
  background-image: url("images/arrow-icon.png");
  background-repeat: no-repeat;
  background-position: right top;
}
/* .sp-parent-menu {
  list-style: none;
  padding: 0;
  margin: 0; */

/* .sp-parent-menu {
  text-decoration: none;
  margin: 0 20px 0 20px;
  height: 44px;
  font-size: 16px;
  background-image: url("images/arrow-icon.png");
  background-repeat: no-repeat;
  background-position: right top;
} */

/*********************************
home
**********************************/
/* メインビジュアル*/
#main-visual {
  display: flex;
  justify-content: center;
}
#main-visual img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #main-visual {
    position: relative;
    max-width: 100%;
    /* height: auto; */
  }

  #main-visual > img {
    width: 100%;
    height: auto;
    display: block;
    /* top: auto;
    bottom: 0; */
  }
}
/* お知らせ */
#news {
  @media screen and (max-width: 768px) {
    margin: 20px;
    padding: 0 20px 0 20px;
  }
}

.news-post {
  display: flex;
  flex-direction: column;
  margin: 20px;
}
.news-flex {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  /* @media screen and (max-width: 768px) {
    flex-direction: column;
  } */
}
@media screen and (max-width: 768px) {
  .news-image img {
    width: 120px;
    height: 120px;
  }
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.news-flex h3 {
  margin: 0;
  color: #384158;
}
.news-content {
  margin-left: 20px;
}
.post-date {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 12px;
}
.post-content {
  margin-top: 0;
}
/* お知らせ */

/* .news-flex > div {
  /* width: 50%; */
/* margin-right: 8px; */
/* }  */

/* 丸石について */
#aboutus h3 {
  margin-left: 20px;
}
#aboutus-content {
  margin-left: 20px;
}
#aboutus-photo {
  display: flex;
  justify-content: center;
}
.aboutus-img {
  width: 200px;
  margin: 10px;
}

/* 振袖プラン */
.plan {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.buy-bd {
  border: 1px dotted #aaa5d1;
}
.order-rental-bd {
  border: 1px dotted #f8acac;
}
.rental-bd {
  border: 1px dotted #9ddcdc;
}
.remake-bd {
  border: 1px dotted #aaa5d1;
}
.title-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1; /* 正方形を維持 */
}

.plan-title {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  border-radius: 0 0 80% 0;
  /* max-width: 350px; */
  height: 40%;
  width: 50%;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .plan-title {
    width: 40%;
    height: 40%;
  }
}

.buy-bg {
  background-color: #aaa5d1;
}
.order-rental-bg {
  background-color: #f8acac;
}
.rental-bg {
  background-color: #9ddcdc;
}
.remake-bg {
  background-color: #aaa5d1;
}
.plan-title > h1 {
  font-size: clamp(20px, 4vw, 24px); /*最小16px、画面に応じて拡大、最大24px*/
  color: #ffffff;
  margin: 25px 0 0 25px;
}

.title-visual > img {
  width: 90%;
  height: 100%;
  border-radius: 276px 0 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.title-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  /* margin: 0 auto; */

  /* padding-left: 20px;
  padding-right: 10px; */
}
.plan-content {
  position: relative;
  width: 100%;
  max-width: 400px;

  margin: auto;
}
.tokuten {
  display: flex;
}
.tokuten-content {
  width: 350px;
  background: linear-gradient(transparent 70%, #ff99ab 70%);
}
.present-number {
  font-size: 50px;
  @media screen and (max-width: 768px) {
    font-size: 40px;
  }

  /* background: linear-gradient(transparent 70%, #ff99ab 70%); */
}
/* .tokuten::before {
  content: url("image/icon-present.jpg");
  height: 45px;
  margin-right: 10px;
} */
.present-hyoki {
  font-size: 35px;
  @media screen and (max-width: 768px) {
    font-size: 30px;
  }
}
.lowest-price {
  /* margin-top: 30px auto 10px auto; */
  text-align: center;
}
.display-price {
  font-size: 30px;
  color: red;
  @media screen and (max-width: 768px) {
    font-size: 25px;
  }
}
.title-content > p {
  color: #384158;
}
.plan-coment {
  width: 100%;
}
.more-01 {
  width: 150px;
  height: 34px;
  border: 2px double #665990;
  padding: 3px;
  float: right;
}
.more-02 {
  background-color: #aaa5d1;
  text-align: center;
  margin: auto;
}
.more-02 a {
  text-decoration: none;
  color: #ffffff;
}

/* その他のお着物 */
#others-general {
  width: 100%;
  margin: 10px auto;
}
#others-menu {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
#others-menu > a > img {
  width: 200px;
}

/* フッター  */
.footer-content {
  display: flex;
  justify-content: space-around;
  margin-top: 5%;
  @media screen and (max-width: 767px) {
    display: block;
    margin: 50px auto;
  }
}
.footer-content ul {
  padding: 0;
}

.footer-link a {
  font-size: 15px;
  text-decoration: none;
  color: #384158;
}
.footer-info {
  font-size: 16px;
  text-align: center;
}
.parking {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.parking img {
  width: 200px;
  height: auto;
  display: block;
}
.footer-map {
  display: flex;
  justify-content: center;
  margin: 0 20px;
  @media screen and (max-width: 768px) {
    position: relative;
    max-width: 100%;
  }
}
#googlemap {
  width: 100%;
  @media screen and (max-width: 768px) {
    width: 60%;
    height: auto;
    display: block;
  }
}
.copyright {
  font-size: 12px;
  text-align: center;
  margin: 20px;
}
.footer-link {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .footer-link {
    margin: 0 auto;
  }
}
.footer-info > img {
  width: 150px;
}
/* .footer-map {
    margin: 20px 20px;
  } */
#googlemap > img {
  width: 250px;
}

/*********************************
furisode-collection
*********************************/
.furisodes {
  margin-bottom: 100px;
}
.furisode_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 50px;
}
.furisode-image-title {
  font-size: 0.8em;
  margin: 8px 0;
}
.furisode_container img {
  @media screen and (max-width: 768px) {
    width: 150px;
    height: auto;
  }
}
.furisode_top_image {
  width: 300px;
  margin-top: 20px;
  @media screen and (max-width: 768px) {
    width: 150px;
    margin-top: 10px;
  }
}

.furisode_top_image img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
/* pagination */
.furisode-pagination {
  display: flex;
  justify-content: center;
  margin: 80px 0;
}

.furisode-pagination .page-numbers {
  display: inline-block;
  margin-right: 20px;
  padding: 13px 20px;
  color: #433e68;
  border-radius: 3px;
  border: #aaa5d1 solid 1px;
  background: #fff;
}

/*********************************
furisode-詳細
*********************************/
.furisode {
  margin: 20px;
}
.furisode_detail {
  display: flex;
  @media screen and (max-width: 768px) {
    display: block;
  }
}
.furisode_thumbnail_image {
  width: 400px;
  margin: 30px;
  @media screen and (max-width: 768px) {
    position: relative;
    max-width: 80%;
    height: auto;
  }
}
.furisode_thumbnail_image img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
.furisode_detail_image {
  width: 400px;
  margin: 30px;
  @media screen and (max-width: 767px) {
    width: 80%;
    height: auto;
  }
}
.special-price {
  font-size: 1.2em;
  color: #e67a7a;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .special-price {
    font-size: 0.8em;
    padding-left: 30px;
  }
  .furisode_detail_info {
    font-size: 0.8em;
  }
}

.back-button {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #665990;
  border-radius: 10px; /*角の丸み*/
  text-decoration: none;
  background-color: #aaa5d1;
  color: #ffffff;
}

/*********************************
振袖ご購入プラン
*********************************/
.furisode-fv {
  width: 100%;
}

.furisode-fv > img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.furisode-general {
  display: flex;
}
.furisode-content {
  width: 80%;
  margin-left: 20px;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .furisode-general {
    display: block;
  }
  .furisode-content {
    width: 100%;
    margin-left: 0;
  }
}
.furisode-img {
  text-align: center;
}
.fullset-title_01 {
  font-size: 16px;
}
.fullset-title_02 {
  width: 250px;
  font-size: 30px;
  font-weight: bold;
  color: #ff99ab;
  background: linear-gradient(transparent 70%, #9ddcdc 70%);
}
.fullset-title_03 {
  margin-top: 20px;
  background-color: #aaa5d1;
  color: #ffffff;
  font-weight: bold;
  width: 200px;
  height: 30px;
  text-align: center;
  padding: auto;
  border-radius: 5px 5px 0 0;
}
.fullset-title_04 {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #ff99ab;
  text-align: center;
  background: linear-gradient(transparent 90%, #9ddcdc 90%);
  margin: 5px;
  @media screen and (max-width: 768px) {
    font-size: 16px;
  }
}
.fullset-content {
  background-color: #ebe9f8;
  padding: 5px;
}
.fullset-content > ul {
  display: flex;
  flex-wrap: wrap;
  padding-inline-start: 20px;
}
.content-list > li {
  border-bottom: none;
  margin-right: 20px;
  margin-bottom: 8px;
  font-size: 16px;
  @media screen and (max-width: 768px) {
    font-size: 14px;
  }
}
.content-list > li::before {
  content: url("image/list-icon_01.png");
  height: 10px;
  margin-right: 5px;
}
#remake-content {
  background-color: #ebe9f8;
  padding: 5px;
}
#remake-content-list {
  padding-inline-start: 20px;
}
#remake-content-list > li {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 5px;
}

#remake-content-list > li::before {
  content: url("image/list-icon_01.png");
  flex-shrink: 0; /* ← 折り返し防止の核心 */
  height: 10px;
  margin-right: 5px;
}
/* #content-list > li {
  border-bottom: none;
  /* margin-right: 20px; */
/* font-size: 16px;
  position: relative;
  padding-left: 1.8em;

}
#content-list > li::before {
  content: "";
  /* content: url("image/list-icon_01.png"); */
/* position: absolute;
  left: 0;
  top: 0.3em; /* ← ここ重要：1行目の高さに合わせる */
/* width: 14px;
  height: 14px; */

/* background-image: url("image/list-icon_01.png");
  background-size: contain; */
/* background-repeat: no-repeat; */
/* margin-right: 5px; */
/* } */
.present {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  justify-content: space-around;
}
.present-item {
  flex: 0 0 300px;
}
.present-item {
  width: 300px;
  height: 75px;
  color: #e67a7a;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center; /* 縦中央 */
  text-align: center;
  background-color: #f0d7d7;
  padding: 0.2em 0.5em;
  margin: 1em 0;
  box-shadow: 0px 0px 0px 10px #f0d7d7;
  border: dashed 2px white;
}
@media screen and (max-width: 768px) {
  .present-item {
    flex: 0 0 250px;
    height: 65px;
    font-size: 16px;
  }
}

/* 振袖プラン　手順 */
.step {
  display: block;
  align-items: center;
  margin: 30px;
}
.step-logo {
  margin-bottom: 10px;
  background-color: #aaa5d1;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  width: 150px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2; /*行の高さ*/
  padding: 0;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 0px 0px 5px #aaa5d1;
  border: solid 1px white;
  box-sizing: border-box; /*レスポンシブ対応では必須*/
}
/* .step img {
  width: 150px;
}
.step-img {
  margin-left: 20px;
} */
.step-content {
  /* margin-left: 20px; */
}
/*********************************
その他のお着物
*********************************/
#other-intro {
  margin: 10px 20px;
}
#other-img {
  width: 300px;
  height: auto;
}
.other-content {
  display: flex;
  gap: 20px;
}

.other-content img {
  width: 300px;
  height: auto;
}
.other-text {
  display: flex;
  flex: 1; /*余ったスペースを広げる*/
  flex-direction: column;
  margin-left: 20px;
  /* float: right; */
}

@media screen and (max-width: 767px) {
  .other-content {
    display: block;
  }
  .other-text {
    margin-left: 0;
  }

  .other-content img {
    width: 100%;
  }
}

.other-ploroge {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.other-ploroge span {
  align-self: flex-end; /* ← これで右端へ */
}

.other-list {
  font-size: 12px;
  padding-inline-start: 5px;
}
.other-list span {
  align-self: flex-end; /* ← これで右端へ */
}
.content-list {
  margin: 0;
  padding-left: 15px;
}
.content-list p {
  /* text-align: center; */
  padding-left: 80px;
  /* margin-top: 0; */
  margin: 0;
}

@media screen and (max-width: 767px) {
  .content-list span {
    font-size: 10px;
  }
  .content-list {
    margin: 0;
    padding: 0;
  }
  .content-list p {
  padding-left: 40px;
}

}

.more-03 {
  width: 100%;
  max-width: 300px;
  /* height: 34px; */
  border: 2px double #665990;
  padding: 3px;
  margin: 20px 0 0 auto;
}

/*********************************
商品一覧
*********************************/
.intro {
  background-image: url("image/title_07.png");
  background-repeat: no-repeat; /* 繰り返さない */
  background-position: center; /* 中央配置 */
  background-size: cover; /* 全体を覆う */
  height: 200px;
  /* margin-left: 20px; */
  display: flex;
  /* justify-content: center; 横中央 */
  align-items: center;
  padding-left: 100px;
  @media screen and (max-width: 768px) {
    position: relative;
    max-width: 100%;
    margin: 20px;
    height: 150px;
    padding-left: 80px;
  }
}
.intro h1 {
  font-style: italic;
  font-weight: bold;
  text-shadow: 1px 1px 2px silver;
  text-align: left;
}
.search h3 {
  text-align: center;
}
/* .intro h1::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url("image/title_04.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
} */
.category-list {
  display: flex;
  justify-content: center;
  font-size: 18px;

  @media screen and (max-width: 768px) {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
  }
}

.category-list > li::before {
  content: url("image/list-icon_02.png");
  width: 15px;
  margin-right: 5px;
  margin-left: 10px;
  margin-bottom: 0;
}
.category-list a {
  text-decoration: none;
  font-weight: bold;
  color: #0d0d0d;
  margin-right: 20px;
}
.category-list li:hover {
  background-color: #aaa5d1;
}

.items {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 60px;
}

.item_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 25px;
  gap: 20px;
  @media screen and (max-width: 767px) {
    display: block;
    margin: 20px;
  }
}
.item {
  width: 20%;
  border-radius: 6px;
  border: solid 1px #aaa5d1;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  @media screen and (max-width: 767px) {
    width: calc(100% - 20px);
    margin: 10px;
  }
}

.item_image {
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  overflow: hidden;
}

.item_image img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

.item_title {
  text-decoration: underline 4px #aaa5d1;
  font-weight: bold;
}
.item_body {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
}

.item_text02 {
  color: #e67a7a;
  font-weight: bold;
}
.item_text03 {
  color: #e67a7a;
  font-size: 0.8em;
  text-align: right;
}

.category > li {
  list-style: none; /*「.」を消す*/
  padding-right: 2em; /*右に1文字空ける*/
}
/*********************************
お問合せ
*********************************/
/***** コンタクトフォーム *****/
.form-intro {
  text-align: center;
}
.contact-form-wrapper {
  max-width: 800px; /* 好きな幅に調整 */
  margin: 0 auto; /* 中央寄せ */
  padding: 0 20px; /* スマホ用余白 */
}

.table-contactform7 {
  overflow: hidden;
  table-layout: fixed;
}

.required-contactform7 {
  padding: 5px;
  background: #de8686;
  color: #fff;
  border-radius: 3px;
  margin-right: 3px;
}

.unrequired-contactform7 {
  padding: 5px;
  background: #bdbdbd;
  color: #fff;
  border-radius: 3px;
  margin-right: 3px;
}
.coment {
  font-size: 0.8em;
  color: #f58694;
}

.table-contactform7 th {
  font-weight: bold;
  text-align: start;
  padding-left: 20px;
}
.table-contactform7 input,
.table-contactform7 textarea {
  max-width: 90% !important;
  margin: 5px 10px 10px 5px;
}

.address-100 input {
  max-width: 90% !important;
  margin: 5px 10px 10px 5px;
}

.message-100 textarea {
  width: 100%;
  margin: 5px 10px 10px 5px;
}
.text-xs-center {
  /* display: block;
  margin: 0 auto; */
  display: flex;
  justify-content: center;
}
.btn {
  width: 30%;
  padding: 12px 24px;
  border-radius: 6px;
  border-color: #aaa5d1; /* 枠線の色 */
}

.btn-success {
  background: #aaa5d1;
  color: #fff;
}

.btn-lg {
  font-size: 18px;
}
.agree-label {
  display: flex;
  align-items: center;
  gap: 8px; /* チェックと文字の間隔 */
}

@media screen and (min-width: 767px) {
  .table-contactform7 th {
    width: 28%;
  }
}
@media screen and (max-width: 767px) {
  .table-contactform7 {
    display: flex;
  }

  .table-contactform7 tbody,
  .table-contactform7 tr {
    display: block;
    width: 100%;
  }
  .table-contactform7 th {
    width: 100%;
    display: block;
    margin: 0 auto;
    border: none;
  }
  .table-contactform7 td {
    display: list-item;
    list-style-type: none;
    margin: 0;
    padding-left: 50px;
    width: 100%;
    border-top: none !important;
  }
}
/* **** 確認画面 *****/
#wpcf7cpcnf {
  padding-top: 130px;
  background: #fff;
  position: relative;
}

/* テーブル */
#wpcf7cpcnf table {
  border: none;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 1px;
}
#wpcf7cpcnf table th {
  width: 30%;
  background-color: #aaa5d1;
  border: 1px solid #fff;
  color: #fff;
  text-align: start;
  padding-left: 5px;
}
#wpcf7cpcnf table td {
  width: 50%;
  border: 1px solid #fff;
  padding-left: 5px;
}
/* ボタン */
/* .div.wpcf7cpcnf-btns {
  display: flex;
  justify-content: center;
} */
.wpcf7cp-btns {
  text-align: center;
}

#wpcf7cpcnf button {
  background-color: #aaa5d1;
  border: 4px outset #aaa5d1;
  border-radius: 6px;
  color: #fff;
}

/*********************************
404
*********************************/
.home {
  background-image: url(image/page-image_01.png);
}
/* .image_header {
  width: 1000px;
  height: 400px;
} */

.image_header img {
  max-width: 100%;
}
.al-message {
  margin: 80px;
}
.header_info {
  font-size: 30px;
  color: #665990;
}
.al-title {
  font-size: 30px;
  background: linear-gradient(transparent 70%, #9ddcdc 70%);
}
/*********************************
画面幅が767px以下のとき 
*********************************/
@media screen and (max-width: 767px) {
  /* スマートフォン用のスタイルを指定する */

  /* メインビジュアル */
  /*見出し*/
  h2 {
    margin: 15px 0 15px 0;
  }
  /* h2::after {
    content: url("image/title_01.png");
    width: 150px;
    height: auto;
    margin-left: 16px;
  } */
  h3 {
    font-size: 16px;
    margin: 10px 0 0 0;
  }
  /* 丸石について */
  #aboutus {
    margin: 20px 0 20px 0;
    padding: 10px 20px 0 20px;
  }
  #aboutus-photo {
    flex-direction: column;
    margin: auto;
  }
  .aboutus-img {
    margin: 10px auto;
  }
  /* 振袖プラン */
  /* #furisode-plan {
    margin: 20px;
  } */
  .plan {
    flex-direction: column;
    margin: 50px auto;
  }
  /* その他のお着物 */
  #others-menu {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
  }
  #others-menu > a > img {
    width: 150px;
    justify-content: center;
    margin: 10px;
  }
  /* 商品一覧 */
  .category-list {
    font-size: 16px;
  }

  /* フッター */
}
