/* カラー変更 */

:root {
  --content-width: 1200px;
  --main-color01: #da9c25;
  --main-color02: #d2a8b2;
  --sub-color: #edc94d;
  --accent-color: #f9f0df;
}

/* コンテンツレイアウト */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  border-spacing: 0;
  border-collapse: collapse;
  text-indent: initial;
  text-decoration: none;
  line-height: 2em;
  margin: 0;
}

body {
  font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
    "游ゴシック体", "Yu Gothic", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック",
    Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", sans-serif;
}

ul {
  padding-left: 20px;
}
li::marker {
  color: var(--main-color01);
}

a:hover {
  opacity: 0.7;
}

section {
  padding: 60px 0;
}

section:first-of-type {
  padding-top: 0px;
}

@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}

.home section:first-of-type {
  padding-top: 60px;
}

.home section:nth-child(even) {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .home section:first-of-type {
    padding-top: 30px;
  }
}

.home .container {
  padding-right: calc(30px / 2);
  padding-left: calc(30px / 2);
}
.container {
  margin: 0 auto;
  max-width: var(--content-width);
}
@media (max-width: 1200px) {
  .container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 0;
  gap: 20px;
}

@media (max-width: 767px) {
  .row {
    flex-direction: column;
  }
  .row.sp-2row {
    display: flex;
  }
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.row .span_1 {
  width: calc(100% / 12 * 1 - 20px);
  flex-grow: 1;
}

.row .span_2 {
  width: calc(100% / 12 * 2 - 20px);
  flex-grow: 1;
}

.row .span_3 {
  width: calc(100% / 12 * 3 - 20px);
  flex-grow: 1;
}

.row .span_4 {
  width: calc(100% / 12 * 4 - 20px);
  flex-grow: 1;
}

.row .span_5 {
  width: calc(100% / 12 * 5 - 20px);
  flex-grow: 1;
}

.row .span_6 {
  width: calc(100% / 12 * 6 - 20px);
  flex-grow: 1;
}

.row .span_7 {
  width: calc(100% / 12 * 7 - 20px);
}

.row .span_8 {
  width: calc(100% / 12 * 8 - 20px);
}

.row .span_9 {
  width: calc(100% / 12 * 9 - 20px);
}

.row .span_10 {
  width: calc(100% / 12 * 10 - 20px);
}

.row .span_11 {
  width: calc(100% / 12 * 11 - 20px);
}

.row .span_12 {
  width: 100%;
}

@media (max-width: 767px) {
  .row > .col {
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }

  .row.sp-2row > .col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .row .span_1 {
    width: auto;
  }
}

/* ヘッダー */

/*header{
  width: 100%;
  z-index: 150;
  background: var(--accent-color);
  padding: 10px;
  position: fixed;
}*/

/*@media (max-width: 767px) {
  header{
    padding: 0 10px;
  }
}*/

.header-top {
  width: 100%;
  z-index: 999999999;
  background: var(--accent-color);
  padding: 5px;
  /* position: fixed; */
  position: relative;
}

.header-wrap {
  position: relative;
  width: auto;
  min-height: 80px;
  margin: 0 auto;
  max-width: var(--content-width);
}

.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    width: 100%;
  }

  .header-top {
    position: fixed;
  }
}

.header-head {
  text-align: left;
  flex: 1;
}

.header-head a {
  display: inline-block;
}

.header-head p {
  color: #231815;
  font-size: 1.5rem;
  font-weight: bold;
}

.header-copy:not(.title) {
  color: #1b1b1b;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 20px 0;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
}

@media (max-width: 767px) {
  .header-copy:not(.title) {
    display: none;
  }
}

.header-table {
  width: 370px;
  font-size: 14px;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 15px;
}

.header-tel a {
  color: var(--main-color01);
  /*font-size: 1.5rem;*/
}
.header-tel a:hover {
  opacity: 1;
}

/*.header-tel p {
  line-height: 1.5em;
  margin: 0px;
  font-size: 1.2rem;
}*/

.header-tel p:first-child {
  margin-top: 0;
}

.header-btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 80px;
  z-index: 999999999;
}

.header-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--main-color01);
  width: 45%;
}

.header-btn span:nth-of-type(1) {
  top: 32px;
}

.header-btn span:nth-of-type(2) {
  top: 40px;
}

.header-btn span:nth-of-type(3) {
  top: 48px;
}

