@charset "UTF-8";
.page-container {
  margin-top: 22vh;
}
.page-container h1 {
  /*    font-weight: bold; */
  font-size: 1.6rem;
  text-align: center;
}
.page-container h1 span {
  position: relative;
  display: inline-block;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.page-container h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem; /* テキストと線の距離 */
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, rgb(33, 151, 18) 50%, rgb(240, 200, 18) 50%);
  border-radius: 2px;
}
.page-container .summary,
.page-container .main-contents {
  text-align: left;
  width: 96%;
  margin: 1.6rem auto;
}
.page-container .main-contents h2 {
  font-size: 1.4rem;
  background: linear-gradient(transparent 70%, rgb(255, 238, 126) 70%);
  margin: 24px 0 9px 0;
}
.page-container .main-contents h3 {
  margin-top: 1.3rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1.1rem;
  font-size: 1.2rem;
}
.page-container .main-contents h3::before {
  content: "";
  position: absolute;
  bottom: -9px;
  display: inline-block;
  width: 36px;
  height: 3px;
  /*        left: 50%;
        transform: translateX(-50%);
        */
  background-color: rgb(247, 233, 141);
  border-radius: 2px;
}

@media (max-width: 576px) {
  .page-container {
    margin-top: 13vh;
  }
}
/*
.restaurant-paper {
  text-align: left;
  width: 96%;
  margin: 1.6rem auto;

}
*/
/*-- セクション --*/
.page-section {
  /*  h2 {
      text-align: left;
      font-weight: bold;
      font-size: 1.4rem; 
    	color: #555;
  	  border-bottom: solid 2px #d94b27;
      letter-spacing: 0.13em;
      margin-bottom: 12px;
    }

    h2:first-letter {
      font-size: 1.8rem;
    	color: #d94e27;
    }
  */
  /*-- 所在地・アクセス --*/
}
.page-section h2 {
  position: relative;
  padding: 0.3em 0 0.2em 1em;
  border-bottom: 3px solid #c6d033;
  color: #333333;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.page-section h2::before {
  position: absolute;
  top: 0;
  left: 0.3em;
  transform: rotate(55deg);
  height: 11px;
  width: 12px;
  background: #c6d033;
  content: "";
}
.page-section h2::after {
  position: absolute;
  transform: rotate(15deg);
  top: 0.6em;
  left: 0;
  height: 8px;
  width: 8px;
  background: #c6d033;
  content: "";
}
.page-section p {
  padding: 0.3rem 0.9rem 0.6rem 0.9rem;
}
.page-section ul {
  padding: 0.3rem 1.5rem 0.6rem 1.5rem;
}
.page-section ul li {
  position: relative;
  padding: 0 0 0 1.2rem;
  margin: 0;
}
.page-section ul li::before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  color: #87db00;
}
.page-section h3 {
  margin: 1.3rem 0;
  font-size: 1.3rem;
  display: inline-block;
  font-weight: bold;
  border-bottom: solid 3px #d94e27;
  padding: 0 0 5px 0;
}
.page-section .dl-price {
  display: flex;
  flex-wrap: wrap;
  margin: 12px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  /*    width: 80vw; コンテンツ間のスペース */
}
.page-section .dl-price dt {
  font-weight: normal;
  margin-right: 10px; /* タイトルと内容の間のスペース　　*/
  background-color: #f0f0f0;
  padding: 9px;
}
.page-section .dl-price dd {
  padding: 9px;
  margin: 0 20px 0 0; /* コンテンツ間のスペース */
}
.page-section .cation {
  border: 1px dotted #eb8e8e;
  border-radius: 8px;
  padding: 12px;
}
.page-section .cation .title {
  text-align: center;
  margin-bottom: 6px;
}
.page-section .address-map .address {
  font-size: 1rem;
  padding-bottom: 24px;
}
.page-section .address-map .address dt {
  font-weight: normal;
  border-bottom: solid 1px #ad9b95;
}
.page-section .address-map .address dd {
  margin-left: 12px;
  margin-top: 3px;
  margin-bottom: 9px;
}

/*  プロフィール */
.profile-top {
  margin-top: 20vh;
}

