@charset "UTF-8";
/*ブレイクポイント*/
/*--------------------------------------------
構造
-----------------------------------------------*/
html {
  height: 100%;
  color: #333333;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  scroll-padding-top: 100px;
  /* 固定ヘッダの高さ分 */ }

body {
  margin: 0;
  padding: 0;
  height: 100%;
  flex-direction: column;
  font-size: clamp(0.875rem, calc(3vw - 0.5rem), 1rem);
  line-height: 1.5; }

header {
  width: 100%; }

footer {
  position: sticky;
  top: 100vh;
  width: 100%; }

/*幅の基本定義・余白含む・イラストアイコン設定*/
.main-wrap {
  width: 100%;
  max-width: 1678px;
  margin: 0 auto;
  padding: 0 20px; }
  .main-wrap__icon {
    margin-left: auto;
    margin-right: auto;
    width: 40px; }
  @media screen and (min-width: 769px) {
    .main-wrap {
      padding: 0 40px; } }
  @media screen and (min-width: 1025px) {
    .main-wrap {
      padding: 0 150px; } }

/*幅のサブ定義*/
.sub-wrap {
  width: min(100%, 1000px);
  margin: 0 auto; }

/*高さの基本余白定義*/
.base-height-margin {
  padding-top: 50px;
  padding-bottom: 50px; }
  @media screen and (min-width: 1025px) {
    .base-height-margin {
      padding-top: 100px;
      padding-bottom: 100px; } }

.base-height-top-margin {
  padding-top: 50px; }
  @media screen and (min-width: 1025px) {
    .base-height-top-margin {
      padding-top: 100px; } }

.base-height-bottom-margin {
  padding-bottom: 50px; }
  @media screen and (min-width: 1025px) {
    .base-height-bottom-margin {
      padding-bottom: 100px; } }

/*高さのサブ余白定義*/
.sub-height-margin {
  padding-top: 40px;
  padding-bottom: 40px; }
  @media screen and (min-width: 1025px) {
    .sub-height-margin {
      padding-top: 80px;
      padding-bottom: 80px; } }

.sub-height-top-margin {
  padding-top: 40px; }
  @media screen and (min-width: 1025px) {
    .sub-height-top-margin {
      padding-top: 80px; } }

/*高さの文内余白定義*/
.sentence-height-top-margin {
  padding-top: 20px; }
  @media screen and (min-width: 1025px) {
    .sentence-height-top-margin {
      padding-top: 40px; } }

/*スマホ時のみ*/
.sp {
  display: block; }
  @media screen and (min-width: 1025px) {
    .sp {
      display: none; } }

.font-blue {
  color: #54BCE8; }

.font-pink {
  color: #ECB0A9; }

/*--------------------------------------------
文字　　14-16　big 24-35　middle 18-24　small 12-14
-----------------------------------------------*/
@font-face {
  font-family: 'Noto+Serif+JP';
  src: url("../fonts/NotoSerifJP-Light.otf") format("otf"), url("../fonts/NotoSerifJP-Medium.otf") format("otf"), url("../fonts/NotoSerifJP-Bold.otf") format("otf"); }
/*ギガ丸*/
.font-giga {
  font-family: vdl-gigamaru, sans-serif;
  font-style: normal;
  font-weight: 500; }

p {
  font-size: clamp(0.875rem, calc(1vw + 0.5rem), 1rem);
  line-height: 1.8; }

p.second-line {
  padding-top: 10px; }
  @media screen and (min-width: 1025px) {
    p.second-line {
      padding-top: 10px; } }

.font-big {
  font-size: clamp(1.5rem, calc(2vw + 0.75rem), 1.875rem);
  line-height: 1.8; }

.font-middle {
  font-size: clamp(1.125rem, calc(2vw + 0.5rem), 1.5rem);
  line-height: 1.5; }

.font-normal {
  font-size: clamp(0.875rem, calc(1vw + 0.5rem), 1rem); }

.font-small {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.5; }

.font-center {
  text-align: center; }

.font-bold {
  font-weight: bold; }

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

/*アンダーボーダー文字*/
.font-under-border {
  display: inline-block;
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 10px; }
  .font-under-border::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    /*下線の上下位置調整*/
    display: inline-block;
    width: 50px;
    /*下線の幅*/
    height: 3px;
    /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    /*位置調整*/
    background-color: #9F8957;
    /*下線の色*/ }

.under-border-p {
  padding-top: 20px; }
  @media screen and (min-width: 769px) {
    .under-border-p {
      padding-top: 40px; } }

/*--------------------------------------------
ドロップシャドウ
-----------------------------------------------*/
.shadow {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2); }

