@charset "UTF-8";

/*-----------------------------------------------------------
1-1. Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
samp,
sub,
sup,
var,
b,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
mark,
audio,
video,
a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span,
small,
em,
time,
i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  border: medium;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5em;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
picture {
  display: block;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
select {
  vertical-align: middle;
}

abbr[title],
dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

/*-----------------------------------------------------------
body
-----------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

body,
html {
  width: 100%;
  height: 100%;
}

body {
  color: #391E04;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
}

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

.link {
  color: #93C31E;
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

a[href^=tel] {
  cursor: default;
}

/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.h-container {
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5.5vw;
}

.h-tel {
  display: inline-block;
  background: #93C31E;
  border-radius: 100px;
  color: #fff;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 29px;
  line-height: 1;
  padding: 25px 45px;
  position: relative;
  text-align: center;
}

.h-tel:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 1px solid #391E04;
  position: absolute;
  left: 7px;
  top: 7px;
  z-index: 2;
}

.h-tel .small {
  display: block;
  font-size: 13px;
  color: #391E04;
  margin-bottom: 10px;
}

.h-tel i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 20px;
}

/*-----------------------------------------------------------
g-navi
-----------------------------------------------------------*/
.pc-navi {
  background: #fff;
  padding: 32px 0;
}

.pc-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pc-navi-list>li {
  position: relative;
  padding-left: 30px;
}

.pc-navi-list>li+li {
  margin-left: 50px;
}

.pc-navi-list>li:before {
  content: "";
  display: block;
  border-width: 4px;
  border-style: solid;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 10px;
}

.pc-navi-list>li>a {
  display: block;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 18px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pc-navi-list>li:first-of-type:before,
.pc-navi-list>li:nth-of-type(3n+1):before {
  border-color: #93C31E;
}

.pc-navi-list>li:first-of-type>a:hover,
.pc-navi-list>li:nth-of-type(3n+1)>a:hover {
  color: #93C31E;
}

.pc-navi-list>li:nth-of-type(2):before,
.pc-navi-list>li:nth-of-type(3n+2):before {
  border-color: #EE7600;
}

.pc-navi-list>li:nth-of-type(2)>a:hover,
.pc-navi-list>li:nth-of-type(3n+2)>a:hover {
  color: #EE7600;
}

.pc-navi-list>li:nth-of-type(3n):before {
  border-color: #00A54D;
}

.pc-navi-list>li:nth-of-type(3n)>a:hover {
  color: #00A54D;
}

.sp-navi {
  display: none;
}

/* ドロップダウンメニュー */
.pc-navi .dropdown {
  position: relative;
}

.pc-navi .dropdown .child {
  display: none;
  padding: 30px 0 0;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 230px;
  z-index: 50;
}

.pc-navi .dropdown .child:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 13px 12px 13px;
  border-color: transparent transparent #93C31E transparent;
  position: absolute;
  left: 50%;
  top: 20px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 5;
}

.pc-navi .dropdown ul {
  background: #93C31E;
  border-radius: 10px;
  padding: 15px 20px;
}

.pc-navi .dropdown ul li:last-child {
  margin: 0;
}

.pc-navi .dropdown ul li a {
  padding: 10px 0;
  color: #fff;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 16px;
  display: block;
  text-align: center;
  line-height: 1.5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pc-navi .dropdown ul li a:hover {
  opacity: 0.5;
}

.no-link {
  cursor: default;
}

/*-----------------------------------------------------------
hero
-----------------------------------------------------------*/
.hero {
  padding: 5.5vw 5.5vw 0;
  position: relative;
}

.hero-slider {
  width: 87.5%;
  margin: 0 0 0 auto;
}

.hero-slider img {
  border-radius: 30px;
  width: 100%;
  height: auto;
}

.hero-desc {
  position: absolute;
  left: 5.5vw;
  bottom: 5.5vw;
}

.hero-logo {
  margin-bottom: 36px;
}

.hero-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 44px;
  line-height: 1.7;
  margin-bottom: 70px;
}

.hero-tel {
  display: inline-block;
  background: #93C31E;
  border-radius: 100px;
  color: #fff;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 29px;
  line-height: 1;
  padding: 25px 45px;
  position: relative;
  text-align: center;
}

.hero-tel:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 1px solid #391E04;
  position: absolute;
  left: 7px;
  top: 7px;
  z-index: 2;
}

.hero-tel .small {
  display: block;
  font-size: 13px;
  color: #391E04;
  margin-bottom: 10px;
}

.hero-tel i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 20px;
}

/*-----------------------------------------------------------
top contents
-----------------------------------------------------------*/
.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.t-ttl01 {
  background: url(../images/t-ttl01@2x.png) no-repeat center top/27px auto;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 30px;
  padding: 50px 0 0;
  margin-bottom: 40px;
  text-align: center;
}

/*sec01*/
.sec01 {
  background: #F4EFEA;
  padding: 120px 0;
  position: relative;
}

.sec01:before,
.sec01:after {
  content: "";
  display: block;
  background: url(../images/share/wave01.png) repeat-x center top/auto 100%;
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.sec01:after {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  bottom: auto;
  top: 0;
}

.sec01-layout {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 220px 1fr;
  grid-template-columns: 220px 1fr;
  margin-bottom: 30px;
}

.sec01-layout .l-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 30px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  margin-bottom: 10px;
  padding: 0 0 0 40px;
  position: relative;
}

.sec01-layout .l-ttl:before {
  content: "";
  background: url(../images/sec01_ttl@2x.png) no-repeat left top/contain;
  width: 29px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 0;
}

.sec01-layout .l-btn {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}

.sec01-layout .l-desc {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
  min-width: 0;
}

.sec01-bnr a {
  display: block;
  background: #fff;
  border: 2px solid #93C31E;
  border-radius: 20px;
  color: #93C31E;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  padding: 36px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sec01-bnr a:after {
  content: "";
  display: block;
  border-top: 2px solid #93C31E;
  border-right: 2px solid #93C31E;
  width: 9px;
  height: 9px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sec01-bnr a:hover {
  background: #93C31E;
  color: #fff;
}

.sec01-bnr a:hover:after {
  border-color: #fff;
}

.sec01-list-post li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sec01-list-post li+li {
  margin-top: 10px;
}

.sec01-list-post time {
  margin-right: 30px;
}

.sec01-list-post a {
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sec01-list-post a:hover {
  color: #93C31E;
}

/*sec02*/
.sec02 {
  overflow: hidden;
  padding: 100px 5.5vw;
}

.sec02-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1300px;
  margin: 0 auto 0 0;
  width: 100%;
}

.sec02-layout .l-img {
  width: 57%;
  margin-right: 60px;
}

.sec02-layout .l-img img {
  border-radius: 20px;
}

.sec02-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.sec02-layout .l-desc:after {
  content: "";
  display: block;
  background: url(../images/sec02_item@2x.png) no-repeat left top/contain;
  width: 118px;
  height: 109px;
  position: absolute;
  right: -88px;
  bottom: -74px;
  z-index: -1;
}

.sec02-layout .l-ttl {
  background: url(../images/sec02_ttl@2x.png) no-repeat left top/27px auto;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 30px;
  padding: 50px 0 0;
  margin-bottom: 50px;
}

.sec02-layout .l-txt {
  margin-bottom: 40px;
}

/*sec03*/
.sec03 {
  padding: 0 0 160px;
  position: relative;
}

.sec03:after {
  content: "";
  display: block;
  background: url(../images/share/wave02.png) repeat-x center top/auto 100%;
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.sec03-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sec03-card .card-img {
  margin-bottom: 20px;
}

.sec03-card .card-img img {
  border-radius: 20px;
}

.sec03-card .card-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 22px;
  line-height: 2;
  text-align: center;
  margin-bottom: 23px;
}

.sec03-card .card-ttl .line {
  background: url(../images/share/border-dot@2x.png) repeat-x left bottom/auto 3px;
  padding: 0 0 10px;
}

/*sec04*/
.sec04 {
  background: #F4EFEA;
  padding: 60px 0 100px;
}

.sec04-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto 60px;
  width: 90%;
}