.profile-paper {
  max-width: 1280px;
  margin-top: 6vh;
  margin-bottom: 30vh;
  /*  margin-left: 30vw; */
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.profile-paper .contents,
.profile-paper .restaurant-contents {
  flex: 3;
  padding: 0 18px 9px 18px;
}
.profile-paper .side {
  flex: 1;
  padding: 9px;
  border-left: 1px solid rgb(223, 145, 0);
}

/*-- form 共通 --*/
.form-page h2 {
  position: relative;
  width: 90%;
  margin-bottom: 0.2rem;
  padding: 1rem;
  color: #ffffff;
  background-color: #e35c27;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.form-page h2::before {
  position: absolute;
  inset: -5px 5px 5px -5px;
  border: 3px solid #353535;
  content: "";
}
.form-page h3 {
  display: flex;
  margin-top: 1.3rem;
  margin-bottom: 1.3rem;
  /*  padding: 0 65px; */
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  /*  margin-left: auto;
    margin-right: auto;
    */
}
.form-page h3::before, .form-page h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #e35c27;
}
.form-page h3::before {
  margin-right: 12px;
}
.form-page h3::after {
  margin-left: 12px;
}
.form-page .abstruct {
  width: 94%;
  margin: 1.4rem auto;
}

@media (max-width: 576px) {
  h3 {
    font-size: 1.1rem;
  }
  h3::before, h3::after {
    width: 40px;
  }
}
/*-- sidebar --*/
.side-categories {
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  padding: 1.2rem 0.7rem;
}
.side-categories h3 {
  position: relative;
  font-size: 1.4rem;
  padding-left: 2.3rem;
}
.side-categories h3::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f0eb";
  background: #ffca2c;
  color: white;
  font-weight: 900;
  font-size: 12px;
  border-radius: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 1.2rem;
  text-align: center;
  top: 20%;
  transform: translateY(-20%);
}
.side-categories h3::after {
  /*吹き出しのちょこんと出た部分*/
  content: "";
  display: block;
  position: absolute;
  left: 14px;
  height: 0;
  width: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #ffca2c;
  top: 20%;
  transform: translateY(-20%);
}
.side-categories ul {
  margin: 0.6rem 0 0.3rem 0;
}
.side-categories ul li {
  border-bottom: 1px dashed #666;
  padding: 0.4rem 0 0.2rem 0;
}

.faq-page p {
  width: 94%;
  margin: 1.6rem auto;
}
.faq-page h2 {
  position: relative;
  width: 90%;
  margin-bottom: 0.2rem;
  padding: 1rem;
  color: #ffffff;
  background-color: #e35c27;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.faq-page h2::before {
  position: absolute;
  inset: -5px 5px 5px -5px;
  border: 3px solid #353535;
  content: "";
}

.faq-contents {
  width: 90%;
  margin: 1.2rem auto;
}
.faq-contents h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.faq-contents dl {
  margin-top: 0.6rem;
  margin-left: 0.6rem;
  margin-bottom: 2.5rem;
  width: 90%;
}
.faq-contents .dt-toggle {
  margin-bottom: 0.6rem;
  padding: 6px;
  font-weight: normal;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #eee;
}
.faq-contents .dd-toggle {
  margin-left: 0.5rem;
  margin-bottom: 1rem;
  padding: 6px;
}

.dt-toggle, .dd-toggle {
  cursor: pointer;
}

.dd-toggle {
  display: none;
  margin: 0;
}

