@charset "UTF-8";

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: #4c4b4c;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  overflow: hidden;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition-duration: 0.3s;
}

a img,
a::before,
a::after,
a p,
a div,
a span,
a button {
  transition-duration: 0.3s;
}

a:hover img {
  opacity: 0.8;
}

h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.1em;
}

p,
a,
li,
button,
dt,
dd,
th,
td,
address,
small {
  letter-spacing: 0.05em;
}

/*-----------------------------------------------------------------------------------------
レイアウト
-----------------------------------------------------------------------------------------*/
section,
.sec {
  padding: 40px 0;
}

.inner-box {
  max-width: 1160px;
  width: 90%;
  margin: 0 auto;
}

.width-s {
  max-width: 400px;
  margin: 0 auto auto;
}

.txt-box {
  text-align: justify;
  line-height: 1.8;
  word-break: break-all;
}

.row-2 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  justify-content: space-around;
  row-gap: 35px;
}

.row-2 ul li {
  max-width: 450px;
  width: 48%;
}

.row-3 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  justify-content: space-around;
  row-gap: 35px;
}

.row-3 ul li {
  max-width: 330px;
  width: 30%;
}

@media (max-width: 767px) {
  .row-2 ul {
    row-gap: 10px;
  }

  .row-2 ul li {
    max-width: 450px;
    width: 48%;
  }

  .row-3 ul {
    row-gap: 10px;
  }

  .row-3 ul li {
    width: 100%;
  }
}

