@charset "UTF-8";
:root {
  --color_text: #3c3c3c;
  --color_primary: #efb1ab;
  --color_primary_dark: #e59a93;
  --color_primary_light: #fbf1ee;
  --color_primary_pale: #fdf6f4;
  --color_secondary: #b0a392;
  --color_en: #d8cec7;
  --color_accent: #d57d4b;
  --color_brown: #96725a;
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
  --header-height: 120px;
}

.opacity:hover {
  opacity: 0.6;
}
.opacity {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

/* ============================================================
  Common（共通部品）
============================================================ */
#main {
  margin-top: 0;
  overflow: hidden;
}

.t-h2 {
  text-align: center;
  margin-bottom: 50px;
}
.t-h2 .en {
  color: #C9C3BD;
  font-family: var(--font_jp);
  font-size: 3.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.t-h2 .jp {
  color: var(--color_text_dark);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 5px;
}
.t-h2.left {
  text-align: left;
}

.t-h2_small .en {
  color: #C9C3BD;
  font-family: var(--font_jp);
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 4px;
}
.t-h2_small .jp {
  font-size: 1.125rem;
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.t-h2_small {
  margin-bottom: 30px;
}

.t-btn, .t-btn02 {
  background: url(../images/share/icon_arrow.svg) right 15px center/auto no-repeat #F9D4CE;
  border-radius: 30px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 18px 30px;
  text-align: center;
  width: 250px;
  -webkit-transition: 0.4s var(--ease);
  transition: 0.4s var(--ease);
}
@media (any-hover: hover) {
  .t-btn:hover, .t-btn02:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-box-shadow: 0 10px 10px rgba(150, 114, 90, 0.14);
            box-shadow: 0 10px 10px rgba(150, 114, 90, 0.14);
  }
}

.webbtn.small {
  padding-inline: 10px;
  width: 160px;
}
.webbtn:hover {
  opacity: 0.6;
}
.webbtn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: #F9D3CD;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 15px 60px;
}
@media (max-width: 800px) {
  .webbtn {
    width: 100%;
  }
}

.telbtn:hover {
  opacity: 0.6;
}
.telbtn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: var(--color_secondary);
  border-radius: 25px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 12px 32px;
}
@media (max-width: 800px) {
  .telbtn {
    width: 100%;
  }
}

.l-btn {
  margin-top: 30px;
}
.l-btn.pc-only {
  margin-top: 0;
}

/* ============================================================
  Hero
============================================================ */
.hero .hero01-catch .ttl {
  font-size: 46px;
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.hero .hero01-catch .sub-ttl {
  font-size: 23px;
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 8px;
}
.hero .hero01-catch .colored {
  color: #EF8A99;
}
.hero .hero01-catch {
  background: url(../images/hero_bg.png) center/cover no-repeat;
  height: 490px;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  left: -100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1082px;
}
.hero {
  position: relative;
}

/* ============================================================
  sec01 - News（お知らせ）
============================================================ */
.sec01 {
  margin: 80px auto;
}

.sec01-layout .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.sec01-layout .t-btn, .sec01-layout .t-btn02 {
  width: 190px;
}
.sec01-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6%;
  min-height: 160px;
  position: relative;
}

.sec01-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 190px;
}

.sec01-ttl .en {
  color: #C9C3BD;
  font-family: var(--font_en);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.sec01-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 2px;
}

/* ============================================================
  sec02 - Concept（コンセプト）
============================================================ */
.sec02 {
  background: url(../images/sec02_bg.png) center/cover no-repeat;
  padding: 80px 0;
}

.sec02-layout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.sec02-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  gap: 5%;
  margin: auto;
  width: min(94%, 1400px);
}
.sec02-layout .l-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec02-layout .l-img img {
  border-radius: 20px;
}
.sec02-layout .l-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55%;
}

/* ============================================================
  sec03 - 診療カレンダー・診療時間
============================================================ */
.sec03 {
  margin: 80px auto;
}

.sec03-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4%;
}