@media (max-width: 576px) {
  .faq-page p {
    width: 100%;
  }
  .faq-page .faq-contents {
    width: 100%;
  }
  .faq-page .faq-contents h3 {
    font-size: 1.2rem;
  }
}
/*-- Not found --*/
.notfound-page {
  margin: 3rem auto;
}
.notfound-page h2 {
  position: relative;
  padding: 0.5rem 1rem;
  color: black;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.notfound-page h2::before,
.notfound-page h2::after {
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
  content: "";
  border-top: solid 3px;
  border-bottom: solid 3px;
}
.notfound-page h2::before {
  border-left: solid 3px;
  left: 0;
}
.notfound-page h2::after {
  border-right: solid 3px;
  right: 0;
}
.notfound-page h3 {
  display: flex;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  /*  padding: 0 65px; */
  justify-content: center;
  align-items: center;
  text-align: center;
  /*  margin-left: auto;
    margin-right: auto;
    */
}
.notfound-page h3::before, .notfound-page h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #387ccc;
}
.notfound-page h3::before {
  margin-right: 12px;
}
.notfound-page h3::after {
  margin-left: 12px;
}
.notfound-page .linktohome {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.notfound-page .linktohome a {
  border: solid 1px #333;
  padding: 16px 72px;
}

@media (max-width: 576px) {
  .notfound-page {
    margin-top: 0;
  }
  .notfound-page h2 {
    font-size: 1.1rem;
  }
  .notfound-page h2::before {
    left: 0;
  }
  .notfound-page h2::after {
    right: 0;
  }
  .notfound-page h3 {
    font-size: 1.2rem;
  }
}
.restaurant h1 {
  position: relative;
  color: #333;
  text-shadow: 0 0 2px white;
  padding: 2px 0;
  z-index: -4;
  font-size: 1.5rem;
  border-bottom: 2px solid #f8ead2;
}
.restaurant h1::before {
  content: "";
  position: absolute;
  background: #fbdba3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
  z-index: -1;
}
.restaurant h2 {
  color: #f00;
  font-size: 1.3rem;
}
.restaurant .contents .post-restaurant {
  margin-top: 3vh;
}
.restaurant .contents .post-restaurant .kodomo-shokudo {
  position: relative;
  width: 96%;
  margin: 2rem auto 1rem auto;
  border: 1px dotted #e67850;
  border-radius: 9px;
  padding: 9px;
}
.restaurant .contents .post-restaurant .kodomo-shokudo .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  color: #e67850;
  font-weight: bold;
}
.restaurant .contents .post-restaurant .kodomo-shokudo .catch {
  margin-top: 1rem;
  border-bottom: 1px solid #333;
}
.restaurant .contents .post-restaurant .kodomo-shokudo p {
  margin: 12px;
}
.restaurant .contents .post-restaurant .snap-row {
  display: flex;
  width: 96%;
  margin: 2rem auto;
}
.restaurant .contents .post-restaurant .snap-row img {
  height: 120px;
  padding: 3px;
}
@media (max-width: 576px) {
  .restaurant .contents .post-restaurant .snap-row {
    flex-direction: column;
    align-items: center;
  }
}
.restaurant .contents .post-restaurant .profile-row {
  display: flex;
  width: 96%;
  margin: 2rem auto;
}
.restaurant .contents .post-restaurant .profile-row .profile-columns {
  flex: 4;
  padding: 9px;
}
.restaurant .contents .post-restaurant .profile-row .profile-columns dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.restaurant .contents .post-restaurant .profile-row .profile-columns dt {
  font-weight: normal;
  border-bottom: 1px dotted #ccc;
  width: 30%;
  margin-top: 6px;
  padding-bottom: 3px;
}
.restaurant .contents .post-restaurant .profile-row .profile-columns dd {
  font-weight: normal;
  border-bottom: 1px dotted #ccc;
  width: 70%;
  margin-top: 6px;
  padding-bottom: 3px;
}
.restaurant .contents .post-restaurant .profile-row .image-columns {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.restaurant .contents .post-restaurant .profile-row .image-columns img {
  width: 80%;
}
.restaurant .contents .g-map {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .restaurant .contents .post-restaurant .profile-row {
    flex-direction: column;
  }
}

/*-- パフォーマー --*/
.performer h1 {
  position: relative;
  color: #333;
  text-shadow: 0 0 2px white;
  padding: 2px 0;
  z-index: -4;
  font-size: 1.5rem;
  border-bottom: 2px solid #d2f8d3;
}
.performer h1::before {
  content: "";
  position: absolute;
  background: #56c2ac;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
  z-index: -1;
}
.performer h2 {
  color: rgb(45, 189, 119);
  font-size: 1.3rem;
}
.performer .contents .post-performer {
  margin-top: 3vh;
}
.performer .contents .post-performer .performer-message {
  position: relative;
  width: 96%;
  margin: 2rem auto 1rem auto;
  border: 1px dotted #56c2ac;
  border-radius: 9px;
  padding: 9px;
}
.performer .contents .post-performer .performer-message .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  color: #56c2ac;
  font-weight: bold;
}
.performer .contents .post-performer .performer-message .message {
  margin-top: 1rem;
  border: 1px solid #e1cd15;
  border-radius: 9px;
  padding: 9px;
}
.performer .contents .post-performer .performer-message p {
  margin: 12px;
}
.performer .contents .post-performer .snap-row {
  display: flex;
  width: 96%;
  margin: 2rem auto;
}
.performer .contents .post-performer .snap-row img {
  height: 120px;
  padding: 3px;
}
@media (max-width: 576px) {
  .performer .contents .post-performer .snap-row {
    flex-direction: column;
    align-items: center;
  }
}
.performer .contents .post-performer .profile-row {
  display: flex;
  width: 96%;
  margin: 2rem auto;
}
.performer .contents .post-performer .profile-row .profile-columns {
  flex: 4;
  padding: 9px;
}
.performer .contents .post-performer .profile-row .profile-columns dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.performer .contents .post-performer .profile-row .profile-columns dt {
  font-weight: normal;
  border-bottom: 1px dotted #ccc;
  width: 30%;
  margin-top: 6px;
  padding-bottom: 3px;
}
.performer .contents .post-performer .profile-row .profile-columns dd {
  font-weight: normal;
  border-bottom: 1px dotted #ccc;
  width: 70%;
  margin-top: 6px;
  padding-bottom: 3px;
}
.performer .contents .post-performer .profile-row .image-columns {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column; /* ← これが重要！ */
}
.performer .contents .post-performer .profile-row .image-columns .image-snap {
  text-align: center;
  width: 100%;
}
.performer .contents .post-performer .profile-row .image-columns .image-snap img {
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.performer .contents .post-performer .profile-row .image-columns .sns-icons {
  margin-top: 1rem;
}
@media screen and (max-width: 576px) {
  .performer .contents .post-performer .profile-row {
    flex-direction: column;
  }
}

.flex-columns {
  width: 96%;
  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap; /* 折り返しを有効にする */
  gap: 6px;
}
.flex-columns .flex-contents {
  width: calc(33% - 3px);
  /*    border: 1px solid rgb(211, 218, 228); */
  /*    border-radius: 4px; */
  box-sizing: border-box;
  /*    box-shadow: 3px 3px 1px rgba(0, 0, 0, 0.1); */ /* 下と右に影 */
}
.flex-columns .flex-contents .contents-head {
  width: 100%;
}
.flex-columns .flex-contents .contents-head img {
  width: 100%; /* 画像をコンテナいっぱいに広げる */
  display: block; /* 画像の周りの余白をなくす */
  border-radius: 3px 3px 0 0; /* 上部の角を丸める */
}
.flex-columns .flex-contents .contents-body {
  padding: 6px;
  text-align: center;
}
@media (max-width: 576px) {
  .flex-columns {
    flex-direction: column;
  }
  .flex-columns .flex-contents {
    width: 100%;
  }
}

.message {
  font-size: 0.9rem;
  position: relative;
  display: inline-block;
  margin: 1.3rem auto;
  background: #FFF5DE;
  border-radius: 9px;
  padding: 6px;
  /*
  &:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #e0edff;
  }
  */
}
.message:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -30px;
  border: 9px solid transparent;
  border-right: 40px solid #FFF5DE;
  transform: rotate(35deg);
  z-index: -1;
}

