@charset "UTF-8";

/*-----------------------------------
    リセット・ベース
-----------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Old Mincho', serif;
  font-size: 14px;
  line-height: 1.8em;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/*-----------------------------------
    ユーティリティ
-----------------------------------*/
.pc {
  display: block;
}

.tab {
  display: none;
}

.sp {
  display: none;
}

.contents_inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  body {
    font-size: 13px;
    line-height: 1.6em;
  }

  .pc {
    display: none !important; /* デバイス表示切替に必須 */
  }

  .tab {
    display: block;
  }

  .sp {
    display: block;
  }

  .contents_inner {
    width: 90%;
    max-width: 100%;
  }
}

/*-----------------------------------

	row_box

-----------------------------------*/
.row_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/*-----------------------------------
    セクション見出し共通
-----------------------------------*/
.section_heading {
  position: relative;
}

.section_heading .heading_en {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.96px;
  color: #1d4836;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section_heading .heading_line {
  height: 1px;
  background-color: #1d4836;
  margin: 16px 0;
  width: 0;
  transition: width 0.6s ease 0.3s;
}

.section_heading .heading_ja {
  font-family: 'Zen Old Mincho', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 1.5px;
  color: #b19774;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

/* アニメーション発火 */
.section_heading.is_visible .heading_en {
  opacity: 1;
  transform: translateY(0);
}

.section_heading.is_visible .heading_line {
  width: 50px;
}

.section_heading.is_visible .heading_ja {
  opacity: 1;
  transform: translateY(0);
}

.section_heading_center {
  text-align: center;
}

.section_heading_center .heading_line {
  margin: 16px auto;
}
.section_heading02 {
  position: relative;
}

.section_heading02 .heading_en {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.96px;
  color: #1d4836;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section_heading02 .heading_line {
  height: 1px;
  background-color: #1d4836;
  margin: 16px 0;
  width: 0;
  transition: width 0.6s ease 0.3s;
}

.section_heading02 .heading_ja {
  font-family: 'Zen Old Mincho', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 1.5px;
  color: #b19774;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

/* アニメーション発火 */
.section_heading02.is_visible .heading_en {
  opacity: 1;
  transform: translateY(0);
}

.section_heading02.is_visible .heading_line {
  width: 50px;
}

.section_heading02.is_visible .heading_ja {
  opacity: 1;
  transform: translateY(0);
}

.section_heading_center {
  text-align: center;
}

.section_heading_center .heading_line {
  margin: 16px auto;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .section_heading .heading_ja {
    font-size: 24px;
    line-height: 36px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .section_heading .heading_en {
    font-size: 14px;
  }

  .section_heading .heading_ja {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1px;
  }
  .section_heading02 .heading_ja {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1px;
  }
}

/*-----------------------------------
    もっと見るリンク共通
-----------------------------------*/
.more_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: #1d4836;
  border-bottom: 1px solid #1d4836;
  padding-bottom: 4px;
  transition: opacity 0.3s;
}

.more_link:hover {
  opacity: 0.7;
}

.more_link img {
  width: 18px;
  height: 13px;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .more_link {
    width: 200px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .more_link {
    font-size: 14px;
  }
}

/*-----------------------------------
    ヘッダー
-----------------------------------*/
#header_block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s;
}
#header_block.scrolled {
  background-color: #ffffff;
}

#header_block.scrolled .nav_item > a {
  color: #333333;
}

#header_block.scrolled .nav_item .icon_arrow {
  filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(50%);
}

#header_block.scrolled .header_lang {
  color: #333333;
}
#header_block.scrolled .header_lang img{
  filter: brightness(0) saturate(100%)
          /* ここから目的色に寄せる */
          invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg)
          brightness(20%) contrast(100%);
}

.header_inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 20px 0 0;
}

.header_left {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-shrink: 0;
  background: #fff;
  padding: 15px 15px;
  border-bottom-right-radius: 4px;
}

.header_catch {
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.33px;
  color: #333333;
}

.header_logo img {
  display: block;
  width: 293px;
  height: auto;
}

.header_nav {
  margin-left: auto;
}

.nav_list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav_item a {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: #fff;
  transition: opacity 0.3s;
}
.nav_item.low a {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: #333333;
  transition: opacity 0.3s;
}
.nav_item.low ul li a {
  color: #ffffff;
}
.nav_item a:hover {
  opacity: 0.7;
}

.nav_item.has_dropdown {
  position: relative;
}

.nav_item .icon_arrow {
  display: inline-block;
  width: 15px;
  height: 8px;
  margin-left: 4px;
  vertical-align: middle;
}

.dropdown_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 169px;
  background-color: #18382a;
  z-index: 110;
}

