@charset "UTF-8";
/*--------------------------------------------------
変数指定
--------------------------------------------------*/
/* フォント指定変数 */
/* カラー変数 */
/*--------------------------------------------------
要修正
--------------------------------------------------*/
/* 汎用フォントカラー指定 */
.f_red, .color-red1 {
  color: #FF0001 !important;
}

.f_orange, .color-orange1 {
  color: #ff6600 !important;
}

.f_pink, .color-pink1 {
  color: #ef9191 !important;
}

.f_blue, .color-blue1 {
  color: #abc5ea  !important;
}

.f_green, .color-green1 {
  color: #dbedc6 !important;
}

.f_brown, .color-brown1 {
  color: #6d4f2b !important;
}

/*--------------------------------------------------
基本修正不要
--------------------------------------------------*/
/* テキスト装飾 */
.bold {
  font-weight: bold !important;
}

.pad01 {
  padding-left: 1em;
  text-indent: -1em;
}

.pad02 {
  padding-left: 2em;
  text-indent: -2em;
}

/* テキスト配置 */
.alignC {
  text-align: center !important;
}

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

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

.alignJ {
  text-align: justify !important;
}

/* padding */
.p0 {
  padding: 0 !important;
}

.p10 {
  padding: 10px !important;
}

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

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

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

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

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

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

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

.pr0 {
  padding-right: 0 !important;
}

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

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

.pl0 {
  padding-left: 0px !important;
}

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

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

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

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

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

/* margin */
.m0 {
  margin: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

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

.mt5 {
  margin-top: 5px !important;
}

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

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

.mt25 {
  margin-top: 25px !important;
}

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

.mt80 {
  margin-top: 80px !important;
}

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

.mb3 {
  margin-bottom: 3px !important;
}

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

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

.mb13 {
  margin-bottom: 13px !important;
}

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

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

.mb25 {
  margin-bottom: 25px !important;
}

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

.mb35 {
  margin-bottom: 35px !important;
}

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

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

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

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

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

.ml15 {
  margin-left: 15px !important;
}

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

.ml25 {
  margin-left: 25px !important;
}

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

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

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

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

.ml70 {
  margin-left: 70px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

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

.mr11 {
  margin-right: 13px !important;
}

.mr15 {
  margin-right: 15px !important;
}

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

.mr25 {
  margin-right: 25px !important;
}

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

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

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

/* 画像装飾 */
img.waku01 {
  border: solid 1px #ddd;
}

img.waku02 {
  padding: 4px;
  border: solid 1px #dddddd;
  background: #FFFFFF;
}

/* clearfix */
.clearfix,
.box01,
.flow_item {
  min-height: 1px;
}

.clearfix:after,
.box01:after,
.flow_item:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
}

/*--------------------------------------------------
フェードイン
--------------------------------------------------*/
/*左フェードイン*/
.left-to-right {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s;
}

.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*右からフェードイン*/
.right-to-left {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.8s;
}

.right-to-left.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*上にフェードイン*/
.down-to-top {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s;
}

.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/*上にフェードイン*/
.top-to-down {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s;
}

.top-to-down.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* 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;
}

/* 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 */
  border-top-width: 1px;
  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: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

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

/**
 * 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 */
  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[type="submit"],
input[type="text"],
optgroup,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  box-shadow: none;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
  border: none;
}

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

[type="radio"] {
  -webkit-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;
  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: normal;
}

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

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

/*--------------------------------------------------
共通
--------------------------------------------------*/
/*--------------------------------------------------
トップ
--------------------------------------------------*/
/*--------------------------------------------------
下層
--------------------------------------------------*/
.sp {
  display: none !important;
}

header {
  width: 100%;
}

body {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #515151;
  width: 100%;
  min-width: 1080px;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

.container_top {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.main_sub .h1_bg {
  background-color: #fff;
}

.main_sub .h1_bg h1 {
  width: 95%;
  margin: 0 auto;
  color: #515151;
  font-size: 14px;
}

.main_sub .main_sub_info .inner_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: 0 auto 15px;
  box-sizing: border-box;
}

.main_sub .main_sub_info .inner_contents .contents_left .clinic_name {
  display: inline-block;
}

.main_sub .main_sub_info .inner_contents .contents_right .clinic_tel {
  display: inline-block;
}

.main_sub .main_sub_info .inner_contents .contents_right .facebook_link {
  display: inline-block;
  margin: 28px;
  transition: all 0.3s;
}

.main_sub .main_sub_info .inner_contents .contents_right .facebook_link:hover {
  opacity: 0.7;
}

.sticky-wrapper {
  width: 100% !important;
}

nav {
  width: 100% !important;
  background-color: #f3fbfb;
  z-index: 1000;
}

nav .layer01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1080px;
  margin: 0 auto;
}

nav .layer01 .l01_item {
  list-style: none;
  width: calc(100% / 6);
}

nav .layer01 .home_item img {
  display: block;
  width: 20%;
  margin: 0 auto;
  text-align: centerl;
}

nav .layer01 .l01_item .l01_link {
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 129px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
}

nav .layer01 .l01_item .l01_link:hover {
  background-color: #d2eaec;
}

