/**
Theme Name: sasayuri 2508
Author: PRIMA inc.
Author URI: 
Description: 
Version: 1.0.2
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;
  }
}
/*
/*
/* ---------セクションデフォルト----- */
.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;
}

.dd-container-inner {
  margin: 20px 0;
  overflow: hidden;
  height: 0;
  z-index: 1;
  transition: height 0.5s ease-in-out;
}
.dd-container-inner.show {
  height: auto;
}
/*
/*
/*-----------トグルボタンがピンクのドロップダウン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: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(225deg);
  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: 60%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.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 #999;
}
.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: 12px;
    height: 12px;
  }
  .ddc02 {
    padding: 10px;
  }
  .ddt02 h3 {
    padding-left: 20px;
  }
  .ddt02 h3::before {
    top: 52%;
    width: 12px;
    height: 12px;
  }
}

/*
/*
/* ----------料金コンテナ中身----------*/
.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;
}
.dd-menu-description p {
  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%;
  }
}

/*
/*
/* ----------フィールドボタン----------*/
.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-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;
}