.flex-sb {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.flex-sa {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

.flex-se {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}

.sp-block {
  display: none;
}

/*-----------------------------------------------------------------------------------------
見出し
-----------------------------------------------------------------------------------------*/
/*22 黒太字 中央揃 下余白30*/
.heading-001 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.heading-001::before {
  content: "";
  display: block;
  width: 100px;
  background-size: contain;
  margin: 0 auto 10px;
}

.heading-001.logo::before {
  aspect-ratio: 145/66;
  background-image: url(img/logo.svg);
}

.heading-001.cross::before {
  width: 38px;
  aspect-ratio: 1/1;
  background-image: url(img/cross.svg);
}

.heading-001 span {
  display: block;
  color: #43A34D;
  font-size: 13px;
  margin: 1px auto 0;
  text-transform: capitalize;
}

/*20 緑太字 中央揃 下線 下余白15*/
.heading-002 {
  color: #43A34D;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 3px dotted #C8DF62;
  margin-bottom: 15px;
}

/*17 黒太字 中央揃 下余白15*/
.heading-003 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.heading-003 span {
  display: block;
  font-size: 12px;
}

@media (max-width: 767px) {
  .heading-001 {
    font-size: 20px;
  }

  .heading-001::before {
    width: 50px;
    margin: 0 auto 5px;
  }

  .heading-002 {
    font-size: 18px;
    padding-bottom: 3px;
    margin-bottom: 8px;
  }

  .heading-003 {
    margin-bottom: 8px;
    font-size: 17px;
  }
}

/*-----------------------------------------------------------------------------------------
背景色
-----------------------------------------------------------------------------------------*/
.bgc-white-p {
  background-color: #fff;
  padding: 50px 0;
  border-radius: 3px;
}

.bgc-white {
  background-color: #fff;
}

.bgc-green {
  background-color: #43A34D;
}

.bgc-lightgreen {
  background-color: #E5EDBE;
}

.bgc-lightorange {
  background-color: #F1D9BB;
}

.bgc-lightgray {
  background-color: #d2d2d2;
}

/*-----------------------------------------------------------------------------------------
パーツ
-----------------------------------------------------------------------------------------*/
/*緑ボタン*/
.btn-g {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  background-color: #43A34D;
  color: #fff;
  padding: 5px 0;
  border: 1px solid #fff;
  box-sizing: border-box;
}

.btn-g:hover {
  background-color: #fff;
  color: #43A34D;
  border: 1px solid #43A34D;
}

/*黄緑下線 リスト*/
.u-line-menu li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-content: flex-start;
  padding: 18px 0;
  border-bottom: 2px dotted #C8DF62;
  box-sizing: border-box;
  position: relative;
}

.u-line-menu li a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  background-color: transparent;
  right: 3em;
  -webkit-mask-image: url(img/arrow02.svg);
  mask-image: url(img/arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.u-line-menu li a:hover {
  color: #43A34D;
}

.u-line-menu li a:hover::after {
  background-color: #43A34D;
  transform: translateX(2em);
}

/*診察カレンダー*/
.table-1 {
  border: 2px solid #43A34D;
  border-radius: 3px;
  padding: 2em;
  box-sizing: border-box;
  background-color: #fff;
  margin-bottom: .5em;
}

.table-1 table {
  width: 100%;
  border-collapse: collapse;
}

.table-1 table tr:first-child {
  border-bottom: 1px solid #BCBCBC;
}

.table-1 table th {
  width: 30%;
}

.table-1 table th, .table-1 table td {
  padding: 8px 0;
  text-align: center;
}

.table-1 table tr:not(:first-child) td {
  color: #43A34D;
}

.opening-hour li {
  text-indent: .5em;
}

@media (max-width:767px) {
  .table-1 {
    padding: 1em;
  }

  .table-1 table th {
    font-size: 13px;
  }
}


/*-----------------------------------------------------------------------------------------
アコーディオン
-----------------------------------------------------------------------------------------*/
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-question {
  background: none;
  border: none;
  width: 100%;
  line-height: 2;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  color: #4c4b4c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}

.accordion-icon {
  transition: transform 0.3s;
  color: #43A34D;
}

.accordion-question.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  color: #4c4b4c;
  transition: all .2s ease;
}

.accordion-answer p,
.accordion-answer ul {
  padding: 0 1em 1em 1em;
}

.accordion-answer.active {
  max-height: 100vh;

}

/*-----------------------------------------------------------------------------------------
nav関連
-----------------------------------------------------------------------------------------*/
ul.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

ul.nav-menu>li.menu-item {
  width: 14.2857142857%;
  box-sizing: border-box;
  position: relative;
}

ul.nav-menu>li.menu-item>a {
  display: block;
  width: 100%;
  text-align: center;
}

ul.nav-menu>li.menu-item>a::after {
  display: block;
  content: "home";
  margin: 1px auto 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 13px;
  text-align: center;
  color: #43A34D;
}

ul.nav-menu>li.menu-item>a:hover::after {
  opacity: 0.6;
}

ul.nav-menu>li.menu-item:nth-child(2)>a::after {
  content: "first";
}

ul.nav-menu>li.menu-item:nth-child(3)>a::after {
  content: "introduction";
}

ul.nav-menu>li.menu-item:nth-child(4)>a::after {
  content: "doctor";
}

ul.nav-menu>li.menu-item:nth-child(5)>a::after {
  content: "medical";
}

ul.nav-menu>li.menu-item:nth-child(6)>a::after {
  content: "facility";
}

ul.nav-menu>li.menu-item:nth-child(7)>a::after {
  content: "access";
}

ul.nav-menu>li.menu-item:not(:last-child)::before {
  display: block;
  content: "";
  width: 2px;
  height: 40px;
  background-color: #C8DF62;
  rotate: 10deg;
  position: absolute;
  top: 0;
  right: 0;
}

/* ドロップダウンメニュー */
ul.sub-menu {
  position: absolute;
  top: 50px;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
  overflow: hidden;
  z-index: 1000;
}

/* ドロップダウン内のリンク */
.sub-menu a {
  display: block;
  padding: 12px 20px;
}

.sub-menu a:hover {
  background-color: #E5EDBE;
  color: #43A34D;
}


/*-----------------------------------------------------------------------------------------
nav関連 div.sp-nav-wrapper nav.sp-nav
-----------------------------------------------------------------------------------------*/
.sp-nav-wrapper {
  position: fixed;
  width: 100%;
  top: 60px;
  left: 0;
  background-color: rgba(254, 250, 242, .8);
  transition-duration: .6s;
  height: 0;
  overflow: hidden;
}

.sp-nav-wrapper.active {
  height: calc(100vh - 60px);
  z-index: 999;
}

nav.sp-nav {
  width: 100%;
}

.sp-nav ul.sub-menu {
  opacity: 1;
  visibility: visible;
  margin: 0 auto;
  background-color: transparent;
}

/*-----------------------------------------------------------------------------------------
スマホナビアコーディオンメニュー
-----------------------------------------------------------------------------------------*/
/* スマホナビの親メニュー項目のスタイル */
.sp-nav-menu li a {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(200, 223, 98, 0.3);
  text-align: center;
}

/* アコーディオンアイコンのスタイル */
.sp-nav-menu .accordion-icon {
  color: #43A34D;
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
  min-width: 20px;
  text-align: center;
}

/* スマホナビ内のサブメニュー表示設定 */
.sp-nav .sub-menu {
  position: static;
  background: rgba(255, 255, 255, 0.9);
  min-width: auto;
  border-radius: 0;
  margin-left: 20px;
  margin-top: 5px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  /* !importantを削除して、JavaScriptで制御できるようにする */
}

.sp-nav .sub-menu li {
  border-bottom: 1px solid #E5EDBE;
}

.sp-nav .sub-menu li:last-child {
  border-bottom: none;
}

.sp-nav .sub-menu a {
  padding: 12px 15px;
  font-size: 14px;
  display: block;
  color: #666;
  transition: all 0.3s ease;
}

.sp-nav .sub-menu a:hover {
  background-color: #E5EDBE;
  color: #43A34D;
  padding-left: 20px;
}

/* アクティブ状態の親メニュー */
.sp-nav-menu li.active>a {
  background-color: rgba(229, 237, 190, 0.3);
  color: #43A34D;
}

/*-----------------------------------------------------------------------------------------
header, footer
-----------------------------------------------------------------------------------------*/
.header-wrapper {
  padding: 20px 0;
  background-color: #FEFAF2;
  width: 100%;
}

header h1 {
  position: relative;
  width: 12%;
  max-width: 140px;
  aspect-ratio: 9/5;
}

header h1::before {
  content: "";
  display: block;
  position: absolute;
  width: 180%;
  aspect-ratio: 197/47;
  background-image: url(img/bg_h1.svg);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -60px;
  left: -40%;
  z-index: 1000;
}

header h1 a {
  display: block;
  width: 100%;
  text-align: center;
  height: 100%;
  top: 0;
}

header nav {
  width: 65%;
  font-size: 14px;
  /* ホバー時にドロップダウンを表示 */
}

header nav .nav-menu>.menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header address a {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #43A34D;
  padding: 3px 1em;
  font-size: 16px;
  margin-top: 5px;
  box-sizing: border-box;
  color: #43A34D;
  font-weight: bold;
}

header address a::before {
  display: inline-block;
  background-color: #F3A93B;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  content: "";
  vertical-align: text-bottom;
  margin-right: 0.5em;
}

header address a:hover {
  background-color: #E5EDBE;
  transform: scale(1.1);
}

header .btn-squ {
  display: block;
  width: 60px;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  border: 0;
  position: relative;
  background-color: transparent;
  padding: 0;
}

header #hamburger span {
  position: absolute;
  width: 30px;
  height: 2px;
  top: calc(50%- 1px);
  right: 0;
  background-color: #43A34D;
  transition: all 0.6s;
  z-index: 1000;
}

header #hamburger span::before, header #hamburger span::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  right: 0;
  background-color: #43A34D;
  transition: all 0.6s;
}

