@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap');
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.5;
  font-size: 1.4rem;
}
h1, h2, h3, h4, h5 {
  font-weight: 700;
}
h1 {
  font-size: 5.6rem;
}
h2 {
  font-size: clamp(2rem, 1.92rem + 0.4vw, 2.4rem);
  font-weight: 700;
  border-left: 5px solid #a1c945;
  padding: 0 0 0 10px;
  margin: 0 0 10px 0;
}
h2.from-footer {
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  border: 0;
  text-align: center;
  margin: 0 0 30px 0;
}
h3.h3-gb {
  background-color: #a1c945;
  padding: 10px;
  color: #fff;
  margin: 60px 0 10px 0;
}
h3.h3-gb::before {
  display: none;
}
h3 {
  font-size: clamp(1.6rem, 1.44rem + 0.8vw, 2.4rem);
  margin: 60px 0 10px 0;
}
h3::before {
  content: "■";
  color: #a1c945;
  margin: 0 5px 0 0;
}
h4 {
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  margin: 0 0 10px 0;
  border-bottom: 1px dashed #ccc;
  padding: 0 0 10px 0;
}
h4::before {
  content: "-";
  margin: 0 5px 0 0;
  color: #a1c945;
}
p {
  font-size: 1.6rem;
}
p.text {
  margin: 0 0 50px 0;
}
footer {
  background-color: #f4eee3;
  padding: 90px 15px;
}
.floating-menu {
  position: fixed;
  z-index: 9998;
  width: 100%;
  background-color: #a1c945; /* バーの背景色(濃い赤色) */
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .floating-menu {
    /*    transform: translateY(-550px)*/
    display: none;
  }
}
.floating-menu.is-active {
  transform: translateY(0);
}
.floating-menu nav {
  width: 1200px;
  max-width: 100%;
  margin: auto;
}
.floating-menu .navigation {
  padding: 24px;
}
.floating-menu .navigation ul {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.floating-menu .navigation ul li {
  color: #fff;
  font-size: 1.6rem;
}
.sec-hero {
  position: relative;
  height: 50vh;
  background-color: #999;
  padding: 0 0 0 0;
}
.sec-hero.sub-page {
  position: relative;
  height: 35vh;
  background-color: #999;
}
.sec-hero span {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #333;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1001;
  opacity: 0.23;
}
.sec-hero img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1000;
}
.sec-hero::after {
  position: absolute;
  content: "";
  top: 80px;
  left: 40px;
  z-index: 1002;
  width: 150px;
  height: 37.5px;
  background: url("../img/moriuelogo-main.svg") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .sec-hero::after {
    top: 20px;
    left: 20px;
  }
}
.sec-hero .floating-text-wrapper {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1002;
  width: 550px;
  max-width: 100%;
  padding: 0 30px;
}
.sec-hero .floating-text-wrapper .floating-text {
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: clamp(3rem, 2.6rem + 2vw, 5rem);
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec-hero .floating-text-wrapper .floating-text {
    top: 50%;
  }
}
.sec-hero .floating-text-wrapper .floating-text + p {
  font-size: 1.3rem;
  color: #fff;
}
.sec-lead {
  background-color: #f4eee3;
  padding: 40px 24px 50px 24px;
  margin: 0 0 36px 0;
}
.sec-lead .lead-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1000px;
  max-width: 100%;
  margin: auto;
  gap: 24px;
}
.sec-lead .lead-inner p {
  width: 500px;
  max-width: 100%;
  margin: auto;
  flex: 1;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .sec-lead .lead-inner p {
    flex: auto;
  }
}
.sec-main {
  padding: 60px 24px;
}
.sec-main .main-content {
  width: 1000px;
  max-width: 100%;
  margin: auto;
}
/**************************************************
写真ギャラリー
**************************************************/
.photos-wrapper {
  margin: 30px auto 60px auto;
  width: 600px;
  max-width: 100%;
}
.photos-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  flex-wrap: wrap;
}
.photos-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .photos-two, .photos-three {
    grid-template-columns: 1fr;
  }
}
.photo p.photo_ttl {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.photo p.photo_subttl {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 10px 0;
}
.photo img {
  display: block;
  width: 100%;
  margin: 0 0 10px 0;
}
/**************************************************
youtube
**************************************************/
.youtube {
  width: 500px;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  margin: 30px auto 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
/**************************************************
ドロップダウンメニュー
**************************************************/
/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.btn-wrapper {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 10px;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .btn-wrapper {
    display: block;
  }
}
.openbtn1 {
  display: none;
  position: fixed; /*ボタン内側の基点となるためrelativeを指定*/
  background: #a1c945;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 9999;
  right: 5px;
  top: 5px;
}
@media screen and (max-width: 768px) {
  .openbtn1 {
    display: block;
  }
}
/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu {
  margin: 0px 10px; /* メニューバー外側の余白(ゼロ) */
  transition: .3s all;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.ddmenu li {
  flex: 1;
  position: relative; /* ★3:サブメニュー表示の基準位置にする */
}
@media screen and (max-width: 768px) {
  ul.ddmenu li {
    flex: auto;
    width: 100%;
  }
}
ul.ddmenu li a.contact {
  background-color: #fff;
  border-radius: 10px;
  color: #a1c945;
}
ul.ddmenu a {
  background-color: #a1c945; /* メニュー項目の背景色(濃い赤色) */
  color: white; /* メニュー項目の文字色(白色) */
  line-height: 40px; /* メニュー項目のリンクの高さ(40px) */
  text-align: center; /* メインメニューの文字列の配置(中央寄せ) */
  text-decoration: none; /* メニュー項目の装飾(下線を消す) */
  font-weight: bold; /* 太字にする */
  display: block; /* ★4:項目内全域をリンク可能にする */
}
ul.ddmenu a:hover {
  background-color: #ffdddd; /* メニュー項目にマウスが載ったときの背景色(淡いピンク) */
  color: #a1c945; /* メニュー項目にマウスが載ったときの文字色(濃い赤色) */
}
/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.ddmenu ul {
  display: none;
  margin: 0px; /* ★2:サブメニュー外側の余白(ゼロ) */
  padding: 0px; /* ★3:サブメニュー内側の余白(ゼロ) */
  position: absolute; /* ★4:絶対配置にする */
  width: 100%;
  opacity: 0;
}
/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */ /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul.ddmenu li:hover ul {
  display: block; /* ★5:マウスポインタが載っている項目の内部にあるリストを表示する */
  /* animationプロパティ設定 */
  animation-name: fade-up-anime;
  animation-fill-mode: forwards;
  animation-duration: .5s;
}
/*フェードインアニメ*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-up-anime {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-detail {
  position: relative;
  background-color: #f4eee3;
  padding: 24px;
  margin: 0 0 60px 0;
}
.text-detail p {
  margin: 0 0 30px 0;
}
.text-detail p:last-of-type {
  margin: 0;
}
.text-detail .text-strong {
  font-weight: 700;
  margin: 0 0 10px 0;
}
.text-detail .detail-ttl {
  text-align: center;
  font-weight: 900;
  color: #a1c945;
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px dashed rgba(95, 68, 47, 0.25);
}
.text-detail img {
  display: block;
  margin: 30px auto;
  max-width: 100%;
}
.text-detail img:last-of-type {
  margin: 30px auto 0 auto;
}
.text-detail p.img_detail {
  font-size: 1.3rem;
  margin: 30px 0 0 0;
}
/**************************************************
目次
**************************************************/
.content-list-inner {
  border: 1px solid #e3e3e3;
  width: 500px;
  max-width: 100%;
  margin: auto;
}
.content-list-inner .content-list-ttl {
  text-align: center;
  margin: 0 0 0 0;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  background-color: #f4eee3;
}
.content-list-inner .content-list-ttl::before {
  content: "-";
  margin: 0 5px;
}
.content-list-inner .content-list-ttl::after {
  content: "-";
  margin: 0 5px;
}
.content-list-inner .content-list li {
  margin: 0 0 10px 0;
}
.content-list-inner .content-list li::before {
  content: "-";
  margin-right: 10px;
}
.content-list-wrapper {
  margin: 40px 10px 60px 10px;
}
.flex-box {
  display: flex;
  gap: 24px;
  margin: 10px 0 60px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-box .img-single {
  width: 424px;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}
.flex-box .img-single.img-single--contain {
  object-fit: contain;
  align-self: flex-start;
  height: auto;
}
.flex-box .img-double {
  width: 200px;
  max-width: 100%;
}
.flex-box img {
  width: 100%;
}
.flex-box img + p {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
}
.flex-box .text-area {
  flex: 1;
}
.flex-box .text-area p {
  margin: 0 0 30px 0;
}
.flex-box .text-area p:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .flex-box .text-area {
    flex: auto;
  }
}
.link-btn {
  display: block;
  margin: 30px auto 0 auto;
  padding: 10px 15px;
  background-color: #a1c945;
  color: #fff;
  width: 220px;
  text-align: center;
  border-radius: 5px;
}
.content-list {
  padding: 15px;
}
.txt_large {
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.9;
}
.img_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 800px;
  max-width: 100%;
  gap: 24px;
  margin: 50px auto;
}
.img_list li img {
  width: 100%;
}
.img_block {
  max-width: 100%;
  display: block;
  margin: 0 auto 60px auto;
}
.tips-wrapper {
  padding: 24px;
  background-color: rgba(227, 227, 227, 0.4);
  border-radius: 10px;
}
.tips-wrapper .tips-ttl {
  margin: 0 0 10px 0;
  font-size: 2rem;
  font-weight: 600;
}
.tips-wrapper .tips-list {
  font-size: 1.6rem;
}
.tips-wrapper .tips-list li {
  position: relative;
  padding: 0 0 0 26px;
  margin: 0 0 10px 0;
}
.tips-wrapper .tips-list li::before {
  position: absolute;
  content: "";
  background: url("../img/check-mark.svg") center/contain no-repeat;
  height: 16px;
  width: 16px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.flex-table {
  display: block;
}
.flex-table tr {
  display: flex;
  flex-wrap: wrap;
}
.flex-table tr td {
  padding: 10px;
  border: 1px solid #ccc;
}
.flex-table tr th {
  padding: 10px;
  border: 1px solid #ccc;
}
.flex-table tr th.flex-table--detail {
  flex: 1;
  background-color: #E6BC49;
}
.flex-table tr th.flex-table--curedetail {
  width: 200px;
  background-color: #E6BC49;
  text-align: center;
}
.flex-table tr th.flex-table--payment {
  width: 150px;
  max-width: 100%;
  display: flex;
  background-color: #B5DAFF;
}
.flex-table tr th.flex-table--paycure {
  flex: 1;
  max-width: 100%;
  display: flex;
  background-color: #B5DAFF;
  justify-content: center;
}
.flex-table tr td.flex-table--detail {
  flex: 1;
  background-color: rgba(230, 188, 73, 0.3);
}
.flex-table tr td.flex-table--curedetail {
  width: 200px;
  background-color: rgba(230, 188, 73, 0.3);
  text-align: center;
}
.flex-table tr td.flex-table--payment {
  width: 150px;
  max-width: 100%;
  display: flex;
  background-color: rgba(181, 218, 255, 0.3);
}
.flex-table tr td.flex-table--paycure {
  flex: 1;
  max-width: 100%;
  display: flex;
  background-color: rgba(181, 218, 255, 0.3);
}
/*@media screen and (max-width: 768px) {
  .flex-table tr td.flex-table--detail {
    flex: auto;
    width: 100%;
  }
  .flex-table tr td.flex-table--payment {
    width: 100%;
  }
  .flex-table tr th.flex-table--detail {
    flex: auto;
    width: 100%;
  }
  .flex-table tr th.flex-table--payment {
    width: 100%;
  }
}*/
.flex-table tr th.flex-table--detail p {
  text-align: center;
}
.flex-table tr .flex-table--payment p {
  width: 100%;
  align-self: center;
  text-align: center;
}
.flex-table tr .flex-table--detail .flex-table--detail--ttl {
  font-weight: 700;
  margin: 0 0 10px 0;
}
.grid-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 30px auto;
}
.grid-table.grid-table--2col {
  grid-template-columns: 1fr 200px;
}
@media screen and (max-width: 768px) {
  .grid-table.grid-table--2col {
    grid-template-columns: 1fr 1fr;
  }
}
.grid-table .grid-item--header, .grid-table .grid-item--detail {
  text-align: center;
  padding: 10px;
  border: 1px solid #e3e3e3;
}
.grid-table .grid-item--header {
  background-color: #E6BC49;
  font-weight: 700;
}
.grid-table .grid-item--header.grid-item--header--child {
  background-color: rgba(230, 188, 73, 0.3);
  font-weight: 500;
}
.grid-table.grid-table--2col .grid-item--header.grid-item--header--child {
  text-align: left;
}
.grid-table.grid-table--2col .grid-item--header.grid-item--header--child .kensa_ttl {
  font-weight: 700;
  margin: 0 0 10px 0;
}
.grid-table .grid-item--detail {
  background-color: #B5DAFF;
  font-weight: 700;
}
.grid-table .grid-item--detail.grid-item--detail--child {
  position: relative;
  background-color: rgba(181, 218, 255, 0.3);
  font-weight: 500;
}
.grid-table .grid-item--detail.grid-item--detail--child .grid-item--p--payment {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.logos-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  width: 500px;
  max-width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .logos-wrapper {
    gap: 60px;
    width: 250px;
    grid-template-columns: 1fr;
  }
}
.logos-wrapper .logo {
  position: relative;
}
.logos-wrapper .logo::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background-color: rgba(161, 201, 69, 0.6);
  right: -18px;
}
@media screen and (max-width: 768px) {
  .logos-wrapper .logo::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background-color: rgba(161, 201, 69, 0.6);
    right: 0;
    left: 0;
    bottom: -30px;
  }
}
.logos-wrapper .logo:last-of-type::after {
  display: none;
}
.sec-breadcrumb {
  background-color: #f4eee3;
  padding: 10px;
}
.bread-crumb {
  display: flex;
  gap: 30px;
}
.bread-crumb li {
  position: relative;
}
.bread-crumb li:last-of-type {
  font-weight: 700;
  background-color: #a1c945;
  padding: 0 10px;
  border-radius: 10px;
  color: #fff;
}
.bread-crumb li:not(:last-of-type)::after {
  position: absolute;
  content: "-";
  right: -15px;
}