.dropdown_menu li {
  border-bottom: 1px solid #f8f8f6;
}

.dropdown_menu li:last-child {
  border-bottom: none;
}

.dropdown_menu li a {
  display: block;
  padding: 14px 17px;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.45px;
  color: #ffffff;
  transition: opacity 0.3s;
}
.dropdown_menu li a:hover {
  opacity: 0.7;
}

.nav_item.has_dropdown:hover .dropdown_menu {
  display: block;
}

.header_right {
  display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-align-items: center;
	align-items: center;
  gap: 9px;
  margin-left: 30px;
}

.header_tel_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  background-color: #3b3b3b;
  border-radius: 3px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 0.9px;
  transition: opacity 0.3s;
}

.header_tel_btn:hover {
  opacity: 0.8;
}

.header_tel_btn img {
  width: 25px;
  height: 25px;
}

.header_line_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  background-color: #23b162;
  border-radius: 3px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 0.8px;
  transition: opacity 0.3s;
}

.header_line_btn:hover {
  opacity: 0.8;
}

.header_line_btn img {
  width: 26px;
  height: 25px;
}

.header_web_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  background-color: #c5a059;
  border-radius: 3px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 0.8px;
  transition: opacity 0.3s;
}

.header_web_btn:hover {
  opacity: 0.8;
}

.header_web_btn img {
  width: 14px;
  height: 25px;
}

.header_web_wrap {
  display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
  margin-bottom: 25px;
}

.header_lang{
  display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.36px;
  color: #ffffff;
  transition: filter .3s ease;
}
.sp_lang{
  display: none !important;
}
.header_lang:hover{
  filter: brightness(.6);
}
.header_lang img{
  width: 14px;
  height: 14px;
}
.header_lang.low{
  display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.36px;
  color: #333333;
  transition: filter .3s ease;
}
.header_lang.low img{
  width: 14px;
  height: 14px;
  margin-top: 3px;
}
.header_lang.low:hover{
  filter: brightness(1.8)
}

/* GTranslate調整 */
.gtranslate_wrapper {
    position: relative !important;
    display: inline-block;
}
.gtranslate_wrapper::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    border-radius: 4px;
    z-index: 1;
    pointer-events: none; 
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.36px;
    font-family: 'Zen Old Mincho', serif;
    transition: color 0.3s ease;
    color: #fff;
}
.gtranslate_wrapper::before {
    content: "ENGLISH";
}
html[lang^="en"] .gtranslate_wrapper::before {
    content: "JAPANESE";
}
.gt_selector{
  background: transparent;
  border: none;
  width: 105px;
  color: transparent !important;
  position: relative;
  z-index: 2;
  cursor: pointer;
  text-transform: uppercase !important;
  -webkit-appearance: none;
  appearance: none;
}
.scrolled .gtranslate_wrapper::before{
  color: #333333 !important;
}
.gt_selector option{
  color: #1d4836;
  font-size: 14px!important;
}
.gt_selector option[value=""] {
    display: none;
}

.en_br{
  display: none;
}
html[lang^="en"] .en_br{
  display: block;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  .header_inner {
    padding: 0 15px;
  }

  .header_right {
    margin-left: 20px;
  }

  .nav_list {
    gap: 20px;
  }

  .header_tel_btn span {
    font-size: 16px;
  }
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1330px)
-----------------------------------*/
@media screen and (max-width: 1330px) {
  /* .header_lang {
    display: none;
  } */
  .header_lang.low {
    display: none;
  }
  /* .header_web_wrap {
    margin-bottom: 0;
  } */

  .nav_list {
    gap: 15px;
  }

  .nav_item a {
    font-size: 14px;
  }

  .header_tel_btn span {
    display: none;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 1150px)
-----------------------------------*/
@media screen and (max-width: 1150px) {
  #header_block{
    background-color: #ffffff;
  }
  #header_block .header_lang,
  .gtranslate_wrapper::before{
    color: #333333;
  }
  #header_block .header_lang img{
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(20%) contrast(100%);
  }
  .header_inner {
    height: 70px;
  }

  .header_catch {
    font-size: 10px;
  }

  .header_logo img {
    width: 200px;
  }

  .header_nav {
    display: none;
  }

  .header_right {
    display: none;
  }
  .header_left {
    padding: 5px 10px 0 10px;
  }

  .header_lang{
    position: absolute;
    right: 60px;
    z-index: 999;
  }
   .sp_lang{
    display: flex !important;
  }
  .gt_selector{
    width: 90px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .header_inner {
    height: 60px;
    padding: 0 15px;
  }

  .header_catch {
    display: none;
  }

  .header_logo img {
    width: 180px;
  }

}