header #hamburger span::before {
  top: -8px;
}

header #hamburger span::after {
  top: 8px;
}

header #hamburger.active span {
  background-color: transparent;
}

header #hamburger.active span::before {
  transform: translateY(8px) rotate(-45deg);
}

header #hamburger.active span::after {
  transform: translateY(-8px) rotate(45deg);
}

@media (max-width: 1024px) {
  .header-wrapper {
    position: fixed;
    top: 0;
    background-color: rgba(254, 250, 242, .6);
    z-index: 999;
    padding: 0;
  }

  header h1 {
    width: 100px;
    transform: translateY(5px);
  }

  header h1::before {
    display: none;
  }
}

.fixed-menu a {
  display: block;
  text-align: center;
  border-radius: 20px;
  position: fixed;
  writing-mode: vertical-lr;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 20px 110px 20px 20px;
  right: -90px;
  box-shadow: -5px 0 0 0 #fff;
  z-index: 30;
  height: 118px;
}

.fixed-menu a span {
  writing-mode: horizontal-tb;
  text-transform: uppercase;
  line-height: 1;
  font-size: 15px;
}

.fixed-menu a:nth-child(1) {
  background-color: #F3A93B;
  top: 115px;
}

.fixed-menu a:nth-child(2) {
  background-color: #43A34D;
  top: 280px;
}

.fixed-menu a:hover {
  transform: translateX(-70px);
}

@media (max-width:1024px) {
  .fixed-menu {
    width: 100%;
  }

  .fixed-menu a {
    width: 50%;
    top: auto;
    right: 0;
    bottom: 0;
    writing-mode: horizontal-tb;
    padding: 15px 0;
    box-shadow: none;
    box-sizing: border-box;
    border-radius: 0;
    height: auto;
  }

  .fixed-menu a:nth-child(1) {
    right: auto;
    left: 0;
    top: auto;
  }

  .fixed-menu a:nth-child(2) {
    top: auto;
  }

  .fixed-menu a:hover {
    transform: none;
    opacity: .8;
  }

}

#home address {
  width: 18%;
  max-width: 210px;
  font-size: 13px;
  text-align: center;
}

footer {
  background-color: #FEFAF2;
}

footer .sec {
  padding: 80px 0;
  row-gap: 35px;
}

@media (max-width: 767px) {
  footer .sec {
    padding: 40px 0;
    row-gap: 10px;
  }
}

footer #map {
  width: 48%;
}

footer .h2-wrapper {
  width: 45%;
}

footer .bgc-green {
  padding: 30px 0;
  color: #fff;
}

footer h2 {
  margin: 20px auto 10px;
}

footer .local {
  margin-bottom: 40px;
}

footer .local ul.nav-menu>li.menu-item>a::after {
  color: #fff;
}

footer .local .sub-menu {
  visibility: hidden;
}

footer address {
  max-width: none;
  width: 100%;
  text-align: center;
  line-height: 2;
}

footer address a {
  color: #43A34D;
  font-size: 20px;
  display: inline;
  font-weight: bold;
}

footer small {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 1024px) {

  footer #map,
  footer .h2-wrapper {
    width: 100%;
  }

  footer .sec {
    padding-bottom: 40px;
  }

  footer .bgc-green {
    padding: 30px 0 94px;
  }

}


/*-----------------------------------------------------------------------------------------
トップページ index.php
-----------------------------------------------------------------------------------------*/
main#home {
  background-color: #FEFAF2;
}

#home section,
#home .sec {
  padding: 80px 0;
}

@media (max-width: 767px) {

  #home section,
  #home .sec {
    padding: 40px 0;
  }
}

/*-------------------------------------
main-img
---------------------------------------*/
.main-img {
  margin: 0 auto;
  position: relative;
  max-width: 1300px;
}

.main-img .swiper {
  overflow: visible;
}

.main-img .swiper.for-pc {
  display: block;
}

.main-img .swiper.for-sp {
  display: none;
}

.main-img .swiper-slide {
  opacity: 0.6;
  /* 非アクティブスライドを半透明に */
  transition: opacity 0.6s ease;
  /* スムーズな透明度変化 */
  overflow: hidden;
  border-radius: 1px;
  box-sizing: border-box;
}

.main-img .swiper-slide-active {
  opacity: 1;
}

.main-img .peop_wait {
  position: absolute;
  bottom: 0;
  right: -3em;
  margin: 0 auto;
  width: 300px;
  height: 170px;
  overflow: hidden;
  z-index: 1000;
}

@media (max-width: 767px) {
  .main-img {
    margin-top: 60px;
    position: relative;
    z-index: 1;
  }
  .main-img::before {
    z-index: 2;
    position: absolute;
    display: block;
    content: "";
    background-color: rgba(255,255,255,.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .main-img::after {
    z-index: 2;
    position: absolute;
    display: block;
    content: "";
    width: 60%;
    aspect-ratio: 1/1;
    background-image: url(img/logo_h1.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    top: 30%;
    left: calc(50% - 30%);
  }

  .main-img .swiper.for-pc {
    display: none;
  }

  .main-img .swiper.for-sp {
    display: block;
  }
}
/*-------------------------------------
bn
---------------------------------------*/

#bn {
  margin: 40px 0 0; 
}

#bn ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
}
#bn ul li{
  width: 48%;
}

