/**
Theme Name: sasayuri 2509
Author: PRIMA inc.
Author URI: 
Description: 料金の管理方法を変更。各ページショートコードで管理
Version: 1.0.3
License: 
License URI: 
Text Domain: 
Template: 
*/

/* --全体のスタイルシートデフォルト-- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: #333;
}
:lang(en) {
  font-family: "Noto Serif JP", serif;
}
strong {
  color: #cbbf8b;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 32px;
}
h1 {
  color: #cbbf8b;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 18px;
}
h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.6rem;
}
h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6rem;
}
h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6rem;
}
p,
th,
td,
span {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6rem;
}
a {
  font-family: "Noto Sans JP", serif;
  color: #333;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6rem;
}
/* ---デバイス最適化--- */
@media screen and (max-width: 1023px) {
  strong {
    font-size: 20px;
  }
  h1 {
    font-size: 16px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 16px;
  }
  p,
  li,
  span {
    font-size: 14px;
  }
}

.sans {
  font-family: "Noto Sans JP";
}
.serif {
  font-family: "Noto Serif JP", serif;
}

/*
/*
/* ---------セクションデフォルト----- */
.s_ {
  width: 100%;
  padding: 60px 20px 30px 20px;
}
.w_ {
  margin: 0 auto;
  max-width: 980px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ---デバイス最適化--- */
@media screen and (max-width: 1023px) {
  .s_ {
    width: 100%;
    padding: 30px 20px;
  }
}
/*
/*
/* ------------------ タイトルデザイン-------------------- */
/* 下層ページタイトルセクション */
.s_h1 {
  width: 100%;
  padding: 90px 0 30px 0;
  background: #f8f7f3;
}
.s_h1 h1 {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.s_h1 h1 strong {
  margin-left: -4px;
}
/* パンくずリスト */
.breadcrumb ul {
  margin: 0 auto;
  max-width: 1200px;
  list-style: none;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 400;
  padding-right: 10px;
}
.breadcrumb a {
  font-family: "Noto Serif JP", serif;
  padding-right: 10px;
}
.breadcrumb a:hover {
  transition: color 0.3s ease-in-out;
}
.breadcrumb a:hover {
  color: #e2abc6;
}
/* ---デバイス最適化--- */
@media screen and (max-width: 1023px) {
  .breadcrumb ul {
    padding: 10px 20px;
  }
  .breadcrumb li,
  .breadcrumb li a {
    font-size: 14px;
  }
}
/*
/*
/* ---------- ドロップダウン---------- */
.dropdown {
  width: 100%;
  max-width: 980px;
}
.dd-container {
  margin: 20px 0;
  overflow: hidden;
  height: auto;
  z-index: 1;
  transition: height 0.5s ease-in-out;
}
.dd-container.show {
  height: 0;
  margin: 10px 0;
}

.dd-container-inner {
  margin: 10px 0;
  overflow: hidden;
  height: 0;
  z-index: 1;
  transition: height 0.5s ease-in-out;
}
.dd-container-inner.show {
  height: auto;
  margin: 20px 0;
}
/*
/*
/*-----------トグルボタンがピンクのドロップダウン1----------- */
.ddt01 {
  cursor: pointer;
  padding: 18px 30px;
  color: #fff;
  background: #e2abc6;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.ddt01:hover {
  color: #e2abc6;
  background: #faeaf2;
}
.ddt01.changed {
  color: #fff;
  background: #e2abc6;
}
.ddt01 span {
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: relative;
}
.ddt01 span::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px;
  height: 14px;
  border-top: solid 2px #e2abc6;
  border-left: solid 2px #e2abc6;
  transition: transform 0.3s ease-in-out;
}
.ddt01 span.active::before {
  top: 40%;
  transform: translate(-50%, -50%) rotate(225deg);
}
.ddc01 {
  border: dotted 2px #e2abc6;
  border-radius: 8px;
  width: 100%;
  padding: 40px 30px 20px 30px;
}
/* ---デバイス最適化--- */
@media screen and (max-width: 1023px) {
  .ddt01 {
    padding: 12px 10px;
    background: #e2abc6;
    color: #fff;
  }
  .ddt01 span {
    width: 32px;
    height: 32px;
  }
  .ddt01 span::before {
    width: 12px;
    height: 12px;
  }
  .ddc01 {
    padding: 30px 10px 10px 10px;
  }
}

/*
/*
/* ----------トグルボタンがブラックのドロップダウン2----------*/
.ddt02 {
  cursor: pointer;
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #e2abc6;
}
.ddt02 h3 {
  position: relative;
  padding-left: 30px;
}
.ddt02 h3::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0px;
  transform: translate(0, -50%);
  width: 16px;
  height: 16px;
  background: #e2abc6;
}
.ddt02 span {
  position: relative;
  width: 32px;
  height: 32px;
}
.ddt02 span::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(225deg);
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-left: solid 2px #333;
  transition: transform 0.3s ease-in-out;
}
.ddt02 span.active::before {
  top: 60%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ddc02 {
  border: solid 2px #f8f7f3;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
/* ---デバイス最適化--- */
@media screen and (max-width: 1023px) {
  .ddt02 span {
    width: 32px;
    height: 32px;
  }
  .ddt02 span::before {
    width: 8px;
    height: 8px;
  }
  .ddc02 {
    padding: 10px;
  }
  .ddt02 h3 {
    padding-left: 20px;
  }
  .ddt02 h3::before {
    top: 52%;
    width: 12px;
    height: 12px;
  }
}

/* ----------JSON連携料金表---------- */
.price-table-block {
  width: 100%;
  margin-bottom: 24px;
}

.price-table-caption {
  padding: 8px 16px;
  max-width: 560px;
  margin: 0 auto;
}

.price-table-caption p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #4c4942;
}

.price-table-notes {
  margin-top: 16px;
  border: 1px dashed #e1ddd3;
  padding: 8px 16px;
  border-radius: 8px;
}

.price-table-notes p {
  font-size: 13px;
}

.price-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}