nav .layer01 .l01_item .l01_link span {
  font-family: 'Caveat', cursive;
  color: #5ec1d3;
  font-size: 15px;
  letter-spacing: 2px;
}

nav .layer01 .l01_item .l01_link span::first-letter {
  text-transform: uppercase;
}

nav .layer02 {
  display: none;
  width: 100%;
  background-color: rgba(81, 81, 81, 0.2);
  padding: 10px 0 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

nav .layer02 .layer02_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1080px;
  margin: 0 auto;
}

nav .layer02 .layer02_inner .l02_item {
  list-style: none;
}

nav .layer02 .layer02_inner .l02_item .l02_link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  background-color: #70CF84;
  margin-bottom: 10px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

nav .layer02 .layer02_inner .l02_item .l02_link:hover {
  background-color: #6fd1b6;
  box-shadow: 0px 0px 5px 4px rgba(0, 0, 0, 0.2);
}

.bg-slider {
  position: relative;
  width: 100%;
  height: 600px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-slider .inner {
  width: 1080px;
  margin: 0 auto;
}

.bg-slider .top_news_link {
  position: absolute;
  right: 10%;
  bottom: 20px;
}

.bg-slider .top_news_link a {
  display: block;
  transition: all 0.3s;
}

.bg-slider .top_news_link a:hover {
  opacity: 0.7;
}

/*--------------------------------------------
infection_prevention_contents
--------------------------------------------*/
.infection_prevention_contents {
  width: 100%;
  margin: 40px 0 50px 0;
  background-color: #fff;
}

.infection_prevention_contents .innerContents {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1080px;
  height: 244px;
  margin: 0 auto;
  background: url("../images/index/infection_prevention_bg.png") no-repeat center center;
}

.infection_prevention_contents .innerContents::after {
  position: absolute;
  content: url("../images/index/infection_prevention_img.png");
  top: 32px;
  left: 43px;
}

.infection_prevention_contents .innerContents h2 {
  margin-bottom: 20px;
  text-align: center;
}

.infection_prevention_contents .innerContents p {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}

.infection_prevention_contents .innerContents .infection_prevention_link {
  display: block;
  margin: 0 auto;
  width: 249px;
  padding: 15px 0;
  background: url("../images/index/infection_prevention_more_bg.png") no-repeat center center;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.infection_prevention_contents .innerContents .infection_prevention_link:hover {
  opacity: 0.7;
}

/*--------------------------------------------
greeting_contents
--------------------------------------------*/
.greeting_contents {
  width: 100%;
  margin-bottom: 110px;
  background-color: #fff;
}

.greeting_contents .innerContents {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding-bottom: 112px;
  background: url("../images/index/greeting_doctor_img.jpg") no-repeat bottom left;
}

.greeting_contents .innerContents .inner_greeting_contents {
  width: 59%;
  margin: 0 0 0 auto;
  padding: 52px 0 129px 68px;
  box-sizing: border-box;
  background: linear-gradient(to right, #6fd1b6, #95dfa4);
  z-index: 100;
}

.greeting_contents .innerContents .inner_greeting_contents h2 {
  position: relative;
  margin-bottom: 50px;
}

.greeting_contents .innerContents .inner_greeting_contents h2::after {
  position: absolute;
  content: url("../images/index/greeting_logo.png");
  top: -50px;
  right: 8%;
}

.greeting_contents .innerContents .inner_greeting_contents p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2.5;
}

/*--------------------------------------------
feature_contents
--------------------------------------------*/
.feature_contents {
  width: 100%;
  background: url("../images/index/feature_bg.jpg") no-repeat center center;
  background-size: cover;
}

.feature_contents .innerContents {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 100px 0;
}

.feature_contents .innerContents h2 {
  margin-bottom: 120px;
  text-align: center;
}

.feature_contents .innerContents .feature01_box_contents {
  position: relative;
  width: 100%;
  margin-bottom: 150px;
  padding-left: 5%;
  box-sizing: border-box;
}

.feature_contents .innerContents .feature01_box_contents::after {
  position: absolute;
  content: "";
  top: 31px;
  right: 0;
  width: 53%;
  max-width: 900px;
  height: 468px;
  background: url("../images/index/feature01_img.png") no-repeat top left;
  background-size: cover;
}

.feature_contents .innerContents .feature01_box_contents .feature01_box {
  width: 50%;
  padding: 20px 43px 60px 43px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
}

.feature_contents .innerContents .feature01_box_contents .feature01_box h3 {
  width: 530px;
  margin-bottom: 39px;
}

.feature_contents .innerContents .feature01_box_contents .feature01_box h3 img {
  width: 100%;
}

.feature_contents .innerContents .feature01_box_contents .feature01_box .text_box {
  width: 84%;
}

.feature_contents .innerContents .feature01_box_contents .feature01_box .text_box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
}

.feature_contents .innerContents .feature_box_contents {
  width: 100%;
  margin: 0 auto;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item {
  width: 50%;
  margin-bottom: 78px;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item a {
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item a .feature_item_img {
  max-width: 526px;
  height: 304px;
  margin: 0 auto 10px;
  padding: 0;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item a h3 {
  padding-left: 39px;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item a .feature_item_img img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: .5s ease-in-out;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item a .feature_item_img:hover img {
  transform: scale(1.2);
}

/*ホバーエフェクト*/
/*--------------------------------------------
treatment_contents
--------------------------------------------*/
.treatment_contents {
  width: 100%;
  background: url("../images/index/treatment_bg.jpg") no-repeat center center;
  background-size: cover;
}

.treatment_contents .innerContents {
  position: relative;
  width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 107px 0 115px 0;
}

.treatment_contents .innerContents::after {
  position: absolute;
  content: url("../images/index/treatment_message.png");
  right: 0;
  bottom: 90px;
}

.treatment_contents .innerContents h2 {
  margin-bottom: 120px;
  text-align: center;
}

.treatment_contents .innerContents .treatment_list_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item {
  width: 315px;
  height: 86px;
  margin-bottom: 40px;
  background-size: cover;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item:last-child {
  margin-bottom: 0;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item01 {
  background: url("../images/index/treatment01_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item02 {
  background: url("../images/index/treatment02_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item03 {
  background: url("../images/index/treatment03_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item04 {
  background: url("../images/index/treatment04_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item05 {
  background: url("../images/index/treatment05_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item06 {
  background: url("../images/index/treatment06_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item07 {
  background: url("../images/index/treatment07_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item08 {
  background: url("../images/index/treatment08_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item09 {
  background: url("../images/index/treatment09_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item10 {
  background: url("../images/index/treatment10_bg.png") no-repeat center center;
}

.treatment_contents .innerContents .treatment_list_contents a {
  display: block;
  padding-top: 20px;
  box-sizing: border-box;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item01 a:hover {
  color: #5cc1c1;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item02 a:hover {
  color: #f9d2dc;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item03 a:hover {
  color: #fac875;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item04 a:hover {
  color: #c6b8da;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item05 a:hover {
  color: #c8e7e7;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item06 a:hover {
  color: #7aa2c9;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item07 a:hover {
  color: #e4cfaf;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item08 a:hover {
  color: #b9d994;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item09 a:hover {
  color: #4fc2f1;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item10 a:hover {
  color: #e992a2;
}

/*--------------------------------------------
news_contents
--------------------------------------------*/
.news_contents {
  width: 100%;
  background-color: #95dfa4;
}

.news_contents .innerContents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
  padding: 78px 0;
  box-sizing: border-box;
}

#news {
  position: relative;
  width: 70%;
  padding: 51px 61px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  font-weight: 500;
}

#news::after {
  position: absolute;
  content: url("../images/index/news_decoration.png");
  top: -40px;
  right: -70px;
}

#news .inner_section {
  width: 100%;
  margin: 0 auto;
  height: 220px;
  overflow: auto;
  box-sizing: border-box;
}

#news .inner_section::-webkit-scrollbar {
  width: 5px;
}

#news .inner_section::-webkit-scrollbar-track {
  background: #eef2f1;
}

#news .inner_section::-webkit-scrollbar-thumb {
  background: #95dfa4;
}

#news dl {
  display: flex;
  justify-content: flex-start;
  margin-right: 20px;
  padding: 30px 0;
  border-bottom: 2px dotted #97eae5;
}

#news dl:first-child {
  padding-top: 0px;
}

#news dt {
  margin-right: 27px;
  color: #6fd1b6;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1px;
}

#news dd {
  color: #5a5a5a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

#news .news_title {
  color: #6fd1b6;
  font-weight: bold;
}

#news dd a {
  color: #6fd1b6;
  transition: all 0.3s;
}

#news dd a:hover {
  opacity: 0.7;
}

/*--------------------------------------------
フッター情報
--------------------------------------------*/
.inner_footer {
  width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 52px 0 72px 0;
}

.inner_footer .footer_info {
  display: flex;
  justify-content: space-between;
}

.inner_footer .footer_info .footer_infoL {
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.inner_footer .footer_info .footer_infoL .clinic_name {
  display: inline-block;
  margin-bottom: 10px;
}

.inner_footer .footer_info .footer_infoL .clinic_info_txt {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.inner_footer .footer_info .footer_infoL .tell_text {
  display: block;
  margin-bottom: 30px;
}

.inner_footer .footer_info .footer_infoL .access_text {
  display: inline-block;
  padding: 10px 25px;
  box-sizing: border-box;
  border-radius: 22px;
  background: linear-gradient(to right, #6fd1b6, #95dfa4);
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
}

.inner_footer .footer_info .footer_infoL .footerinfo_box {
  width: 300px;
}

.inner_footer .footer_info .footer_infoL .bnr_box {
  width: 230px;
  margin-right: 15px;
}

.inner_footer .footer_info .footer_infoL .bnr_box a {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  transition: all .3s;
}

.inner_footer .footer_info .footer_infoL .bnr_box a img {
  display: block;
  width: 100%;
}

.inner_footer .footer_info .footer_infoL .bnr_box a:hover {
  opacity: .5;
}

.inner_footer .footer_info .footer_infoR {
  width: 582px;
}

.schedule .scheduleTable {
  width: 100%;
  margin-bottom: 15px;
}

.schedule .scheduleTable th, .schedule .scheduleTable td {
  text-align: center;
}

.schedule .scheduleTable thead {
  background: linear-gradient(to right, #6fd1b6, #95dfa4);
}

.schedule .scheduleTable thead th {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2.9px;
  line-height: 55px;
}

.schedule .scheduleTable tbody tr {
  line-height: 65px;
  border-bottom: 2px solid #95dfa4;
}

.schedule .scheduleTable tbody tr th {
  width: 30%;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

.schedule .scheduleTable tbody tr td {
  font-size: 20px;
  font-weight: bold;
}

.schedule .scheduleTable tbody tr td.open {
  background: url("../images/common/schedule_icon.png") no-repeat center center;
}

.schedule .scheduleTable tbody tr td.other {
  color: #70d6e2;
}

.schedule .scheduleTable tbody tr td:last-child {
  width: 16% !important;
}

.schedule .notice {
  margin-bottom: 30px;
  font-size: 17px;
  font-weight: 500;
}

.schedule .notice .other {
  color: #70d6e2;
}

.footer_link_area {
  display: flex;
  justify-content: space-between;
}

.footer_link_area a {
  display: block;
  padding: 15px 17px;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer_link_area a:hover {
  opacity: 0.7;
}

.footer_link_area .footer_link01 {
  background: url("../images/common/footer_link01_bg.png") no-repeat center center;
  background-size: cover;
}

.footer_link_area .footer_link02 {
  background: url("../images/common/footer_link02_bg.png") no-repeat center center;
  background-size: cover;
}

/*--------------------------------------------
フッターリンク
--------------------------------------------*/
.footer_link_menu {
  position: relative;
  width: 100%;
  background-color: #6fd1b6;
}

.footer_link_menu:before {
  position: absolute;
  content: url("../images/common/footer_menu_decoration01.png");
  top: -16px;
  left: 29px;
}

.footer_link_menu .inner_footer_link {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer_link_menu .inner_footer_link .footer_link_contents {
  position: relative;
  display: flex;
  width: 50%;
  justify-content: flex-start;
  padding: 70px 0 120px 0;
  padding-left: 15%;
}

.footer_link_menu .inner_footer_link .footer_link_contents::after {
  position: absolute;
  content: url("../images/common/footer_menu_decoration02.png");
  top: -20px;
  right: -10px;
}

.footer_link_menu .inner_footer_link .footer_link_contents .footer_link_item:first-child {
  margin-right: 70px;
}

.footer_link_menu .inner_footer_link .footer_link_contents .footer_link_item li {
  position: relative;
  padding-left: 25px;
  list-style: none;
  text-align: left;
}

.footer_link_menu .inner_footer_link .footer_link_contents .footer_link_item li:first-child {
  padding-left: 0;
}

.footer_link_menu .inner_footer_link .footer_link_contents .footer_link_item li h2 {
  width: 125px;
}

.footer_link_menu .inner_footer_link .footer_link_contents .footer_link_item li h2 img {
  width: 100%;
}

.footer_link_menu .inner_footer_link .footer_link_contents .footer_link_item li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2.5;
  text-decoration: none;
  transition: all 0.3s;
}

.footer_link_menu .inner_footer_link .footer_link_contents .footer_link_item li a:hover {
  color: #016f51;
}

.footer_link_menu .inner_footer_link .footer_link_contents .footer_link_item li:first-child {
  margin-bottom: 30px;
}

.footer_link_menu .inner_footer_link .footer_link_contents .footer_link_item li:not(:first-child):before {
  position: absolute;
  content: url("../images/common/footer_menu_list_icon.png");
  top: 5px;
  left: 0;
}

.footer_link_menu .inner_footer_link .footer_map_contents {
  width: 50%;
}

.footer_link_menu .inner_footer_link .footer_map_contents iframe {
  width: 100%;
}

.copyright_box {
  padding: 80px 0;
  color: #6fd1b6;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}

.pagetop {
  position: fixed;
  bottom: 30px;
  right: 55px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform: scale(0.3);
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.pagetop:hover {
  cursor: pointer;
}

.pagetop.show {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*--------------------------------------------
下層メインビジュアル
--------------------------------------------*/
.h1_img {
  width: 100%;
  background: url("../images/common/h1_bg.jpg") center no-repeat;
}

.h1_img .inner_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
}

.h1_img .inner_contents .low_main_ttl {
  font-weight: bold;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.h1_img .inner_contents .low_main_ttl .ja {
  font-size: 40px;
}

.h1_img .inner_contents .low_main_ttl .eng {
  font-size: 25px;
  margin-top: 20px;
}

.h1_img .inner_contents .low_main_ttl .eng::first-letter {
  text-transform: uppercase;
}

.breadcrumb_wrapper .breadcrumb {
  font-size: 16px;
  line-height: 1;
  background-color: #5ec1d3;
}

.breadcrumb_wrapper .breadcrumb ol {
  display: flex;
  align-items: center;
  width: 1080px;
  height: 45px;
  margin: 0 auto;
}

.breadcrumb_wrapper .breadcrumb ol li {
  margin-right: 20px;
  list-style: none;
  color: #fff;
}

.breadcrumb_wrapper .breadcrumb ol li:first-child {
  padding-left: 0;
}

.breadcrumb_wrapper .breadcrumb ol li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.fa-map-marker-alt {
  margin-right: 3px;
}

.fa-caret-right {
  padding-right: 8px;
}

.low_page {
  width: 100%;
}

.low_page section {
  width: 100%;
  box-sizing: border-box;
  padding: 90px 0;
}

.low_page section:nth-child(2n) {
  background: #f8fafb;
}

.low_page section:nth-child(2n) .table01 tr td, .low_page section:nth-child(2n) .index_box {
  background-color: #fff;
}

.low_page section:nth-child(2n) .box01 {
  background-color: #fff;
}

.low_page section:nth-child(2n) .box01 .table01 td {
  background-color: #fff;
}

.low_page section .inner_section {
  width: 1080px;
  box-sizing: border-box;
  margin: 0 auto;
}

.low_page section .inner_section p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.s2_s:not(:last-child) {
  margin-bottom: 50px;
}

.s3_s:not(:last-child) {
  margin-bottom: 45px;
}

.s4_s:not(:last-child) {
  margin-bottom: 30px;
}

.low_ttl01 {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 90px;
  position: relative;
}

.low_ttl01::after {
  content: " ";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #5ec1d3;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

.low_ttl02 {
  color: #1ED381;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-bottom: 2px dotted #7AE4F1;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
}

.low_ttl03 {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  padding: 5px 0 5px 15px;
  margin-bottom: 25px;
  border-left: 4px solid #5ec1d3;
}

.low_ttl04 {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #5ec1d3;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

.headline01 {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 20px !important;
  line-height: 1.8 !important;
  color: #696969;
}

.doctor_name {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 18px !important;
  line-height: 1;
  text-align: right;
  color: #696969;
  margin-top: 60px;
  margin-bottom: 0 !important;
}

.marker {
  display: inline-block;
  border-bottom: 2px dotted #696969;
  margin: 0 5px;
}

.contents_img {
  display: block;
  float: right;
  width: 400px;
  margin-left: 40px;
}

.contents_img.w40 {
  width: 400px;
  height: 300px;
}

.contents_img.w30 {
  width: 300px;
  height: 225px;
}

.contents_img.fit_contain {
  background-color: #fff;
}

.contents_img.fit_contain img {
  object-fit: contain;
  object-position: center;
}

.contents_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.contents_img figcaption {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  padding: 10px 20px;
  background-color: #CDE8E8;
  margin-top: 5px;
  border-radius: 10px;
}

.contents_img figcaption span {
  font-weight: bold;
  display: block;
}

.centor_img {
  display: block;
  margin: 0 auto;
  width: 500px;
}

.centor_img.w90 {
  width: 900px;
}

.centor_img.w80 {
  width: 800px;
}

.centor_img.w70 {
  width: 700px;
}

.centor_img.w60 {
  width: 600px;
}

.centor_img.w50 {
  width: 500px;
}

.centor_img.w40 {
  width: 400px;
}

.centor_img.w30 {
  width: 300px;
}

.centor_img img {
  width: 100%;
  border-radius: 10px;
}

.centor_img figcaption {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  padding: 10px 20px;
  background-color: #CDE8E8;
  margin-top: 5px;
  border-radius: 10px;
}

.centor_img figcaption span {
  font-weight: bold;
  display: block;
}

/*--------------------------------------------------
ボックス01
--------------------------------------------------*/
.box01 {
  padding: 30px 30px 18px 30px;
  border: 1px solid #D9F3EF;
  border-radius: 10px;
  background-color: #f5f5f5;
}

.box01:not(:last-child) {
  margin-bottom: 30px;
}

.box01 .box01_ttl {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 22px;
  color: #696969;
  padding: 0 20px 10px;
  border-bottom: 1px solid #696969;
  margin-bottom: 30px;
}

.link_btn {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #696969;
  text-decoration: none;
  display: inline-flex;
  margin-right: 15px;
  align-items: center;
  background-color: #fff;
  border: 1px solid #696969;
  padding: 10px 60px 10px 45px;
  border-radius: 60px;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
  transition: all .2s;
  position: relative;
}

.link_btn::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 900;
  line-height: 20px;
  color: #696969;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  padding-left: 2px;
  border-radius: 999px;
  box-sizing: border-box;
  border: 1px solid #696969;
  position: absolute;
  right: 15px;
}

.link_btn:hover {
  background-color: #696969;
  color: #fff;
}

.link_btn:hover::after {
  color: #fff;
  border: 1px solid #fff;
}

.table01 {
  width: calc(100% + 10px);
  margin: -5px auto;
  border-collapse: separate;
  border-spacing: 5px;
  position: relative;
  left: -5px;
}

.table01 tr th, .table01 tr td {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  padding: 20px 30px;
  width: auto;
}

.table01 tr th {
  white-space: nowrap;
  background: #CDE8E8;
}

.table01 tr th.w25 {
  width: 25%;
}

.table01 tr th.w35 {
  width: 35%;
}

.table01 tr th.w50 {
  width: 50%;
}

.table01 tr td {
  background-color: #f5f5f5;
}

.table02 {
  width: 100%;
  margin: 0 auto 60px;
}

.table02 thead tr th {
  background-color: #e4e4e4;
  border: 1px solid #d2d2d2;
  vertical-align: middle;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  padding: 15px 10px;
}

.table02 tr th,
.table02 tr td {
  font-size: 16px;
  font-weight: 400;
  box-sizing: border-box;
  padding: 20px 30px;
  width: auto;
  border: 1px solid #fff;
  vertical-align: middle;
}

.table02 tr th {
  background: #CDE8E8;
}

.table02 tr td {
  background-color: #fbfbfb;
}

.table02 tr td .table01_text {
  width: 100%;
  display: inline-block;
  text-align: left !important;
  border-bottom: 1px solid #c3c3c3;
  color: #8f8f8f;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.scroll_table {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.list01 {
  list-style: none;
  margin-bottom: -20px;
}

.list01 li {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.list01 li::before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 900;
  line-height: 20px;
  color: #6fd1b6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  padding-left: 2px;
  border-radius: 999px;
  box-sizing: border-box;
  border: 1px solid #6fd1b6;
  position: absolute;
  top: 4px;
  left: 0px;
}

.list01 li.w100 {
  width: 100% !important;
}

.list02 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  margin-bottom: -20px;
}

.list02 li {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  width: 49%;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 0px 10px 13px 40px;
  border-bottom: 2px dotted #6fd1b6;
  position: relative;
}

.list02 li::before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 900;
  line-height: 20px;
  color: #6fd1b6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  padding-left: 2px;
  border-radius: 999px;
  box-sizing: border-box;
  border: 1px solid #6fd1b6;
  position: absolute;
  top: 4px;
  left: 10px;
}

.list02 li.w100 {
  width: 100% !important;
}

.list02.column_3 {
  justify-content: start;
}

.list02.column_3 li {
  width: 32%;
}

.list02.column_3 li:not(:nth-child(3n)) {
  margin-right: 2%;
}

.list03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -15px;
  list-style: none;
}

.list03 li {
  width: 49.5%;
  margin-bottom: 1%;
}

.list03 li a {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #7CCFCA;
  text-decoration: none;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px 60px 20px 45px;
  border: 1px solid #7CCFCA;
  border-radius: 60px;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
  transition: all .2s;
  position: relative;
}

.list03 li a::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  line-height: 26px;
  color: #7CCFCA;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding-left: 2px;
  border-radius: 999px;
  box-sizing: border-box;
  border: 1px solid #7CCFCA;
  position: absolute;
  right: 20px;
}

.list03 li a:hover {
  background-color: #7CCFCA;
  color: #fff;
}

.list03 li a:hover::after {
  color: #fff;
  border: 1px solid #fff;
}

.counter01 {
  counter-reset: number;
  list-style-type: none;
  margin-left: 15px;
  margin-top: 3px;
}

.counter01 li {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 40px;
  line-height: 1.8;
}

.counter01 li:not(:last-child) {
  margin-bottom: 20px;
}

.counter01 li:before {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #8cd1d1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #8cd1d1;
  position: absolute;
  top: -2px;
  left: 0;
  counter-increment: number;
  content: counter(number);
}

.flex_gellery {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}

.flex_gellery figure {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: relative;
}

.flex_gellery figure.fit_contain {
  background-color: #fff;
  border-radius: 10px;
}

.flex_gellery figure.fit_contain img {
  object-fit: contain;
  object-position: center;
  height: 100%;
}

.flex_gellery figure .num {
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  min-width: 40px;
  box-sizing: border-box;
  padding: 0 10px;
  background-color: #8cd1d1;
  border-radius: 10px;
  position: absolute;
}

.flex_gellery figure img {
  width: 100%;
  border-radius: 10px;
}

.flex_gellery figure figcaption {
  width: 100%;
  height: 100%;
}

.flex_gellery figure figcaption.flex_top_bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.flex_gellery figure figcaption .ttl {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 18px;
  text-align: center;
  display: block;
  background-color: #CDE8E8;
  padding: 10px;
  border-radius: 10px;
}

.flex_gellery figure figcaption .text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

.flex_gellery figure .link_btn {
  font-size: 15px;
  margin-top: 30px;
  padding: 6px 50px 8px 25px;
}

.flex_gellery.column_2 {
  justify-content: space-between;
}

.flex_gellery.column_2 figure {
  padding: 3%;
  width: 49%;
  margin-bottom: 2%;
}

.flex_gellery.column_2.small_flex_gellery {
  justify-content: space-around;
}

.flex_gellery.column_2.small_flex_gellery figure {
  width: 30% !important;
}

.flex_gellery.column_2 figure.small_figure img {
  width: 100%;
}

.flex_gellery.column_2 figure figcaption .ttl {
  margin-top: 15px;
}

.flex_gellery.column_2 figure figcaption .text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 15px;
}

.flex_gellery.column_3 figure {
  padding: 25px;
  width: 346px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.flex_gellery.column_3 figure:nth-child(3n) {
  margin-right: 0;
}

.flex_gellery.column_3 figure .num {
  left: 4%;
  top: 4%;
}

.flex_gellery.column_3 figure figcaption .ttl {
  margin-top: 10px;
  padding: 8px;
}

.flex_gellery.column_3 figure figcaption .text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 15px;
}

.slider-pro {
  width: 60% !important;
  margin: 0 auto !important;
}

.gallery_text {
  max-width: calc(100% - 60px);
  box-sizing: border-box;
  padding: 15px 25px 15px 25px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.gallery_text span {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 18px;
  color: #696969;
}

.gallery_text .txt {
  font-size: 15px;
  margin-bottom: 0 !important;
}

.sp-thumbnails img:hover {
  cursor: pointer;
}

.sp-selected-thumbnail:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 4px solid #696969;
}

.googlemap_box {
  width: 100%;
  height: 600px;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
}

.googlemap_box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.faq_box .faq_item {
  list-style: none;
  background-color: #fff;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
  padding: 40px 40px;
  border-radius: 60px;
}

.faq_box .faq_item:not(:last-child) {
  margin-bottom: 15px;
}

.faq_box .faq_item .faq_item_Q, .faq_box .faq_item .faq_item_A {
  cursor: pointer;
  padding: 0 15px;
}

.faq_box .faq_item .faq_item_Q .text, .faq_box .faq_item .faq_item_A .text {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 20px;
}

.faq_box .faq_item .faq_item_Q {
  color: #696969;
}

.faq_box .faq_item .faq_item_Q .icon {
  font-size: 22px;
  margin-right: 0.2rem;
}

.faq_box .faq_item .faq_item_A {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px dotted #bdbdbd;
}

.faq_box .faq_item .faq_item_A .icon {
  color: #B52857;
  font-size: 22px;
  position: relative;
  top: -4px;
  margin-right: 0.5rem;
}

.faq_box .faq_item .faq_item_A .text {
  font-size: 16px;
  font-weight: normal;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}

.popup.is-show {
  opacity: 1;
  visibility: visible;
}

.popup .popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  padding: 50px;
  background-color: #fff;
  z-index: 2;
}

.popup .popup-inner .close-btn {
  position: absolute;
  right: 0;
  top: 3px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}

.popup .popup-inner .close-btn i {
  font-size: 20px;
  color: #696969;
}

.popup .popup-inner ._title01 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 1px solid;
  padding-bottom: 5px;
  margin-bottom: 25px;
  text-align: center;
  color: #696969;
}

.popup .popup-inner ._title02 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  border-left: 5px solid #696969;
  padding: 2px 0 2px 10px;
  margin-bottom: 15px;
}

.popup .popup-inner ._title03 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding-left: 20px;
  position: relative;
}

.popup .popup-inner ._title03::before {
  content: "■";
  color: #696969;
  left: 0;
  position: absolute;
}

.popup .popup-inner .layer_board_list01 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.popup .popup-inner .layer_board_list01 li {
  font-weight: bold;
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.popup .popup-inner .layer_board_list01 li::before {
  content: "\f101";
  color: #696969;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
}

.popup .popup-inner .layer_board_table01 {
  border-collapse: separate;
  border-spacing: 5px;
  margin-bottom: 15px;
}

.popup .popup-inner .layer_board_table01 tr {
  font-size: 16px;
}

.popup .popup-inner .layer_board_table01 tr th, .popup .popup-inner .layer_board_table01 tr td {
  padding: 10px 15px;
}

.popup .popup-inner .layer_board_table01 tr th {
  background-color: #696969;
}

.popup .popup-inner .layer_board_table01 tr td {
  background-color: #f5f5f5;
}

.popup .black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer;
}

.low_column {
  width: 1080px;
  margin: 0px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 80px auto 180px;
}

.low_column .main {
  width: 740px;
}

.low_column .main .blog_ttl01 {
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1.5;
  color: #696969;
  padding: 0 0 15px 20px;
  border-bottom: 1px solid #696969;
}

.low_column .main .blog_ttl02 {
  font-size: 24px;
  letter-spacing: 2px;
  margin-top: 100px;
}

.low_column .main .blog_ttl02::after {
  content: "";
  width: 100px;
  height: 2px;
  display: block;
  margin-top: 10px;
  background-color: #696969;
}

.low_column .main p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 2px;
  margin-bottom: 0 !important;
  margin-top: 50px;
}

.low_column .main p a {
  font-weight: bold;
  color: #696969;
  text-decoration: underline;
}

.low_column .main p a:hover {
  text-decoration: none;
}

.low_column .main .column_date {
  font-size: 14px;
  display: block;
  text-align: right;
  padding-right: 15px;
  margin-top: 20px;
}

.low_column .main .column_date::before {
  content: "\f044";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #696969;
  margin-right: 8px;
}

.low_column .main .column_img {
  width: 450px;
  margin-top: 20px;
}

.low_column .main .column_img img {
  width: 100%;
}

.low_column .main .column_img figcaption {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  padding: 10px 20px;
  background-color: #bdbdbd;
  margin-top: 5px;
  border-radius: 10px;
}

.low_column .main .column_img figcaption span {
  font-weight: bold;
  display: block;
}

.low_column .main .column_flex_img {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.low_column .main .column_flex_img .item {
  width: 300px;
  margin-right: 20px;
}

.low_column .main .column_flex_img .item img {
  width: 100%;
}

.low_column .main .column_flex_img figcaption {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  padding: 10px 20px;
  background-color: #bdbdbd;
  margin-top: 5px;
  border-radius: 10px;
}

.low_column .main .column_flex_img figcaption span {
  font-weight: bold;
  display: block;
}

.low_column .side {
  width: 300px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.low_column .side .archive_ttl {
  font-size: 18px;
  line-height: 1;
  color: #fff;
  width: 100%;
  background-color: #696969;
  padding: 18px 25px;
}

.low_column .side .overflow_box {
  height: 600px;
  padding: 20px 10px 20px 15px;
}

.low_column .side .overflow_box .archive_contents {
  height: 100%;
  padding-right: 10px;
  overflow: auto;
}

.low_column .side .overflow_box .archive_contents::-webkit-scrollbar {
  width: 10px;
}

.low_column .side .overflow_box .archive_contents::-webkit-scrollbar-track {
  background-color: #fff;
}

.low_column .side .overflow_box .archive_contents::-webkit-scrollbar-thumb {
  background-color: #bdbdbd;
}

.low_column .side .overflow_box .archive_contents .archive_item_box {
  display: flex;
  flex-direction: column;
}

.low_column .side .overflow_box .archive_contents .archive_item_box:not(:last-child) {
  margin-bottom: 30px;
}

.low_column .side .overflow_box .archive_contents .archive_item_box .year_ttl {
  font-size: 16px;
  line-height: 1;
  color: #696969;
  border-bottom: 1px solid #696969;
  padding: 5px 10px;
  margin-bottom: 15px;
}

.low_column .side .overflow_box .archive_contents .archive_item_box .item {
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 10px;
  background-color: #f5f5f5;
}

.low_column .side .overflow_box .archive_contents .archive_item_box .item .column_day {
  color: #696969;
  display: block;
}

/*タブ*/
.tab_wrap {
  width: 100%;
  margin: 0 auto;
}

input[type="radio"] {
  display: none;
}

.tab_area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0;
}

.tab_area label {
  width: 18%;
  display: inline-block;
  padding: 12px 0;
  border-radius: 10px 10px 0 0;
  color: #999;
  background: #E8F7F2;
  text-align: center;
  font-size: 15px;
  cursor: pointer;
  transition: ease 0.2s opacity;
}

.tab_area label:hover {
  opacity: 0.5;
}

.panel_area {
  background: #F7FCFA;
  padding: 20px;
  box-sizing: border-box;
}

.tab_panel {
  width: 100%;
  padding: 20px 0;
  display: none;
}

.tab_panel p {
  font-size: 14px;
  letter-spacing: 1px;
}

#tab1:checked ~ .tab_area .tab1_label {
  border-radius: 10px 10px 0 0;
  background: #6fd1b6;
  color: #fff;
}

#tab1:checked ~ .panel_area #panel1 {
  display: block;
}

#tab2:checked ~ .tab_area .tab2_label {
  border-radius: 10px 10px 0 0;
  background: #6fd1b6;
  color: #fff;
}

#tab2:checked ~ .panel_area #panel2 {
  display: block;
}

#tab3:checked ~ .tab_area .tab3_label {
  border-radius: 10px 10px 0 0;
  background: #6fd1b6;
  color: #fff;
}

#tab3:checked ~ .panel_area #panel3 {
  display: block;
}