@media (max-width:767px) {
  #bn ul li{
  width: 100%;
}
}


/*-------------------------------------
news
---------------------------------------*/
#news .flex-se {
  padding-bottom: 60px;
  row-gap: 20px;
}

#news .h2-wrapper {
  width: 180px;
}

#news .post {
  width: 60%;
}

#news .post .bn_bus {
  width: 80%;
  margin: 2em auto 0;
}

#news time {
  color: gray;
  font-size: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  #news {
    width: 100%;
  }

  #news .post {
    width: 90%;
  }

  #news .post .bn_bus {
  width: 100%;
}


  #news time {
    width: 100%;
  }
}

/*-------------------------------------
schedule  診察時間
---------------------------------------*/
#home #schedule {
  padding: 0;
}

#schedule .flex-sb {
  row-gap: 40px;
}

#schedule .flex-sb>div {
  width: 46%;
}

@media (max-width: 1024px) {
  #schedule .flex-sb>div {
    width: 100%;
  }
}

/*-------------------------------------
#top-calendar 担当医表
---------------------------------------*/
#top-calendar .calendar_before,
.calendar_title, .calendar_info, .calendar_controls3, .calendar_about, .calendar_updated_at {
  display: none !important;
}

#top-calendar .calendar_date_controls {
  padding-top: 0;
}

.calendar_date_controls .prev_link a,
.calendar_date_controls .next_link a,
.calendar_controls2 .prev_link a,
.calendar_controls2 .next_link a {
  color: #43A34D;
}

table.calendar_table th, table.full_calendar_table th {
  background: #43A34D;
  color: #fff;
  font-weight: normal;
}

#lower-calendar .calendar_before .text_label1,
#lower-calendar .calendar_before .text_label2,
#lower-calendar .calendar_before .text1_hours,
#lower-calendar .calendar_before .text2_hours {
  font-size: 12px;
}

div.calendar_date {
  font-size: 12px;
  padding: 3px 0;
}

div.schedule_text1, div.schedule_text2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

div.schedule_text1 div, div.schedule_text2 div {
  text-align: center;
}

.calendar_after .schedule_detail {
  margin-bottom: 20px;
  background-color: #fff;
}

.schedule_detail th, .schedule_detail td {
  vertical-align: middle;
}
/* .schedule_detail th {
  width: 30%;
} */
.schedule_detail td div {
  text-align: center;
}


/*-------------------------------------
feature 手術＋ビデオ
---------------------------------------*/

#feature {
  position: relative;
  z-index: 1;
}

#feature::before,
#feature::after {
  content: "";
  display: block;
  position: absolute;
  width: 700px;
  aspect-ratio: 1/1;
  background-image: url(img/decoration-l01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: -420px;
  top: -2%;
  opacity: 0.2;
  z-index: -1;
}

#feature::after {
  background-image: url(img/decoration-l02.svg);
  right: auto;
  left: -420px;
  transform: rotate(45deg);
  opacity: 0.3;
}

#feature .sec {
  padding: 40px 0;
}

#feature #cataract {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  align-items: stretch;
  gap: 75px 40px;
}

#feature #cataract .heading-002 span {
  display: inline-block;
  background-color: #F3A93B;
  color: #fff;
  font-size: .9em;
  padding: 0 .5em;
  margin-left: .5em;
}


#feature #cataract li {
  width: calc((100% - 80px) / 3);
  min-width: 310px;
  position: relative;
}

#feature #cataract .feature-img {
  margin-bottom: 15px;
  overflow: hidden;
  aspect-ratio: 16/11;
  background-color: #F7F5F1;
  border-bottom: 3px solid #F7F5F1;
  border-radius: 3px;
}

#feature #cataract a:hover img {
  transform: scale(1.12);
}

#feature #cataract .oop {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  text-align: center;
  color: #fff;
  opacity: 0.7;
  padding: 0.7em;
  border-radius: 0 0 0 3px;
}

#feature #ope {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-items: stretch;
  position: relative;
  justify-content: space-evenly;
  row-gap: 35px;
}

#feature #ope li {
  width: 23%;
  min-width: 150px;
}

#feature #ope li a {
  display: block;
  width: 100%;
  text-align: center;
  height: 100%;
  border-radius: 20px;
  background-color: #E5EDBE;
  color: #43A34D;
  box-sizing: border-box;
  padding: 2em 1em;
}

#feature #ope li a:hover {
  transform: translateY(-8px);
}

#feature #ope li .icon {
  width: 20%;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask-image: url(img/cross.svg);
  mask-image: url(img/cross.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  margin: 0 auto 15px;
}

#feature #ope li .heading-003 {
  margin-bottom: 0;
}

#feature #ope li .txt-box {
  font-size: 14px;
  color: #262626;
  margin-top: 15px;
}

#feature #video ul {
  display: block;
  position: relative;
  padding-top: 80px;
}

#feature #video ul li {
  border: 3px solid #C8DF62;
}

#feature #video ul li:not(:last-child) {
  margin-bottom: 35px;
}

#feature #video ul .inner-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  box-sizing: border-box;
  color: #4c4b4c;
  row-gap: 10px;
}

#feature #video ul .video-img {
  max-width: 348px;
  width: 30%;
}

#feature #video ul .video-text-area {
  max-width: 713px;
  width: 60%;
}

#feature #video ul dt {
  text-align: start;
}