.header-btn.active span:nth-of-type(1) {
  top: 33px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.header-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.header-btn.active span:nth-of-type(3) {
  top: 45px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

.header_nav {
  margin-right: 0px;
  width: 100%;
  background: var(--accent-color);
  /* max-width: 1200px; */
  margin: 0 auto;
}

.header-bottom {
  width: 100%;
  background: var(--accent-color);
  margin: 0 auto;
  /* padding-top: 170px; */
}

.header_nav[data-sticky="true"] {
  position: fixed;
  /* top: 118px; */
  top: 0;
  left: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .header-bottom {
    padding-top: 90px;
  }
}

/* スライドナビゲーション */

.slide {
  background-color: var(--main-color01);
  width: 300px;
  min-height: 100vh;
  position: fixed;
  right: -100%;
  top: 0;
  padding-top: 178px;
  z-index: 999999;
  overflow-y: scroll;
}
.slide-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  background: transparent;
  cursor: pointer;
  /* z-index: -1; */
}

@media (max-width: 767px) {
  .slide {
    /* padding-top: 80px; */
    padding-top: 100px;
  }
}

.slide-menu {
  list-style: none;
  border-top: 2px solid #fff;
  padding: 0;
}

.slide-menu > ul {
  padding: 0;
}

.slide-menu > ul > li {
  border-bottom: 2px solid #fff;
}

.slide-menu > ul > li > a {
  text-decoration: none;
  color: #fff;
  padding: 20px;
  display: block;
}

.slide-menu > ul > li > a:hover {
  background-color: var(--main-color02);
  box-shadow: inset 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease 0s;
  opacity: 1;
}

.slide-menu > ul > li.menu-item-has-children > a {
  position: relative;
}

.slide-menu > ul > li.menu-item-has-children > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 6%;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(0, -50%) rotate(135deg);
  transform: translate(0, -50%) rotate(135deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sub-menu {
  width: 100%;
  padding: 0;
  background: var(--sub-color);
  display: none;
}

.sub-menu > li > a {
  text-decoration: none;
  color: #fff;
  padding: 10px 0 10px 20px;
  display: block;
  border-top: 1px solid #fff;
}

.slide-menu > ul > li.menu-item-has-children > a {
  pointer-events: none;
}

/* ぱんくず */

.bread_wrap {
  margin-top: 0;
  margin-bottom: 0;
}

.bread {
  overflow: hidden;
  margin-top: 0;
}

.bread ul {
  margin: 0 auto;
  float: none;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}

.bread ul li {
  list-style: none;
  position: relative;
  float: left;
  margin-right: 20px;
  padding-right: calc(20px + 9px);
}

@media (max-width: 767px) {
  .bread ul li {
    margin-right: 15px;
    padding-right: calc(15px + 9px);
  }
}

.bread ul li a {
  padding: 0;
  text-decoration: underline;
  color: var(--main-color01);
}

.bread ul li a:hover {
  color: #1b1b1b;
  text-decoration: none;
}

.bread ul li:after {
  content: ">";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.bread ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.bread ul li:last-child:after {
  content: none;
}

/* 画像のフィックス */

figure {
  margin: 0;
  text-align: center;
}

img {
  vertical-align: middle;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  max-width: 100%;
  width: 100%;
  height: auto;
}

figure img {
  width: inherit;
}

/* 投稿 */

.article_list {
  padding: 30px;
  border: 1px solid var(--main-color01);
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .article_list {
    padding: 20px;
  }
}

.article_list:first-child {
  margin-top: 0;
}

.article_list:nth-child(n + 2) {
  margin-top: 30px;
}

.article_date {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article_detail {
  padding: 4%;
  margin-bottom: 4%;
  font-size: 1.2rem;
}

.article_detail img {
  width: auto;
}

.article_detail .span_12 {
  margin: 2% 0;
}

.article_button {
  margin-top: 30px;
  text-align: right;
}

@media (max-width: 767px) {
  .article_button {
    margin-top: 20px;
  }
}

.more {
  display: inline-block;
  overflow: hidden;
  margin: auto;
}

.more.btn_ss a,
.more.btn_ss span {
  padding: 0.3em 2.1em 0.3em 1.4em;
}

.more.btn_s a,
.more.btn_s span {
  padding: 0.5em 2.1em 0.5em 1.4em;
}

.more.btn_m a,
.more.btn_m span {
  padding: 0.5em 2.1em 0.5em 1.4em;
}

.more a,
.more span {
  display: inline-block;
  letter-spacing: normal;
  color: var(--main-color01);
  border: 1px solid var(--main-color01);
  padding: 0.9em 1.6em;
  margin-bottom: 1px;
  text-decoration: none;
}

.more a:after,
.more span:after {
  border-color: var(--main-color01);
}

.more a:hover,
.more span:hover {
  color: #333;
  border-color: #333;
}

.more a:hover:after,
.more span:hover:after {
  border-color: #333;
}

.more a.add_arrow,
.more span.add_arrow {
  padding-right: 1.9em;
}

.add_arrow {
  display: block;
  position: relative;
}

.add_arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.add_arrow:hover:after {
  right: 3%;
  border-color: #fff;
}

.more {
  display: inline-block;
  overflow: hidden;
  margin: auto;
}

.more a {
  display: inline-block;
  letter-spacing: normal;
  border: 1px solid var(--main-color01);
  color: var(--main-color01);
  padding: 0.3em 1.3em 0.3em 1em;
  margin-bottom: 1px;
  text-decoration: none;
  font-size: 1.2rem;
}

.pager {
  overflow: hidden;
  margin-bottom: 5%;
}

.pager .pager_prev {
  float: left;
}

.pager .pager_prev a {
  display: block;
  position: relative;
  padding-left: 15px;
  text-decoration: none;
}

.pager .pager_prev a:before,
.pager .pager_prev a:after {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  margin: auto;
  width: 8px;
  height: 1px;
  background: var(--main-color01);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pager .pager_prev a:before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  top: calc(50% - 2px);
}

.pager .pager_prev a:after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  top: calc(50% + 3px);
}

.pager .pager_prev a:hover {
  text-decoration: underline;
}

.pager .pager_prev a:hover:before {
  left: 0;
}

.pager .pager_prev a:hover:after {
  left: 0;
}

.pager .pager_next {
  float: right;
}

.pager .pager_next a {
  display: block;
  position: relative;
  padding-right: 15px;
  text-decoration: none;
}

.pager .pager_next a:before,
.pager .pager_next a:after {
  content: "";
  display: block;
  position: absolute;
  right: 2px;
  margin: auto;
  width: 8px;
  height: 1px;
  background: var(--main-color01);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pager .pager_next a:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  top: calc(50% - 2px);
}

.pager .pager_next a:after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  top: calc(50% + 3px);
}

.pager .pager_next a:hover {
  text-decoration: underline;
}

.pager .pager_next a:hover:before {
  right: 0;
}

.pager .pager_next a:hover:after {
  right: 0;
}

.pagination {
  margin: 40px 0 0;
  text-align: center;
  font-weight: bold;
}

.pagination a {
  color: #005cd6;
}

.pagination span.current {
  color: #3b3b3b;
}

.news-wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.news-items {
  max-width: 1200px;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #fff;
  line-height: 1.625;
  flex-wrap: wrap;
  border-bottom: 1px solid #d7d7d7;
  padding: 15px 0;
  align-items: baseline;
}

.news-item time {
  /* width: 130px; */
  color: #575757;
}

.news-content {
  width: calc(100% - 250px);
}

@media (max-width: 767px) {
  .news-items {
    width: 100%;
    padding: 0;
  }
  .news-item:nth-child(n + 2) {
    margin-top: 15px;
  }
  .news-content {
    width: 100%;
  }
}

.news-item a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: var(--main-color01);
  font-weight: bold;
}

.news-item a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.cat-wrap {
  width: 230px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.cat {
  background: var(--sub-color);
  padding: 0 10px;
  color: #fff;
}

/* コンタクトフォーム */

.form-wrap dl {
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  gap: 0;
  align-items: stretch;
}

.form-wrap dl:last-child {
  margin-bottom: 0;
}

.form-wrap dl dt {
  font-weight: bold;
  width: 240px;
  background: var(--main-color01);
  padding: 10px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.form-wrap dl dd {
  padding: 10px;
  margin-left: 0;
  width: calc(100% - 240px);
  background: #fff;
}

.reqired {
  color: #f00;
}

input[type="text"],
input[type="date"] {
  width: 100%;
  font-size: 20px;
  border: none;
  background: #ececec;
  height: 100%;
}

.submit.btn-1 {
  padding: 0;
  margin-top: 30px;
}

input[type="submit"] {
  text-decoration: none;
  border: none;
  outline: 0;
  color: #fff;
  cursor: pointer;
  background: none;
  padding: 23px 40px 23px 20px;
  width: 100%;
}

.submit.btn-1:hover {
  opacity: 0.7;
}

input[type="submit"]:hover {
  color: #fff;
}
select {
  font-size: 20px;
  border: none;
  background: #ececec;
  height: 100%;
}

textarea {
  width: 100%;
  border: none;
  background: #ececec;
  height: 100%;
}

@media (max-width: 820px) {
  .form-wrap dl dd {
    width: 100%;
  }
  .form-wrap dl dt {
    width: 100%;
  }
}

/* カレンダー */

/*.top-calendar,
.top-clinic {
  background: #FFF9EB;
}*/

.top-clinic {
  background: #fff;
}

.xo-event-calendar {
  background: #fff;
  padding: 30px 15px;
  border-radius: 20px;
}

.calendars {
  display: flex;
  gap: 20px 2%;
}

.xo-event-calendar .calendar:first-child .month-next {
  visibility: hidden;
}
.xo-event-calendar .calendar:nth-child(n + 2) .month-next {
  visibility: visible;
}

.xo-event-calendar table.xo-month .month-header > span {
  margin: 0 20px;
  flex-grow: 0;
}

@media (max-width: 480px) {
  .calendars {
    flex-wrap: wrap;
  }
  .xo-event-calendar .calendar:first-child .month-next {
    visibility: visible;
  }
  .xo-event-calendar .calendar:nth-child(n + 2) .month-next {
    visibility: hidden;
  }
  .mc-event .mc-event-name {
    font-size: 0.5em;
  }
}

.xo-event-calendar table.xo-month td,
.xo-event-calendar table.xo-month th {
  border: none;
}

.xo-event-calendar table.xo-month {
  border: none;
}

.xo-event-calendar table.xo-month .month-dayname td div {
  text-align: center;
}

.holiday-titles {
  display: flex;
  flex-wrap: wrap;
}

.xo-event-calendar p.holiday-title {
  margin-right: 20px;
}

.xo-event-calendar table.xo-month button {
  background: var(--main-color02);
  border-radius: 50%;
  width: 32px;
}

.xo-event-calendar table.xo-month button span.nav-next {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  margin-right: 5px;
}

.xo-event-calendar table.xo-month button span.nav-prev {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin-left: 5px;
}
.xo-event-calendar table.xo-month .month-event-title {
  background: var(--main-color01) !important;
  text-align: center;
}

/* Slider */

.mv {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0px;
}

.slider01 {
  width: 100%;
}

.catch {
  position: absolute;
  top: 80%;
  /* top: 50%; */
  transform: translateY(-50%);
  left: 60px;
}

.catch .txt p {
  font-size: 1.8rem;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.5);
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff,
    1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

.marker {
  /*background: linear-gradient(transparent 60%, #daf2ef 60%);*/
  background: linear-gradient(transparent 60%, #f9f0df 60%);
}

.slick-prev {
  left: 1% !important;
}

.slick-next {
  right: 1% !important;
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

.home .slick-slide {
  border-radius: 25px;
  overflow: hidden;
}

@media (max-width: 965px) {
  .catch {
    top: 70%;
  }
}

@media (max-width: 767px) {
  .slick-slide {
    border-radius: 0;
  }
  .mv {
    margin: 0;
    padding: 10px 0;
  }
  .catch {
    position: static;
    transform: none;
  }
  .catch .txt p {
    /* font-size: 4vw; */
    font-size: 3.9vw;
    text-align: center;
  }
}

/* 見出し */

h2.heading-1 {
  margin: 0 0 0.5em;
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 5px;
  border-bottom: none;
  line-height: 1.5em;
}

h2.heading-1 span {
  font-size: 2rem;
  color: var(--main-color02);
}

h2.heading-1 a {
  color: var(--main-color01);
}

h2.heading-2 {
  margin: 0 0 0.5em;
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 5px;
  border-bottom: none;
  line-height: 1.5em;
}

h2.heading-2 a {
  color: var(--main-color01);
}

h2.heading-3 {
  margin: 0 0 0.5em;
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 5px;
  border-bottom: none;
  line-height: 1.5em;
}

h2.heading-3::first-letter {
  font-size: 2rem;
  color: var(--main-color02);
}

h2.heading-3 a {
  color: var(--main-color01);
}

h3.heading-1 {
  margin: 0 0 0.5em;
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  padding-top: 0;
  font-size: 1.4rem;
  color: var(--main-color02);
  padding-left: 1em;
}

h3.heading-1:after {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background: linear-gradient(to top, #d9d1c1 50%, var(--main-color02) 50%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*h3.heading-1 {
  margin: 0 0 0.5em;
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  padding-top: 0;
  font-size: 1.4rem;
  color: #000000;
  padding-left: 1.5em;
}

h3.heading-1::before {
  top: .2em;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #1575f4;
  z-index: 2;
}

h3.heading-1::after {
  top: .7em;
  left: .5em;
  width: 13px;
  height: 13px;
  background-color: #df1c1c;
}

h3.heading-1::before, h3.heading-1::after {
  position: absolute;
  content: '';
  border-radius: 100%;
}*/

/*h4.heading-1 {
  margin: 0.5em 0 0.5em;
  font-size: 1.2rem;
  position: relative;
  color: var(--main-color01);
  font-weight: bold;
  line-height: 1.5em;
}*/

h4.heading-1 {
  margin: 0.5em 0 0.5em;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 2px solid #da9c25;
  padding: 0.3em;
}
h4.heading-1:first-letter {
  font-size: 1.5em;
  color: #da9c25;
}

/*h4.heading-1 {
  color: var(--main-color02);
  font-size: 18px;
  padding: 10px 30px 5px;
  display: block;
  border-bottom: 3px dashed #fef2ee;
  position: relative;
  margin-bottom: 10px;
}

h4.heading-1:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 15px;
  height: 15px;
  background: #fef2ee;
  border-radius: 50%;
}

h4.heading-1:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -9px;
  right: 0;
  width: 15px;
  height: 15px;
  background: #fef2ee;
  border-radius: 50%;
}*/

/*h4.heading-1 {
  padding: 1.5rem 2rem 0;
  margin: 0 0 0.5em;
  font-size: 1.2rem;
  position: relative;
  color: #405c9d;
  font-weight: bold;
  border-bottom: 3px solid #95b1f4;
  
}

h4.heading-1:before {
  position: absolute;
  bottom: -14px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #95b1f4 transparent transparent transparent;
}

h4.heading-1:after {
  position: absolute;
  bottom: -10px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}*/

/* h5.heading-1 {
  margin: 0 0 0.5em;
  font-size: 1rem;
  position: relative;
  color: var(--main-color01);
  font-weight: bold;
  line-height: 1.5em;
} */

h5.heading-1 {
  margin: 0 0 0.5em;
  font-size: 1.2rem;
  position: relative;
  color: #000000;
  font-weight: normal;
  line-height: 1.5em;
  padding-left: 1em;
}

h5.heading-1:after {
  display: block;
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background: #83d1a4;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#pagetitle {
  position: relative;
  color: #fff;
  padding: 2em 0.5em;
  background: var(--main-color01);
}

#pagetitle:after {
  content: "";
  position: absolute;
}

#pagetitle span {
  text-align: center;
  font-size: 2rem;
  font-weight: normal;
  display: block;
  box-sizing: border-box;
  /* border:3px solid #fff; */
  line-height: 1.5em;
}

@media (max-width: 768px) {
  #pagetitle {
    padding: 3em 0.5em 2em;
  }
}

@media (max-width: 480px) {
  h2.heading-1 {
    font-size: 1.6rem;
  }
  h2.heading-3 {
    font-size: 1.6rem;
  }
  h3.heading-1 {
    font-size: 1.4rem;
  }
}

/* ボタン */

.btn-1 {
  color: #333;
  display: block;
  font-weight: bold;
  width: 180px;
  margin: 0 auto;
  height: auto;
  padding: 16px 40px 16px 20px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative;
  background: var(--main-color02);
  color: #fff;
  border-radius: 15px;
}

.btn-1:before {
  content: "〉";
  position: absolute;
  display: block;
  height: 29px;
  width: 17px;
  color: var(--main-color02);
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  z-index: 1;
}

.btn-1:after {
  content: "";
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.btn-2 {
  display: block;
  width: 140px;
  margin-left: auto;
  height: auto;
  padding: 10px 40px 10px 20px;
  position: relative;
  color: var(--main-color02);
}

.btn-2:before {
  content: "≫";
  position: absolute;
  display: block;
  height: 29px;
  width: 17px;
  color: var(--main-color02);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 24px;
}

.btn-3 {
  color: #333;
  display: block;
  font-weight: bold;
  width: 180px;
  /* margin: 0 auto; */
  height: auto;
  padding: 16px 40px 16px 20px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative;
  background: var(--main-color02);
  color: #fff;
  border-radius: 15px;
}

.btn-3:before {
  content: "〉";
  position: absolute;
  display: block;
  height: 29px;
  width: 17px;
  color: var(--main-color02);
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  z-index: 1;
}

.btn-3:after {
  content: "";
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.btn-3:hover {
  background: #83d1a4;
}
.btn-3:hover:before {
  color: #83d1a4;
}

.right {
  margin-left: auto !important;
}

@media (max-width: 767px) {
  .btn-3 {
    margin: 0 auto;
  }
}

/* テーブル */

.table-schedule {
  width: 100%;
}

.table-schedule td,
.table-schedule th {
  border-bottom: 1px solid #c9d6df;
  padding: 0.7em;
  text-align: center;
}
.table-schedule td {
  color: var(--main-color01);
}

@media (max-width: 480px) {
  .table-schedule td,
  .table-schedule th {
    padding: 0.7em 0.3em;
    font-size: 0.9rem;
  }
}

.table-default {
  width: 100%;
}

.table-default td,
.table-default th {
  padding: 0.7em 1em;
  border: 1px solid #c9d6df;
  vertical-align: middle;
}

.table-default th {
  background: var(--accent-color);
}

.table-online {
  width: 100%;
}

.table-online td {
  font-size: 1.3em;
  padding: 0.7em 1em;
}

@media (max-width: 767px) {
  .table-online td,
  .table-online th {
    padding: 0.7em 0.3em;
    font-size: 1em;
  }
}

.table-lenses {
  width: 100%;
}

.table-lenses td,
.table-lenses th {
  padding: 0.7em 1em;
  border: 1px solid #c9d6df;
  vertical-align: middle;
  text-align: center;
}

.table-lenses th {
  background: #fff9f3;
}

@media (max-width: 767px) {
  .table-lenses {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
}

.table-lenses1 {
  width: 100%;
}

.table-lenses1 td,
.table-lenses1 th {
  padding: 0.7em 1em;
  border: 1px solid #c9d6df;
  vertical-align: middle;
  text-align: center;
}

.table-lenses1 th {
  background: #fff9f3;
}

.table-vaccination {
  width: 100%;
}

.table-vaccination td,
.table-vaccination th {
  padding: 0.7em 1em;
  border: 1px solid #c9d6df;
  vertical-align: middle;
}

.table-vaccination th {
  background: var(--accent-color);
}

@media (max-width: 480px) {
  .table-vaccination {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
}

.table-orthokeratology {
  width: 100%;
}

.table-orthokeratology td,
.table-orthokeratology th {
  padding: 0.7em 1em;
  border: 1px solid #c9d6df;
  vertical-align: middle;
}

.table-orthokeratology th {
  background: #4279b3;
  color: #ffffff;
}

@media (max-width: 767px) {
  .table-orthokeratology th {
    white-space: nowrap;
  }
}

.table-contactlenses {
  width: 100%;
}

.table-contactlenses td,
.table-contactlenses th {
  padding: 0.7em 1em;
  border: 2px solid #0095bf;
  vertical-align: middle;
  text-align: center;
}

.table-contactlenses th {
  background: #f4fcff;
}

/* @media (max-width: 767px) {
  .table-contactlenses {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
} */

.table-contactlenses1 {
  width: 100%;
}

.table-contactlenses1 td,
.table-contactlenses1 th {
  padding: 0.7em 1em;
  border: 1px solid #c9d6df;
  vertical-align: middle;
}

/* .table-contactlenses1 th {
  background: #fff9f3;
} */

.kakaku-sp {
  font-size: 12px;
}

.kakaku-sp td,
.kakaku-sp th {
  padding: 0.7em 1em;
  border: 2px solid #0095bf;
  vertical-align: middle;
  text-align: center;
}

.kakaku-sp th {
  background: #f4fcff;
}

.color_red {
  color: #cc0000;
}

@media (min-width: 767px) {
  .table-contactlenses-sp-sp-only {
    display: none !important;
  }
}

/* 流れ */

.bg {
  background: #e8f6fb;
  padding: 10px 15px;
  display: block;
  border: 1px solid #fff;
  box-shadow: 0 3px 3px #ebeae8;
  border-radius: 13px 0;
  margin-right: 10px;
}

span.bg {
  background: var(--main-color01);
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  display: block;
}

.indent {
  margin-left: 2em;
  text-indent: -2em;
}

.indent span.bg {
  display: inline;
}

.frame {
  border: 1px solid var(--main-color01);
  border-radius: 6px;
  padding: 1em 0;
  position: relative;
  display: flex;
}

.frame > .col {
  padding-right: calc(30px / 2);
  padding-left: calc(30px / 2);
}

.span_6 .frame,
.span_4 .frame {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .span_6 .frame,
  .span_4 .frame {
    margin-top: 20px;
  }
  .frame {
    display: block;
  }
  .frame .span_2,
  .frame .span_3,
  .frame .span_4,
  .frame .span_5,
  .frame .span_6,
  .frame .span_7,
  .frame .span_8,
  .frame .span_9,
  .frame .span_10 {
    width: 100% !important;
  }
}

.frame.arrow:after {
  border-color: transparent transparent transparent var(--main-color01);
  border-style: solid;
  border-width: 26px 0 26px 18px;
  content: "";
  margin-top: -11px;
  position: absolute;
  right: 50%;
  bottom: -36px;
  transform: rotate(90deg);
}

.frame.arrow.end:after {
  display: none;
}

/* 背景ありコンテンツ */

.content-bg {
  overflow: hidden;
  position: relative;
  background: url("../images/content-bg.jpg") no-repeat center;
  background-size: cover;
}

.content-bg-items {
  margin-top: 30px;
}

.content-bg:after {
  background-color: #fff;
  content: "";
  opacity: 0.35;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.content-bg:before {
  background: inherit;
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
}

.content-bg .container {
  position: relative;
  z-index: 2;
}

.content-bg .heading-2 {
  position: relative;
  z-index: 3;
}

.content-bg-txt {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .content-bg-txt {
    margin-top: 15px;
  }
}

/* リスト */

dl {
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  align-items: flex-start;
  gap: 10px;
}

dl dt {
  font-weight: bold;
  width: 140px;
}

dl dd {
  width: calc(100% - 150px);
}

.clinic-info dt {
  background: var(--main-color01);
  border-radius: 50px;
  text-align: center;
  color: #fff;
}

.accesspage-info dt {
  background: var(--main-color02);
  border-radius: 50px;
  text-align: center;
  width: 180px;
  color: #fff;
}

.accesspage-info dd {
  width: 100%;
}

.accesspage-info ul li {
  border-bottom: 1px dashed #bababa;
}

.access-info dt {
  background: var(--main-color02);
  border-radius: 50px;
  text-align: center;
  width: 180px;
  color: #fff;
}

.access-info dd {
  width: 100%;
}

.access-info ul {
  margin: 0;
}

.access-info ul li {
  border-bottom: 1px dashed #bababa;
}

.recruit-info dl {
  align-items: stretch;
}

.recruit-info dl dt {
  background-color: var(--main-color01);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  color: #fff;
}

.recruit-info dl dd {
  /*display: flex;*/
  align-items: center;
  padding: 20px;
}

.history {
  display: flex;
  gap: 5px 0;
  flex-wrap: wrap;
  padding-left: 0;
}

.history li {
  border-bottom: 1px dotted #b4b4b4;
  flex-grow: 1;
  width: 100%;
  list-style: none;
}

/* .history dl{
  border-bottom: 1px dotted #b4b4b4;
  flex-grow: 1;
  width: 100%;
} */

@media (max-width: 480px) {
  dl dt {
    width: 100%;
  }
  dl dd {
    width: 100%;
  }
}

/* ページトップ */

.pagetop {
  position: fixed;
  bottom: 98px;
  right: 5%;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.pagetop a {
  white-space: nowrap;
  display: inline-block;
  position: relative;
  width: 70px;
  height: 70px;
  padding: 0;
  background: var(--main-color02);
  border-radius: 15px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
}

.pagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 42%;
  left: 50%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translate(-50%, -20%) rotate(45deg);
  transform: translate(-50%, -20%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pagetop a:hover:after {
  top: 30%;
}

.pagetop span {
  padding-bottom: 10px;
  font-size: 12px;
}

/* .pagetop a:hover{
  background:#83d1a4
} */

@media (max-width: 768px) {
  .pagetop {
    right: 0%;
    bottom: 130px;
  }
  .pagetop a {
    width: 60px;
    height: 60px;
  }
}

/* グローバルメニュー */

.header_nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0 auto;
  list-style: none;
  padding: 20px 0;
  gap: 10px;
    max-width: 1200px;
}

.header_nav ul li {
  position: relative;
}

/* .header_nav ul li:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  background: #333;
}

.header_nav ul li:last-child:after {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  background: #333;
} */

.header_nav ul li a {
  padding: 5px 10px 5px 25px;
  color: #333;
  font-weight: bold;
  background: #fff;
  border-radius: 5px;
  position: relative;
}

.header_nav ul li:nth-child(1) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon01.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.header_nav ul li:nth-child(2) a:before,
.header_nav ul li:nth-child(11) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon02.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.header_nav ul li:nth-child(3) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon03.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.header_nav ul li:nth-child(4) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon05.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
/*.header_nav ul li:nth-child(5) a:before,*/
.header_nav ul li:nth-child(9) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon05.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.header_nav ul li:nth-child(5) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon04.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

/*.header_nav ul li:nth-child(6) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon06.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}*/

.header_nav ul li:nth-child(6) a:before,
.header_nav ul li:nth-child(7) a:before,
.header_nav ul li:nth-child(8) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon07-1.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-size: cover;
}
/*.header_nav ul li:nth-child(8) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon08.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}*/
/*.header_nav ul li:nth-child(6) a:before {
  position: absolute;
  content:'';
  background: url(/wp-content/uploads/nav-icon06.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}*/

.header_nav ul li:nth-child(10) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon06.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

/*.header_nav ul li:nth-child(11) a:before {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/nav-icon06.png) no-repeat center;
  width: 16px;
  height: 16px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}*/

.header_nav ul li a:hover {
  color: var(--main-color01);
}

/* フッター */
.footer-wrap {
  max-width: var(--content-width);
  margin: 0 auto 20px;
  padding: 0 15px;
}
.footer-wrap figure {
  margin: 30px 0;
}

.footer__links ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 30px 15px 0;
  gap: 10px 0;
  justify-content: center;
}

.footer__links ul li {
  position: relative;
}

.footer__links ul li:before {
  position: absolute;
  content: "";
  height: 100%;
  right: 0;
  width: 1px;
  background: var(--main-color01);
}

.footer__links ul li:last-child:before {
  background: none;
}

.footer__links ul li a {
  font-weight: bold;
  padding: 10px;
  color: #000;
}
.footer-info {
  display: flex;
  gap: 20px;
}

.footer-info-inner {
  width: 50%;
}

.footer-info-inner a {
  color: var(--main-color01);
}

.footer-menu {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.sns_icon {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 10px;
}

.footer-policy-link {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
  justify-content: flex-end;
}

.footer-policy-link a {
  color: #000;
}

@media (max-width: 768px) {
  .footer-info {
    flex-wrap: wrap;
  }
  .footer-info-inner {
    width: 100%;
  }
  .footer-menu {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sns_icon {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sns_icon li {
    width: 80px;
  }
  .footer-policy-link {
    display: block;
  }
}

.copy {
  padding: 10px 0;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: var(--main-color01);
}
.copy p {
  margin: 0;
}

@media (max-width: 480px) {
  .copy {
    margin-bottom: 66px;
  }
}

/* äºˆç´„ãƒœã‚¿ãƒ³ */

.reservation_area {
  position: fixed;
  top: 170px;
  right: 0;
  z-index: 110;
}

.reservation_area ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 84px;
}

.reservation_area li {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  list-style: none;
  border-radius: 15px 0 0 15px;
}

@media (min-width: 768px) {
  .reservation_area li:nth-child(1) a:hover,
  .reservation_area li:nth-child(2) a:hover,
  .reservation_area li:nth-child(3) a:hover {
    padding-right: 30px;
  }
}

.reservation_area li:nth-child(1) {
  background: var(--main-color02);
}

.reservation_area li:nth-child(2) {
  background: var(--main-color01);
}

.reservation_area li:nth-child(3) {
  background: var(--sub-color);
}

.reservation_area li a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 20px 10px;
  transition: all 0.2s ease-out;
}

@media (max-width: 480px) {
  .reservation_area {
    bottom: 0px;
    top: auto;
    width: 100%;
  }
  .reservation_area ul {
    flex-direction: row;
    width: auto;
  }
  .reservation_area ul li {
    /*width: 33.3%;*/
    width: 100%;
    writing-mode: horizontal-tb;
    text-align: center;
    /*padding: 10px 5px;*/
    padding: 10px 0;
    border-radius: 15px 15px 0 0;
  }
  .reservation_area li a {
    border-radius: 15px;
    padding: 5px;
    /* font-size: 0.9rem; */
    font-size: 0.8rem;
  }
}
/* トグル */

details {
  border-top: 1px solid;
}
details:hover {
  background: var(--accent-color);
}
details:last-child {
  border-bottom: 1px solid;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.toggle-head.qa {
  position: relative;
}

.toggle-head.qa:before {
  position: absolute;
  content: "Q.";
  top: 13px;
  left: 20px;
  font-weight: bold;
  color: var(--main-color01);
  font-family: serif;
  font-size: 24px;
}

.toggle_inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px 15px 50px;
  font-weight: bold;
  color: var(--main-color01);
}

.toggle_inner-icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}

.toggle_inner-icon:before {
  left: 0;
  transform: rotate(45deg);
}

.toggle_inner-icon:after {
  right: 0;
  transform: rotate(-45deg);
}

.toggle_inner-icon:before,
.toggle_inner-icon:after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: var(--main-color01);
}

.toggle-content p {
  padding: 20px 20px 20px 60px;
  background: #fff;
  margin: 0;
  position: relative;
}

.toggle-content p a {
  color: var(--main-color01);
  text-decoration: underline;
}

.answer:before {
  position: absolute;
  content: "A.";
  top: 18px;
  left: 30px;
  font-weight: bold;
  color: var(--main-color01);
  font-family: serif;
  font-size: 24px;
}

details[open] .toggle_inner-icon {
  transform: rotate(180deg);
}

/* 設備紹介 */

.facility-warap {
  max-width: 100%;
}

.facility-slider img {
  /* width: 100%; */
  width: 90%;
  height: auto;
  margin: auto;
}
.slick-prev,
.slick-next {
  z-index: 1;
}

.facility-thumb > .slick-prev:before,
.facility-thumb > .slick-next:before {
  color: #000 !important;
}

.facility-thumb img {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}
.slick-current img {
  opacity: 1;
}
.facility-thumb {
  margin: 10px 0 0;
}
.facility-thumb {
  cursor: pointer;
}
.facility-caption {
  text-align: center;
  padding: 5px 0;
  font-weight: bold;
}

@media (max-width: 480px) {
  .facility-slider img {
    width: 100%;
  }
}

/* 料金表 */

.price-wrap {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--main-color01);
  margin-bottom: 20px;
}

.price-wrap:last-of-type {
  margin-bottom: 0px;
}

.price-name {
  border-right: 1px solid var(--main-color01);
  width: 300px;
  background: var(--accent-color);
  padding: 5px;
  font-weight: bold;
}

.price-fee {
  width: calc(100% - 300px);
  padding: 5px;
  display: flex;
  justify-content: flex-end;
}

.price-disc,
.price-term,
.price-risk {
  width: 100%;
  padding: 5px;
  border-top: 1px solid var(--main-color01);
  display: flex;
  gap: 10px;
}
.price-head {
  width: 125px;
  border-right: 1px solid;
}
.price-text {
  width: calc(100% - 135px);
}

@media (max-width: 480px) {
  .price-name {
    border-right: none;
    width: 100%;
  }
  .price-fee {
    width: 100%;
  }
}

/* 汎用クラス */

.bg-red {
  background-color: #fe266d !important;
}

.bg-blue {
  background-color: #1646b1 !important;
}

.bg-green {
  background-color: #55b5ae !important;
}

.bg-orange {
  background-color: #ffa204 !important;
}

.text-red {
  color: #db2d2d !important;
}

.text-blue {
  color: #0064af !important;
}

.text-green {
  color: #55b5ae !important;
}

.text-pink {
  color: #db20b2 !important;
}

.text-black {
  color: #000000 !important;
}

.text-gray {
  color: #555555 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-orange {
  color: #da9c25;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.text-bold {
  font-weight: bold !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-xlarge {
  font-size: 1.6rem !important;
}

.text-large {
  font-size: 1.4rem !important;
}

.w100 {
  width: 100% !important;
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 767px) {
  .text-xlarge {
    font-size: 2rem;
  }
  .text-large {
    font-size: 1.6rem;
  }
  .sp-only {
    display: none !important;
  }
}

@media (min-width: 767px) and (max-width: 1023px) {
  .tablet-hide {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .tablet-only {
    display: none !important;
  }
}

.doctor-wrap {
  display: flex;
  flex-wrap: wrap;
}

.doctor-inner {
  padding: 20px;
  width: 60%;
}

.doctor-heading {
  color: var(--main-color02);
  font-weight: bold;
}

.doctor-inner h3.heading-3 {
  background-color: var(--main-color02);
  border-radius: 10px;
  color: #fff;
  margin: 0 0 0.5em;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  padding-top: 0;
  padding-left: 1em;
}

.img-container {
  width: calc(100% - 60%);
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.img-container img {
  /*border-radius: 40% 60% 40% 60%;*/
  border-radius: 60% 40% 60% 60%;
}

.doctor-img {
  width: 100%;
  background: url(/wp-content/uploads/top-doctor.jpg) no-repeat center;
  background-size: cover;
  border-radius: 40% 60% 40% 60%;
}

.doctor-image {
  position: relative;
  /*padding-top: 60px;*/
  /*padding-top: 90px;*/
}

.doctor-image p {
  background: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  width: 200px;
  right: 0;
  /* bottom: 30px; */
  top: 200px;
  position: absolute;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .doctor-inner {
    width: 100%;
    padding: 0;
  }

  .img-container {
    width: 100%;
    padding: 15px 0;
  }

  .doctor-img {
    height: 300px;
  }
  .doctor-image {
    padding-top: 0;
  }
  .doctor-image p {
    bottom: 30px;
    top: auto;
  }
}

.diagnosis-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 2%;
}

.diagnosis-item {
  background: #fff;
  padding: 20px;
  width: 23.5%;
  border: 1px solid #ebebeb;
  display: flex;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

.diagnosis-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.diagnosis-inner-child {
  display: flex;
  flex-direction: column;
}

.diagnosis-title {
  text-align: center;
  font-weight: bold;
  color: var(--main-color01);
}

@media (max-width: 1000px) {
  .diagnosis-item {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .diagnosis-item {
    width: 100%;
  }
}

#medical-infomation-1,
#medical-infomation-2,
#medical-infomation-3,
#medical-infomation-4,
#medical-infomation-5,
#medical-infomation-6,
#medical-infomation-7,
#medical-infomation-8,
#medical-infomation-9,
#medical-infomation-10 {
  padding-top: 245px;
  margin-top: -170px;
  /* padding-left: 20px; */
}

@media (max-width: 767px) {
  #medical-infomation-1,
  #medical-infomation-2,
  #medical-infomation-3,
  #medical-infomation-4,
  #medical-infomation-5,
  #medical-infomation-6,
  #medical-infomation-7,
  #medical-infomation-8,
  #medical-infomation-9,
  #medical-infomation-10 {
    padding-top: 130px;
    margin-top: -100px;
    flex-direction: column-reverse;
  }
}

.feature-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 2%;
}

.feature-item {
  padding: 20px;
  width: 100%;
  display: flex;
  background: var(--main-color01);
  border-radius: 20px;
  box-shadow: 9px 9px 0px rgba(168, 111, 111, 0.25);
  gap: 20px;
  align-items: center;
}

.feature-item:nth-child(2n) {
  background: var(--main-color02);
}

.feature-content {
  width: calc(100% - 270px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-img {
  width: 250px;
}

.feature-img img {
  border-radius: 10px;
}

.feature-title {
  color: #fff;
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: bold;
  padding-left: 70px;
  line-height: 1.2;
  height: 60px;
  display: flex;
  align-items: center;
}

.feature-title span {
  position: relative;
}

.feature-title span:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -70px;
  display: inline-block;
  background: url(/wp-content/uploads/kodawari-num-bg.png) no-repeat center;
  background-size: contain;
  font-weight: bold;
  width: 55px;
  height: 45px;
}

.feature-item:nth-child(1) .feature-content .feature-title span:after {
  position: absolute;
  content: "01";
  top: 50%;
  transform: translateY(-50%);
  left: -53px;
  color: var(--main-color01);
  font-weight: bold;
  width: 55px;
  height: 36px;
}
.feature-item:nth-child(2) .feature-content .feature-title span:after {
  position: absolute;
  content: "02";
  top: 50%;
  transform: translateY(-50%);
  left: -53px;
  color: var(--main-color02);
  font-weight: bold;
  width: 55px;
  height: 36px;
}
.feature-item:nth-child(3) .feature-content .feature-title span:after {
  position: absolute;
  content: "03";
  top: 50%;
  transform: translateY(-50%);
  left: -53px;
  color: var(--main-color01);
  font-weight: bold;
  width: 55px;
  height: 36px;
}
.feature-item:nth-child(4) .feature-content .feature-title span:after {
  position: absolute;
  content: "04";
  top: 50%;
  transform: translateY(-50%);
  left: -53px;
  color: var(--main-color02);
  font-weight: bold;
  width: 55px;
  height: 36px;
}
.feature-item:nth-child(5) .feature-content .feature-title span:after {
  position: absolute;
  content: "05";
  top: 50%;
  transform: translateY(-50%);
  left: -53px;
  color: var(--main-color01);
  font-weight: bold;
  width: 55px;
  height: 36px;
}

.feature-content-inner {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  flex-grow: 1;
}

@media (max-width: 767px) {
  .feature-content {
    width: 100%;
  }

  .feature-img {
    width: 100%;
  }
}

.clinic-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  border-radius: 25px;
  padding: 30px;
}

.home .clinic-info {
  /* width: 350px; */
  /*width: 400px;*/
  width: 420px;
}

.clinic-schedule {
  /* width: calc(100% - 370px); */
  /*width: calc(100% - 420px);*/
  width: calc(100% - 440px);
}

.schedule-title {
  background: var(--main-color01);
  text-align: center;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 768px) {
  .clinic-info {
    width: 100%;
  }

  .clinic-schedule {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .clinic-wrap {
    padding: 30px 15px;
  }
}

.access-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.access-map {
  width: 500px;
}

.access-info {
  width: calc(100% - 520px);
}

@media (max-width: 820px) {
  .access-map {
    width: 100%;
  }

  .access-info {
    width: 100%;
  }
}

.home .recruit-info {
  background: #fff;
  border-radius: 25px;
  padding: 30px;
}

@media (max-width: 480px) {
  .clinic-wrap {
    padding: 30px 15px;
  }
}

.file-link {
  position: relative;
  padding-left: 25px;
}
.file-link a {
  color: var(--main-color02);
}

.file-link:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 8px;
}

.file-link.pdf:before {
  background: url(/wp-content/uploads/pdf_24.png) no-repeat;
}
.file-link.excel:before {
  background: url(/wp-content/uploads/excel_24.png) no-repeat;
}
.file-link.word:before {
  background: url(/wp-content/uploads/word_24.png) no-repeat;
}

.reader-box {
  display: flex;
  padding: 10px;
  background: #e6e6e6;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.reader-box a {
  color: var(--main-color02);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .medi-calendar-row {
    flex-direction: column;
  }
}

.top-address {
  border: 1px dashed #e6e6e6;
  padding: 10px;
  border-radius: 5px;
  /*font-family: "Zen Maru Gothic", serif;*/
  margin-top: 30px;
}

.top-address dl dt {
  background: var(--main-color02);
  color: #fff;
  width: 60px;
  text-align: center;
}

.top-address dl dd {
  margin-bottom: 5px;
}

#a06 {
  padding-top: -170px;
  margin-top: 170px;
}

.photo-box {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.photo-box.reverse {
  flex-direction: row-reverse;
}

.medical-text {
  width: 85%;
}

.medical-photo {
  width: 30%;
}
.medical-photo2 {
  width: 15%;
}

img.medical-image {
  width: 80%;
}

@media (max-width: 767px) {
  .photo-box {
    flex-direction: column;
  }

  .photo-box.reverse {
    flex-direction: column-reverse;
  }

  .photo-box.reverse2 {
    flex-direction: column;
  }

  .medical-text {
    width: 100%;
  }

  .medical-photo {
    width: 70%;
    margin: 0 auto;
  }

  .medical-photo2 {
    width: 70%;
    margin: 0 auto;
  }

  img.medical-image {
    width: 100%;
  }
}

.medi-calendar-name {
  display: none;
}

table.vaccine {
  width: 100%;
  margin-top: 30px;
  min-width: 480px;
}

table.vaccine,
table.vaccine td {
  border: 1px solid #595959;
}

table.vaccine td {
  padding: 10px;
}

.vaccine-categoly {
  writing-mode: vertical-rl;
}

.vaccine-table-wrap {
  overflow-x: scroll;
}

@media (min-width: 480px) {
  .vaccine-table-wrap p {
    display: none;
  }
}

section a[target="_blank"] {
  &:after {
    font-family: "Font Awesome 6 Free";
    content: "\f08e";
    font-weight: 900;
    margin: 0 0.25rem;
  }
}

.not-blank::after {
  content: none !important;
}

.top-clinic {
  background: var(--accent-color) !important;
}

.top-doctor,
.top-access {
  background: #fff !important;
}

.img-box {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.img-box img {
  width: calc(100% / 12 * 4 - 20px);
}

@media (max-width: 768px) {
  .img-box {
    flex-direction: column;
  }
  .img-box img {
    width: 100%;
  }
}

.footer-bnr img {
  width: 70%;
}

@media (max-width: 480px) {
  .footer-bnr img {
    width: 100%;
  }
}

section a.remove-icon {
  border: none;
}

section a.remove-icon::after {
  content: none;
}

.online-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
}

.online-item {
  background: #fff;
  padding: 20px;
  width: 23.5%;
  border: 1px solid #ebebeb;
  display: flex;
  width: 30%;
  justify-content: center;
}

.online-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.online-inner-child {
  display: flex;
  flex-direction: column;
}

.online-title {
  text-align: center;
  font-weight: bold;
  color: var(--main-color01);
  padding: 10px 0;
}

.online-text {
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .online-item {
    width: 100%;
  }
  .accesiblity-bnr {
    width: 60px;
    bottom: 65px;
  }
}

.accesiblity {
  height: 70%;
}

.accesiblity-bnr img {
  border-radius: 10px;
}

@media (max-width: 767px) {
  .accesiblity {
    height: 50%;
  }
}

/* フローデザイン */
.flow_design05 {
  display: flex;
  justify-content: left;
  align-items: center;
}

.flow05 {
  padding-left: 0;
  margin: 20px 0;
}

.flow05 > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 15px;
}

.flow05 > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #4d9bc1;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow05 > li:not(:last-child)::before {
  content: "";
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow05 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #4d9bc1;
  width: 0;
}

.flow05 > li dl dd {
  margin-left: 0;
  width: 100%;
}

.news-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.news-flex img {
  width: 48%;
}

.news-flex.third img {
  width: 30%;
}

.news-flex.second img:nth-of-type(1) {
  width: 30%;
}

.news-flex.second img:nth-of-type(2) {
  width: 68%;
}

@media (max-width: 767px) {
  .news-flex img,
  .news-flex.third img,
  .news-flex.second img {
    width: 100%;
  }
}

#anc01,
#anc02,
#anc03,
#anc04 {
  /*padding-top: 80px;*/
  padding-top: 120px;
  margin-top: -50px;
}

.anc-top {
    margin-top: -80px;
}

/*@media(max-width:480px) {
  #anc01,
#anc02,
#anc03,
#anc04 {
  padding-top: 100px;
}
  .anc-top {
    margin-top: -40px;
}
}*/

.lenses02-title {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.lenses04-title {
  display: flex;
  justify-content: space-around;
  width: 450px;
  margin: 0 auto 20px;
}

@media (max-width: 767px) {
  .lenses04-title {
    width: auto;
  }
}

.orthokeratology-box {
  padding: 20px;
  margin-bottom: 20px;
  border: 10px double #ffffff;
  background-color: #87ab34;
  color: #ffffff;
  text-align: center;
}

.clearvisionjr-box {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.clinic-img img {
  width: 50%;
}

@media (max-width: 767px) {
  .clearvisionjr-box {
    flex-direction: column;
  }
  .clinic-img img {
    width: 100%;
  }
}

.contactlenses-box {
  border: 1px solid #cc0000;
  padding: 15px 10px;
}