.sec04-layout .l-img {
  width: 49.2%;
  margin-left: 60px;
}

.sec04-layout .l-img img {
  border-radius: 20px;
}

.sec04-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding: 0 0 0 6.7%;
}

.sec04-layout .l-desc:after {
  content: "";
  display: block;
  background: url(../images/sec04_item@2x.png) no-repeat left top/contain;
  width: 111px;
  height: 102px;
  position: absolute;
  left: 0;
  bottom: 140px;
}

.sec04-layout .l-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 22px;
  line-height: 2;
  margin-bottom: 23px;
}

.sec04-layout .l-ttl .line {
  background: url(../images/share/border-dot@2x.png) repeat-x left bottom/auto 3px;
  padding: 0 0 10px;
}

.sec04-layout .l-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 25px;
}

.sec04-layout .l-box .l-ttl02 {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 20px;
  margin-bottom: 10px;
}

.sec04-layout .l-txt {
  margin-bottom: 30px;
}

.sec04-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}

.sec04-card a {
  display: block;
  background: #fff;
  border: 1px solid #391E04;
  border-radius: 10px;
  padding: 40px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sec04-card a.item01:hover {
  background: #f6fce9;
}

.sec04-card a.item02:hover {
  background: #fef2e6;
}

.sec04-card a.item03:hover {
  background: #f5fffa;
}

.sec04-card .card-ico {
  text-align: center;
  margin-bottom: 20px;
}

.sec04-card .card-ico img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100px;
}

.sec04-card .card-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 20px;
  margin-bottom: 5px;
  text-align: center;
}

/*sec05*/
.sec05.lazyloaded {
  background: url(../images/sec05_bg_pc.jpg) no-repeat center center/cover;
}
.sec05 {
  padding: 100px 0;
  position: relative;
}

.sec05:after {
  content: "";
  display: block;
  background: url(../images/share/wave01.png) repeat-x center top/auto 100%;
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.sec05-catch {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 22px;
  line-height: 2;
  margin-bottom: 40px;
  text-align: center;
}

.sec05-catch .line {
  background: url(../images/share/border-dot@2x.png) repeat-x left bottom/auto 3px;
  padding: 0 0 10px;
}

.sec05-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 50px;
}

.sec05-card li {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  width: 284px;
}

.sec05-card li+li {
  margin-left: 20px;
}

.sec05-card .card-ttl {
  color: #93C31E;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 22px;
  text-align: center;
  margin-bottom: 15px;
}

.sec05-card .card-txt {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 18px;
  line-height: 1.66;
  text-align: center;
}

/*sec06*/
.sec06 {
  padding: 100px 0;
}