#feature #video ul dd span {
  display: block;
  font-size: 13px;
  color: rgba(67, 163, 77, 0.7);
  margin-top: 5px;
}

#feature #video ul::after {
  content: "";
  display: block;
  position: absolute;
  width: 630px;
  height: 12px;
  top: -1%;
  left: calc(50% - 315px);
  background-image: url(img/line.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {

  #home section#feature {
    padding: 40px 0 0;
  }
  #feature::before,
  #feature::after {
    top: 0;
    width: 512px;
  }

  #feature .sec {
    padding: 30px 0;
  }

  #feature #cataract {
    gap: 30px 0;
  }

  #feature #cataract li {
    width: 100%;
    min-width: none;
  }

  #feature #cataract .feature-img {
    width: 60%;
    margin: 0 auto 8px;
  }

  #feature #ope {
    gap: 10px;
    justify-content: space-between;
  }

  #feature #ope li {
    width: calc((100% - 10px) / 2);
  }

  #feature #ope li a:hover {
    transform: translateY(0);
  }

  #feature #ope li .icon {
    width: 36px;
  }

  #feature #ope li .txt-box {
    margin-top: 8px;
  }

  #feature #video ul {
    padding-top: 40px;
  }

  #feature #video ul li:not(:last-child) {
    margin-bottom: 30px;
  }

  #feature #video ul .bgc-white-p {
    padding: 8% 0;
  }

  #feature #video ul .video-img {
    max-width: none;
    width: 90%;
  }

  #feature #video ul .video-text-area {
    width: 90%;
    margin: 0 auto;
  }

  #feature #video ul dt {
    text-align: center;
  }

  #feature #video ul dd span {
    margin-top: 3px;
  }
}

/*-------------------------------------
greeting
---------------------------------------*/
#home #greeting {
  padding-top: 0;
}

#greeting .doctor-box.flex-sb {
  align-items: stretch;
  row-gap: 2em;
  position: relative;
  padding-top: 80px;
}

#greeting .doctor-box.flex-sb::after {
  position: absolute;
  content: "";
  display: block;
  width: 55vw;
  height: 56%;
  background-color: #f5f2e8;
  top: calc(50% - 28%);
  left: -18vw;
}

#greeting .doctor-box.flex-sb:last-child:after {
  left: auto;
  right: -18vw;
}

#greeting .doctor-box .flex-sa {
  align-items: stretch;
}

#greeting .doctor-box:first-child {
  flex-wrap: wrap-reverse;
}

#greeting .doctor-box:first-child .img-wrapper {
  order: 1;
}

#greeting .doctor-box:first-child .txt-wrapper {
  order: 2;
}

#greeting .doctor-box:last-child .b-box .name {
  order: 1;
}

#greeting .doctor-box:last-child .b-box .img {
  order: 2;
}

#greeting .doctor-box.flex-sb .img-wrapper,
#greeting .doctor-box.flex-sb .txt-wrapper {
  width: 48%;
  position: relative;
  z-index: 1;
}

#greeting .doctor-box.flex-sb .txt-wrapper .mb {
  margin-bottom: 1em;
}

#greeting .doctor-box.flex-sb .img-wrapper .t-box {
  position: relative;
  margin-bottom: 3em;
}

#greeting .doctor-box.flex-sb .img-wrapper .t-box .img {
  width: 70%;
}

#greeting .doctor-box.flex-sb:last-child .img-wrapper .t-box .img {
  margin-right: 0;
  margin-left: auto;
}

#greeting .doctor-box.flex-sb .img-wrapper .b-box .img {
  width: 52%;
}

#greeting .doctor-box.flex-sb .img-wrapper .b-box .name {
  width: 40%;
}

#greeting .doctor-box.flex-sb .img-wrapper .b-box .name p {
  margin-bottom: 1.2em;
  ;
}

#greeting .doctor-box.flex-sb:last-child .img-wrapper .b-box .name p {
  text-align: right;
}

#greeting .doctor-box.flex-sb .img-wrapper .word {
  writing-mode: vertical-rl;
  font-family: serif;
  position: absolute;
  right: 0;
  top: -80px;
  font-size: 25px;
  letter-spacing: .2em;
  text-align: center;
  line-height: 1.8;
}

#greeting .doctor-box.flex-sb:last-child .img-wrapper .word {
  right: auto;
  left: 0;
}

@media (max-width:1024px) {
  #greeting .doctor-box.flex-sb .img-wrapper .word {
    top: -20px;
    font-size: 18px;
  }

  #greeting .doctor-box .flex-sa {
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  #greeting .doctor-box.flex-sb {
    padding-top: 40px;
  }

  #greeting .doctor-box.flex-sb::after {
    width: 87vw;
    height: 30%;
    top: auto;
    bottom: 48px;
  }

  #greeting .doctor-box.flex-sb .img-wrapper,
  #greeting .doctor-box.flex-sb .txt-wrapper {
    width: 100%;
  }
}

/*-------------------------------------
link リレーション
---------------------------------------*/
#link .menu-g a {
  display: block;
  width: 100%;
  text-align: center;
  border: 5px solid #C8DF62;
  color: #43A34D;
  border-radius: 3px;
  padding: 30px 0;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
}

#link .menu-g a:hover {
  background-color: #E5EDBE;
}

#link .menu-g a::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-color: #43A34D;
  margin-right: 0.7em;
  vertical-align: middle;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

#link .menu-g a#calendar::before {
  -webkit-mask-image: url(img/calendar.svg);
  mask-image: url(img/calendar.svg);
}

