@charset "UTF-8";
/*色設定*/
html,
body {
  font-size: 15px;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #ffffff;
  overflow-x: hidden;
  min-width: 300px;
  scroll-behavior: smooth;
}

html {
  height: 100%;
  overflow: scroll;
}

body {
  margin: 0;
  min-height: 100%;
  display: -ms-flexbox;
  flex-direction: column;
  /*scrollbar-width: none;*/
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /*::-webkit-scrollbar {
      display: none;
      overflow: scroll;
  }*/
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.5;
}

p, h1, h2, h3 {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hd__pc {
  max-width: 1500px;
  width: 98%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.hd_left {
  display: flex;
  flex-direction: column;
  width: calc(100% - 45px);
}
.hd_left .h_logo {
  display: block;
}
.hd_left .h_logo img {
  max-width: 552px;
  aspect-ratio: 69/11;
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hd_left p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: clamp(13px, 2.5vw, 15px);
  color: #663300;
  display: flex;
  flex-wrap: wrap;
}

.hd_right {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1em;
}

.hrght_top {
  display: none;
}

.hd_tel {
  position: relative;
  background-color: #663300;
  padding: 1em;
  border-radius: 0;
}
.hd_tel::before {
  display: none;
}
.hd_tel p {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  font-size: 24px;
}
.hd_tel:hover {
  opacity: 0.5;
}

.hd_bty {
  position: relative;
  background-color: #A41248;
  padding: 1em;
  border-radius: 0;
}
.hd_bty::before {
  display: none;
}
.hd_bty p {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  font-size: 18px;
}
.hd_bty:hover {
  opacity: 0.5;
}

.hrght_bttm {
  display: flex;
  padding-top: 1em;
  gap: 10px;
  padding-right: 0.3em;
  justify-content: flex-end;
}
.hrght_bttm p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #663300;
  padding: 0.3em 0;
}
.hrght_bttm p span {
  background-color: #B5A492;
  color: #ffffff;
  padding: 0.3em;
}

.br__tb {
  display: none;
}

.menu_block {
  display: none;
}

.__brhd {
  display: none;
}

.sp_lnk {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.sp_lnk a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 0.5em 0;
}

@media screen and (max-width: 350px) {
  .sp_lnk a {
    padding: 1.5em 0;
  }
  .hd_tel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 45%;
    transform: translateY(55%);
    background-image: url("../img/phone-solid.png");
    background-size: contain;
    width: 25px;
    height: 25px;
    display: block;
  }
  .hd_tel p {
    display: none;
  }
  .hd_bty::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40%;
    transform: translateY(14%);
    background-image: url("../img/hotpepper-beauty.png");
    background-size: contain;
    width: 38px;
    height: 40px;
    display: block;
  }
  .hd_bty p {
    display: none;
  }
}
/*ハンバーガー*/
/*　ハンバーガーボタン　*/
/*　ハンバーガーメニューボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 100;
  right: 10px;
  top: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #663300;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ハンバーガー閉じる（白のバツ） */
.hamburger.active span:nth-child(1) {
  top: 16px;
  transform: rotate(-45deg);
  background: #663300;
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  transform: rotate(45deg);
  background: #663300;
}

/* メニュー本体 */
.globalMenuSp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100vh;*/
  max-height: 100vh;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  background-color: #ffffff;
  color: #663300;
  overflow-y: auto;
  display: none;
  z-index: 90;
  padding: 2em 1em;
  box-sizing: border-box;
}

.globalMenuSp ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.globalMenuSp ul li {
  border-bottom: 1px solid #663300;
}

.globalMenuSp ul li a {
  color: #663300;
  text-decoration: none;
  display: block;
  padding: 1em 0;
  font-size: 1.1em;
}

.globalMenuSp ul li a:hover {
  opacity: 1;
  background-color: #663300;
  color: #ffffff;
}

/* ▼矢印 */
.has-submenu > a::after {
  content: "▼";
  float: right;
  font-size: 0.8em;
  margin-right: 1em;
}

/* サブメニュー */
.submenu {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  background-color: #DCC4A1;
}

.has-submenu.open .submenu {
  display: block;
}

.submenu li a {
  padding-left: 2em;
  font-size: 0.95em;
}

/*ハンバーガー*/
/*TOP*/
.top_kvblock {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  z-index: 0;
  box-shadow: 0 -2px 15px #cfcfcf;
  /*
  &::after {
      content: '';
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      bottom: calc(10em + -157 * (100vw - 300px) / 467);
      left: 50%;
      transform: translateX(-50%);
      max-width: 467px;
      max-height: 388px;
      aspect-ratio: 467 / 388;
      width: 100%;
      height: 100%;
      background-image: url("../img/kv_img.png");
      z-index: 1;
      background-size: contain;
  }
  */
}
.top_kvblock .__innr {
  max-width: 1240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 3em 0 0;
  margin: auto;
}
.top_kvblock .__innr .top_kv {
  display: block;
  max-width: 1028px;
  width: 95%;
  z-index: 2;
  margin: auto;
  position: relative;
}
.top_kvblock .__innr .__toppc {
  display: none;
}
.top_kvblock .__innr .__topph {
  display: block;
}