.sec06-list-post {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.sec06-list-post li {
  min-width: 0;
}

.sec06-list-post .list-img {
  margin-bottom: 10px;
}

.sec06-list-post .list-img a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sec06-list-post .list-img a:hover {
  opacity: 0.7;
}

.sec06-list-post .list-img img {
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 152px;
}

.sec06-list-post .post-data {
  margin-bottom: 5px;
}

.sec06-list-post .list-ttl {
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sec06-list-post .list-ttl a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sec06-list-post .list-ttl a:hover {
  color: #93C31E;
}

/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.pagetop {
  position: fixed;
  right: 50px;
  bottom: 0;
  margin-bottom: 50px;
  z-index: 50;
}

.pagetop a {
  display: block;
  width: 50px;
}

.f-wrapper {
  border-bottom: 1px solid #93C31E;
  padding: 60px 0 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 496px;
  grid-template-columns: 1fr 496px;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}

.f-logo {
  margin-bottom: 20px;
}

.f-tel .tel {
  display: inline-block;
  color: #93C31E;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 31px;
  line-height: 1;
  position: relative;
}

.f-tel .tel i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 22px;
}

.sitemap {
  padding: 40px 0 50px;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.sitemap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sitemap ul li:after {
  content: "│";
  padding: 0 15px;
}

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

.sitemap ul li a {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 14px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-shadow: #fff 1px 1px 1px, #fff -1px -1px 1px, #fff -1px 1px 1px, #fff 1px -1px 1px, #fff 0px 1px 1px, #fff 0 -1px 1px, #fff -1px 0 1px, #fff 1px 0 1px;
}

.sitemap ul li a:hover {
  text-decoration: underline;
}

.copyright {
  background: #93C31E;
  color: #fff;
  text-align: center;
  font-family: Verdana, "Droid Sans";
  font-size: 13px;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.copyright:after {
  content: "";
  background: url(../images/share/footer_item@2x.png) no-repeat left top/contain;
  width: 118px;
  height: 109px;
  position: absolute;
  right: 10%;
  bottom: 42px;
  z-index: 1;
}

/*------------
診療時間
--------------*/
.time-table {
  margin-bottom: 10px;
}

.time-table th,
.time-table td {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  text-align: center;
  line-height: 1;
  vertical-align: middle;
  border-bottom: 1px solid #391E04;
}

.time-table th {
  font-size: 16px;
  padding: 10px 5px;
}

.time-table th:first-child {
  width: 140px;
}

.time-table th:last-child {
  width: 60px;
}

.time-table td {
  color: #93C31E;
  padding: 12px 5px;
  font-size: 18px;
}

.time-table td:first-child {
  color: #391E04;
  font-size: 14px;
}

.table-txt {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 14px;
}

/*-----------------------------------------------------------
アニメーション
-----------------------------------------------------------*/
.is-fade {
  opacity: 0;
  -webkit-transition: transform 0.7s;
  transition: transform 0.7s;
  -webkit-transform: translate(0, 15%);
  transform: translate(0, 15%);
}

.is-fade.is-action {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .is-fade {
    opacity: 1;
    transform: none;
  }
}


_:lang(x)+_:-webkit-full-screen-document,
.sec01 .is-fade {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.is-card>.item {
  opacity: 0;
  -webkit-transition: transform 0.7s;
  transition: transform 0.7s;
  -webkit-transform: translate(0, 15%);
  transform: translate(0, 15%);
}

.is-card>.item:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.is-card>.item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.is-card>.item:nth-child(4) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.is-card>.item:nth-child(5) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.is-card>.item:nth-child(6) {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

.is-card.is-action>.item {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*-----------------------------------------------------------
under
-----------------------------------------------------------*/
main.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

main.column2 .contents {
  width: 740px;
}

main.column2 .side-navi {
  width: 240px;
}

.breadcrumb {
  margin: 5px 0 55px;
  width: 100%;
}

.breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  color: #888;
  font-size: 13px;
  display: inline;
}

.breadcrumb ul li a {
  text-decoration: underline;
}

.breadcrumb ul li a:hover {
  text-decoration: none;
}

.breadcrumb ul li+li:before {
  content: "> ";
  padding: 0 5px;
  color: #ccc;
}

.page-ttl {
  height: 473px;
  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;
  background: #F4EFEA;
  padding: 50px;
  position: relative;
}

.page-ttl:before,
.page-ttl:after {
  content: "";
  display: block;
  background: url(../images/share/wave01.png) repeat-x center top/auto 100%;
  height: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.page-ttl:after {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  bottom: auto;
  top: 0;
}

.page-ttl h1 {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 44px;
  text-align: center;
  width: 100%;
}

/*-----------------------------------------------------------
under parts
-----------------------------------------------------------*/
.u-contents p+p {
  margin-top: 15px;
}

.u-h2 {
  background: url(../images/under/u-h2@2x.png) no-repeat center top/27px auto;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 30px;
  padding: 50px 0 0;
  margin-bottom: 40px;
  text-align: center;
}

.u-h3,
.postdata h3 {
  background: url(../images/share/border-dot@2x.png) repeat-x left bottom/auto 3px;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 25px;
  padding: 0 0 12px;
  margin: 0 0 30px;
}

.u-h4,
.postdata h4 {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 18px;
  padding: 0 0 0 30px;
  margin: 0 0 20px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  border: 4px solid #00A54D;
  border-radius: 50px;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 10px;
  left: 0;
}

.u-h5,
.postdata h5 {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 16px;
  margin: 0 0 15px;
}

.u-catch {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 18px;
}

/*box*/
.short {
  margin: 0 0 60px;
}

.tall {
  margin: 0 0 90px;
}

/*Column*/
.col2,
.col2-col2,
.col3,
.col3-col2,
.col4,
.col4-col2 {
  display: -ms-grid;
  display: grid;
}

.col2,
.col2-col2 {
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.col3,
.col3-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.col4,
.col4-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
}

/*layout*/
.l-imgR,
.l-imgL {
  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;
}

.l-imgR.center,
.l-imgL.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-imgR .l-img,
.l-imgL .l-img {
  margin: 0 4% 0 0;
  width: 40%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 10px;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

.l-imgR .l-img {
  margin: 0 0 0 4%;
}

.l-imgR.center,
.l-imgL.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fl-imgR,
.fl-imgL {
  overflow: hidden;
}

.fl-imgR .l-img,
.fl-imgL .l-img {
  width: 40%;
}

.fl-imgR .l-img.small,
.fl-imgL .l-img.small {
  width: 30%;
}

.fl-imgR .l-img {
  float: right;
  margin: 0 0 15px 4%;
}

.fl-imgL .l-img {
  float: left;
  margin: 0 4% 15px 0;
}

.fl-imgR .l-img.small,
.fl-imgL .l-img.small {
  width: 30%;
}

/*list*/
.list-disc li {
  position: relative;
  padding: 0 0 0 15px;
}

.list-disc li:before {
  background: #93C31E;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
}

.list-disc li+li {
  margin-top: 3px;
}

.list-decimal {
  padding-left: 22px;
}

.list-decimal li {
  list-style: decimal;
}

.list-decimal li+li {
  margin-top: 3px;
}

.list-num {
  counter-reset: number;
}

.list-num li {
  padding: 0 0 0 30px;
  position: relative;
}

.list-num li:before {
  background: #93C31E;
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 10px;
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding: 0 0 0 2px;
  width: 20px;
  height: 20px;
}

.list-num li+li {
  margin-top: 3px;
}

.list-check li {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  position: relative;
  padding: 0 0 0 25px;
}

.list-check li:before {
  content: "";
  background: url(../images/share/ico_check.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 9px;
  width: 15px;
  height: 15px;
}

.list-check li+li {
  margin-top: 3px;
}

/*table*/
.table-style01 {
  border-collapse: collapse;
  width: 100%;
}

.table-style01 th,
.table-style01 td {
  padding: 15px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.table-style01 th {
  background: #93C31E;
  color: #fff;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 15px;
  text-align: center;
}

/*btn-style*/
.btn-style01 {
  display: inline-block;
  background: #fff;
  border: 2px solid #93C31E;
  border-radius: 100px;
  color: #93C31E;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 16px;
  line-height: 1.5;
  padding: 14px 60px;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-style01:after {
  content: "";
  display: block;
  border-top: 2px solid #93C31E;
  border-right: 2px solid #93C31E;
  width: 9px;
  height: 9px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-style01:hover {
  background: #93C31E;
  color: #fff;
}

.btn-style01:hover:after {
  border-color: #fff;
}

.btn-style01.btn-small {
  padding: 9px 53px;
}

/*------------
Flow
--------------*/
.list-flow-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-flow-01>li {
  background: #F4EFEA;
  border-radius: 20px;
  padding: 35px 30px 30px;
  width: 30%;
  position: relative;
  margin: 0 5% 50px 0;
}

.list-flow-01>li::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #391E04;
  position: absolute;
  top: 50%;
  right: -32px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.list-flow-01>li:last-child::after {
  display: none;
}

.list-flow-01>li:nth-child(3n) {
  margin: 0 0 50px;
}

.list-flow-01 .num {
  color: #93C31E;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: -15px;
  left: 30px;
}

.list-flow-01 .list-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 18px;
  text-align: center;
  margin: 0 0 15px;
}

.list-flow-02 {
  border: 1px solid #391E04;
  border-radius: 20px;
  background: #fff;
  padding: 50px;
}

.list-flow-02>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  position: relative;
}

.list-flow-02>li+li {
  border-top: 1px solid #391E04;
  padding-top: 50px;
  margin-top: 50px;
}

.list-flow-02>li+li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-bottom: 2px solid #391E04;
  border-right: 2px solid #391E04;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}

.list-flow-02>li+li::after {
  content: "";
  background: #fff;
  width: 75px;
  height: 22px;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.list-flow-02 .list-img {
  width: 40%;
  margin: 0 0 0 50px;
}

.list-flow-02 .list-img img {
  border-radius: 10px;
}

.list-flow-02 .list-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.list-flow-02 .list-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 35px;
}

.list-flow-02 .num {
  background: #93C31E;
  color: #fff;
  display: inline-block;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 15px;
  line-height: 30px;
  padding: 0 5px 0 8px;
  margin: 0 25px 0 0;
  position: relative;
}

.list-flow-02 .num::after {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 12px;
  border-color: transparent transparent transparent #93C31E;
  position: absolute;
  right: -12px;
}

/*------------
カードデザイン
--------------*/
.list-card-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list-card-01>li {
  background: #F4EFEA;
  border-radius: 20px;
}

.list-card-01.column2 li {
  padding: 30px 40px;
  margin-bottom: 30px;
  width: 48.43%;
}

.list-card-01.column3::after {
  content: "";
  width: 31.25%;
}

.list-card-01.column3 li {
  padding: 30px;
  margin-bottom: 30px;
  width: 31.25%;
}

.list-card-01 .list-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.list-card-01 .list-img {
  text-align: center;
  margin-bottom: 20px;
}

.list-card-01 .list-img img {
  border-radius: 10px;
}

.list-card-02 {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

.list-card-02>li {
  background: #fff;
  border: 1px solid #391E04;
  border-radius: 20px;
}

.list-card-02.column3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.list-card-02.column3>li {
  padding: 30px;
}

.list-card-02.column4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.list-card-02.column4>li {
  padding: 20px;
}

.list-card-02 .list-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.list-card-02 .list-img {
  text-align: center;
  margin-bottom: 20px;
}

.list-card-02 .list-img img {
  border-radius: 10px;
}

/*------------
ボックスデザイン
--------------*/
.box-style01 {
  background: #F4EFEA;
  border-radius: 20px;
  padding: 40px;
}

.box-style01 .box-ttl {
  background: url(../images/share/border-dot@2x.png) repeat-x left bottom/auto 3px;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 22px;
  margin-bottom: 30px;
  padding: 0 0 20px;
}

.box-style02 {
  background: #F4EFEA;
  border-radius: 20px;
  padding: 40px;
}

.box-style02 .box-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 20px;
  margin-bottom: 20px;
}

/*------------
メリット、デメリット
--------------*/
.merit-demerit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.merit-demerit .item {
  background: #F4EFEA;
  border-top: 2px solid #93C31E;
  padding: 30px 40px;
  width: 48.43%;
}

.merit-demerit .item:nth-of-type(even) {
  border-color: #EE7600;
}

.merit-demerit .item:nth-of-type(even) .item-ttl {
  color: #EE7600;
}

.merit-demerit .item:nth-of-type(even) .list-disc>li:before {
  background: #EE7600;
}

.merit-demerit .item-ttl {
  color: #93C31E;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  letter-spacing: 0.15em;
  margin: 0 0 25px;
}

.merit-demerit .item-ttl .en {
  font-size: 25px;
  margin: 0 20px 0 0;
}

.merit-demerit .item-ttl .jp {
  font-size: 14px;
}

/*------------
料金表
--------------*/
.list-price.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-price.column2>li {
  width: 48%;
  margin-bottom: 5px;
}

.list-price.column2>li+li {
  margin-top: 0;
}

.list-price>li .intro {
  border-bottom: 1px dotted #391E04;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 15px;
  padding: 0 0 5px;
}

.list-price>li .desc {
  color: #747474;
  font-size: 13px;
  padding: 5px 0 0;
}

.list-price>li+li {
  margin-top: 5px;
}

/*------------
よくある質問
--------------*/
.faq-style dt {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #391E04;
  padding: 0 30px 10px 0;
  margin: 0 0 15px;
  position: relative;
}

.faq-style dt .ico {
  background: #93C31E;
}

.faq-style dt .txt {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 20px;
  line-height: 1.7;
}

.faq-style dt::after {
  content: "";
  background: url(../images/share/ico_open.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 5px;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-style dt:not(.is-open):hover {
  opacity: 0.5;
}

.faq-style dt.is-open::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq-style dd {
  display: none;
}

.faq-style dd .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq-style dd+dt {
  margin-top: 30px;
}

.faq-style dd .ico {
  background: #EE7600;
}

.faq-style .ico {
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 31px;
  margin: 0 15px 0 0;
  padding: 0 0 0 1px;
}

.faq-style .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/*------------
アンカーリンク
--------------*/
.list-anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 15px;
}

.list-anchor-link.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-anchor-link li {
  position: relative;
}

.list-anchor-link li::after {
  content: "";
  display: inline-block;
  background: #e0e0e0;
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link li:last-child::after {
  display: none;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/ico_arrow_bottom.svg) no-repeat 0 0/contain;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 9px;
}

.list-anchor-link a:hover {
  text-decoration: underline;
}

/*------------
スタッフページ
--------------*/
.staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.staff-layout .l-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 410px;
  flex: 0 0 410px;
  margin-left: 65px;
}

.staff-layout .l-img img {
  border-radius: 10px;
}

.staff-layout .l-desc {
  margin-top: 20px;
}

.staff-layout .job {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 18px;
  margin-bottom: 5px;
}

.staff-layout .name {
  background: url(../images/share/border-dot@2x.png) repeat-x left bottom/auto 3px;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  line-height: 1;
  padding-bottom: 35px;
  margin-bottom: 30px;
}

.staff-layout .jp {
  font-size: 30px;
  margin-right: 25px;
}

.staff-layout .en {
  color: #93C31E;
  font-size: 18px;
}

.staff-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.staff-profile .item {
  background: #fff;
  border: 1px solid #391E04;
  border-radius: 20px;
  padding: 35px;
  width: 48.43%;
}

.staff-profile .item-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 18px;
  margin-bottom: 15px;
}

.staff-profile .list-disc>li:before {
  background: #391E04;
}

.dl-career {
  border-top: 1px dotted #391E04;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.7;
}

.dl-career dt {
  border-bottom: 1px dotted #391E04;
  padding: 10px 0;
  width: 25%;
}

.dl-career dd {
  border-bottom: 1px dotted #391E04;
  padding: 10px 0;
  width: 75%;
}

/*------------
診療案内
--------------*/
.intro-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.intro-layout .l-img {
  width: 512px;
  position: relative;
  z-index: 2;
}

.intro-layout .l-img img {
  border-radius: 20px;
}

.intro-layout .l-desc {
  background: #F4EFEA;
  border-radius: 20px;
  padding: 50px 135px 50px 50px;
  width: 597px;
  margin: 60px -85px 0 0;
}

.intro-layout .l-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 22px;
  line-height: 2;
  margin-bottom: 30px;
}

.intro-layout .l-ttl .line {
  background: url(../images/share/border-dot@2x.png) repeat-x left bottom/auto 3px;
  padding: 0 0 10px;
}

/*------------
投稿パーツ
--------------*/
/*普通投稿*/
.list-post-type01 {
  margin-bottom: 80px;
}

.list-post-type01 li {
  overflow: hidden;
}

.list-post-type01 li+li {
  margin-top: 50px;
}

.list-post-type01 .list-ttl {
  border-bottom: 1px solid #391E04;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 20px;
  position: relative;
  padding: 0 0 15px;
  margin: 0 0 25px;
}

.list-post-type01 .list-ttl a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-post-type01 .list-ttl a:hover {
  opacity: 0.5;
}

.list-post-type01 .list-img {
  float: left;
  margin: 0 30px 0 0;
  width: 250px;
}

.list-post-type01 .list-img img {
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.list-post-type01 .list-img a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-post-type01 .list-img a:hover {
  opacity: 0.5;
}

.list-post-type01 .list-data {
  font-size: 13px;
  margin: 0 0 5px;
}

.list-post-type01 time {
  display: inline-block;
  color: #98918c;
  font-size: 14px;
  vertical-align: -1px;
  margin: 0 25px 0 0;
}

.list-post-type01 .category {
  border: 1px solid #93C31E;
  color: #93C31E;
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  padding: 5px 8px 4px;
  margin: 0 10px 0 0;
}

.list-post-type01 .list-txt {
  margin: 0 0 15px;
}

.list-post-type01 .list-btn {
  text-align: right;
}

.list-post-type01 .list-btn a {
  border: 2px solid #93C31E;
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  color: #93C31E;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  text-align: center;
  padding: 5px 40px 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-post-type01 .list-btn a:hover {
  background: #93C31E;
  color: #fff;
}

/*詳細ページ*/
.l-post-single {
  margin-bottom: 80px;
}

.l-post-single .l-ttl {
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 30px;
  margin: 0 0 35px;
}

.l-post-single .post-data {
  margin: 0 0 20px;
}

.l-post-single .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 14px;
  vertical-align: -1px;
  margin: 0 20px 0 0;
}

.l-post-single .post-data .category {
  border: 1px solid #93C31E;
  color: #93C31E;
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  padding: 5px 8px 4px;
  margin: 0 10px 0 0;
}

/*詳細ページ*/
.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  color: #93C31E;
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

/*セレクト式カテゴリー*/
.select-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 16px;
  margin: 0 15px 0 0;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/ico_arrow_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: #333;
  font-size: 16px;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 0;
}

.select-area .select-category::-ms-expand {
  display: none;
}

/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0 0;
}

.post-number a {
  background: #eff2f5;
  color: #333;
  display: block;
  padding: 0 10px;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.post-number a:hover {
  background: #93C31E;
  color: #fff;
}

.post-number .current {
  background: #93C31E;
  color: #fff;
  display: block;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
}

.post-number-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  line-height: 1;
  overflow: hidden;
}

.post-number-single a {
  display: inline-block;
  color: #000;
}

.post-number-single a.next {
  margin-top: 0;
}

.post-number-single a.next::before {
  content: "";
  background: url(../images/share/ico_arrow_post_left.svg) no-repeat center center/contain;
  display: inline-block;
  margin-right: 15px;
  width: 22px;
  height: 22px;
}

.post-number-single a.prev {
  margin-top: 0;
}

.post-number-single a.prev::after {
  content: "";
  background: url(../images/share/ico_arrow_post_right.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 15px;
  width: 22px;
  height: 22px;
}

.post-number-single a.all {
  padding: 2px 0 0;
}

.post-number-single a:hover {
  opacity: 0.5;
}

/*-----------------------------------------------------------
common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fade:hover {
  opacity: 0.5;
}

.bold,
strong {
  font-weight: bold;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #F4EFEA));
  background: linear-gradient(transparent 70%, #F4EFEA 70%);
}

.u-tel {
  display: inline-block;
  color: #93C31E;
  font-family: "FOT-筑紫A丸ゴシック Std B";
  font-size: 31px;
  line-height: 1;
  position: relative;
}

.u-tel i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 22px;
}

.red {
  color: #F44336;
}

.green {
  color: #93C31E;
}

.notice {
  font-size: 13px;
  text-indent: -1rem;
  padding: 0 0 0 15px;
}

.sp-map iframe,
.sp-map object,
.sp-map embed {
  vertical-align: top;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

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

.mb5 {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

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

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

/*-----------------------------------------------------------
slick
-----------------------------------------------------------*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
  text-align: center;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

.slick-prev,
.slick-next {
  border: none;
  background: transparent;
  cursor: pointer;
  color: transparent;
}

.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: calc(50% - 0px);
  width: 20px;
  height: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 10;
}

.slick-prev:focus,
.slick-next:focus {
  outline: 0;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 0.5;
}

.slick-prev {
  border-top: 3px solid #93C31E;
  border-left: 3px solid #93C31E;
  left: 25px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

.slick-next {
  border-top: 3px solid #93C31E;
  border-right: 3px solid #93C31E;
  right: 25px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.slick-dots {
  display: block;
  list-style: none;
  line-height: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 15px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.slick-dots li+li {
  margin-left: 10px;
}

.slick-dots li button {
  display: block;
  background: #eee;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: transparent;
  width: 8px;
  height: 8px;
  outline: none;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #93C31E;
}

.slick-dots li.slick-active button {
  background: #93C31E;
}

.clinic-slider {
  max-width: 1024px;
  margin: 0 auto 30px;
}

.clinic-slider-thumb {
  margin: 0 auto;
  padding: 0 75px;
  max-width: 500px;
  position: relative;
}

.clinic-slider-thumb .slick-slide {
  cursor: pointer;
  text-align: center;
  position: relative;
}

.clinic-slider-thumb .slick-slide::before {
  content: "";
  border: 4px solid #93C31E;
  width: 100px;
  height: 70px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 10;
  opacity: 0;
}

.clinic-slider-thumb .slick-center::before {
  opacity: 1;
}

.clinic-slider-thumb img {
  width: 100px;
  height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
}

.clinic-slider-thumb .slick-prev,
.clinic-slider-thumb .slick-next {
  top: 50%;
}

.clinic-slider-thumb .slick-prev {
  left: 0;
}

.clinic-slider-thumb .slick-next {
  right: 0;
}

/*------------
お問い合わせ
--------------*/
.grecaptcha-badge {
  bottom: 80px !important;
  z-index: 5;
}

.contact-form table {
  border-collapse: collapse;
  margin: 0 0 50px;
  width: 100%;
}

.contact-form table tr {
  border-bottom: 1px dashed #CCC;
}

.contact-form table th {
  padding: 20px 40px 20px 0;
  vertical-align: middle;
  text-align: left;
}

.contact-form table td {
  padding: 20px 0;
}

.contact-form .hissu {
  display: inline-block;
  background: #E57373;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  padding: 1px 8px;
  margin-left: 15px;
  vertical-align: 1px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f1f1f1;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}

.contact-form select::-ms-expand {
  display: none;
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}

.contact-form input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=number]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 1px solid #419caf;
}

.contact-form .select-wrap {
  position: relative;
}

.contact-form .select-wrap::after {
  content: "";
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

.contact-form .mwform-radio-field,
.contact-form .mwform-checkbox-field {
  display: inline-block;
  margin-right: 15px;
  margin-left: 0 !important;
}

.contact-form .mwform-radio-field input[type=radio] {
  display: none;
}

.contact-form .mwform-radio-field label {
  display: inline-block;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 30px;
  line-height: 1;
}

.contact-form .mwform-radio-field label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-form .mwform-radio-field .mwform-radio-field-text:after {
  content: "";
  border-radius: 50%;
  background: #419caf;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.contact-form .mwform-radio-field input[type=radio]:checked+.mwform-radio-field-text:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.contact-form .mwform-checkbox-field input[type=checkbox] {
  display: none;
}

.contact-form .mwform-checkbox-field label {
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 30px;
  position: relative;
}

.contact-form .mwform-checkbox-field label:before {
  content: "";
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-form .mwform-checkbox-field .mwform-checkbox-field-text:after {
  content: "";
  border-bottom: 3px solid #419caf;
  border-right: 3px solid #419caf;
  width: 7px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  left: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0) rotate(45deg);
  transform: scale(0) rotate(45deg);
}

.contact-form .mwform-checkbox-field input[type=checkbox]:checked+.mwform-checkbox-field-text:after {
  -webkit-transform: scale(1) rotate(45deg);
  transform: scale(1) rotate(45deg);
}

.contact-form .mwform-tel-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-form .mwform-tel-field input[type=text] {
  width: 29%;
}

.contact-form .mwform-tel-field input[type=text]:nth-of-type(1) {
  margin-right: 10px;
}

.contact-form .mwform-tel-field input[type=text]:nth-of-type(2) {
  margin: 0 10px;
}

.contact-form .mwform-tel-field input[type=text]:nth-of-type(3) {
  margin-left: 10px;
}

.contact-form .mwform-zip-field input[type=text] {
  width: 15%;
  min-width: 80px;
  margin: 0 10px;
}

.contact-form .preferred-date {
  overflow: hidden;
}

.contact-form .preferred-date .date {
  width: 45%;
  float: left;
}

.contact-form .preferred-date .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  float: right;
  width: 50%;
}

.contact-form .preferred-date .time select {
  width: 80px;
}

.contact-form .preferred-date .time .hour {
  margin: 0 10px;
}

.contact-form .preferred-date .time .minute {
  margin: 0 0 0 10px;
}

.contact-form .birthday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-form .birthday select {
  width: 100px;
}

.contact-form .birthday .year {
  margin: 0 10px;
}

.contact-form .birthday .month {
  margin: 0 10px;
}

.contact-form .birthday .day {
  margin: 0 0 0 10px;
}

.contact-form .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-form .submit-btn [type=submit] {
  -webkit-appearance: none;
  background: #419caf;
  border: 1px solid #419caf;
  border-radius: 0;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 22px 40px;
  letter-spacing: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 250px;
}

.contact-form .submit-btn [type=submit]:hover {
  opacity: 0.7;
}

.contact-form .submit-btn [type=submit].back-btn {
  background: #999;
  border: none;
  margin-right: 50px;
}

.mw_wp_form_confirm .select-wrap::after {
  display: none;
}

.mw_wp_form_confirm .file-button {
  cursor: auto;
  display: block;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
  padding: 0;
  margin-top: 0;
}

.mw_wp_form_confirm .file-button .file-txt {
  display: none;
}

.mw_wp_form_confirm .file-button .file-delete {
  display: none;
}

.mw_wp_form_confirm .file-button .mw-wp-form_image {
  display: block;
  width: 100px;
}

/*------------
お問い合わせ SP
--------------*/
@media screen and (max-width: 800px) and (min-width: 0px) {
  .contact-form colgroup {
    display: none;
  }

  .contact-form table {
    margin: 0 0 30px;
  }

  .contact-form table tr {
    border-bottom: 1px dashed #CCC;
  }

  .contact-form table th,
  .contact-form table td {
    display: block;
  }

  .contact-form table th {
    padding: 15px 0 10px;
  }

  .contact-form table td {
    padding: 0 0 15px;
  }

  .contact-form .preferred-date {
    overflow: hidden;
  }

  .contact-form .preferred-date .date {
    width: 100%;
    float: none;
    margin: 0 0 10px;
  }

  .contact-form .preferred-date .time {
    width: 100%;
  }

  .contact-form .birthday select {
    width: auto;
    padding: 15px 30px 15px 15px;
  }

  .contact-form .birthday .year {
    margin: 0 5px;
  }

  .contact-form .birthday .month {
    margin: 0 5px;
  }

  .contact-form .birthday .day {
    margin: 0 0 0 5px;
  }

  .contact-form .submit-btns [type=submit] {
    padding: 15px;
    width: 250px;
  }

  .contact-form .submit-btns [type=submit].back {
    margin-right: 25px;
  }
}

@media screen and (max-width: 800px) and (min-width: 0px) {

  /*-----------------------------------------------------------
  body SP
  -----------------------------------------------------------*/
  body {
    font-size: 14px;
    line-height: 1.8;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
  }

  /*-----------------------------------------------------------
  header SP
  -----------------------------------------------------------*/
  .h-container {
    height: 95px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .h-logo {
    width: 250px;
  }

  .h-tel {
    display: none;
  }

  /*-----------------------------------------------------------
  g-navi SP
  -----------------------------------------------------------*/
  /* PC用のナビを非表示 */
  .pc-navi {
    display: none;
  }

  /* PC用のナビを非表示 */
  .sp-navi {
    display: block;
  }

  /* ボタン類 */
  :root {
    --navi-background: #fff;
    --navi-border-color: #391E04;
    --navi-text-color: #391E04;
    --humberger: #fff;
    --navi-font: "FOT-筑紫A丸ゴシック Std B";
  }

  .sp-navi-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--navi-background);
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 10000;
  }

  .sp-navi-btns div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
  }

  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-size: 10px;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 10px 0;
  }

  .sp-navi-btns .item .img {
    display: block;
  }

  .sp-navi-btns .item .img img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 20px;
    margin-bottom: 8px;
  }

  .sp-navi-btns .item .ttl {
    display: block;
  }

  .sp-navi-btns .humberger {
    background: #93C31E;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 10px;
  }

  .sp-navi-btns .humberger .ttl {
    display: block;
    color: #fff;
    font-family: var(--navi-font);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  .sp-navi-btns .humberger span:not(.ttl) {
    background: var(--humberger);
    position: absolute;
    left: 50%;
    width: 22px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .sp-navi-btns .humberger span:not(.ttl):nth-of-type(1) {
    top: 20px;
  }

  .sp-navi-btns .humberger span:not(.ttl):nth-of-type(2) {
    top: 26px;
  }

  .sp-navi-btns .humberger span:not(.ttl):nth-of-type(3) {
    top: 32px;
  }

  .sp-navi-btns .humberger.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 6px) rotate(-45deg);
    transform: translate(-50%, 6px) rotate(-45deg);
  }

  .sp-navi-btns .humberger.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-navi-btns .humberger.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -6px) rotate(45deg);
    transform: translate(-50%, -6px) rotate(45deg);
  }

  /* 中身 */
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }

  .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    margin: 0 0 30px;
  }

  .sp-navi-list>li {
    border-bottom: 1px solid #d6d6d6;
  }

  .sp-navi-list>li>a {
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0 15px 23px;
    position: relative;
  }

  .sp-navi-list>li>a:before {
    content: "";
    display: block;
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 16px;
  }

  .sp-navi-list>li:first-of-type>a:before,
  .sp-navi-list>li:nth-of-type(3n+1)>a:before {
    border-color: #93C31E;
  }

  .sp-navi-list>li:nth-of-type(2)>a:before,
  .sp-navi-list>li:nth-of-type(3n+2)>a:before {
    border-color: #EE7600;
  }

  .sp-navi-list>li:nth-of-type(3n)>a:before {
    border-color: #00A54D;
  }

  .sp-navi-list>li.sp-dropdown {
    position: relative;
  }

  .sp-navi-list>li.sp-dropdown::before,
  .sp-navi-list>li.sp-dropdown::after {
    content: "";
    background-color: #391E04;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .sp-navi-list>li.sp-dropdown::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }

  .sp-navi-list>li.sp-dropdown::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }

  .sp-navi-list>li.sp-dropdown.is-on::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .sp-navi-list>li.sp-dropdown>a {
    padding: 15px 40px 15px 23px;
  }

  .sp-navi-list .child {
    padding: 0 0 15px;
  }

  .sp-navi-list .child>ul>li {
    position: relative;
    padding-left: 15px;
  }

  .sp-navi-list .child>ul>li::before {
    content: "-";
    color: #93C31E;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sp-navi-list .child>ul>li>a {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
  }

  .sp-navi-other .item+.item {
    margin: 15px 0 0;
  }

  .sp-navi-other .tel {
    text-align: center;
    color: #333;
    display: block;
    font-size: 23px;
    text-decoration: none;
    line-height: 1;
    margin: 0 0 10px;
  }

  .sp-navi-other .tel i {
    font-size: 15px;
  }

  .sp-navi-other .txt {
    text-align: center;
    font-size: 14px;
    line-height: 1;
  }

  /*-----------------------------------------------------------
  hero SP
  -----------------------------------------------------------*/
  .hero {
    padding: 0 0 64px;
  }

  .hero-slider {
    width: 100%;
    margin: 0 auto;
  }

  .hero-slider img {
    border-radius: 0;
  }

  .hero-desc {
    padding: 0 5%;
    text-align: center;
    width: 100%;
    left: 0;
    bottom: 30px;
    z-index: 5;
  }

  .hero-logo {
    display: none;
  }

  .hero-ttl {
    font-size: 25px;
    margin-bottom: 25px;
  }

  .hero-tel {
    padding: 20px 40px;
  }

  /*-----------------------------------------------------------
  top contents SP
  -----------------------------------------------------------*/
  .container {
    margin: 0 auto;
    max-width: 1024px;
    width: 90%;
  }

  .t-ttl01 {
    background: url(../images/under/u-h2@2x.png) no-repeat center top/20px auto;
    font-size: 25px;
    padding: 40px 0 0;
  }

  /*sec01*/
  .sec01 {
    background: #F4EFEA;
    padding: 60px 0;
    position: relative;
  }

  .sec01:before,
  .sec01:after {
    height: 10px;
    background-position: left top;
  }

  .sec01-layout {
    display: block;
    margin-bottom: 40px;
  }

  .sec01-layout .l-ttl {
    display: table;
    margin: 0 auto 30px;
    font-size: 25px;
    padding: 0 0 0 25px;
  }

  .sec01-layout .l-ttl:before {
    width: 18px;
    height: 22px;
    top: 7px;
  }

  .sec01-layout .l-btn {
    text-align: center;
  }

  .sec01-layout .l-desc {
    margin-bottom: 30px;
  }

  .sec01-bnr a {
    font-size: 18px;
    padding: 20px 40px;
  }

  .sec01-bnr a:after {
    right: 20px;
  }

  .sec01-list-post time {
    display: block;
    margin-right: 0;
  }

  /*sec02*/
  .sec02 {
    padding: 60px 0;
  }

  .sec02-layout {
    display: block;
    margin: 0 auto;
    width: 90%;
  }

  .sec02-layout .l-img {
    width: 100%;
    margin: 0 0 30px;
  }

  .sec02-layout .l-desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
  }

  .sec02-layout .l-desc:after {
    width: 71px;
    height: 66px;
    right: 0;
    bottom: -30px;
  }

  .sec02-layout .l-ttl {
    background: url(../images/under/u-h2@2x.png) no-repeat left top/20px auto;
    font-size: 25px;
    padding: 40px 0 0;
    margin-bottom: 30px;
  }

  .sec02-layout .l-txt {
    margin-bottom: 30px;
  }

  /*sec03*/
  .sec03 {
    padding: 0 0 60px;
  }

  .sec03:after {
    height: 10px;
    background-position: left top;
  }

  .sec03-card {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  /*sec04*/
  .sec04 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
  }

  .sec04-layout {
    display: block;
    margin: 0 auto 60px;
  }

  .sec04-layout .l-img {
    width: 100%;
    margin: 0 0 20px;
  }

  .sec04-layout .l-desc {
    padding: 0;
  }

  .sec04-layout .l-desc:after {
    width: 67px;
    height: 62px;
    left: auto;
    bottom: auto;
    right: -15px;
    top: 62px;
    z-index: 1;
  }

  .sec04-layout .l-box {
    padding: 30px 20px;
    margin-bottom: 25px;
  }

  .sec04-layout .l-box .l-ttl02 {
    font-size: 18px;
  }

  .sec04-layout .l-txt {
    margin-bottom: 30px;
  }

  .sec04-card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sec04-card a {
    padding: 15px;
  }

  .sec04-card .card-ico {
    text-align: center;
    margin-bottom: 10px;
  }

  .sec04-card .card-ico img {
    height: 60px;
    width: 60px;
  }

  .sec04-card .card-ttl {
    font-size: 17px;
    margin-bottom: 15px;
    text-align: center;
  }

  /*sec05*/
  .sec05.lazyloaded {
    background: url(../images/sec05_bg_sp@2x.jpg) no-repeat center center/cover;
  }
  .sec05 {
    padding: 60px 0;
  }

  .sec05:after {
    height: 10px;
    background-position: left top;
  }

  .sec05-catch {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 22px;
    line-height: 2;
    margin-bottom: 40px;
    text-align: center;
  }

  .sec05-catch .line {
    background: url(../images/share/border-dot@2x.png) repeat-x left bottom/auto 3px;
    padding: 0 0 10px;
  }

  .sec05-card {
    display: block;
    margin-bottom: 40px;
  }

  .sec05-card li {
    padding: 30px 20px;
    width: 100%;
  }

  .sec05-card li+li {
    margin: 20px 0 0;
  }

  /*sec06*/
  .sec06 {
    padding: 60px 0;
  }

  .sec06-list-post {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
  }

  .sec06-list-post .list-img img {
    width: 100%;
    height: 26.6vw;
  }

  /*-----------------------------------------------------------
  footer SP
  -----------------------------------------------------------*/
  .pagetop {
    display: none;
  }

  .f-wrapper {
    padding: 60px 0 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .f-logo {
    margin: 0 auto 20px;
    width: 250px;
  }

  .f-tel {
    text-align: center;
    margin: 0 0 10px;
  }

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

  .sitemap {
    padding: 40px 0 50px;
  }

  .sitemap ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .sitemap ul li:after {
    font-size: 13px;
    padding: 0 5px;
  }

  .sitemap ul li a {
    font-size: 13px;
  }

  .copyright {
    padding: 15px 0 80px;
  }

  .copyright:after {
    width: 71px;
    height: 66px;
    right: 0;
    bottom: 90px;
    z-index: 1;
  }

  /*------------
  診療時間 SP
  --------------*/
  .time-table th {
    font-size: 12px;
  }

  .time-table th:first-child {
    width: 100px;
  }

  .time-table th:last-child {
    width: 45px;
  }

  .time-table td {
    font-size: 12px;
  }

  .time-table td:first-child {
    font-size: 12px;
  }

  .table-txt {
    font-size: 13px;
  }

  /*-----------------------------------------------------------
  アニメーション SP
  -----------------------------------------------------------*/
  .sec01 .is-fade {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  /*-----------------------------------------------------------
  under SP
  -----------------------------------------------------------*/
  .breadcrumb {
    margin: 5px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .breadcrumb ul {
    margin: 0 auto;
    max-width: 1024px;
    width: 90%;
  }

  main.column2 {
    display: block;
  }

  main.column2 .contents {
    width: 100%;
    margin-bottom: 50px;
  }

  main.column2 .side-navi {
    width: 100%;
    margin-bottom: 50px;
  }

  .page-ttl {
    height: 150px;
    padding: 20px;
  }

  .page-ttl:before,
  .page-ttl:after {
    height: 10px;
    background-position: left top;
  }

  .page-ttl h1 {
    font-size: 25px;
  }

  /*-----------------------------------------------------------
  under parts SP
  -----------------------------------------------------------*/
  .u-h2 {
    background: url(../images/under/u-h2@2x.png) no-repeat center top/20px auto;
    font-size: 23px;
    padding: 40px 0 0;
    margin-bottom: 30px;
  }

  .u-h3,
  .postdata h3 {
    font-size: 20px;
    padding: 0 0 8px;
    margin: 0 0 25px;
  }

  .u-h4,
  .postdata h4 {
    font-size: 16px;
    padding: 0 0 0 25px;
    margin: 0 0 20px;
    position: relative;
  }

  .u-h4::before,
  .postdata h4::before {
    width: 15px;
    height: 15px;
    top: 5px;
  }

  .u-h5,
  .postdata h5 {
    font-size: 15px;
    margin: 0 0 15px;
  }

  /*box SP*/
  .short {
    margin: 0 0 40px;
  }

  .tall {
    margin: 0 0 60px;
  }

  /*Column SP*/
  .col2,
  .col3,
  .col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .col2-col2,
  .col3-col2,
  .col4-col2 {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }

  /*layout SP*/
  .l-imgR,
  .l-imgL {
    display: block;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
  }

  .l-imgR .l-img {
    margin: 0 0 15px;
  }

  .fl-imgR .l-img,
  .fl-imgL .l-img {
    float: none;
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

  .fl-imgR .l-img.small,
  .fl-imgL .l-img.small {
    width: 100%;
  }

  /*list SP*/
  .list-disc li:before {
    top: 10px;
  }

  /*table SP*/
  .table-style01.sp-block {
    border: 1px solid #ddd;
  }

  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    border: none;
    display: block;
    width: 100%;
  }

  .table-style01 th,
  .table-style01 td {
    font-size: 14px;
    line-height: 1.5;
  }

  .table-scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll:before {
    content: "※横にスクロールできます。";
    font-size: 13px;
    color: #F44336;
  }

  .table-scroll table {
    width: 800px;
  }

  /*btn-style*/
  .btn-style01 {
    display: block;
  }

  .btn-style01.btn-small {
    padding: 14px 60px;
  }

  /*------------
  Flow
  --------------*/
  .list-flow-01 {
    display: block;
  }

  .list-flow-01>li {
    width: 100%;
    margin: 0 0 70px;
  }

  .list-flow-01>li::after {
    top: inherit;
    bottom: -50px;
    right: 50%;
    -webkit-transform: translate(50%, 0) rotate(90deg);
    transform: translate(50%, 0) rotate(90deg);
  }

  .list-flow-01>li:last-child::after {
    display: none;
  }

  .list-flow-01>li:nth-child(3n) {
    margin: 0 0 70px;
  }

  .list-flow-01>li:last-child {
    margin: 0;
  }

  .list-flow-02 {
    padding: 15px;
  }

  .list-flow-02>li {
    display: block;
  }

  .list-flow-02 .list-img {
    width: 100%;
    margin: 0 0 30px;
  }

  .list-flow-02 .list-ttl {
    display: block;
    font-size: 20px;
    margin: 0 0 15px;
  }

  .list-flow-02 .num {
    display: table;
    font-size: 12px;
    line-height: 25px;
    padding: 0 2px 1px 8px;
    margin: 0 0 15px;
  }

  .list-flow-02 .num::after {
    border-width: 13px 0 13px 10px;
    right: -10px;
  }

  /*------------
  カードデザイン
  --------------*/
  .list-card-01 {
    display: block;
  }

  .list-card-01.column2 li {
    padding: 20px 15px;
    width: 100%;
  }

  .list-card-01.column2 li:last-child {
    margin-bottom: 0;
  }

  .list-card-01.column3::after {
    display: none;
  }

  .list-card-01.column3 li {
    padding: 20px 15px;
    width: 100%;
  }

  .list-card-01.column3 li:last-child {
    margin-bottom: 0;
  }

  .list-card-01 .list-ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .list-card-01 .list-img {
    margin-bottom: 15px;
  }

  .list-card-02.column3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-card-02.column3>li {
    padding: 30px 20px;
  }

  .list-card-02.column4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-card-02.column4>li {
    padding: 30px 20px;
  }

  .list-card-02 .list-ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .list-card-02 .list-img {
    margin-bottom: 15px;
  }

  /*------------
  ボックスデザイン
  --------------*/
  .box-style01 {
    padding: 25px;
  }

  .box-style02 {
    padding: 25px;
  }

  /*------------
  メリット、デメリット
  --------------*/
  .merit-demerit {
    display: block;
  }

  .merit-demerit .item {
    padding: 20px 25px;
    width: 100%;
  }

  .merit-demerit .item+.item {
    margin-top: 30px;
  }

  .merit-demerit .item-ttl {
    margin: 0 0 15px;
  }

  /*------------
  料金表
  --------------*/
  .list-price.column2 {
    display: block;
  }

  .list-price.column2>li {
    width: 100%;
  }

  /*------------
  よくある質問
  --------------*/
  .faq-style dt {
    padding: 0 25px 10px 0;
    margin: 0 0 15px;
  }

  .faq-style dt .txt {
    font-size: 15px;
    line-height: 1.5;
    padding: 3px 0 0;
  }

  .faq-style dt::after {
    top: 2px;
  }

  .faq-style dd {
    display: none;
  }

  .faq-style dd+dt {
    margin-top: 15px;
  }

  .faq-style .ico {
    font-size: 17px;
    width: 30px;
    height: 30px;
    line-height: 27px;
    margin: 0 13px 0 0;
    padding: 0;
  }

  /*------------
  アンカーリンク
  --------------*/
  .list-anchor-link {
    display: block;
  }

  .list-anchor-link li {
    margin: 0;
  }

  .list-anchor-link li::after {
    display: none;
  }

  .list-anchor-link a {
    padding: 0 0 0 25px;
  }

  .list-anchor-link a::before {
    right: inherit;
    left: 0;
    top: 6px;
  }

  /*------------
  スタッフページ
  --------------*/
  .staff-layout {
    display: block;
  }

  .staff-layout .l-img {
    text-align: center;
    margin: 0 0 30px;
  }

  .staff-layout .l-desc {
    margin: 0;
  }

  .staff-layout .job {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .staff-layout .name {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .staff-layout .jp {
    display: block;
    font-size: 25px;
    margin: 0 0 10px;
  }

  .staff-layout .en {
    font-size: 14px;
  }

  .staff-profile {
    display: block;
  }

  .staff-profile .item {
    padding: 25px;
    width: 100%;
  }

  .staff-profile .item+.item {
    margin-top: 30px;
  }

  .dl-career {
    font-size: 13px;
  }

  /*------------
  診療案内
  --------------*/
  .intro-layout {
    display: block;
    background: #F4EFEA;
    border-radius: 20px;
    padding: 20px;
  }

  .intro-layout .l-img {
    width: 100%;
    margin-bottom: 15px;
  }

  .intro-layout .l-desc {
    padding: 0;
    width: 100%;
    margin: 0;
  }

  .intro-layout .l-ttl {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 22px;
    line-height: 2;
    margin-bottom: 30px;
  }

  .intro-layout .l-ttl .line {
    background: url(../images/share/border-dot@2x.png) repeat-x left bottom/auto 3px;
    padding: 0 0 10px;
  }

  /*-----------------------------------------------------------
  common SP
  -----------------------------------------------------------*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .u-tel {
    font-size: 25px;
  }

  .u-tel i {
    width: 18px;
  }

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

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

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

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

  .sp-map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

  .sp-map iframe,
  .sp-map object,
  .sp-map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /*------------
  投稿パーツ SP
  --------------*/
  /*Post Type01 SP*/
  .list-post-type01 {
    margin: 0 0 50px;
  }

  .list-post-type01 li+li {
    margin-top: 20px;
  }

  .list-post-type01 .list-ttl {
    font-size: 18px;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }

  .list-post-type01 .list-img {
    float: left;
    margin: 0 15px 0 0;
    width: 40%;
  }

  .list-post-type01 .list-img img {
    width: 100%;
    height: 25vw;
  }

  .list-post-type01 .list-desc {
    margin: -5px 0 0;
  }

  .list-post-type01 time {
    font-size: 12px;
    margin: 0 15px 0 0;
  }

  .list-post-type01 .list-txt {
    font-size: 11px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }

  .list-post-type01 .list-btn {
    margin-top: 15px;
  }

  .list-post-type01 .list-btn a {
    font-size: 11px;
    text-align: center;
    padding: 2px 15px 4px;
  }

  /*詳細ページ SP*/
  .l-post-single .l-ttl {
    font-size: 22px;
    margin: 0 0 30px;
  }

  /*セレクト式カテゴリー SP*/
  .select-area {
    display: block;
    margin: 0 0 30px;
  }

  .select-area .select-item {
    margin: 0;
  }

  .select-area .select-item+.select-item {
    margin-top: 10px;
  }

  .select-area .select-ttl {
    font-size: 15px;
  }

  /*-----------------------------------------------------------
  slick SP
  -----------------------------------------------------------*/
  .clinic-slider {
    margin: 0 auto 15px;
  }

  .clinic-slider-thumb {
    padding: 0 40px;
    max-width: 300px;
  }

  .clinic-slider-thumb .slick-slide::before {
    width: 50px;
    height: 50px;
  }

  .clinic-slider-thumb img {
    width: 50px;
    height: 50px;
  }

  .clinic-slider-thumb .slick-prev,
  .clinic-slider-thumb .slick-next {
    width: 30px;
    height: 30px;
  }
}