#link .menu-g a#recruit::before {
  -webkit-mask-image: url(img/recruit.svg);
  mask-image: url(img/recruit.svg);
}

#link .menu-g a#hospital::before {
  -webkit-mask-image: url(img/hospital.svg);
  mask-image: url(img/hospital.svg);
}

@media (max-width: 767px) {
  #link li {
    max-width: none;
  }

  #link .menu-g {
    width: 33.3333333333%;
  }

  #link .menu-g a {
    font-size: 14px;
    border-collapse: collapse;
    border: 1px solid #fff;
    background-color: rgba(229, 237, 190, 0.8);
  }

  #link .menu-g a::before {
    display: block;
    margin: 0 auto;
  }
}

/*-------------------------------------
medical 診療案内
---------------------------------------*/
#medical {
  background-image: url(img/bg-medical.jpg);
  background-attachment: fixed;
  background-size: cover;
}

#medical ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-items: stretch;
  justify-content: center;
  gap: 35px;
}

#medical li {
  max-width: 300px;
  box-sizing: border-box;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

#medical .img {
  background-color: #F7F5F1;
  overflow: hidden;
}

#medical .h3-wrapper {
  padding: 1em;
  background-color: #F7F5F1;
}

#medical h3 {
  font-weight: 400;
  font-size: 20px;
}

#medical button {
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  margin: 0 0 0 auto;
  background-color: #43A34D;
  border: 0;
  cursor: pointer;
  -webkit-mask-image: url(img/arrow01.svg);
  mask-image: url(img/arrow01.svg);
}

#medical a:hover .h3-wrapper {
  background-color: #fff;
}

#medical a:hover button {
  -webkit-mask-image: url(img/arrow02.svg);
  mask-image: url(img/arrow02.svg);
}

@media (max-width: 767px) {
  #medical {
    background-attachment: scroll;
    background-position: top left;
  }

  #medical h3 {
  font-size: 17px;
}

  #medical .inner-box {
    width: 100%;
  }

  #medical ul {
    gap: 0;
  }

  #medical ul::after {
    content: "";
    width: 50%;
  }

  #medical li {
    min-width: inherit;
    width: 50%;
  }
}

/*-------------------------------------
icl
---------------------------------------*/
#icl {
  background-color: #F7F5F1;
}

@media (max-width: 767px) {
  #icl ul li {
    width: 100%;
  }
}

/*-------------------------------------
index 目の病気＋目の症状
---------------------------------------*/
.index {
  position: relative;
  background-color: #E5EDBE;
}

.index ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
  width: 88%;
  margin: 0 auto;
}

.index ul li {
  width: calc((100% - 90px) / 4);
  min-width: 230px;
}

.index ul li a {
  display: block;
  width: 100%;
  text-align: center;
  height: 100%;
  border: 3px solid #43A34D;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 12px;
  color: #43A34D;
  position: relative;
}

.index ul li a:hover {
  background-color: #43A34D;
  color: #fff;
}

/* .index::before {
  content: "";
  display: block;
  position: absolute;
  width: 9%;
  min-width: 90px;
  aspect-ratio: 1/1;
  bottom: 0;
  left: 10%;
  background-image: url(img/decoration-01.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index::after {
  content: "";
  display: block;
  position: absolute;
  width: 7%;
  min-width: 70px;
  aspect-ratio: 1/1;
  bottom: 1%;
  left: 20%;
  background-image: url(img/decoration-02.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
} */
@media (max-width: 767px) {
  .index ul {
    row-gap: 10px;
    height: 310px;
    overflow-y: scroll;
  }

  .index ul li {
    width: 100%;
  }
}

/*-------------------------------------
目の病気
---------------------------------------*/
#disease ul::after {
  content: "";
  display: block;
  min-width: 230px;
}

/*-------------------------------------
目の症状
---------------------------------------*/
#symptoms {
  background-color: #F1D9BB;
}

#symptoms li {
  height: 78px;
}

#symptoms a {
  border-color: #F3A93B;
  color: #F3A93B;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#symptoms a:hover {
  background-color: #F3A93B;
  color: #fff;
}

/* #symptoms::before {
  background-image: url(img/decoration-03.svg);
  left: auto;
  right: 10%;
}
#symptoms::after {
  background-image: url(img/decoration-04.svg);
  left: auto;
  right: 18%;
} */

/*-------------------------------------
academic
---------------------------------------*/
#home #academic {
  padding-bottom: 0;
  background-color: #fff;
}

/*-------------------------------------
related
---------------------------------------*/

#home #related {
  background-color: #fff;
}

#related ul::after {
  content: "";
  display: block;
  width: 30%;
  max-width: 380px;
}

@media (max-width: 767px) {
  #related ul li, #related ul::after {
    width: 48%;
    max-width: none;
  }
 
}


/*-----------------------------------------------------------------------------------------
下層ページ
-----------------------------------------------------------------------------------------*/
/*bodyの色*/
main.lower {
  background-color: #fff;
}

/*-------------------------------------
下層ページヘッダー
---------------------------------------*/
.lower-heading-wrapper {
  background-image: url(img/bg-medical.jpg);
  height: 40vh;
  background-size: cover;
  background-position: left center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.lower-heading-wrapper h2 {
  margin-bottom: 0;
  color: #fff;
  max-width: 1160px;
  font-size: 30px;
}

.lower-heading-wrapper h2 span {
  visibility: hidden;
}

/*-------------------------------------
下層ページパンくずリスト
---------------------------------------*/
.breadcrumb-container {
  padding: 1rem 2rem;
  margin-bottom: 40px;
}

.lower .breadcrumb {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}

.lower .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #666;
}