.kv_img_below_ph {
  max-width: 467px;
  width: 80%;
  aspect-ratio: 467/388;
  background-image: url("../img/kv_img.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  margin-top: 1.5em;
}

.__kvflx {
  width: 100%;
  display: flex;
  gap: 3em;
  margin-top: 2em;
  width: 95%;
  z-index: 2;
  flex-direction: column;
  margin: 4em auto;
  align-items: center;
}

.kv_box {
  max-width: 323px;
  width: calc(100% - 2em);
  position: relative;
  border: 2px solid #B89663;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kv_box::before {
  content: "01";
  padding: 0.2em 0.5em;
  position: absolute;
  font-size: 20px;
  top: -24px;
  right: 50%;
  transform: translateX(50%);
  background-color: #663300;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #FFFFFF;
}
.kv_box p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #663300;
  font-size: clamp(16px, 2vw, 18px);
}
.kv_box p span {
  color: #FA7F1C;
}

.kv_box2 {
  max-width: 323px;
  width: calc(100% - 2em);
  position: relative;
  border: 2px solid #B89663;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kv_box2::before {
  content: "02";
  padding: 0.2em 0.5em;
  position: absolute;
  font-size: 20px;
  top: -24px;
  right: 50%;
  transform: translateX(50%);
  background-color: #663300;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #FFFFFF;
}
.kv_box2 p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #663300;
  font-size: clamp(16px, 2vw, 18px);
}
.kv_box2 p span {
  color: #FA7F1C;
}

.kv_box3 {
  max-width: 323px;
  width: calc(100% - 2em);
  position: relative;
  border: 2px solid #B89663;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kv_box3::before {
  content: "03";
  padding: 0.2em 0.5em;
  position: absolute;
  font-size: 20px;
  top: -24px;
  right: 50%;
  transform: translateX(50%);
  background-color: #663300;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #FFFFFF;
}
.kv_box3 p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #663300;
  font-size: clamp(16px, 2vw, 18px);
}
.kv_box3 p span {
  color: #FA7F1C;
}

.__kvbr {
  display: block;
}

.tc_access_block {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
.tc_access_block iframe {
  width: 95%;
  margin: auto;
  max-width: 961px;
  aspect-ratio: 961/578;
  border: none;
}
.tc_access_block .tc_access_box {
  width: calc(100% - 2em);
  background-color: #F8F8F8;
  padding: 2em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tc_acssttl {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  max-width: 605px;
  width: 100%;
}
.tc_acssttl h3 {
  font-weight: bold;
  font-size: clamp(35px, 1.2vw, 42px);
  color: #663300;
}
.tc_acssttl a {
  background-color: #663300;
  color: #ffffff;
  border-radius: 30px;
  padding: 0.5em 0;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 209px;
}

.tc_acss_ul {
  display: flex;
  flex-direction: column;
  max-width: 605px;
  width: 100%;
  margin: 2em auto;
}

.tc_acss_li {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #DCC4A1;
  padding: 1em 0;
}
.tc_acss_li p:nth-child(1) {
  width: 100%;
  font-weight: 500;
  font-size: 17px;
}
.tc_acss_li p:nth-child(2) {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
}

.cl_acss_ul {
  display: flex;
  flex-direction: column;
  max-width: 605px;
  width: 100%;
  margin: 0 auto;
}
.cl_acss_ul .tc_acss_li {
  flex-direction: column;
  row-gap: 5px;
}
.cl_acss_ul .tc_acss_li p:nth-child(1) {
  width: 100%;
  font-weight: 500;
  font-size: 17px;
}
.cl_acss_ul .tc_acss_li p:nth-child(2) {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
}

#page_top {
  position: fixed;
  right: 8px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  background-color: #663300;
  z-index: 1000;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
#page_top a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#page_top a::before {
  content: "";
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-left: 5px solid white;
  border-top: 5px solid white;
}
#page_top:hover {
  background-color: #552200;
}

footer {
  max-width: 1500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.f_lnkbox {
  display: flex;
  width: 98%;
  align-items: center;
  margin: 5em auto 3em;
  flex-direction: column;
  row-gap: 2em;
  max-width: 500px;
}

.fl_telbox {
  width: 100%;
  background: url(../img/f_lnk.png) no-repeat;
  background-position: top;
  aspect-ratio: 716/213;
  background-size: cover;
  max-width: 716px;
  display: flex;
  justify-content: center;
}

.fltel_inner {
  width: calc(100% - 1em);
  padding: 0 0.5em 0;
  max-width: 226px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
}
.fltel_inner p {
  width: 100%;
}
.fltel_inner p:nth-child(1) {
  font-weight: bold;
  font-size: 24px;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: #663300;
}
.fltel_inner p:nth-child(2) {
  position: relative;
  padding: 0.5em 0;
  background-color: #3AAF32;
  border-radius: 23px;
  text-align: center;
}
.fltel_inner p:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0.25em;
  transform: translate(22%, 71%);
  background-image: url("../img/phone-solid.png");
  background-size: contain;
  width: 15px;
  height: 15px;
}
.fltel_inner p:nth-child(2) span {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  padding-left: 20px;
  font-weight: bold;
  font-size: 21px;
}
.fltel_inner p:nth-child(3) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #663300;
}