.price-static-section {
  margin-bottom: 40px;
}

.price-static-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.price-static-subsection {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-static-title {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  padding-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
  color: #4c4942;
  border-bottom: 1px solid #e2abc6;
}

.price-static-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #e2abc6;
  border-radius: 2px;
  transform: translateY(-50%);
}

.price-table td {
  border: 1px solid #e1ddd3;
  padding: 0;
  vertical-align: top;
}

.price-table-item {
  padding: 0;
  min-width: 240px;
  background: #f8f7f3;
}

.price-table-item-content {
  background: inherit;
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.price-table-heading {
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin: 32px 0 12px;
  color: #4c4942;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-table-heading::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #e7ddc7;
  border-radius: 2px;
}

.price-table-block > .price-table-heading:first-child {
  margin-top: 0;
}

.price-table-name {
  font-weight: 400;
}

.price-table-details {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.price-table-details li {
  margin-bottom: 4px;
}

.price-table-unit {
  white-space: nowrap;
  font-weight: 400;
  min-width: 96px;
}

.price-table-unit-content,
.price-table-price-content {
  background: #fff;
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
}

.price-table-unit-content {
  display: flex;
  align-items: center;
}

.price-table-price-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.price-table-price {
  white-space: nowrap;
  text-align: right;
  font-weight: 500;
}

.price-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px 16px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.price-nav-wrapper {
  margin-top: 40px;
  padding: 30px 20px;
}

.price-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #4c4942;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}

.price-nav-button:hover {
  color: #e2abc6;
}

.price-nav-text {
  line-height: 1.4;
}

.price-nav-icon svg {
  display: block;
}

.price-partial-section {
  width: 100%;
}

.price-partial-section .dropdown {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .price-table td {
    padding: 0;
  }

  .price-table-item-content {
    padding: 12px;
  }

  .price-table-unit-content,
  .price-table-price-content {
    padding: 12px;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .price-nav {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px 12px;
  }
}

/*
/*
/* ----------フィールドボタン----------*/
.field-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #e6e0c7;
  width: 240px;
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease;
}
.field-btn:hover {
  background-color: #fff;
  box-shadow: 0px 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.field-btn span:nth-child(2) {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translate(-50%);
  width: 50px;
  height: 1px;
  background: #333;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.field-btn:hover span:nth-child(2) {
  opacity: 0;
  transform: translateX(0) scaleX(0);
}
.news-feed-scode {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-feed-scode .date {
  padding-right: 8px;
}

/* --------------------ここまでサイト全体に適用-------------------- */

/* 以下GUIで管理している内容のコピペ */
/* ------news-------  */
/* .wp-write-contents {
  margin: 0 auto;
  width: auto;
  max-width: 560px;
  padding: 120px 30px 20px 30px;
} */

/*------メニューボタン-------*/
/* .menu-link h3,
span {
  transition: color 0.2s;
}
.menu-link:hover h3,
.menu-link:hover span {
  color: #cbbf8b;
} */

/*----診療時間----*/
/* .time {
  width: 100%;
  max-width: 740px;
  text-align: center;
}
.time table {
  font-size: 18px;
  width: 100%;
  margin-bottom: 12px;
  border-spacing: 0;
  font-weight: 400;
}
.time th {
  font-size: 18px;
  font-weight: 400;
  width: 200px;
  padding: 10px 0 10px 0;
  border-bottom: #cbbf8b solid 1px;
}
.time td {
  text-align: center;
  width: 120px;
  padding: 20px 0 20px 0;
  border-bottom: #cbbf8b solid 1px;
}
.gold-bar {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #cbbf8b;
}
.gold-round {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #cbbf8b;
  border-radius: 50%;
}
.gold-sankaku {
  display: inline-block;
  width: 0;
  height: 0;
  border-bottom: 16px solid #cbbf8b;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
} */

/* --------デバイス最適化（診療時間関係）------- */
/* @media screen and (max-width: 1023px) {
  .time th {
    font-size: 18px;
    font-weight: 400;
    width: 250px;
    padding: 10px 0 10px 0;
    border-bottom: #cbbf8b solid 1px;
  }
  .time table {
    font-size: 16px;
    width: 100%;
    border-spacing: 0;
  }
  .time td {
    padding: 10px 0 10px 0;
  }
  .gold-round {
    width: 16px;
    height: 16px;
  }
  .gold-sankaku {
    border-bottom: 14px solid #cbbf8b;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }
} */
/* @media screen and (max-width: 667px) {
  .time th {
    font-size: 14px;
  }
  .time table {
    font-size: 14px;
    border-spacing: 0;
  }
  .time td {
    padding: 10px 0 10px 0;
  }
  .gold-round {
    width: 16px;
    height: 16px;
  }
  .gold-sankaku {
    border-bottom: 14px solid #cbbf8b;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }
} */

/*------------el_sticky-------------- */
/* @media screen and (min-width: 768px) {
  .el_sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 30%;
  }
} */

/* .news-container h1 {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: bold;
}
.news-container h2 {
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: bold;
}
.news-container p {
  font-size: 15px;
  font-weight: 400;
} */

/*
/*
/* ----------以前の料金コンテナ中身----------*/
/* .dd-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.dd-menu .title {
  padding: 12px;
  background: #f8f7f3;
  width: 60%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dd-menu .title span {
  font-size: 12px;
}
.dd-menu .price {
  padding: 12px;
  background: #fff;
  width: 40%;
  text-align: right;
}
.dd-menu-description {
  width: auto;
  padding: 12px;
  background: #ffecf2;
  border: #e2abc6 solid 1px;
  border-radius: 8px;
  font-size: 12px;
}

.dd-menu-caption {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  font-size: 13px;
}

/* ---デバイス最適化--- */
/* @media screen and (max-width: 767px) {
  .dd-menu {
    flex-direction: column;
    width: 100%;
  }
  .dd-menu .title {
    width: 100%;
  }
  .dd-menu .price {
    width: 100%;
  }
}
*/