/*--------------------------------------------
ボーダー
-----------------------------------------------*/
.border-bottom {
  border-bottom: 1px solid #E5E5E5; }

/*--------------------------------------------
ボタン
-----------------------------------------------*/
.btn {
  background: #9B8C6C;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
  border-radius: 3px;
  height: 50px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  font-size: clamp(0.75rem, 2vw, 0.875rem); }
  .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 100%;
    height: 100%;
    text-align: center; }
  .btn:hover {
    background: #e4ce9d; }

/*--------------------------------------------
パンくず
-----------------------------------------------*/
.breadcrumb ul {
  width: 100%;
  padding: 5px 0; }
.breadcrumb li {
  display: inline-block;
  list-style: none;
  font-size: 11px;
  color: #9F8957; }
.breadcrumb a {
  color: #484848; }

/*--------------------------------------------
header
-----------------------------------------------*/
.header {
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  z-index: 999;
  /*最前面へ*/ }
  .header__pc-item {
    display: none; }
  .header__container {
    display: flex;
    flex-wrap: wrap; }
  .header__item:nth-child(1) {
    width: calc(100% - 60px); }
  .header__item:nth-child(2) {
    /*3分割　width: 60px;*/
    width: 60px; }
  .header__logo-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 100%;
    height: 60px; }
    .header__logo-container img {
      max-width: 315px;
      padding: 0 10px 20px 20px; }
  .header__logo-item h1 {
    font-size: 10px !important;
    text-align: left;
    padding: 0 0 0 20px;
    margin: 0; }
  .header__logo-item:nth-child(2) {
    display: none; }
  .header__sub-container {
    display: flex;
    flex-wrap: wrap; }
  .header__sub-item {
    width: 60px;
    /*		&:nth-child(1),
    		&:nth-child(2){
    			text-align: center;
    			font-size: 10px;
    			color: $sub;
    			border-left: 1px solid $main;
    			img{
    				display: block;
    				margin: 0 auto;
    			}
    		}*/ }
  @media screen and (min-width: 769px) {
    .header__pc-item {
      display: none; }
    .header__item:nth-child(1) {
      width: calc(100% - 60px); }
    .header__item:nth-child(2) {
      width: 60px; }
    .header__logo-container {
      flex-wrap: wrap;
      justify-content: space-between; }
    .header__logo-item {
      width: 50%;
      text-align: left; }
    .header__logo-item:nth-child(2) {
      display: block; }
    .header__logo-item:nth-child(2) {
      text-align: right; }
      .header__logo-item:nth-child(2) p {
        color: #9F8957;
        padding-right: 20px; }
    .header__sub-container {
      flex-wrap: nowrap; }
    .header__sub-item:nth-child(1), .header__sub-item:nth-child(2) {
      width: 120px; } }
  @media screen and (min-width: 1025px) {
    .header__item {
      display: none; }
    .header__pc-item {
      display: inline-block; }
      .header__pc-item h1 {
        font-size: 8px !important;
        text-align: left; }
    .header .item_01 {
      width: 246px;
      display: flex;
      align-items: center;
      padding-left: 30px; }
    .header .item_02 {
      width: calc(100% - 246px);
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      padding-right: 30px; }
    .header ul {
      width: calc(100% - 240px);
      list-style: none;
      display: flex;
      padding: 0; }
    .header li {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      margin: 0;
      font-size: 12px;
      color: #6e5e3c; }
      .header li span {
        font-size: 14px;
        color: #484848; }
      .header li a {
        text-align: center;
        width: 100%;
        padding: 10px; }
    .header li + li {
      position: relative; }
    .header li + li::before {
      content: "";
      display: block;
      height: 1em;
      border-left: 1px solid #999;
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto; }
    .header .header-info {
      width: 240px;
      font-size: 12px;
      text-align: center;
      padding: 0 0 10px 40px; }
      .header .header-info__text-01 {
        background: #e4ce9d;
        background: linear-gradient(180deg, #e4ce9d 0%, #9f8957 100%);
        border-radius: 100px;
        padding: 5px;
        color: #fff;
        font-size: 12px;
        line-height: 1; }
      .header .header-info img {
        padding: 3px 0; } }



/* ドロップボタンのスタイルを指定する */
/* コンテナ <div> - ドロップダウン コンテンツを配置するために必要 */
.dropdown {
  position: relative;
  display: inline-block; }

/* ドロップダウン コンテンツ (デフォルトでは非表示) */
.dropdown-content {
  display: none !important;
  position: absolute !important;
  background-color: #f9f9f9;
  min-width: 250px;
  top: 50px;
  left: -60%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1; }

.dropdown-content li::before {
  content: "";
  border: none !important; }

/* ドロップダウン内のリンク */
.dropdown-content li a {
  padding: 10px 16px;
  text-decoration: none;
  display: block; }

/* ホバー時のドロップダウンリンクの色を変更する */
.dropdown-content li a:hover {
  background-color: #f1f1f1; }

/* ホバー時にドロップダウンメニューを表示する */
.dropdown:hover .dropdown-content {
  display: inline-block !important; }

/* ドロップダウンのコンテンツが表示されているときのドロップダウンボタンの背景色を変更 */
.dropdown:hover .dropbtn {
  background-color: #f1f1f1; }


/*--------------------------------------------
footer 
-----------------------------------------------*/
.footer {
  background: #EEECE7;
  padding-bottom: 60px; }
  .footer__item:nth-child(2) {
    padding-top: 20px; }
  .footer__copy {
    border-top: 1px solid #fff; }
    .footer__copy p {
      padding: 20px 0;
      font-size: 10px; }
  .footer iframe {
    min-height: 250px;
    height: 100%; }
  .footer .container-img {
    display: flex; }
  .footer .item-img {
    justify-content: flex-start; }
    .footer .item-img img {
      max-width: 130px; }
  .footer ul {
    border: 1px solid #6e5e3c;
    padding: 15px;
    background: #fff; }
  .footer li:nth-child(n + 2) {
    padding-top: 5px; }
  .footer .btn {
    margin-top: 30px; }
  .footer table {
    width: 100%;
    background: #fff;
    margin-bottom: 5px; }
    .footer table tr:nth-child(1) th {
      background: #F5F5F5; }
    .footer table th {
      border: 1px solid #484848;
      text-align: center; }
    .footer table td {
      border: 1px solid #484848;
      text-align: center; }
  @media screen and (min-width: 769px) {
    .footer {
      padding-bottom: 100px; } }
  @media screen and (min-width: 1025px) {
    .footer {
      padding-bottom: 0; }
      .footer__container {
        width: 100%;
        display: flex;
        flex-wrap: wrap; }
      .footer__item {
        width: 50%; }
      .footer__item:nth-child(1) {
        padding-right: 30px; }
      .footer__item:nth-child(2) {
        padding-top: 0;
        padding-left: 30px; } }

.footer-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000; }
  .footer-area .container {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 0px auto;
    padding: 0;
    margin-right: 0px;
    display: flex;
    flex-wrap: wrap; }
  .footer-area .item {
    width: calc(100% / 4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center; }
    .footer-area .item:nth-child(1) {
      border-right: 1px solid #fff;
      background: #D8C397; }
    .footer-area .item:nth-child(2) {
      border-right: 1px solid #fff;
      background: #BFAC85; }
    .footer-area .item:nth-child(3) {
      background: #9B8C6C; }
    .footer-area .item:nth-child(4) {
      border-right: 1px solid #fff;
      background: #92C3A6; }
  .footer-area a {
    display: block;
    width: 100%;
    padding: 10px 0; }
  @media screen and (min-width: 1025px) {
    .footer-area a {
      padding: 20px 10px;
      font-size: 18px;
      font-weight: bold; } }

.footer-google-map,
.footer-google-360 {
  height: 300px;
  overflow: hidden; }

.footer-google-map {
  margin-bottom: 30px; }

@media screen and (min-width: 1025px) {
  .footer-google-map, .footer-google-360 {
    height: 400px; } }

.footer_clinic {
  padding-top: 50px; }
  .footer_clinic .container {
    padding-top: 20px; }
  .footer_clinic .item {
    margin-bottom: 20px; }
    .footer_clinic .item img {
      margin-bottom: 5px; }
  .footer_clinic .footer_clinic-name {
    font-weight: bold; }
  .footer_clinic .footer_clinic-adress {
    font-size: 90%; }
  .footer_clinic .footer_clinic-link a {
    display: block;
    width: 100%;
    background: #9F8957;
    padding: 5px;
    margin-top: 5px;
    text-align: center;
    color: #fff;
    border-radius: 3px; }
  @media screen and (min-width: 1025px) {
    .footer_clinic .container {
      display: flex;
      flex-wrap: wrap; }
    .footer_clinic .item {
      width: calc(100% / 3);
      padding: 0 20px;
      display: flex;
      flex-direction: column; }
    .footer_clinic .footer_clinic-name, .footer_clinic .footer_clinic-adress {
      flex-grow: 1; }
    .footer_clinic .footer_clinic-link a {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto; } }

@media screen and (min-width: 1025px) {
  .footer__copy {
    padding-bottom: 60px; } }

/*--------------------------------------------
画像だし分け
-----------------------------------------------*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc_img {
  display: none; }
  @media screen and (min-width: 769px) {
    .pc_img {
      display: block !important;
      margin: auto;
      margin-left: auto; } }

.sp_img {
  display: block;
  margin: auto;
  margin-left: auto; }
  @media screen and (min-width: 769px) {
    .sp_img {
      display: none !important; } }

/*--------------------------------------------
youtube
-----------------------------------------------*/
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 765px;
  margin: 30px auto; }
  @media screen and (min-width: 769px) {
    .youtube {
      margin: 60px auto; } }

.youtube iframe {
  width: 100%;
  height: 100%; }

.line {
  margin: 0 auto;
  max-width: 500px;
  padding: 0 20px; }


/*--------------------------------------------
202510追加分
-----------------------------------------------*/
.privacybox {
  margin-bottom: 60px !important; }

.privacybox ul {
  list-style: disc;
  margin: 20px 0 20px 20px; }
  .privacybox ul li {
    margin: 5px; }

/*--------------------------------------------
202511追加分
-----------------------------------------------*/

.policybox p{
	text-align:center;
	font-size:10px;
		margin-bottom:15px;
}

.policybox a{
	text-decoration:underline;
}