.fl_hbbox {
  width: 100%;
  aspect-ratio: 716/213;
  background-size: contain;
  max-width: 716px;
  display: flex;
  border: 1px solid #A41248;
}
.fl_hbbox .flhb_left {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fl_hbbox .flhb_left img {
  display: block;
  max-width: 246px;
  aspect-ratio: 41/13;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fl_hbbox .flhb_right {
  width: 100%;
  background-color: #A41248;
  display: none;
}

.flhbr_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 2em);
  height: calc(100% - 2em);
  margin: 1em;
  border: 3px solid #84113B;
}
.flhbr_inner p {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-size: clamp(29px, 1.2vw, 32px);
  font-weight: bold;
  text-align: center;
}
.flhbr_inner p span {
  font-weight: bold;
  font-size: 46px;
  font-size: clamp(40px, 1.2vw, 46px);
  font-family: "Roboto", sans-serif;
}

.fttr_box {
  margin: 1em auto 3em;
  display: flex;
  width: 95%;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 2em;
}

.fttrb_left {
  font-family: "Noto Sans JP", sans-serif;
  color: #371B0D;
  font-weight: 500;
  font-size: 17px;
  width: 100%;
  font-size: clamp(14px, 1.2vw, 16px);
}
.fttrb_left a {
  display: block;
}
.fttrb_left a img {
  display: block;
  max-width: 645px;
  aspect-ratio: 645/103;
  width: 100%;
}
.fttrb_left p {
  width: 100%;
}

.fttrb_right, .clnc_tblbox {
  display: flex;
  justify-content: end;
  width: 100%;
}
.fttrb_right .ftabl_scl, .clnc_tblbox .ftabl_scl {
  border: 1px solid #B89663;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: clamp(12px, 2.5vw, 15px);
  color: #371B0D;
  width: 100%;
}
.fttrb_right .ftabl_scl tr th, .clnc_tblbox .ftabl_scl tr th {
  border: 1px solid #B89663;
  background-color: #FFFBE8;
  padding: 0.5em;
  width: 10.7142857143%;
}
.fttrb_right .ftabl_scl tr td, .clnc_tblbox .ftabl_scl tr td {
  border: 1px solid #B89663;
  padding: 0.5em;
  text-align: center;
}
.fttrb_right .ftabl_scl tr td p, .clnc_tblbox .ftabl_scl tr td p {
  font-size: 13px;
  text-align: center;
}
.fttrb_right .ftabl_scl tr th:first-child, .clnc_tblbox .ftabl_scl tr th:first-child {
  width: 25%;
}

.ftr_ul1 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  row-gap: 15px;
  width: 95%;
  margin: 0em auto 1.5em;
}
.ftr_ul1 li {
  width: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: clamp(14px, 1.2vw, 15px);
  color: #414141;
}
.ftr_ul1 .bdr_li {
  border-bottom: 1px solid #B1B1B1;
  width: 100%;
}

.cp_lght {
  text-align: center;
  font-size: 16px;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 500;
  color: #8B8B8B;
  margin: 1em auto 4em;
}

.ft_br {
  display: block;
}

/*見出し*/
.midashi {
  background-color: #F8F8F8;
  min-height: 243px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.midashi h1 {
  text-align: center;
  font-weight: bold;
  color: #50BC48;
  font-size: 52px;
  font-size: clamp(40px, 7.5vw, 50px);
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  margin-top: 0.5em;
}

.breadcrumb li {
  display: inline;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: clamp(13px, 2.5vw, 15px);
}

.breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  color: #F38D3A;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  text-decoration: none;
  color: #F38D3A;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/*はじめての方へ*/
main {
  max-width: 1240px;
  width: 98%;
  margin: 4em auto 7em;
}

.cmn_box {
  width: 100%;
  margin: 1em auto 3em;
}
.cmn_box .cmn_ttl {
  background-color: #FA7F1C;
  width: calc(100% - 0.5em);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 24px;
  font-size: clamp(19px, 3.5vw, 21px);
  color: #FFFFFF;
  padding: 0.5em 0.25em;
}

.cmn_block {
  display: flex;
  margin: 1em auto;
  row-gap: 15px;
  align-items: center;
  flex-direction: column;
}
.cmn_block img {
  display: block;
  width: 100%;
  max-width: 398px;
  aspect-ratio: 199/119;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-fit: cover;
     object-fit: cover;
}
.cmn_block .crpctc_item3 {
  aspect-ratio: 199/195;
}
.cmn_block .frst_lft {
  width: 100%;
}
.cmn_block .cmn_txtbox {
  width: 95%;
  margin: auto;
}

.chck_ul {
  display: flex;
  flex-direction: column;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.chck_ul li {
  position: relative;
  margin-bottom: 0.5em;
}
.chck_ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  background-image: url("../img/check_icon.png");
  background-size: contain;
  width: 18px;
  height: 18px;
}
.chck_ul li p {
  padding-left: 1.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  font-size: clamp(17px, 3.5vw, 19px);
  color: #505050;
}

.dtt_ul {
  display: flex;
  flex-direction: column;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
}
.dtt_ul li {
  margin-bottom: 0.5em;
  list-style: disc;
}
.dtt_ul li p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  font-size: clamp(16px, 2.5vw, 17px);
  color: #505050;
}

