@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

section {
  width: 100%;
}

span {
  display: block;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: inherit; /* 1 */
  font-size: inherit; /* 2 */
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: pre-wrap;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Varuables
======================================== */
/* --- Color --- */
/* --- Font --- */
/* ---  Layout --- */
.lg-inner {
  width: 1200px;
  max-width: calc(100% - 6vw);
  margin: 0 auto;
}

.md-inner {
  width: 780px;
  max-width: calc(100% - 6vw);
  margin: 0 auto;
}

/* Responsive
======================================== */
@media (max-width: 850px) {
  ._pc {
    display: none !important;
  }
}
@media (min-width: 851px) {
  ._sp {
    display: none !important;
  }
}
@media (max-width: 1250px) {
  ._xl {
    display: none !important;
  }
}
/* Setting
======================================== */
.space {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
@media (min-width: 851px) {
  .space {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
}

.with-bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  width: 100vw;
}

.anchor {
  position: relative;
}
.anchor span {
  position: absolute;
  top: -100px;
}
@media (min-width: 851px) {
  .anchor span {
    top: -150px;
  }
}

body {
  font-size: 16px;
  color: #333;
  font-family: "Kiwi Maru", serif;
  max-width: 100%;
  vertical-align: middle;
  box-sizing: border-box;
  line-height: 180%;
  letter-spacing: 0.05em;
  word-break: break-all;
  overflow-x: clip;
  max-width: 1800px;
  margin: 0 auto;
}

img,
a,
dl,
ul,
li,
table,
figure {
  display: block;
  max-width: 100%;
}

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

pre {
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden !important;
}

a {
  transition: 0.3s all;
}

._hover:hover {
  transform: translateY(-0.1875em);
}

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

.lg-text-center {
  text-align: left !important;
}
@media (min-width: 851px) {
  .lg-text-center {
    text-align: center !important;
  }
}

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

._sm {
  font-size: 14px;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

/* Parts
======================================== */
.ttl-trees {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 851px) {
  .ttl-trees {
    font-size: 30px;
    margin-bottom: 60px;
  }
}
.ttl-trees:before {
  content: "";
  display: block;
  background-image: url(../img/icon-ttl-trees.png);
  background-size: cover;
  aspect-ratio: 59/60;
  width: 45px;
  height: auto;
}
@media (min-width: 851px) {
  .ttl-trees:before {
    width: 59px;
  }
}

.basic-btn {
  background-color: #f6b24d;
  color: #fff;
  width: 100%;
  max-width: 300px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 100px;
  margin-top: clamp(30px, calc(30px + (100vw - 750px) * (50px - 30px) / (850px - 750px)), 50px);
}

/* Header
======================================== */
header {
  height: 70px;
  background-color: #fff;
  width: 100%;
  /* --- ハンバーガーメニュー --- */
}
@media (min-width: 851px) {
  header {
    height: 100px;
  }
}
header .header-wrap {
  height: 70px;
  position: fixed;
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
}
@media (min-width: 851px) {
  header .header-wrap {
    height: 100px;
  }
}
header .header-wrap .lg-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 850px) {
  header .header-wrap .lg-inner {
    margin-right: calc(50% - 50vw);
    margin-left: auto;
  }
}
header .header-wrap .lg-inner .logo {
  width: auto;
  height: 50px;
}
@media (min-width: 750px) {
  header .header-wrap .lg-inner .logo {
    height: 60px;
  }
}
@media (min-width: 851px) {
  header .header-wrap .lg-inner .logo {
    height: 65px;
  }
}
header .header-wrap nav ul.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header .hamburger {
  display: block;
  margin: 0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
  width: 70px;
  height: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 851px) {
  header .hamburger {
    display: none !important;
  }
}
header .hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto 0;
  transition: all 0.3s ease-in-out;
  background-color: #333;
}
header .hamburger .bar:nth-child(1) {
  margin-top: 0px;
}
header .hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
header .hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header .nav-container {
  position: fixed;
  transition: 0.2s;
  top: 70px;
  right: -100%;
  background: #fff;
  width: 100%;
  height: calc(100% - 70px);
  z-index: 99999;
  overflow-y: scroll;
  /* --- Menu --- */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
}
header .nav-container.nav-active {
  right: 0;
}
header .nav-container .inner_nav {
  width: 85%;
  font-size: 18px;
}
header .nav-container .inner_nav ul {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
header .nav-container .inner_nav ul li {
  padding: 20px 0;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
header .nav-container .inner_nav ul li.active:before {
  position: absolute;
  content: "";
  display: inline-block;
  background-color: #daf3dd;
  width: 47px;
  height: 47px;
  border-radius: 100%;
  z-index: -1;
  position: absolute;
  top: 50%;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Section
======================================== */
section.sub-mv {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
section.sub-mv h1 {
  position: absolute;
  color: #fff;
  font-size: 30px;
}
@media (min-width: 851px) {
  section.sub-mv h1 {
    font-size: 45px;
  }
}
section.sub-mv img {
  width: 100vw;
}

/* --- 診療時間 --- */
dl.time-table {
  width: 780px;
  margin: 0 auto;
}
dl.time-table .row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #cccccc;
}
dl.time-table .row dt,
dl.time-table .row dd {
  padding: 0px;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 851px) {
  dl.time-table .row dt,
  dl.time-table .row dd {
    padding: 20px 20px;
    width: 200px;
    font-size: 18px;
  }
}
dl.time-table .row dt:last-child,
dl.time-table .row dd:last-child {
  flex: 1.3;
}
dl.time-table .row dt {
  flex: 3;
}
dl.time-table .row dd {
  flex: 1;
}

/* Footer
======================================== */
.clinic-footer {
  background: #f6f6e8;
  /* 診療時間テーブル */
}
.clinic-footer .lg-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.clinic-footer .footer-top {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.clinic-footer .footer-top .list a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
  gap: 5px;
  margin-bottom: 5px;
  font-size: 13px;
}
.clinic-footer .footer-top .list a:before {
  content: "";
  display: block;
  background-image: url(../img/footer-icon.png);
  background-size: cover;
  width: 20px;
  height: 20px;
}
.clinic-footer .footer-logo {
  width: 360px;
  max-width: 100%;
}
.clinic-footer .footer-info {
  margin-top: 15px;
}
@media (min-width: 851px) {
  .clinic-footer .footer-info {
    margin-top: 0;
  }
}
.clinic-footer .footer-address {
  font-size: 14px;
  margin-bottom: 10px;
}
.clinic-footer .tel {
  font-size: clamp(40px, calc(40px + (100vw - 750px) * (55px - 40px) / (850px - 750px)), 55px);
  color: #27ad37;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 5px;
  font-family: "Noto Sans JP", sans-serif;
  justify-content: center;
  margin-bottom: 30px;
}
.clinic-footer .tel:before {
  content: "";
  display: block;
  background-image: url(../img/footer-tel.png);
  background-size: cover;
  width: clamp(55px, calc(55px + (100vw - 750px) * (60px - 55px) / (850px - 750px)), 60px);
  height: clamp(55px, calc(55px + (100vw - 750px) * (60px - 55px) / (850px - 750px)), 60px);
  flex-shrink: 0;
}
.clinic-footer .footer-table {
  margin-top: 25px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  font-size: 14px;
  width: 600px;
  text-align: center;
}
@media (max-width: 850px) {
  .clinic-footer .footer-table {
    display: none;
  }
}
.clinic-footer .footer-table .table-row {
  display: flex;
  border-bottom: 1px solid #b5ddc3;
}
.clinic-footer .footer-table .table-row:last-child {
  border-bottom: none;
}
.clinic-footer .footer-table .table-head {
  background: #27ad37;
  color: #fff;
}
.clinic-footer .footer-table .time-title,
.clinic-footer .footer-table .time {
  width: 35%;
  padding: 12px 8px;
}
.clinic-footer .footer-table .day,
.clinic-footer .footer-table .mark {
  width: 10.8333333333%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  border-left: 1px solid #b5ddc3;
}
.clinic-footer .footer-table .mark {
  color: #27ad37;
  font-size: 18px;
  font-weight: bold;
}
.clinic-footer .footer-table .mark.slash {
  color: #707070;
}
.clinic-footer .bg:before {
  content: "";
  display: block;
  background-image: url("../img/footer-bg.png");
  background-size: cover;
  aspect-ratio: 1280/150;
  width: 100vw;
  height: 100px;
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, black 60%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, black 60%, black 100%);
}
@media (min-width: 851px) {
  .clinic-footer .bg:before {
    height: auto;
  }
}

/* Fuwa
======================================== */
.fuwa {
  opacity: 0;
}

.scroll-in {
  z-index: 100;
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*======================================== 
*
* 当院について
*
======================================== */
main.about section.message .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  background-color: #f6f5e8;
  padding-bottom: clamp(0px, calc(70px + (100vw - 750px) * (0px - 70px) / (850px - 750px)), 70px);
}
@media (min-width: 851px) {
  main.about section.message .container {
    gap: 30px;
    margin-top: 100px;
    grid-template-columns: 1fr fit-content(40%);
  }
}
main.about section.message .container:before, main.about section.message .container:after {
  content: "";
  position: absolute;
  display: block;
  background-size: cover;
  height: auto;
}
main.about section.message .container:before {
  background-image: url(../img/info-mes-3.png);
  aspect-ratio: 324/378;
  width: clamp(80px, calc(80px + (100vw - 750px) * (180px - 80px) / (850px - 750px)), 180px);
  top: clamp(-80px, calc(-40px + (100vw - 750px) * (-80px - -40px) / (850px - 750px)), -40px);
  left: clamp(-100px, calc(0px + (100vw - 750px) * (-100px - 0px) / (850px - 750px)), 0px);
}
main.about section.message .container:after {
  background-image: url(../img/info-mes-4.png);
  aspect-ratio: 316/332;
  width: clamp(100px, calc(100px + (100vw - 750px) * (190px - 100px) / (850px - 750px)), 190px);
  bottom: clamp(-80px, calc(-10px + (100vw - 750px) * (-80px - -10px) / (850px - 750px)), -10px);
  right: clamp(0px, calc(0px + (100vw - 750px) * (30px - 0px) / (850px - 750px)), 30px);
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
main.about section.message .container .text {
  flex: 100%;
  padding: 40px 20px;
}
@media (min-width: 851px) {
  main.about section.message .container .text {
    flex: 1;
    padding: 50px 0 50px 50px;
  }
}
main.about section.message .container .text .name {
  text-align: right;
  margin-top: clamp(25px, calc(25px + (100vw - 750px) * (50px - 25px) / (850px - 750px)), 50px);
  font-size: 18px;
}
main.about section.message .container img {
  width: 80vw;
  max-width: 300px;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
@media (min-width: 851px) {
  main.about section.message .container img {
    width: 45vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: auto;
    margin-top: -50px;
    max-height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main.about section.policy {
  background-image: url("../img/about-policy-bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  width: 100vw;
}
main.about section.policy .container {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 15px;
}
@media (min-width: 851px) {
  main.about section.policy .container {
    padding: 60px 30px;
    width: 90%;
    max-width: 1020px;
    margin: 0 auto;
  }
}
main.about section.policy .container .ttl {
  font-size: clamp(24px, calc(24px + (100vw - 750px) * (30px - 24px) / (850px - 750px)), 30px);
  margin-bottom: 10px;
  line-height: 140%;
  margin-bottom: 20px;
}
main.about section.mission {
  background-image: url("../img/about-mission-bg.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  width: 100vw;
}
main.about section.mission .list {
  display: grid;
  gap: clamp(15px, calc(15px + (100vw - 750px) * (50px - 15px) / (850px - 750px)), 50px);
}
@media (min-width: 750px) {
  main.about section.mission .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
main.about section.mission .list li {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #fff;
  padding: 35px 20px;
}
@media (min-width: 851px) {
  main.about section.mission .list li {
    padding: 50px 20px;
  }
}
main.about section.mission .list li .ttl {
  font-size: 27px;
  text-align: center;
  font-weight: 400;
}

/*======================================== 
*
* 診療について
*
======================================== */
main.info section.stomach {
  background-color: #dffae9;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  width: 100vw;
}
main.info section.stomach .symptom-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 25px;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 851px) {
  main.info section.stomach .symptom-title {
    font-size: 37px;
    margin-bottom: 50px;
  }
}
main.info section.stomach .symptom-title::before, main.info section.stomach .symptom-title::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #3c997a;
  transform: rotate(50deg);
}
@media (min-width: 851px) {
  main.info section.stomach .symptom-title::before, main.info section.stomach .symptom-title::after {
    width: 45px;
  }
}
main.info section.stomach .symptom-title::after {
  transform: rotate(-50deg);
}
main.info section.stomach .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main.info section.stomach .container ul.check-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  flex-direction: column;
}
@media (min-width: 851px) {
  main.info section.stomach .container ul.check-list {
    gap: 30px;
    flex-direction: row;
    width: 700px;
  }
}
main.info section.stomach .container ul.check-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 851px) {
  main.info section.stomach .container ul.check-list li {
    width: calc((100% - 30px) / 2);
    font-size: 20px;
  }
}
main.info section.stomach .container ul.check-list li:before {
  content: "";
  display: block;
  background-image: url(../img/info-stomach-1.png);
  background-size: cover;
  aspect-ratio: 35/28;
  width: 25px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 850px) {
  main.info section.stomach .container ul.check-list li:before {
    margin-top: 0.3em;
  }
}
@media (min-width: 851px) {
  main.info section.stomach .container ul.check-list li:before {
    width: 35px;
  }
}
main.info section.stomach .container img {
  width: 200px;
}
@media (max-width: 850px) {
  main.info section.stomach .container img {
    margin-left: auto;
  }
}
main.info .border-list {
  display: grid;
  justify-content: center;
  gap: clamp(20px, 5vw, 45px);
}
@media (min-width: 851px) {
  main.info .border-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 485px));
  }
}
main.info .border-list li.item {
  --c: #3c997a;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 20px solid var(--c);
  border-radius: 5px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
  padding: 20px 10px 40px;
}
@media (min-width: 851px) {
  main.info .border-list li.item {
    padding: 20px 20px 40px;
  }
}
main.info .border-list li.item img {
  width: 190px;
}
@media (max-width: 850px) {
  main.info .border-list li.item img {
    width: 140px;
  }
}
main.info .border-list li.item .ttl {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 851px) {
  main.info .border-list li.item .ttl {
    font-size: 28px;
  }
}
main.info .border-list li.item a {
  font-size: 18px;
  color: var(--c);
  border: 1px solid var(--c);
  padding: 10px 20px;
  line-height: 1;
  margin-top: auto;
  width: -moz-fit-content;
  width: fit-content;
}
main.info .border-list li.item a:hover {
  background-color: var(--c);
  color: #fff;
}
main.info .border-list li.item:nth-child(2) {
  --c: #4c79bd;
}
main.info section.warning {
  position: relative;
}
main.info section.warning::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 190px;
  background: linear-gradient(to bottom, #fffddf 0%, #ffffff 100%);
  pointer-events: none;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
main.info section.warning .ttl-ul {
  font-size: 24px;
  text-align: center;
  line-height: 140%;
  margin-bottom: 30px;
}
@media (min-width: 851px) {
  main.info section.warning .ttl-ul {
    font-size: 37px;
    margin-bottom: 50px;
  }
}
main.info section.warning .ttl-ul span {
  display: inline-block;
  background: linear-gradient(transparent 65%, #fdc3e1 35%);
}
main.info section.warning .stomach-img {
  width: 350px;
  margin: 50px auto 80px;
}
main.info section.naika {
  background: #daf1f7;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  width: 100vw;
}
main.info section.naika .border-list {
  display: grid;
  gap: clamp(20px, calc(20px + (100vw - 750px) * (40px - 20px) / (850px - 750px)), 40px);
  justify-content: center;
}
@media (min-width: 851px) {
  main.info section.naika .border-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
main.info section.naika .border-list li.item {
  gap: 30px;
}
main.info section.naika .border-list li.item ul.features li {
  display: flex;
  gap: 10px;
}
main.info section.naika .border-list li.item ul.features li:before {
  content: "●";
  display: inline-block;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--c);
}
main.info section.naika .border-list li.item:nth-child(3) {
  --c: #e9b753;
}
main.info section.naika p.add {
  text-align: center;
  font-size: 17px;
  margin-top: 40px;
  line-height: 170%;
}
@media (min-width: 851px) {
  main.info section.naika p.add {
    margin-top: 80px;
    font-size: 20px;
  }
}
main.info section.exam .list {
  display: flex;
  flex-wrap: wrap;
  width: 815px;
  margin: 0 auto;
  justify-content: center;
  gap: clamp(35px, 5vw, 60px);
}
main.info section.exam .list li {
  width: 85%;
  max-width: 235px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 851px) {
  main.info section.exam .list li {
    width: calc((100% - clamp(35px, 5vw, 60px) * 2) / 3);
  }
}
main.info section.exam .list li .ttl {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 851px) {
  main.info section.exam .list li .ttl {
    font-size: 20px;
    height: 3em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
main.info section.exam .list li img {
  width: 100%;
  height: auto;
  margin-top: auto;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
main.info section.end {
  background-image: url("../img/info-end-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 calc(50% - 50vw);
  padding: 100px calc(50vw - 50%);
  width: 100vw;
  font-size: 20px;
  line-height: 160%;
}
@media (min-width: 851px) {
  main.info section.end {
    font-size: 38px;
    padding: 150px calc(50vw - 50%);
  }
}

/*======================================== 
*
* Access
*
======================================== */
main.access section.access .container {
  display: grid;
  gap: clamp(20px, calc(20px + (100vw - 750px) * (50px - 20px) / (850px - 750px)), 50px);
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 851px) {
  main.access section.access .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
main.access section.access .container .text .ttl {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #3c997a;
  margin-bottom: 30px;
}
main.access section.access .container .text dl {
  display: grid;
  gap: clamp(10px, calc(10px + (100vw - 750px) * (15px - 10px) / (850px - 750px)), 15px);
  align-items: center;
  grid-template-columns: fit-content(100%) 1fr;
}
main.access section.access .container .text dl dt {
  color: #3c997a;
  background-color: #dffae9;
  border-radius: 20px;
  line-height: 1;
  padding: 10px 20px;
  text-align: center;
}
main.access section.transport .cars .container {
  display: grid;
  gap: clamp(20px, calc(20px + (100vw - 750px) * (50px - 20px) / (850px - 750px)), 50px);
}
@media (min-width: 851px) {
  main.access section.transport .cars .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
main.access section.transport .cars .container dl {
  border-top: 1px solid #cccccc;
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
}
main.access section.transport .cars .container dl dt,
main.access section.transport .cars .container dl dd {
  padding: 20px 20px;
  border-bottom: 1px solid #cccccc;
}
main.access section.transport .cars .container dl dt {
  background-color: #ecf9ff;
}
main.access section.transport img {
  width: 100%;
  max-width: 544px;
  margin: clamp(20px, calc(40px + (100vw - 750px) * (20px - 40px) / (850px - 750px)), 40px) auto 0;
}

/*======================================== 
*
* Contact
*
======================================== */
main.contact section.form .container {
  display: grid;
  place-items: center;
  border-radius: 0 40px 0 40px;
  background-color: #dffae9;
  padding: 30px 30px;
  margin: 0 auto;
  margin-top: clamp(15px, calc(35px + (100vw - 750px) * (15px - 35px) / (850px - 750px)), 35px);
  gap: 15px;
}
main.contact section.form .container .ttl {
  font-size: clamp(24px, calc(24px + (100vw - 750px) * (30px - 24px) / (850px - 750px)), 30px);
}
main.contact section.form .container a {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  color: #3c997a;
  font-size: clamp(28px, calc(28px + (100vw - 750px) * (45px - 28px) / (850px - 750px)), 45px);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
main.contact section.form .container a:before {
  content: "";
  display: block;
  background-image: url(../img/contact-tel.png);
  background-size: cover;
  aspect-ratio: 55/49;
  width: clamp(45px, calc(45px + (100vw - 750px) * (55px - 45px) / (850px - 750px)), 55px);
  height: auto;
}
main.contact section.form .container .hours {
  font-size: clamp(16px, calc(16px + (100vw - 750px) * (23px - 16px) / (850px - 750px)), 23px);
}
main.contact .wrap {
  margin-top: clamp(25px, calc(25px + (100vw - 750px) * (55px - 25px) / (850px - 750px)), 55px);
  border-radius: 40px;
  background-color: #d9e6f2;
  padding: clamp(40px, calc(40px + (100vw - 750px) * (80px - 40px) / (850px - 750px)), 80px) clamp(10px, calc(10px + (100vw - 750px) * (50px - 10px) / (850px - 750px)), 50px);
}
main.contact .mw_wp_form {
  width: 100% !important;
  background-color: #fff;
  border-radius: 20px;
  padding: clamp(20px, calc(20px + (100vw - 750px) * (35px - 20px) / (850px - 750px)), 35px) clamp(10px, calc(10px + (100vw - 750px) * (30px - 10px) / (850px - 750px)), 30px);
  font-size: 14px;
}
main.contact .mw_wp_form dl {
  width: 100% !important;
  /* --- ラジオボタン --- */
}
main.contact .mw_wp_form dl .row {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  padding: 10px 0;
}
@media (min-width: 851px) {
  main.contact .mw_wp_form dl .row {
    padding: 15px 15px;
  }
}
main.contact .mw_wp_form dl dt {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media (min-width: 851px) {
  main.contact .mw_wp_form dl dt {
    padding: 3px 10px;
    width: 38%;
    margin-bottom: 0px;
  }
}
main.contact .mw_wp_form dl .required {
  display: block;
  background-color: #b20000;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: normal;
  line-height: 1;
  border-radius: 5px;
}
main.contact .mw_wp_form dl .required:before {
  content: "必須";
  display: inline-block;
}
main.contact .mw_wp_form dl dd {
  width: 100%;
}
@media (min-width: 851px) {
  main.contact .mw_wp_form dl dd {
    width: 60%;
  }
}
main.contact .mw_wp_form dl dd .notes {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
main.contact .mw_wp_form dl dd input[type=text] {
  width: 100% !important;
  background-color: #fff;
  padding: 3px 10px;
  border: 1px solid #b7b7b7;
  border-radius: 5px;
}
main.contact .mw_wp_form dl dd textarea {
  width: 100% !important;
  background-color: #fff;
  padding: 3px 10px;
  border: 1px solid #b7b7b7;
  border-radius: 5px;
}
main.contact .mw_wp_form dl dd.radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
main.contact .mw_wp_form dl dd.radio .mwform-radio-field {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0 !important;
}
main.contact .mw_wp_form dl dd.radio .mwform-radio-field input {
  display: none;
}
main.contact .mw_wp_form dl dd.radio .mwform-radio-field label {
  display: inline-block;
}
main.contact .mw_wp_form dl dd.radio .mwform-radio-field-text {
  padding-left: 2em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  cursor: pointer;
}
main.contact .mw_wp_form dl dd.radio .mwform-radio-field-text:after, main.contact .mw_wp_form dl dd.radio .mwform-radio-field-text:before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #aaaaaa;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 0;
}
main.contact .mw_wp_form dl dd.radio .mwform-radio-field-text:after {
  opacity: 0;
  width: 10px;
  height: 10px;
  background: #27ad37;
  border: none;
  left: 5px;
}
main.contact .mw_wp_form dl dd.radio input[type=radio]:checked + .mwform-radio-field-text:after {
  opacity: 1;
}
main.contact .mw_wp_form button[type=submit] {
  display: block;
  background-color: #f6b24d;
  color: #fff;
  margin: clamp(20px, calc(20px + (100vw - 750px) * (30px - 20px) / (850px - 750px)), 30px) auto 0;
  width: 357px;
  height: 75px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(18px, calc(18px + (100vw - 750px) * (22px - 18px) / (850px - 750px)), 22px);
  border-radius: 50px;
}

/*======================================== 
*
* Privacy
*
======================================== */
main.privacy section.privacy dt,
main.privacy section.privacy dd {
  padding: 15px 10px;
}
main.privacy section.privacy dt {
  background-color: #dffae9;
  border-radius: 10px 0 10px 0;
  font-size: clamp(18px, calc(18px + (100vw - 750px) * (25px - 18px) / (850px - 750px)), 25px);
  color: #3c997a;
}
main.privacy section.privacy dd {
  padding-left: 0px;
  padding-right: 0px;
}
main.privacy section.privacy dd:not(:last-child) {
  margin-bottom: clamp(20px, calc(20px + (100vw - 750px) * (40px - 20px) / (850px - 750px)), 40px);
}

/* 記事ページ
======================================== */
article.news-single {
  padding-top: 30px !important;
}
article.news-single .ttl {
  font-size: 24px;
  font-weight: 500;
}
@media (min-width: 851px) {
  article.news-single .ttl {
    font-size: 32px;
  }
}
article.news-single .date {
  text-align: right;
  color: #939393;
  font-size: 16px;
  margin: 10px 0;
}
article.news-single img {
  width: 800px;
  max-width: 100%;
  height: auto;
  margin: 2em auto;
}

/* ページャー
======================================== */
.pagination {
  width: 100%;
  margin-top: 30px;
}
@media (min-width: 851px) {
  .pagination {
    margin-top: 60px;
  }
}
.pagination ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media (min-width: 851px) {
  .pagination ul {
    gap: 20px;
  }
}
.pagination ul a,
.pagination ul li {
  width: 35px;
  height: 35px;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1;
}
@media (min-width: 851px) {
  .pagination ul a,
  .pagination ul li {
    width: 40px;
    height: 40px;
  }
}
.pagination ul li {
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #0f2476;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #0f2476;
  aspect-ratio: 1/1;
  width: 30px;
  height: 100%;
}
@media (min-width: 851px) {
  .pagination ul li {
    font-size: 18px;
  }
}
.pagination ul li.active {
  background-color: #0f2476;
  color: #fff;
}
.pagination ul a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}