.sec03-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sec03-ttl {
  border-bottom: 1px dashed #E3DCD6;
  color: var(--color_text_dark);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.sec03-cal .sec03-cal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
  position: relative;
}
.sec03-cal .sec03-cal-month {
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.sec03-cal .sec03-cal-nav {
  background: none;
  border: 0;
  color: var(--color_secondary);
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  padding: 4px 8px;
}

.sec03-cal-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.sec03-cal-table th, .sec03-cal-table td {
  text-align: center;
  vertical-align: middle;
}
.sec03-cal-table thead th {
  background: var(--color_primary_light);
  color: var(--color_text);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 0;
}
.sec03-cal-table tbody td {
  border-bottom: 1px solid #eee7e3;
  font-size: 0.875rem;
  height: 42px;
}
.sec03-cal-table tbody td span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  line-height: 1;
}
.sec03-cal-table tbody td.is-holiday span {
  background: #f6cfc9;
}
.sec03-cal-table tbody td.is-am span {
  background: #f5e2a6;
}
.sec03-cal-table tbody td.is-pm span {
  background: #bfe0d9;
}
.sec03-cal-table tbody td.is-change span {
  background: #d8d2cb;
}

.sec03-cal-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}
.sec03-cal-legend li {
  position: relative;
  padding-left: 16px;
}
.sec03-cal-legend li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 12px;
  width: 12px;
  border-radius: 50%;
}
.sec03-cal-legend .is-holiday::before {
  background: #F9D3CD;
}
.sec03-cal-legend .is-am::before {
  background: #FFDD9D;
}
.sec03-cal-legend .is-pm::before {
  background: #C5E5E3;
}
.sec03-cal-legend .is-change::before {
  background: #E3DCD6;
}
.sec03-cal-legend a {
  text-decoration: underline;
}

.sec03-info-dl dt {
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}
.sec03-info-dl dd {
  letter-spacing: 0;
  line-height: 1.5;
}
.sec03-info-dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 25px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px 25px;
  margin-bottom: 25px;
}

.sec03 .time-table thead th {
  background: var(--color_primary_light);
  color: var(--color_text);
}
.sec03 .time-table td.tri::before {
  background: none;
  color: var(--color_text);
  content: "▲";
  display: block;
  font-size: 0.6875rem;
  height: auto;
  line-height: 1;
  width: auto;
}
.sec03 .time-table td.off::before {
  background: none;
  color: #b0b0b0;
  content: "／";
  display: block;
  font-size: 1rem;
  height: auto;
  line-height: 1;
  width: auto;
}

/* ============================================================
  sec04 - Reasons（選ばれる3つの理由）
============================================================ */
.sec04 {
  background: -webkit-gradient(linear, left top, right bottom, from(#FAF7F4), to(#fceeec));
  background: linear-gradient(to bottom right, #FAF7F4 0%, #fceeec 100%);
  padding: 75px 0 95px;
}

.sec04-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sec04-list .item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.sec04-list .sec04-img img {
  display: block;
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec04-list .sec04-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 25px;
}
.sec04-list .sec04-num {
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 2.1875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
.sec04-list .sec04-item-ttl {
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 15px;
}
.sec04-list .sec04-txt {
  text-align: left;
}
.sec04-list .l-btn {
  margin-top: auto;
  padding-top: 25px;
}

/* ============================================================
  sec05 - Information（診療科目）
============================================================ */
.sec05 {
  background: url(../images/sec05_bg.png) center/cover no-repeat;
  padding: 100px 0;
}

.sec05-layout + .sec05-layout {
  margin-top: 70px;
}
.sec05-layout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sec05-layout .l-img img {
  border-radius: 20px;
}
.sec05-layout .l-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45%;
}
.sec05-layout .l-desc {
  width: 50%;
}
.sec05-layout .l-ttl .en {
  color: #C9C3BD;
  font-family: var(--font_jp);
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 4px;
}
.sec05-layout .l-ttl .jp {
  font-size: 1.125rem;
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.sec05-layout .l-ttl {
  margin-bottom: 30px;
}
.sec05-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
}

.sec05-cards .item {
  min-height: 190px;
  width: min(25%, 185px);
}
.sec05-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 20px 25px;
  margin-top: 80px;
}
.sec05-cards .item a::before {
  background: #F9D3CD;
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  height: 14px;
  width: 14px;
}
.sec05-cards .item a {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 18px rgba(150, 114, 90, 0.05);
          box-shadow: 0 4px 18px rgba(150, 114, 90, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  min-height: 100%;
  position: relative;
  padding: 22px 10px;
  -webkit-transition: 0.4s var(--ease);
  transition: 0.4s var(--ease);
  width: 100%;
}
.sec05-cards .en {
  color: #C9C3BD;
  font-family: var(--font_jp);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 12px;
}
.sec05-cards .jp {
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 1px;
}
@media (any-hover: hover) {
  .sec05-cards .item a:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-box-shadow: 0 10px 10px rgba(150, 114, 90, 0.14);
            box-shadow: 0 10px 10px rgba(150, 114, 90, 0.14);
  }
}

.sec05-btn {
  text-align: center;
  margin-top: 50px;
}

/* ============================================================
  sec06 - Doctor（院長・ドクター紹介）
============================================================ */
.sec06 {
  margin: 120px auto;
}

/* ============================================================
  sec07 - Recruit（採用情報）
============================================================ */
.sec07 {
  background: url(../images/sec07_bg.png) center/cover no-repeat;
  padding: 80px 0;
}

.sec07-layout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sec07-layout .l-desc {
  width: 50%;
}
.sec07-layout .l-img img {
  border-radius: 20px;
}
.sec07-layout .l-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45%;
}
.sec07-layout .l-ttl .en {
  color: #C9C3BD;
  font-family: var(--font_jp);
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 4px;
}
.sec07-layout .l-ttl .jp {
  font-size: 1.125rem;
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.sec07-layout .l-ttl {
  margin-bottom: 30px;
}
.sec07-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
}

/* ============================================================
  sec08 - Access（アクセス）
============================================================ */
.sec08 {
  background: url(../images/sec07_bg.png) center/cover no-repeat;
  padding: 80px 0;
}

/* ============================================================
  sec09 - Blog（ブログ）
============================================================ */
.sec09 {
  margin: 90px auto 110px;
}

.sec09-layout .sec09-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 190px;
}
.sec09-layout .sec09-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec09-layout .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
.sec09-layout .t-btn, .sec09-layout .t-btn02 {
  width: 190px;
}
.sec09-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6%;
  min-height: 200px;
  position: relative;
}