.cmn_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  font-size: clamp(16px, 2.5vw, 17px);
  color: #505050;
}

.cmn_bld {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 21px;
  color: #242424;
  margin-bottom: 0.3em;
}

.frst_lft {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}
.frst_lft p {
  width: calc(100% - 1em);
  padding: 0.5em;
  background-color: #FFF7E1;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-size: clamp(17px, 2.5vw, 18px);
  font-weight: bold;
  color: #FA7F1C;
}
.frst_lft span {
  color: #663300;
  width: 100%;
  text-align: center;
  margin: 0.5em auto;
}

.small_midashi {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 42px;
  font-size: clamp(23px, 5.2vw, 35px);
  color: #663300;
  text-align: center;
  margin: 3em auto 1em;
}
.small_midashi span {
  display: inline-block;
  border-top: 1px solid #663300;
  border-bottom: 1px solid #663300;
  padding: 0.2em 0;
}

.__short {
  font-size: clamp(27px, 5.2vw, 35px);
}

.sjt_flow {
  display: flex;
  width: 100%;
  flex-direction: column;
  row-gap: 50px;
  align-items: center;
}

.flow_box {
  width: 100%;
  background-color: #FFF4D6;
  border-radius: 24px 24px 0 0;
  min-height: 430px;
  max-width: 350px;
}
.flow_box img {
  display: block;
  width: 100%;
  aspect-ratio: 64/33;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 250px;
}

.flow_ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  background-color: #FA7F1C;
  border-radius: 24px 24px 0 0;
  padding: 0.5em;
  text-align: center;
  font-size: clamp(19px, 3.2vw, 23px);
}
.flow_ttl span {
  font-size: 24px;
}

.flow_txtbox {
  padding: 1em;
}
.flow_txtbox p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #505050;
}

.symtoms_txt {
  padding: 0.5em 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  font-size: clamp(15px, 2.5vw, 17px);
  color: #505050;
  background-color: #FFF4D6;
  margin-bottom: 6em;
}

.pnf_box {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.pnf_block {
  width: calc(95% - 3.2em);
  margin: auto;
  border: 10px solid #FFEFC2;
  background-color: #FFFAEB;
  padding: 1em;
  font-family: "Noto Sans JP", sans-serif;
}
.pnf_block p:nth-child(1) {
  font-weight: bold;
  font-size: 24px;
  font-size: clamp(20px, 2.5vw, 22px);
  color: #3AAF32;
  margin-bottom: 0.1em;
}
.pnf_block p:nth-child(2) {
  font-weight: bold;
  font-size: 21px;
  font-size: clamp(18px, 2vw, 19px);
  color: #7B7B7B;
  margin-bottom: 0.2em;
}
.pnf_block p:nth-child(3) {
  font-weight: 400;
  font-size: 16px;
  color: #505050;
}

.pnf_ex {
  display: flex;
  flex-direction: column;
  width: 98%;
  margin: 3em auto;
}
.pnf_ex .pnf_exttl {
  color: #FFFFFF;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 42px;
  font-size: clamp(30px, 6vw, 40px);
  text-align: center;
  background-color: #FA7F1C;
  padding: 0.3em 0;
  border-radius: 24px 24px 0 0;
}
.pnf_ex .__inner {
  padding: 1em;
  background-color: #FFE9D6;
  border: 1px solid #F38D3A;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.pnfex_left {
  width: calc(100% - 3em);
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 1em 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pnf_right {
  width: calc(100% - 3em);
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 1em 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ex_ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 28px;
  font-size: clamp(23px, 4vw, 28px);
  color: #3AAF32;
  text-align: center;
  margin-bottom: 0.2em;
}

.ex_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #505050;
  margin-bottom: 0.5em;
}

.pnfex_flex {
  display: flex;
  gap: 5px;
  margin-bottom: 0.5em;
}
.pnfex_flex .pnfex_inner {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pnfex_flex .pnfex_inner .exinner_txt {
  font-weight: bold;
  font-size: 21px;
  color: #242424;
}
.pnfex_flex .pnfex_inner .exinner_txt2 {
  font-weight: bold;
  font-size: 21px;
  color: #FA7F1C;
}
.pnfex_flex .pnfex_inner .exinner_img1 {
  max-width: 219px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  aspect-ratio: 219/106;
}
.pnfex_flex .pnfex_inner .exinner_img2 {
  max-width: 179px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  aspect-ratio: 179/153;
}

.exinner_p {
  background-color: #FFF4D6;
  padding: 1em 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.exinner_p p:nth-child(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 21px;
  font-size: 19px;
  color: #5E5E5E;
}
.exinner_p p:nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 17px;
  color: #5E5E5E;
}
.exinner_p p:nth-child(2) strong {
  color: #FA7F1C;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
}
.exinner_p p:nth-child(2) span {
  color: #FA7F1C;
}

.exinner_pbox {
  display: flex;
  background-color: #FFF4D6;
  gap: 20px;
  padding: 1em 0.5em;
}

.exinner_p2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.exinner_p2 p:nth-child(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 21px;
  font-size: 19px;
  color: #5E5E5E;
}
.exinner_p2 p:nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 17px;
  color: #5E5E5E;
}
.exinner_p2 p:nth-child(2) strong {
  color: #FA7F1C;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
}
.exinner_p2 p:nth-child(2) span {
  color: #FA7F1C;
}

.menu_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 1em;
  color: #505050;
}