#tab4:checked ~ .tab_area .tab4_label {
  border-radius: 10px 10px 0 0;
  background: #6fd1b6;
  color: #fff;
}

#tab4:checked ~ .panel_area #panel4 {
  display: block;
}

#tab5:checked ~ .tab_area .tab5_label {
  border-radius: 10px 10px 0 0;
  background: #6fd1b6;
  color: #fff;
}

#tab5:checked ~ .panel_area #panel5 {
  display: block;
}

/*インプラント*/
.implant_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.implant_box .implant_item {
  width: 50%;
  padding: 30px;
  box-sizing: border-box;
}

.implant_box .implant_item01 {
  background-color: #F4FCFF;
}

.implant_box .implant_item02 {
  background-color: #FFF7FA;
}

.implant_box .implant_item .implant_item_title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}

.implant_box .implant_item01 .implant_item_title span {
  color: #3BB5E3;
}

.implant_box .implant_item02 .implant_item_title span {
  color: #DB6D96;
}

.implant_box .implant_item ul li {
  position: relative;
  padding-left: 25px;
  list-style: none;
  font-weight: 500;
  letter-spacing: 1px;
}

.implant_box .implant_item ul li:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}

.implant_box .implant_item01 ul li:before {
  content: "〇";
  color: #3BB5E3;
}

.implant_box .implant_item02 ul li:before {
  content: "×";
  color: #DB6D96;
  font-weight: bold;
}

.video_item {
  width: 100%;
}

.video_item video {
  width: 100%;
}

.reserve_link {
  position: fixed;
  right: 0;
  bottom: 10%;
  z-index: 2000;
}

.reserve_link a {
  display: block;
  padding: 50px 12px;
  border-radius: 20px 0 0 20px;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
  background-color: #6fd1b6;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-decoration: none;
  transition: all 0.3s;
}

.reserve_link a:hover {
  opacity: 0.7;
}

.reserve_link a span {
  border-right: 5px dotted #fff;
}