.outline dl {
  margin-top: 1.8rem;
  padding-left: 1.2rem;
}
.outline dt {
  position: relative;
  line-height: 1.4;
  font-size: 1em;
  font-weight: normal;
  padding: 0 0 0 1.5rem;
  color: #333;
}
.outline dt:before {
  position: absolute;
  left: 0;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f138";
}
.outline dd {
  padding-left: 1.2rem;
  margin-bottom: 0.9rem;
}

.links {
  margin-top: 2rem;
  text-align: left;
}
.links .link-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9em 2em;
  border: 1px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
  color: #2589d0;
  font-size: 1em;
  text-decoration: none;
  cursor: pointer;
}
.links .link-button:hover {
  border: 1px solid #fff;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
}
.links .link-text {
  padding: 0.5rem 0;
  margin-bottom: 0.2rem;
  border-bottom: 3px dotted #b2d5de;
  font-weight: bold;
  font-size: 26px;
}

.workshop-pr {
  margin: 2rem auto;
  width: 82%;
  padding: 0.4rem;
  border-radius: 3px;
  background-color: #fffbf1;
  text-align: center;
}
.workshop-pr h4 {
  font-size: 1rem;
  color: #a27030;
  margin-bottom: 0.6rem;
}
.workshop-pr p {
  margin-left: 1.2rem;
  font-size: 0.9rem;
  color: #796a56;
  line-height: 1.3;
}/*# sourceMappingURL=page.css.map */