@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;
}

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

body {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 4vw;
  line-height: 1.8;
  color: #696969;
  width: 100%;
  box-sizing: border-box;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

/*--------------------------------------------------
モバイルヘッダー
--------------------------------------------------*/
header {
  width: 100%;
  /*--------------------------------------------------
プルダウンメニュー
--------------------------------------------------*/
}

header .mobile-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}

header .mobile-header .seo_ttl {
  font-size: 10px;
  line-height: 1;
  color: #fff;
  background-color: #6fd1b6;
  padding: 4px 15px;
}

header .mobile-header .header_box {
  height: 60px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px 0 15px 15px;
}

header .mobile-header .header_box:hover {
  background-color: #fff;
}

header .mobile-header .header_box .logo_link {
  display: inline-block;
  height: 100%;
}

header .mobile-header .header_box .logo_link img {
  display: block;
  height: 100%;
}

header .mobile-header .header_box .drawer-hamburger {
  padding: 13px 7px 26px 15px;
  margin: 23px 5px 5px 5px;
  z-index: 1001;
}

header .mobile-header .header_box .drawer-hamburger:hover {
  background-color: #fff;
}

header .drawer-hamburger-icon {
  width: 25px;
  height: 3px;
  background-color: #696969;
  border-radius: 5px;
}

header .drawer-hamburger-icon::before, header .drawer-hamburger-icon::after {
  width: 25px;
  height: 3px;
  background-color: #696969;
  border-radius: 5px;
}

header .drawer-nav {
  background-color: #f3fbfb;
}

header .drawer-nav .drawer-menu {
  box-sizing: border-box;
  padding: 75px 0 300px;
}

header .drawer-nav .drawer-menu li.open a::before {
  opacity: 0;
}

header .drawer-nav .drawer-menu li .drawer-menu-item {
  font-size: 1.1rem;
  text-decoration: none;
  line-height: 1.5;
  color: #60c8c8;
  display: flex;
  align-items: center;
  width: 90%;
  height: 60px;
  margin: 0 auto;
  padding: 0 0 0 30px;
  border-bottom: 1px solid #fff;
  position: relative;
  outline: none;
}

header .drawer-nav .drawer-menu li .drawer-brand {
  font-size: 1.1rem;
  text-decoration: none;
  line-height: 1.5;
  color: #60c8c8;
  display: flex;
  align-items: center;
  width: 90%;
  height: 60px;
  margin: 0 auto;
  padding: 0 0 0 30px;
  border-bottom: 1px solid #fff;
  position: relative;
  outline: none;
}

header .drawer-nav .drawer-menu li .drawer-brand::after {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border: 0px;
  border-top: solid 1px #60c8c8;
  border-right: solid 1px #60c8c8;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  transition: all 0.3s;
  top: 50%;
  right: 5vh;
}

header .drawer-nav .drawer-menu li .drawer-menu-item::before, header .drawer-nav .drawer-menu li .drawer-menu-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background-color: #60c8c8;
  position: absolute;
  top: 50%;
  right: 5vh;
  transition: all 0.2s;
}

header .drawer-nav .drawer-menu li .drawer-menu-item::before {
  transform: translateY(-50%);
}

header .drawer-nav .drawer-menu li .drawer-menu-item::after {
  transform: translateY(-50%) rotate(90deg);
}

header .drawer-nav .drawer-menu .drawer-dropdown-menu {
  background-color: #60c8c8;
}

header .drawer-nav .drawer-menu .drawer-dropdown-menu a {
  color: #fff;
}

header .drawer-nav .drawer-menu .drawer-dropdown-menu li:last-child a {
  border-bottom: none;
}

.bg-slider {
  margin-top: 78px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
  height: 180px;
}

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

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

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

.infection_prevention_contents .innerContents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  padding: 20px 5px 10px 5px;
  box-sizing: border-box;
  margin: 0 auto;
  background: url("../images/index/infection_prevention_bg.png") no-repeat center center;
  background-size: cover;
}

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

.infection_prevention_contents .innerContents .sp_infection_item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 10px;
}

.infection_prevention_contents .innerContents .sp_infection_item img {
  display: inline;
  width: 49%;
}