.menu_txt2 {
  color: #505050;
  padding: 0.5em;
  background-color: #FFF9E8;
  margin: 1em auto;
  font-size: 16px;
}

.menu_ul {
  display: flex;
  flex-direction: column;
}
.menu_ul li {
  display: flex;
  padding: 0.5em 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #242424;
}
.menu_ul li:first-child {
  border-top: 1px solid #DCC4A1;
}

.__mn2flx {
  border-bottom: 1px solid #DCC4A1;
}
.__mn2flx p:first-child {
  width: 70%;
  font-weight: bold;
}
.__mn2flx p:last-child {
  width: 30%;
  text-align: right;
}

.__mn3flx {
  border-bottom: 1px solid #DCC4A1;
  flex-wrap: wrap;
}
.__mn3flx p:first-child {
  width: 100%;
  font-weight: bold;
}
.__mn3flx p:nth-child(2) {
  width: 50%;
}
.__mn3flx p:last-child {
  width: 50%;
  text-align: right;
}

.menu_lnk {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 209px;
  width: 100%;
  margin: 2em auto;
  background-color: #3AAF32;
  border-radius: 26px;
}
.menu_lnk p {
  padding: 0.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}

.menu_txt3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  padding: 1em;
  border: 10px solid #FFEFC2;
  background-color: #FFFAEB;
  margin: 2em auto;
}