/*-----------------------------------
    ハンバーガーメニュー（SP）
-----------------------------------*/
.hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.3s;
}
.scrolled .hamburger span{
  background-color: #333333;
}

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

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

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

.hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 1150px)
-----------------------------------*/
@media screen and (max-width: 1150px) {
  .hamburger {
    display: block;
  }
  .hamburger span{
    background-color: #333333;
  }
}


/*-----------------------------------
    ドロワーメニュー（SP）
-----------------------------------*/
.drawer_menu {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(248, 248, 246, 0.98);
  z-index: 150;
  padding-top: 100px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: opacity .4s ease,
              transform .4s ease;
}

.drawer_menu.active {
  transform: translateY(0);
  opacity: 1;
}

.drawer_logo {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  height: 70px;
  padding: 0 20px;
  z-index: 200;
}

.drawer_menu.active .drawer_logo {
  display: flex;
}

.drawer_logo img {
  width: 200px;
  height: auto;
}

.drawer_nav {
  padding: 20px 20px 30px;
}

.drawer_nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer_nav ul li a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #333333;
  border-bottom: 1px solid #e3e3e3;
}

.drawer_btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.drawer_tel,
.drawer_line,
.drawer_web {
  display: block;
  padding: 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #ffffff;
  border-radius: 3px;
}

.drawer_tel {
  background-color: #3b3b3b;
}

.drawer_line {
  background-color: #23b162;
}

.drawer_web {
  background-color: #c5a059;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .drawer_menu {
    padding-top: 70px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .drawer_menu {
    padding-top: 60px;
  }

  .drawer_logo {
    height: 60px;
  }

  .drawer_logo img {
    width: 180px;
  }
}

/*-----------------------------------
    フッター
-----------------------------------*/
#footer_block {
  background-color: #1c593e;
  color: #e3e3e3;
  padding-top: 50px;
  width: 95%;
  margin: 0 auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#footer_block .contents_inner{
  width: 95%;
  max-width: 1200px;
}
.footer_top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer_info {
  display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
  gap: 36px;
}
.footer_info_right{
  display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
  gap: 18px;
}
.footer_catch {
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0.36px;
  color: #ffffff;
}

.footer_logo {
  margin-top: 10px;
}

.footer_logo img {
  width: 333px;
  height: auto;
}

.footer_address {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.8px;
  color: #acacac;
}

.footer_info_right a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 55px;
  padding: 10px 28px 15px 32px;
  margin-top: 20px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.75px;
  transition: opacity 0.3s;
}

.footer_info_right a:hover {
  opacity: 0.7;
}

.footer_nav {
  display: flex;
  gap: 40px;
}

.footer_nav_col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer_nav_link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  color: #e3e3e3;
  padding: 10px 0;
  transition: opacity 0.3s;
}

.footer_nav_link:hover {
  opacity: 0.7;
}

.footer_nav_link img {
  width: 5px;
  height: 8px;
  margin-top: 7px;
}

.footer_nav_sub {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
}

.footer_nav_sub a {
  font-size: 13px;
  font-weight: 700;
  line-height: 21px;
  color: #e3e3e3;
  padding: 7px 0;
  transition: opacity 0.3s;
}

.footer_nav_sub a:hover {
  opacity: 0.7;
}

.footer_line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 40px 0;
}

.footer_bottom {
  display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
  padding-bottom: 40px;
  gap: 35px;
}

.footer_copyright {
  padding: 20px 0;
  text-align: end;
  font-size: 12px;
  font-weight: 500;
  line-height: 34px;
  color: #dbdbdb;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
/* @media screen and (max-width: 1500px) {
  .footer_nav {
    gap: 40px;
  }
} */

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1330px)
-----------------------------------*/
@media screen and (max-width: 1330px) {
  .footer_top {
    flex-wrap: wrap;
  }

  .footer_nav {
    gap: 30px;
  }
}

@media screen and (max-width: 1080px) {
  .footer_info {
    display: -webkit-flex;
	  display: flex;
	  -webkit-flex-direction: column;
	  flex-direction: column;
	  -webkit-justify-content: flex-start;
	  justify-content: flex-start;
	  -webkit-align-items: flex-start;
	  align-items: flex-start;
    gap: 20px;
  }
  .footer_bottom {
    display: -webkit-flex;
	  display: flex;
	  -webkit-flex-direction: column;
	  flex-direction: column;
	  -webkit-justify-content: flex-start;
	  justify-content: flex-start;
	  -webkit-align-items: flex-start;
	  align-items: flex-start;
    gap: 20px;
    padding-bottom: 40px;
  }
}