.lower .breadcrumb-item {
  display: flex;
  align-items: center;
}

.lower .breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: #999;
  font-weight: normal;
}

.lower .breadcrumb-item a {
  color: #4c4b4c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lower .breadcrumb-item a:hover {
  color: #43A34D;
  text-decoration: underline;
}

.lower .breadcrumb-item.current {
  color: #666;
  font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .breadcrumb-container {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
  }

  .lower .breadcrumb-list {
    font-size: 0.8rem;
  }

  .lower .breadcrumb-item:not(:last-child)::after {
    margin: 0 0.3rem;
  }
}


/*-------------------------------------
下層ページメインコンテンツ
---------------------------------------*/
.lower-wrapper {
  max-width: 1160px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  gap: 3em;
}

.lower-wrapper .main-container {
  width: calc(75% - 2em);
  box-sizing: border-box;
  padding: 0;
}

.lower-wrapper .main-container a.link {
  color: #43A34D;
  text-decoration: underline;
}

/* 大見出し */
.lower-wrapper .main-container h3 {
  text-align: center;
  font-size: 26px;
  line-height: 1.8;
  padding: 1em 0;
  margin-bottom: 40px;
  background-image: url(img/bg_h3.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  font-family: serif;
}

/* 中見出しの外枠に設定 */
.lower-wrapper .main-container .content-wrapper {
  margin-bottom: 60px;
}

/* 中見出し基本設定 */
.lower-wrapper .main-container h4 {
  text-align: center;
  font-size: 24px;
  line-height: 1.8;
  padding: 1em 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  font-family: serif;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

@media (max-width:767px) {
  .lower-wrapper .main-container h4 {
    font-size: 20px;
  }
}

/* 中見出し１ しずく型アイコン */
.lower-wrapper .main-container h4.subheading-001 {
  background-image: url(img/bg_h4_drop.png);
}

/* 中見出し2 リーフ型アイコン */
.lower-wrapper .main-container h4.subheading-002 {
  background-image: url(img/bg_h4_leaf.png);
}

/* 中見出し3 アイコン無し 背景黄緑 */
.lower-wrapper .main-container h4.subheading-003 {
  background-color: #C8DF62;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em;
  border: 0;
  line-height: normal;
  height: -moz-fit-content;
  height: fit-content;
}

/* 小見出し1 背景グレー*/
.lower-wrapper .main-container .sub-subheading-001 {
  font-size: 18px;
  margin-bottom: 10px;
  background-color: #f5f2e8;
  border-radius: 3px;
  padding: .3em .6em;
}

/* 小見出し2 背景色なし 緑 下線あり*/
.lower-wrapper .main-container .sub-subheading-002 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: .2em 0;
  color: #43A34D;
  border-bottom: 1px solid #43A34D;
}

/* 背景色を使用するなど、四方に余白が欲しい場面で使用 */
.lower-wrapper .main-container .padding-box {
  padding: 1.5em;
}

.lower-wrapper .main-container .img {
  width: 90%;
  margin: 0 auto auto;
}

.lower-wrapper .main-container .flex-sb,
.lower-wrapper .main-container .flex-sb-3col {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  row-gap: 1em;
  flex-wrap: wrap;
}

.lower-wrapper .main-container .flex-sb.reverse {
  flex-wrap: wrap-reverse;
}

.lower-wrapper .main-container .flex-se {
  justify-content: space-evenly;
  align-items: stretch;
  row-gap: 1em;
}


/* 横並びレイアウト（２列）ベース */
.lower-wrapper .main-container .flex-sb .r-box,
.lower-wrapper .main-container .flex-sb .l-box {
  width: 48%;
}

.lower-wrapper .main-container .flex-se .l-box,
.lower-wrapper .main-container .flex-se .r-box {
  width: 44%;
}

/* 横並びレイアウト（3列）ベース */
.lower-wrapper .main-container .flex-sb-3col .r-box,
.lower-wrapper .main-container .flex-sb-3col .c-box,
.lower-wrapper .main-container .flex-sb-3col .l-box {
  width: 32%;
}

@media (max-width:767px) {

  .lower .lower-wrapper .main-container .r-box,
  .lower .lower-wrapper .main-container .c-box,
  .lower .lower-wrapper .main-container .l-box {
    width: 100%;
  }
}

.lower-wrapper .main-container p,
.lower-wrapper .main-container li,
.lower-wrapper .main-container dt,
.lower-wrapper .main-container dd {
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: justify;
  position: relative;
  word-break: break-all;
}

.lower-wrapper .main-container .mb {
  margin-bottom: 1.8em;
}

/* リストアイコン設定 */
.lower-wrapper .main-container li::before,
.lower-wrapper .main-container p::before {
  content: "";
  display: none;
  width: 1em;
  height: 1em;
  left: -1.5em;
  position: absolute;
}

/* アイコン有効時字下げ設定 */
.lower-wrapper .main-container .kome,
.lower-wrapper .main-container .circle,
.lower-wrapper .main-container .square,
.lower-wrapper .main-container .dot,
.lower-wrapper .main-container .count li {
  margin-left: 1.5em;
}

/* カウントアップ*/
.lower-wrapper .main-container .count {
  counter-reset: number 0;
}

.lower-wrapper .main-container .count li::before {
  display: block;
  counter-increment: number 1;
  content: counter(number) ".";
  color: #43A34D;
}

/* 米印 */
.lower-wrapper .main-container .kome::before {
  content: "※";
  color: #43A34D;
  display: block;

}

/* ⚫︎印 */
.lower-wrapper .main-container .circle::before {
  content: "";
  display: block;
  background-color: #43A34D;
  border-radius: 50%;
  top: .5em;

}

/* ◼︎印 */
.lower-wrapper .main-container .square::before {
  content: "";
  display: block;
  background-color: #43A34D;
  top: .5em;

}

/* 中黒 */
.lower-wrapper .main-container .dot::before {
  content: "・";
  display: block;
  color: #43A34D;

}

/*-------------------------------------
下層ページトップメニュー（手術スラッグを持つページのみ表示）
---------------------------------------*/
.lower-wrapper .main-container .cataract-menu {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}

.lower-wrapper .main-container .cataract-menu li {
  width: calc((100% - 20px) / 5);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.lower-wrapper .main-container .cataract-menu li a {
  display: flex;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #43A34D;
  border-radius: 3px;
  padding: .5em;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  flex-direction: column;
  justify-content: center;
}

@media (max-width:767px) {
  .lower-wrapper .main-container .cataract-menu li {
    width: calc((100% - 5px) / 2);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

}

/*-------------------------------------
下層ページサイドメニュー
---------------------------------------*/
.lower-wrapper aside {
  width: calc(25% - 1em);
  box-sizing: border-box;
}

.lower-wrapper aside .category {
  background-color: rgba(229, 237, 190, 0.8);
  color: #43A34D;
  padding: 18px;
  text-align: center;
}

.lower-wrapper aside ul li a {
  padding-left: 1em;
}

.lower-wrapper aside ul li:last-child {
  border: 0;
}

@media (max-width: 1024px) {

  .lower-wrapper .main-container,
  .lower-wrapper aside {
    width: 100%;
  }
}

/*-------------------------------------
フローチャート .flow
---------------------------------------*/
.lower-wrapper .main-container .flow li:not(:last-child) {
  position: relative;
  margin-bottom: 5em;
}

.flow li:not(:last-child)::after {
  position: absolute;
  display: block;
  content: "";
  width: 60px;
  aspect-ratio: 3/1;
  background-color: #ddd;
  left: calc(50% - 30px);
  bottom: -47px;
  mask-image: url(img/flow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
}

/*-------------------------------------
表 dl.table
---------------------------------------*/
dl.table>div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 3px 0;
}

dl.table>div:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

dl.table dt {
  width: 20%;
  color: #43A34D;
  padding: .5em 1em;
  box-sizing: border-box;

}

dl.table dd {
  width: 80%;
  padding: .5em 1em;
  box-sizing: border-box;
}

@media (max-width:767px) {
  dl.table dt, dl.table dd {
    width: 100%;
    padding: 0;
  }
}

/*-------------------------------------
診療科目　.clinical-department
---------------------------------------*/
.clinical-department {
  display: flex;
  gap: .5em;
  flex-wrap: wrap;
}

.clinical-department li {
  background-color: #43A34D;
  color: #fff;
  padding: 0 .5em;
  border-radius: 3px;
}

/*-------------------------------------
医師紹介
---------------------------------------*/
/* 医師紹介 */
.lower .doctor-box .name {
  text-align: center;
}

.lower .doctor-box .name span {
  font-size: 22px;
  margin-left: 10px;
  font-family: serif;
}

.lower .doctor-box .title {
  font-size: 20px;
  margin-bottom: .5em;
  text-align: center;
  background-image: url(img/logo_bg.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.lower .doctor-box ul li {
  padding: .1em .5em;
  border-bottom: 1px solid #f5f2e8;
}

/*-------------------------------------
アクセス
---------------------------------------*/
.lower-wrapper .main-container .transport {
  background-color: #fffdf7;
}

.lower-wrapper .main-container .transport li {
  text-align: left;
}

.lower-wrapper .main-container .transport .sub-subheading-002 {
  color: #4c4b4c;
  position: relative;
  padding-left: 2.2em;
}

.lower-wrapper .main-container .transport .sub-subheading-002::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.8em;
  aspect-ratio: 1/1;
  background-color: #43A34D;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center center;
  left: 0;
  top: calc(50% - .9em);
}

.lower-wrapper .main-container .transport .sub-subheading-002.car::before {
  mask-image: url(img/icon_car.svg);
}

.lower-wrapper .main-container .transport .sub-subheading-002.train::before {
  mask-image: url(img/icon_train.svg);
}

.lower-wrapper .main-container .transport .sub-subheading-002.bicycle::before {
  mask-image: url(img/icon_bicycle.svg);
}

.lower-wrapper .main-container .transport .sub-subheading-002.bus::before {
  mask-image: url(img/icon_bus.svg);
}

.map-link {
  display: flex;
  justify-content: flex-start;
  column-gap: 1em;
  flex-wrap: wrap;
}

.map-link .r-box {
  width: fit-content !important;
}

.map-link .r-box a {
  display: block;
  padding: 0 .5em;
  background-color: #43A34D;
  color: #fff;
  border-radius: 10px;
}

/*-------------------------------------
page-news.php
---------------------------------------*/
#archive li {
  padding: 10px 0;
}

#archive li a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

#archive a time {
  display: block;
  width: 120px;
  color: gray;
}

#archive a span {
  display: block;
  width: calc(100% - 120px);
  color: #43A34D;
}

#archive .pagination {
  margin-top: 30px;
  text-align: center;
}

@media (max-width:767px) {

  #archive a time,
  #archive a span {
    width: 100%;
  }
}

@media (max-width:1024px) {
  .sp-none {
    display: none;
  }

  .sp-block {
    display: block;
  }
}



/*# sourceMappingURL=style.css.map */