@media screen and (max-width: 400px) {
  .pnfex_flex {
    display: flex;
    row-gap: 10px;
    margin-bottom: 1em;
    flex-direction: column;
  }
  .pnfex_flex .pnfex_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pnfex_flex .pnfex_inner .exinner_txt {
    font-weight: bold;
    font-size: 21px;
    color: #242424;
  }
  .pnfex_flex .pnfex_inner .exinner_txt2 {
    font-weight: bold;
    font-size: 21px;
    color: #FA7F1C;
  }
  .pnfex_flex .pnfex_inner .exinner_img1 {
    max-width: 219px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    aspect-ratio: 219/106;
  }
  .pnfex_flex .pnfex_inner .exinner_img2 {
    max-width: 179px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    aspect-ratio: 179/153;
  }
  .exinner_pbox {
    display: flex;
    background-color: #FFF4D6;
    row-gap: 15px;
    padding: 1em 0.5em;
    flex-direction: column;
  }
  .exinner_p2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .exinner_p2 p:nth-child(1) {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 21px;
    font-size: 19px;
    color: #5E5E5E;
  }
  .exinner_p2 p:nth-child(2) {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: #5E5E5E;
  }
  .exinner_p2 p:nth-child(2) strong {
    color: #FA7F1C;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 28px;
  }
  .exinner_p2 p:nth-child(2) span {
    color: #FA7F1C;
  }
  .__mn2flx {
    border-bottom: 1px solid #DCC4A1;
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .__mn2flx p:first-child {
    width: 100%;
    font-weight: bold;
  }
  .__mn2flx p:last-child {
    width: 100%;
    text-align: left;
  }
  .__mn3flx {
    border-bottom: 1px solid #DCC4A1;
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .__mn3flx p:first-child {
    width: 100%;
    font-weight: bold;
  }
  .__mn3flx p:nth-child(2) {
    width: 100%;
  }
  .__mn3flx p:last-child {
    width: 100%;
    text-align: left;
  }
}
.__mnmg5 {
  margin-bottom: 5em;
}

.faq_txt {
  color: #505050;
  padding: 1em 1em 2em 1em;
  background-color: #FFF9E8;
  margin: 0 auto 2em;
  font-size: 16px;
}

.faq_box {
  color: #505050;
  padding: 1em 1em 2em 1em;
  background-color: #FFF9E8;
  margin: 0 auto 2em;
  font-size: 16px;
}
.faq_box p {
  margin-bottom: 1.5em;
}
.faq_box img {
  display: block;
  max-width: 724px;
  aspect-ratio: 181/272;
  margin: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.clnc_flex {
  display: flex;
  margin: 1.5em auto;
  padding: 0.5em 0.2em;
  flex-direction: column-reverse;
  row-gap: 20px;
}
.clnc_flex .clnc_left {
  width: 100%;
}
.clnc_flex .clnc_right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  max-width: 560px;
  row-gap: 20px;
  margin: auto;
}
.clnc_flex .clnc_right img {
  display: block;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 5/3;
  -o-object-fit: contain;
     object-fit: contain;
}

.clnc_tblbox {
  width: 100%;
}

.clnc_acc {
  margin: 1em auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clnc_acc iframe {
  width: 98%;
  border: none;
  aspect-ratio: 1240/499;
}

.br_tb {
  display: block;
}

.clnc_flex2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1em auto 2em;
}

.__clmcf2left {
  width: 100%;
  max-width: 620px;
}
.__clmcf2left img {
  display: block;
  aspect-ratio: 620/387;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.__clmcf2right {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.img-modal .modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  animation: zoom 0.3s ease-in-out;
  background-color: #ffffff;
}

@keyframes zoom {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
.img-modal .close {
  position: absolute;
  top: 5px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.clnc_flex3 {
  display: flex;
  margin: 1em auto 2em;
  justify-content: space-between;
  row-gap: 40px;
  flex-direction: column;
}
.clnc_flex3 .__clmcf3left {
  display: flex;
  max-width: 320px;
  flex-direction: column;
  width: 100%;
  margin: auto;
}
.clnc_flex3 .__clmcf3left img {
  display: block;
  width: 100%;
  aspect-ratio: 320/427;
  -o-object-fit: contain;
     object-fit: contain;
}
.clnc_flex3 .__clmcf3left p {
  background-color: #50BC48;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 0.5em;
}

.__clmcf3right {
  width: 100%;
}

.clnc_ul {
  display: flex;
  flex-direction: column;
  padding-left: 0.5em;
  padding-bottom: 0.7em;
}
.clnc_ul li {
  position: relative;
}
.clnc_ul li::before {
  content: "●";
  color: #FA7F1C;
  position: absolute;
  top: 0.1em;
}
.clnc_ul li p {
  padding-left: 1.2em;
  font-size: 16px;
}

.__clmcf3ttl {
  font-weight: bold;
  font-size: 16px;
  color: #242424;
  padding-top: 1em;
  padding: 0.7em 0.5em 0 0.5em;
  border-top: 1px solid #DCC4A1;
  margin-bottom: 0.3em;
}

.__clmcf3txt {
  font-size: 16px;
  color: #242424;
  padding: 0 0.5em 0.7em 0.5em;
  border-bottom: 1px solid #DCC4A1;
}

@media screen and (max-width: 430px) {
  .clnc_flex3 {
    display: flex;
    margin: 1em auto 2em;
    justify-content: space-between;
    row-gap: 40px;
    flex-direction: column;
  }
  .clnc_flex3 .__clmcf3left {
    display: flex;
    max-width: 180px;
    flex-direction: column;
    width: 100%;
    margin: auto;
  }
  .clnc_flex3 .__clmcf3left img {
    display: block;
    width: 100%;
    aspect-ratio: 320/427;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .clnc_flex3 .__clmcf3left p {
    background-color: #50BC48;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding: 0.5em;
  }
}
.lnk_ul {
  display: flex;
  flex-direction: column;
  margin: 1em auto;
}

.lnk_li {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 1.5em;
}

.lnk_a {
  display: block;
  max-width: 150px;
  width: 100%;
  margin: auto;
}
.lnk_a img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 30/17;
}

.lnk_right {
  width: 100%;
}
.lnk_right p:nth-child(1) {
  font-weight: bold;
  font-size: 20px;
  font-size: clamp(17px, 4vw, 20px);
  color: #FA7F1C;
  margin-bottom: 0.2em;
}
.lnk_right p:nth-child(2) {
  color: #242424;
  font-size: 16px;
}

/**/
.to_yorokobi {
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  width: 98%;
  margin: 3em auto 7em;
}
.to_yorokobi .to_yorokobittl {
  color: #FFFFFF;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 42px;
  font-size: clamp(26px, 6vw, 40px);
  text-align: center;
  background-color: #FA7F1C;
  padding: 0.3em 0;
  border-radius: 24px 24px 0 0;
}
.to_yorokobi .__yorokobiinner {
  padding: 1em;
  background-color: #FFE9D6;
  border: 1px solid #F38D3A;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.yorokobi_lr {
  width: calc(100% - 3em);
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 2em 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.yrkbl_inner {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
}
.yrkbl_inner img {
  max-width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
  display: block;
}
.yrkbl_inner .yrlbl_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.yrkbl_inner .yrlbl_txt p:nth-child(1) {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 23px;
  font-size: clamp(20px, 4vw, 23px);
  color: #3AAF32;
  margin-bottom: 0.3em;
}
.yrkbl_inner .yrlbl_txt p:nth-child(2) {
  color: #242424;
  font-size: 15px;
}

.yorokobi_txt {
  margin: 1em auto;
  color: #505050;
  font-size: 16px;
}

.onayami {
  max-width: 1240px;
  margin: 1em auto 7em;
  width: 98%;
}

.onayami_tbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3em auto;
}
.onayami_tbox img {
  max-width: 220px;
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  aspect-ratio: 84/55;
}
.onayami_tbox p {
  border-top: 1px solid #09498A;
  border-bottom: 1px solid #09498A;
  padding: 1em 0.5em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 42px;
  font-size: clamp(30px, 6vw, 40px);
  color: #09498A;
}

.__bronayami {
  display: block;
}

.onayami_flex {
  display: flex;
  gap: 20px;
  row-gap: 30px;
  margin-bottom: 3em;
  flex-direction: column;
  align-items: center;
}

.onayami_inner {
  max-width: 609px;
  width: calc(100% - 4em);
  display: flex;
  flex-direction: column;
  padding: 2em;
  row-gap: 13px;
  background-color: #EEF7FF;
  border-radius: 12px;
}
.onayami_inner p:nth-child(1) {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #09498A;
  font-size: 32px;
  font-size: clamp(27px, 6vw, 30px);
  padding-bottom: 0.2em;
  border-bottom: 1px solid #09498A;
}
.onayami_inner p:nth-child(1) span {
  border-radius: 100px;
  padding: 0.2em 0.25em;
  background-color: #09498A;
  color: #ffffff;
  font-size: 23px;
  font-size: clamp(20px, 4vw, 23px);
  margin-right: 0.3em;
}
.onayami_inner p:nth-child(2) {
  font-size: 16px;
  color: #505050;
}

.onayami_syosai {
  display: block;
  max-width: 241px;
  width: 100%;
  margin: 0 auto 4em;
  background-color: #09498A;
  border-radius: 26px;
  padding: 1em 0.5em;
}
.onayami_syosai p {
  text-align: center;
  color: #ffffff;
  font-size: 16px;
}

.kaizenmenu, .chiryou {
  max-width: 1240px;
  margin: 1em auto 7em;
  width: 98%;
}

.kaizenmenu_ttl {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kaizenmenu_ttl p {
  display: inline-block;
  border-top: 1px solid #663300;
  border-bottom: 1px solid #663300;
  padding: 0.5em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 42px;
  font-size: clamp(24px, 6vw, 38px);
  color: #663300;
  text-align: center;
}
.kaizenmenu_ttl p span {
  color: #F38D3A;
}

.__kizntbr {
  display: block;
}

.kaizenmenu_flex {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin: 2em auto;
  width: 95%;
}

.__kznf1 {
  justify-items: center;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.__kznf2 {
  justify-items: center;
  width: 100%;
  gap: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.kaizenmenu_box {
  display: flex;
  flex-direction: column;
  max-width: 384px;
  border-radius: 24px 24px 0 0;
  width: 100%;
}
.kaizenmenu_box .kaizenmenub_ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 24px;
  font-size: clamp(20px, 4vw, 23px);
  color: #FFFFFF;
  background-color: #FA7F1C;
  border-radius: 24px 24px 0 0;
  padding: 0.5em 0.2em;
  text-align: center;
}
.kaizenmenu_box img {
  display: block;
  max-width: 384px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 64/33;
}

.__kzntxtbox {
  display: flex;
  flex-direction: column;
  background-color: #FFF4D6;
  padding: 1.5em 2em;
  align-items: center;
  min-height: 264px;
  justify-content: space-between;
}
.__kzntxtbox p {
  font-size: 16px;
  color: #505050;
}
.__kzntxtbox a {
  display: block;
  max-width: 241px;
  padding: 0.5em;
  background-color: #3AAF32;
  border-radius: 26px;
  width: 100%;
}
.__kzntxtbox a p {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.chiryou_ul {
  margin: 2em auto;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 98%;
}
.chiryou_ul li {
  display: flex;
  flex-direction: column;
  border: 10px solid #FFEFC2;
  background-color: #FFFAEB;
  align-items: center;
  padding: 1em 0;
}
.chiryou_ul li img {
  max-width: 379px;
  aspect-ratio: 379/236;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.chiryou_fbox {
  display: flex;
  flex-direction: column;
  padding: 2em 1.5em;
  width: calc(100% - 3em);
}
.chiryou_fbox p:nth-child(1) {
  font-weight: bold;
  font-size: 24px;
  font-size: clamp(20px, 4vw, 23px);
  color: #3AAF32;
  margin-bottom: 0.5em;
}
.chiryou_fbox p:nth-child(2) {
  color: #505050;
  font-size: 16px;
}

.aisatu {
  width: 100%;
  background-color: #FFFBE8;
  padding: 4em 0;
  margin: 1em auto 0;
}

.__innerai {
  max-width: 970px;
  margin: auto;
}

.aisatu_rlatv {
  position: relative;
  padding-top: 15em;
}

.goaisatut_box {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #FA7F1C;
  display: flex;
  max-width: 280px;
  border-radius: 81px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em 0;
}
.goaisatut_box img {
  max-width: 161px;
  display: block;
  aspect-ratio: 1/1;
  width: 161px;
}

.goaisatut_name {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.goaisatut_name p:nth-child(1) {
  font-size: 24px;
  font-size: clamp(20px, 4vw, 23px);
  font-weight: 500;
  color: #ffffff;
}
.goaisatut_name p:nth-child(2) {
  font-weight: bold;
  font-size: 38px;
  font-size: clamp(30px, 4vw, 37px);
  color: #ffffff;
}
.goaisatut_name p:nth-child(2) span {
  font-size: 26px;
  font-size: clamp(21px, 4vw, 25px);
  padding-right: 0.5em;
}

.goaisatu_box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 7em 3em 1em 3em;
  box-shadow: 0px 0px 15px -5px #777777;
  width: calc(97% - 7em);
  margin: auto;
}
.goaisatu_box a {
  max-width: 209px;
  padding: 0.5em 0;
  background-color: #3AAF32;
  border-radius: 26px;
  font-size: clamp(21px, 4vw, 25px);
  width: 100%;
  display: block;
  margin: 2em auto;
}
.goaisatu_box a p {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #FFFFFF;
}

.goaisatu_ttl {
  padding-bottom: 0.2em;
  font-weight: bold;
  font-size: 28px;
  font-size: clamp(23px, 4vw, 27px);
  color: #663300;
  border-bottom: 1px solid #B89663;
  margin-bottom: 0.5em;
}

.goaisatu_txt {
  font-weight: 500;
  font-size: 18px;
  font-size: clamp(17px, 4vw, 18px);
  color: #505050;
  line-height: 2em;
}

[id^=director]::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

.topnews_box {
  max-width: 1240px;
  margin: 5em auto 5em;
  width: calc(98% - 3em);
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 2em 1.5em;
  display: flex;
  row-gap: 20px;
  flex-direction: column;
}

.topnews_midashibox {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.topnews_midashibox p:nth-child(1) {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 19px;
  color: #FA7F1C;
}
.topnews_midashibox p:nth-child(2) {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 34px;
  color: #242424;
}

.topnews_secbox {
  width: 100%;
  background-color: #ffffff;
  max-height: 400px;
  overflow-y: scroll;
}

.topnews_block {
  display: flex;
  flex-direction: column;
  color: #505050;
  font-size: 16px;
  padding: 1em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #663300;
  padding-bottom: 0.5em;
}

.topnews_date {
  margin-bottom: 0.5em;
}
.topnews_date span {
  color: white;
  background-color: #FA7F1C;
  font-weight: 400;
  padding: 0 0.1em;
  margin-right: 0.5em;
  font-size: 15px;
}

.topnews_ttl {
  margin-bottom: 1em;
}
/*
.topnews_txt {
  margin-bottom: 1.5em;
  border-bottom: 1px solid #663300;
  padding-bottom: 0.5em;
}*/

[id^=news]::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

.__400br {
  display: none;
}

.__crprctcmdshi h1 {
  font-size: clamp(35px, 7.5vw, 50px);
}

@media screen and (max-width: 400px) {
  .__400br {
    display: block;
  }
}
.__more {
  background-color: #3AAF32;
  margin-top: 1em;
}

.__clickyorokobi {
  display: none;
}
.__clickflex {
  display:flex;
  flex-direction: column;
  row-gap: 20px;
}
.symtoms_box {
  width: 98%;
  margin: 3em auto;
  text-align: center;
}
.symtoms_box p:nth-child(1) {
  color: #FA7F1C;
  font-size: 24px;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: bold;
}
.symtoms_box p:nth-child(2) {
  color: #505050;
  font-size: 20px;
  font-size: clamp(16px, 4vw, 20px);
}/*# sourceMappingURL=style_ph.css.map */

.topnews_txt a {text-decoration: underline;}
.topnews_txt img {margin: .7em auto;display: block;}