/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .footer_top {
    flex-direction: column;
  }

  .footer_logo img {
    width: 250px;
  }

  .footer_nav {
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 0;
  }

  .footer_line {
    margin: 25px 0;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 660px) {
  .footer_top {
    gap: 25px;
  }

  .footer_logo img {
    width: 220px;
  }
  .footer_info{
    gap: 0;
  }
  .footer_info_right{
    display: -webkit-flex;
	  display: flex;
	  -webkit-flex-direction: column;
	  flex-direction: column;
	  -webkit-justify-content: flex-start;
	  justify-content: flex-start;
	  -webkit-align-items: flex-start;
	  align-items: flex-start;
    gap: 5px;
  }
  .footer_address {
    font-size: 14px;
    line-height: 24px;
  }

  .footer_map_btn {
    height: 45px;
    padding: 8px 20px;
    font-size: 14px;
  }

  /* .footer_nav { */
    /* flex-direction: column; */
    /* gap: 0; */
  /* } */

  .footer_nav_col {
    padding-bottom: 10px;
  }

  .footer_copyright {
    font-size: 11px;
  }
}

/*-----------------------------------
    診療時間テーブル
-----------------------------------*/
.schedule_title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin-bottom: 15px;
}

.schedule_table {
  width: 580px;
  border: 1px solid #ececec;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 4px;
  overflow: hidden;
}

.schedule_table th,
.schedule_table td {
  padding: 10px 5px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.75px;
  color: #ffffff;
  border-right: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
}

.schedule_table th:last-child,
.schedule_table td:last-child {
  border-right: none;
}

.schedule_table tbody tr:last-child td {
  border-bottom: none;
}

.schedule_table th:first-child,
.schedule_table td:first-child {
  width: 130px;
  text-align: left;
  padding-left: 17px;
}

.schedule_time {
  font-family: 'Zen Old Mincho', serif;
}

.schedule_closed {
  color: #1d4836;
}

.schedule_holiday_cell {
  background-color: #b19774;
}

.schedule_sat_cell {
  background-color: #b19774;
}

.schedule_note {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.75px;
  color: #e3e3e3;
}

.schedule_closed_info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 15px;
}

.schedule_closed_tag,
.schedule_tel_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 28px;
  padding: 2px 15px;
  border: 1px solid #ECECEC;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.8px;
  color: #e3e3e3;
  flex-shrink: 0;
}

.schedule_closed_info p {
  font-size: 17px;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0.8px;
  color: #e3e3e3;
}

.schedule_closed_info p:first-of-type {
  line-height: 22px;
}

.schedule_tel_info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.schedule_tel_number {
  font-size: 30px;
  font-weight: 900;
  line-height: 40px;
  letter-spacing: 1.3px;
  color: #e3e3e3;
}


/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1330px)
-----------------------------------*/
/* @media screen and (max-width: 1330px) {
  .schedule_table {
    width: 100%;
  }
} */

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .footer_schedule,
  .footer_nav{
    width: 100%;
  }
  .schedule_table {
    width: 100%;
    /* font-size: 13px; */
  }

  .schedule_table th:first-child,
  .schedule_table td:first-child {
    width: auto;
    padding-left: 8px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 660px) {
  /* .schedule_table {
    font-size: 11px;
  } */

  .schedule_table th:first-child,
  .schedule_table td:first-child {
    font-size: 14px;
  }
  .schedule_table th,
  .schedule_table td {
    /* padding: 6px 2px; */
    font-size: 14px;
    line-height: 1.5;
  }

  .schedule_closed_info {
    flex-direction: column;
    gap: 8px;
  }
  .schedule_closed_tag,
   .schedule_tel_tag{
    font-size: 15px;
  }
  .schedule_closed_info p,
  .schedule_note{
    font-size: 14px;
    line-height: 2;
  }

  .schedule_tel_info {
    display: -webkit-flex;
	  display: flex;
	  -webkit-flex-direction: column;
	  flex-direction: column;
	  -webkit-justify-content: flex-start;
	  justify-content: flex-start;
	  -webkit-align-items: flex-start;
	  align-items: flex-start;
    gap: 5px;
  }

  .schedule_tel_number {
    font-size: 22px;
  }
}

/*-----------------------------------
    ページTOPボタン
-----------------------------------*/
#page_top_btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 60px;
  height: 60px;
  background-color: #1d4836;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
}

#page_top_btn.is_visible {
  opacity: 1;
  visibility: visible;
}

#page_top_btn:hover {
  background-color: #b19774;
}

.page_top_arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: 8px;
}

.page_top_label {
  font-family: 'Zen Old Mincho', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1;
}