.infection_prevention_contents .innerContents .sp_infection_item p {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.infection_prevention_contents .innerContents .sp_infection_item .infection_prevention_link {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 7px 0;
  background: url("../images/index/infection_prevention_more_bg.png") no-repeat center center;
  background-size: cover;
  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: 30px;
  background-color: #fff;
}

.greeting_contents .innerContents {
  width: 95%;
  box-sizing: border-box;
  margin: 0 auto;
}

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

.greeting_contents .innerContents .inner_greeting_contents h2 {
  margin: 0 auto 20px;
  text-align: center;
}

.greeting_contents .innerContents .inner_greeting_contents .greeting_doctor_img {
  width: 90%;
  margin: 0 auto 20px;
}

.greeting_contents .innerContents .inner_greeting_contents .greeting_doctor_img img {
  width: 100%;
}

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

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

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

.feature_contents .innerContents h2 {
  width: 70%;
  margin: 0 auto 20px;
  text-align: center;
}

.feature_contents .innerContents h2 img {
  width: 100%;
}

.feature_contents .innerContents .feature01_box_contents {
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
}

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

.feature_contents .innerContents .feature01_box_contents .feature01_box h3 {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

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

.feature_contents .innerContents .feature01_box_contents .feature01_box .feature01_img {
  width: 100%;
  margin: 0 auto 20px;
}

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

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

.feature_contents .innerContents .feature_box_contents {
  width: 100%;
}

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

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item {
  margin-bottom: 39px;
}

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

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item a h3 {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item02 a h3, .feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item03 a h3 {
  width: 90%;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item07 a h3 {
  width: 80%;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item a h3 img {
  width: 100%;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item a .feature_item_img {
  width: 100%;
  margin-bottom: 5px;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.feature_contents .innerContents .feature_box_contents .inner_feature_box_contents .feature_item a .feature_item_img img {
  width: 100%;
  height: 100%;
}

/*--------------------------------------------
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: 95%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 30px 0 80px 0;
}

.treatment_contents .innerContents::after {
  position: absolute;
  content: "";
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 309px;
  height: 50px;
  background: url("../images/sp/treatment_message.png") no-repeat center center;
  background-size: contain;
}

.treatment_contents .innerContents h2 {
  width: 50%;
  margin: 0 auto 39px;
  text-align: center;
}

.treatment_contents .innerContents h2 img {
  width: 100%;
}

.treatment_contents .innerContents .treatment_list_contents .treatment_item {
  width: 315px;
  height: 86px;
  margin: 0 auto 30px;
  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: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  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 {
  width: 95%;
  margin: 0 auto;
  padding: 30px 0;
  box-sizing: border-box;
}

.news_contents .innerContents h2 {
  width: 150px;
  margin: 0 auto 30px;
  text-align: center;
}

.news_contents .innerContents h2 img {
  width: 100%;
}

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

#news::after {
  position: absolute;
  content: url("../images/sp/news_decoration.png");
  top: -10px;
  right: 0;
}

#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 {
  margin-right: 20px;
  padding: 20px 0;
  border-bottom: 2px dotted #97eae5;
}

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

#news dt {
  margin-bottom: 5px;
  color: #6fd1b6;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

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

#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 {
  margin: 0 15px;
  padding: 60px 0;
}

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

.inner_footer .footer_info .footer_infoL .clinic_name, .inner_footer .footer_info .footer_infoL .tell_text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}

.inner_footer .footer_info .footer_infoL .clinic_name img, .inner_footer .footer_info .footer_infoL .tell_text img {
  width: 100%;
}

.inner_footer .footer_info .footer_infoL .clinic_info_txt {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.inner_footer .footer_info .footer_infoL .access_text {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 20px;
  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: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
}

.inner_footer .footer_info .footer_infoL .bnr_box {
  width: 100%;
}

.inner_footer .footer_info .footer_infoL .bnr_box a {
  display: block;
  width: 90%;
  margin: 0 auto 20px;
}

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

.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: 15px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 39px;
}

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

.schedule .scheduleTable tbody tr th {
  width: 30%;
  font-size: 3vw;
  font-weight: bold;
}

.schedule .scheduleTable tbody tr td {
  font-size: 14px;
  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: 20px;
  font-size: 12px;
  font-weight: 500;
}

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

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

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

.footer_link_area a:first-child {
  margin-right: 10px;
}

.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_map_contents {
  width: 100%;
  height: 250px;
}

.footer_map_content iframe {
  width: 100%;
}

.copyright_box {
  width: 100%;
  margin-top: 10px;
  padding: 10px 0 80px 0;
  color: #6fd1b6;
  font-size: 3vw;
  line-height: 80px;
  text-align: center;
}

.mobile_footer {
  display: flex;
  justify-content: center;
  width: 100%;
  position: fixed;
  z-index: 14;
  bottom: 0;
}

.mobile_footer .link_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  background-color: #6fd1b6;
}

.mobile_footer .link_box .link {
  font-size: .7rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-bottom: .5rem;
  border-top: 1px solid #fff;
  width: 25%;
  color: #fff;
}

.mobile_footer .link_box .link:not(:last-child) {
  border-right: 1px solid #fff;
}

.mobile_footer .link_box .link .fa, .mobile_footer .link_box .link .fas {
  font-size: 1rem;
  margin-bottom: .3rem;
}

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

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

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

.h1_img .inner_contents .low_main_ttl .ja {
  font-size: 1.2rem;
}

.h1_img .inner_contents .low_main_ttl .eng {
  font-size: 1rem;
  margin-top: .2rem;
}

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

.breadcrumb_wrapper .breadcrumb {
  font-size: .9rem;
  background-color: #5ec1d3;
  margin: auto;
  padding: .5rem  1rem;
}

.breadcrumb_wrapper .breadcrumb ol {
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow: auto;
  white-space: nowrap;
}

.breadcrumb_wrapper .breadcrumb ol li {
  display: inline;
  padding-left: 1rem;
  color: #fff;
}

.breadcrumb_wrapper .breadcrumb ol li .fa-map-marker-alt {
  margin-right: .1rem;
}

.breadcrumb_wrapper .breadcrumb ol li .fa-caret-right {
  margin-right: .5rem;
}

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

.low_page {
  width: 100%;
}

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

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

.low_page section:nth-child(2n) .table01 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: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
}

.low_page section .inner_section p {
  margin-bottom: 10px;
}

.s2_s:not(:last-child) {
  margin-bottom: 3rem;
}

.s3_s:not(:last-child) {
  margin-bottom: 2.5rem;
}

.s4_s:not(:last-child) {
  margin-bottom: 1.25rem;
}

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

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

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

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

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

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

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

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

.contents_img {
  width: 80%;
  margin: 0 auto 20px;
}

.contents_img.w30 {
  width: 50%;
}

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

.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 {
  margin-top: .5rem;
  padding: .3rem 1rem;
  border-radius: 10px;
  background-color: #CDE8E8;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 12px;
}

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

.centor_img {
  width: 80%;
  margin: 0 auto;
}

.centor_img.w100, .centor_img img {
  width: 100%;
}

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

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

/*--------------------------------------------------
ボックス01
--------------------------------------------------*/
.box01 {
  padding: 20px 10px;
  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: 1.1rem;
  color: #696969;
  padding: 0 .5rem .5rem;
  border-bottom: 1px solid #696969;
  margin-bottom: 1rem;
}

.link_btn {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #696969;
  padding: 1rem 3rem;
  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: .8rem;
  font-weight: 900;
  line-height: 1.5rem;
  color: #696969;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: border-box;
  padding-left: .1rem;
  border-radius: 999px;
  box-sizing: border-box;
  border: 1px solid #696969;
  position: absolute;
  right: 1rem;
}

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

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

/*--------------------------------------------------
余白を付けたデザイン
--------------------------------------------------*/
.table01 {
  width: calc(100% + 10px);
  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: 12px;
  box-sizing: border-box;
  padding: 5px;
  width: auto;
}

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

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

.table01.diabetes_flow_table tr th {
  text-align: center;
  width: 500px;
}

.table01.diabetes_flow_table tr td {
  width: 500px;
  background-color: #F7F6F1;
  white-space: nowrap;
}

.table02 {
  width: 100%;
  position: relative;
}

.table02 thead tr th {
  background-color: #e4e4e4;
  border: 1px solid #fff;
  vertical-align: middle;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  padding: 3px 8px;
}

.table02 tbody tr {
  margin-bottom: 8px;
  border: 1px solid #fff;
}

.table02 tbody tr th, .table02 tbody tr td {
  font-weight: 400;
  font-size: 14px;
  box-sizing: border-box;
  padding: 8px 8px;
  vertical-align: middle;
}

.table02 tbody tr th {
  background: #CDE8E8;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.table02 tbody tr th .w30 {
  width: 30%;
}

.table02 tbody tr th .w50 {
  width: 50%;
}

.table02 tbody tr td {
  background-color: #fbfbfb;
  border-right: 1px solid #fff;
}

.fee_scroll_table {
  width: 700px;
}

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

.list01 {
  list-style: none;
  margin-bottom: -1rem;
}

.list01 li {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
}

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

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

.list02 {
  list-style: none;
  margin-bottom: -1rem;
}

.list02 li {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  padding-bottom: .75rem;
  border-bottom: 1px dotted #6fd1b6;
  position: relative;
}

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

.list02.column_3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

.list03 {
  margin-bottom: -1rem;
  list-style: none;
}

.list03 li {
  margin-bottom: 1rem;
}

.list03 li a {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  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: .8rem;
  font-weight: 900;
  line-height: 1.5rem;
  color: #7CCFCA;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  padding-left: .1rem;
  border-radius: 999px;
  box-sizing: border-box;
  border: 1px solid #7CCFCA;
  position: absolute;
  right: 1rem;
}

.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-top: 3px;
}

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

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

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

.flex_gellery figure {
  width: 100%;
  position: relative;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.flex_gellery.column_2 figure {
  width: 70%;
  margin: 0 auto;
}

.flex_gellery figure:not(:last-child) {
  margin-bottom: 2rem;
}

.flex_gellery figure .num {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.5rem;
  color: #fff;
  min-width: 2.5rem;
  box-sizing: border-box;
  background-color: #8cd1d1;
  border-radius: 10px;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

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

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

.flex_gellery figure figcaption .text {
  font-size: 1rem;
  margin-bottom: 0 !important;
}

.gallery_text {
  width: 100%;
  box-sizing: border-box;
  padding: 7px;
  margin-top: .5rem;
  background-color: #bdbdbd;
  z-index: 1000;
}

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

.gallery_text .txt {
  font-size: .9rem !important;
  margin-bottom: 0 !important;
}

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

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

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

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

.faq_item:not(:last-child) {
  margin-bottom: 1rem;
}

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

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

.faq_item .faq_item_Q {
  color: #696969;
}

.faq_item .faq_item_Q .icon {
  font-size: 1.3rem;
  margin-right: 0.2rem;
}

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

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

.faq_item .faq_item_A .text {
  font-size: 1rem;
  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-height: 80%;
  padding: 30px;
  background-color: #fff;
  z-index: 2;
  overflow: auto;
}

.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: 5vw;
  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: 4.5vw;
  font-weight: bold;
  line-height: 1.3;
  border-left: 5px solid #696969;
  padding: 2px 0 2px 10px;
  margin-bottom: 15px;
}

.popup .popup-inner ._title03 {
  font-size: 4.5vw;
  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: 4.5vw;
  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: 4.5vw;
}

.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: 100%;
  box-sizing: border-box;
  padding: 60px 20px;
  margin: 0px auto 0;
}

.low_column .main .blog_ttl01 {
  font-size: 1.4rem;
  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: 1.2rem;
  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 {
  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: 100%;
  margin-top: 20px;
}

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

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

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

.low_column .main .column_flex_img .item:not(:last-child) {
  margin-bottom: 15px;
}

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

.low_column .side {
  box-sizing: border-box;
  border: 1px solid #ccc;
  margin-top: 60px;
}

.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: 300px;
  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: #ebe6d7;
}

.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;
  text-decoration: none;
  display: inline-block;
  padding-left: 10px;
  margin-bottom: 8px;
  transition: all 0.2s;
  position: relative;
  padding-left: 25px;
}

.low_column .side .overflow_box .archive_contents .archive_item_box .item::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #696969;
  margin-right: 5px;
  position: absolute;
  left: 10px;
}

.low_column .side .overflow_box .archive_contents .archive_item_box .item:hover {
  color: #696969;
}

/*タブ*/
.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: 19%;
  display: inline-block;
  padding: 12px 0;
  border-radius: 10px 10px 0 0;
  color: #999;
  background: #E8F7F2;
  text-align: center !important;
  font-size: 11px;
  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: 10px 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 {
  width: 100%;
}

.implant_box .implant_item {
  width: 100%;
  padding: 30px 20px;
  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: 17px;
  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: 20px;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}

.implant_box .implant_item ul li:not(:last-child) {
  margin-bottom: 10px;
}

.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%;
}