/* ============================================================
  sec10 - Contact（お問い合わせ）
============================================================ */
.sec10 {
  margin: 110px auto 70px;
}

.sec10-lead {
  font-size: 1.4375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 35px;
}
.sec10-lead .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FCE9E6));
  background: linear-gradient(transparent 60%, #FCE9E6 60%);
  padding: 0 5px;
}

.sec10-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

/* ============================================================
  お知らせリスト（.list-top-news）
============================================================ */
.list-top-news {
  flex: 1;
}
.list-top-news a:first-child {
  border-top: 1px dashed #E3DCD6;
}
.list-top-news a:hover {
  opacity: 0.6;
}
.list-top-news a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-bottom: 1px dashed #E3DCD6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  padding: 13px 0;
}
.list-top-news time {
  color: #C9C3BD;
  font-family: var(--font_jp);
  font-weight: 500;
  display: block;
  font-size: 1rem;
}
.list-top-news .ttl {
  color: var(--color_text_dark);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1rem;
  font-family: var(--font_jp);
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ============================================================
  ブログリスト（.list-top-blog）
============================================================ */
.list-top-blog .list-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 164px;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.list-top-blog .list-img {
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}
.list-top-blog time {
  color: #C9C3BD;
  display: block;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 10px;
}
.list-top-blog .list-ttl {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9375rem;
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.list-top-blog .category {
  background: #BFB1A6;
  color: #fff;
  display: inline-block;
  font-size: 0.6875rem;
  line-height: 1.5;
  padding: 2px 8px;
}
.list-top-blog a:hover {
  opacity: 0.6;
}
.list-top-blog a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: block;
  height: 100%;
}
.list-top-blog a:hover .list-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.list-top-blog {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================================
============================================================
  SP（max-width: $sp）＝ 上のセクション順にまとめて記述
============================================================
============================================================ */
@media (max-width: 800px) {
  /* Common */
  .t-h2 {
    margin-bottom: 30px;
  }
  .t-h2 .en {
    font-size: 2.125rem;
  }
  .t-h2 .jp {
    font-size: 1.25rem;
  }
  .t-h2_small {
    margin-bottom: 20px;
  }
  .t-h2_small .en {
    font-size: 1.625rem;
  }
  .t-h2_small .jp {
    font-size: 1rem;
  }
  .t-btn, .t-btn02 {
    width: 100%;
    max-width: none;
  }
  .l-btn {
    text-align: center;
  }
  /* Hero */
  .hero .hero01 {
    overflow: hidden;
  }
  .hero .hero01-catch .ttl {
    font-size: 22px;
  }
  .hero .hero01-catch .sub-ttl {
    font-size: 13px;
  }
  .hero .hero01-catch {
    background: none;
    height: 100px;
    left: 15px;
    width: 220px;
  }
  .hero .hero01-catch::before {
    background: url(../images/hero_bg.png) center/cover no-repeat;
    content: "";
    display: block;
    height: 245px;
    inset: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 541px;
    z-index: -1;
  }
  /* sec01 - News */
  .sec01 {
    margin: 60px auto;
  }
  .sec01-layout {
    display: block;
  }
  .sec01-layout .l-btn {
    position: static;
  }
  .sec01-layout .t-btn, .sec01-layout .t-btn02 {
    width: 100%;
  }
  .sec01-head {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  /* sec02 - Concept（sec06 も同じ .sec02-layout） */
  .sec02 {
    padding: 60px 0;
  }
  .sec02-layout {
    display: block;
    width: 90%;
  }
  .sec02-layout .l-img {
    width: 100%;
    margin: 0 auto 30px;
  }
  .sec02-layout .l-desc {
    width: auto;
  }
  /* sec03 - 診療カレンダー・診療時間 */
  .sec03 {
    margin: 60px auto;
  }
  .sec03-layout {
    display: block;
  }
  .sec03-col + .sec03-col {
    margin-top: 40px;
  }
  /* sec04 - Reasons */
  .sec04 {
    padding: 60px 0;
  }
  .sec04-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sec04-list .sec04-img img {
    height: 210px;
  }
  /* sec05 - Information */
  .sec05 {
    padding: 60px 0;
  }
  .sec05-layout {
    display: block;
  }
  .sec05-layout + .sec05-layout {
    margin-top: 40px;
  }
  .sec05-layout .l-img {
    width: 100%;
    margin: 0 auto 30px;
  }
  .sec05-layout .l-desc {
    width: auto;
  }
  .sec05-cards {
    gap: 10px;
    margin-top: 40px;
  }
  .sec05-cards .item {
    width: calc((100% - 10px) / 2);
  }
  /* sec06 - Doctor（レイアウトは sec02-layout を共用） */
  .sec06 {
    margin: 60px auto;
  }
  /* sec07 - Recruit / sec08 - Access（.sec07-layout を共用） */
  .sec07,
  .sec08 {
    padding: 60px 0;
  }
  .sec07-layout {
    display: block;
  }
  .sec07-layout .l-img {
    width: 100%;
    margin: 0 auto 30px;
  }
  .sec07-layout .l-desc {
    width: auto;
  }
  /* sec09 - Blog */
  .sec09 {
    margin: 60px auto;
  }
  .sec09-layout {
    display: block;
    min-height: 0;
  }
  .sec09-layout .sec09-head {
    width: 100%;
  }
  .sec09-layout .l-btn {
    position: static;
  }
  .sec09-layout .t-btn, .sec09-layout .t-btn02 {
    width: 100%;
  }
  .list-top-blog > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 240px;
            flex: 0 0 240px;
  }
  .list-top-blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    padding-bottom: 20px;
    width: 100%;
  }
  /* sec10 - Contact */
  .sec10 {
    margin: 60px auto;
  }
  .sec10-lead {
    font-size: 1.0625rem;
  }
  .sec10-btns {
    display: block;
  }
  .sec10-btns a + a {
    margin-top: 12px;
  }
  /* お知らせリスト */
  .list-top-news a {
    display: block;
    gap: 0;
    padding: 15px 0;
  }
  .list-top-news time {
    margin-bottom: 4px;
  }
}
.wp-container-core-group-is-layout-b6684cda > p,
.wp-container-core-group-is-layout-b6684cda > h4 {
  font-family: var(--font_en);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.wp-block-button__link.wp-element-button {
  background: url(../images/share/icon_arrow.svg) right 15px center/auto no-repeat #F9D4CE;
  color: inherit !important;
  border-radius: 30px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 18px 50px !important;
  text-align: center;
  -webkit-transition: 0.4s var(--ease);
  transition: 0.4s var(--ease);
}
@media (any-hover: hover) {
  .wp-block-button__link.wp-element-button:hover {
    background-color: #F9D4CE !important;
    -webkit-box-shadow: 0 10px 10px rgba(150, 114, 90, 0.14);
            box-shadow: 0 10px 10px rgba(150, 114, 90, 0.14);
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
@media (max-width: 800px) {
  .wp-block-button__link.wp-element-button {
    width: 100%;
  }
}