@charset "UTF-8";
/* ===================================================================
format
=================================================================== */
/*	html
--------------------------------------------------------------------*/
html {
  /* font-size指定をremで設定するための処理　1.6rem = 16px */
  font-size: 62.5%;
}

/*	body
--------------------------------------------------------------------*/
body {
  font-family: 'メイリオ', Meiryo, '游ゴシック', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
}

/*	a:link,a:visited,a:hover,a:active
--------------------------------------------------------------------*/
a:link, a:visited {
  color: #1ba2d4;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  color: #1ba2d4;
}

.column a:link, .column a:visited {
  color: #23ac38;
  text-decoration: none;
}
.column a:hover {
  text-decoration: underline;
}
.column a:active {
  color: #23ac38;
}

/*	img
--------------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*	h
--------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .6em;
}

/*	ul,ol
--------------------------------------------------------------------*/
ul,
ol {
  list-style: none;
}

/*	table
--------------------------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

th,
td {
  padding: 1em;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

/*	movie
--------------------------------------------------------------------*/
.movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*	form
--------------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0 .5em;
  font-size: 1.6rem;
  border: 1px solid #ddd;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select {
  height: 35px;
}

input[type="radio"],
input[type="check"] {
  margin-right: .6em;
}

textarea {
  height: 120px;
}

button {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 5px 10px;
  text-align: center;
  font-size: 1.4rem;
  border-radius: 4px;
}
button :hover {
  cursor: pointer;
  opacity: .7;
}

/* ----- form checkbox start ----- */
.prt_checkbox input[type="checkbox"] {
  display: none;
}
.prt_checkbox input[type="checkbox"]:checked + span:before {
  content: '\f14a';
  color: #ffa210;
}
.prt_checkbox label {
  cursor: pointer;
  width: 33.3%;
}
.prt_checkbox span {
  display: flex;
  align-items: center;
}
.prt_checkbox span:before {
  content: '\f0c8';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: .5em;
  font-family: 'Font Awesome 5 Free';
  font-size: 2.1rem;
  color: #ccc;
}

/* ----- form checkbox end ----- */
/*	searchform
--------------------------------------------------------------------*/
#searchform > div {
  display: flex;
}
#searchform i {
  padding-right: .5em;
  font-size: 1.4rem;
}

#searchsubmit {
  margin-left: .5em;
  padding: 0 1em;
}

/*	sp_btn
--------------------------------------------------------------------*/
#sp_btn {
  display: none;
}

/*	nav_toggle
--------------------------------------------------------------------*/
#nav_tgl {
  display: none;
}

/*	btn
--------------------------------------------------------------------*/
.btn a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: .8em 1em;
  font-size: 1.6rem;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.2));
  box-shadow: inset 1px 1px 0 white, inset -1px -1px 0 white, 0 1px 0 rgba(0, 0, 0, 0.2);
}
.btn a:hover {
  text-decoration: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.2));
}
.btn a:after {
  content: '\f105';
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 0;
  height: 100%;
  margin: auto;
  font-family: 'Font Awesome 5 Free';
  font-size: 2.4rem;
  font-weight: bold;
  color: #8e8e8e;
}

/*	tel
--------------------------------------------------------------------*/
.tel_nomber {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #23ac38;
  line-height: 0;
}
.tel_nomber:before {
  content: '';
  display: inline-block;
  margin-right: .2em;
  background: url(../images/common/ico_freedial.svg) no-repeat;
}
.tel_nomber a {
  color: #23ac38;
}
.tel_nomber a:hover {
  color: #23ac38;
  text-decoration: none;
}

/*	ico
--------------------------------------------------------------------*/
.degree .ico {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: white;
  font-size: 1.4rem;
  border-radius: 5px;
}
.degree .ico:before {
  content: '〇';
  display: flex;
  height: 20px;
  align-items: center;
}
.degree .ico.mild {
  background: #66cc99;
}
.degree .ico.moderate {
  background: #f0ad4d;
}
.degree .ico.high {
  background: #e08283;
}
.degree .ico.severe {
  background: #ec644b;
}
.degree .none.mild, .degree .none.moderate, .degree .none.high, .degree .none.severe {
  background: #ccc;
}

/* ===================================================================
Layout
=================================================================== */
/*	header
--------------------------------------------------------------------*/
#header {
  border-top: 5px solid #23ac38;
  border-bottom: 1px solid #23ac38;
  background: white;
}
#header > .inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 1em 0;
}

.h_left {
  max-width: 486px;
  width: 100%;
}
.h_left h1 {
  font-size: 1.1rem;
  font-weight: normal;
}
.h_left .logo {
  max-width: 260px;
  width: 100%;
}

.h_right {
  display: flex;
  justify-content: space-between;
  max-width: 605px;
  width: 100%;
}
.h_right .tel {
  flex-direction: column;
  justify-content: center;
  max-width: 307px;
  width: 100%;
  padding: .6em 1.4em;
  border-radius: 3px;
  border: 1px solid #ffce38;
  background: #fffaeb;
}
.h_right .tel span {
  display: block;
}
.h_right .reception_time {
  padding-bottom: .6em;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.1;
}
.h_right .tel_nomber {
  font-size: 3.2rem;
}
.h_right .tel_nomber:before {
  width: 42px;
  height: 28px;
}
.h_right .menu {
  padding-bottom: .6em;
  text-align: right;
  font-size: 1.2rem;
}
.h_right .menu a {
  text-decoration: underline;
}
.h_right .menu a:hover {
  text-decoration: none;
}
.h_right .btn_h a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: .4em 2em;
  font-size: 1.6rem;
  color: white;
  border-radius: 50px;
  border: 1px solid #ff9c00;
  background: #ff9c00;
  box-shadow: inset 1px 1px 0 white, inset 1px -1px 0 white, inset -1px 1px 0 white, inset -1px -1px 0 white, 0 3px 0 rgba(0, 0, 0, 0.1);
}
.h_right .btn_h a:hover {
  color: #ff9c00;
  text-decoration: none;
  background: white;
}
.h_right .btn_h .fa-envelope {
  margin-right: .5em;
}

/*	nav
--------------------------------------------------------------------*/
#g_nav {
  border-bottom: 5px solid #23ac38;
}
#g_nav .inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
}
#g_nav a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .8em 2em;
  color: #333;
}
#g_nav a:hover {
  top: -5px;
  height: 50px;
  text-decoration: none;
  color: white;
  background: #23ac38;
  box-shadow: 0 10px 0 #23ac38;
}
#g_nav .current {
  font-size: 2.6rem;
}
#g_nav .current a {
  top: -5px;
  height: 50px;
  padding: .8em 1em;
  color: white;
  background: #23ac38;
  box-shadow: 0 10px 0 #23ac38;
}

/*	main
--------------------------------------------------------------------*/
#main {
  padding-top: 25px;
}

/*	contents
--------------------------------------------------------------------*/
#ind_contents {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

#contents {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}

/*	column
--------------------------------------------------------------------*/
#column {
  max-width: 780px;
  width: 100%;
  margin-right: 2%;
}

/*	sidebar
--------------------------------------------------------------------*/
#sidebar {
  max-width: 310px;
  width: 100%;
}
#sidebar section:not(:last-child) {
  padding-bottom: 30px;
}

/* ----- side_lst_cat start ----- */
.side_lst_cat {
  padding: 1px;
  font-size: 1.8rem;
  border: 1px solid #23ac38;
}
.side_lst_cat li {
border-bottom: 1px #ccc dotted;
}
.side_lst_cat li:last-child{
border: none;
}
.side_lst_cat > li:not(:first-child) {
  padding-top: 1px;
}
.side_lst_cat a {
  display: block;
  font-size: 1.6rem;
  padding: .6em 1em;
}
.side_lst_cat a:hover {
  text-decoration: underline;
}
.side_lst_cat .side_lst_cat_ttl {
padding: .6em 1em;
  color: white;
  background: #23ac38;
}
.side_lst_cat .ttl {
  color: white;
  background: #23ac38;
}
.side_lst_cat .ttl:before {
  content: '\f0d7';
  padding-right: .6em;
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
}
.side_lst_cat .inner li:not(:last-child) {
  padding-bottom: 1px;
}
.side_lst_cat .inner a {
  position: relative;
  padding-right: 2em;
  color: #333;
  background: #d9f1bc;
}
.side_lst_cat .inner a:after {
  content: '\f054';
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  display: flex;
  align-items: center;
  font-family: 'Font Awesome 5 Free';
  font-size: 1.4rem;
  font-weight: bold;
}
.side_lst_cat .inner a:hover {
  transition: .3s ease-in-out;
  opacity: .7;
  filter: alpha(opacity=30);
}
.side_lst_cat .sub {
  font-size: 1.6rem;
  border-top: 1px dotted #ccc;
}
.side_lst_cat .sub a {
  padding-left: 2em;
  border-bottom: 1px dotted #ccc;
  background: white;
}

/* ----- side_lst_cat end ----- */
/* ----- side_search start ----- */
.side_search {
  padding: 1px;
  border: 1px solid #23ac38;
}
.side_search dt {
  padding: .6em 1em;
}
.side_search dt:before {
  content: '\f0d7';
  padding-right: .6em;
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
}
.side_search dd {
  padding: 0 1em .6em;
  border-bottom: 1px solid #ccc;
}
.side_search .ttl {
  margin-bottom: 0;
  padding: .6em 1em;
  font-size: 1.8rem;
  font-weight: normal;
  color: white;
  background: #23ac38;
}
.side_search .btn {
  padding: .6em 1em;
}
.side_search .btn button {
  position: relative;
  color: white;
  border: 1px solid #23ac38;
  background: #23ac38;
  box-shadow: inset 1px 1px 0 white, inset 1px -1px 0 white, inset -1px 1px 0 white, inset -1px -1px 0 white, 0 2px 0 rgba(0, 0, 0, 0.1);
}
.side_search .btn button:hover {
  color: #23ac38;
  background: white;
}
.side_search .btn button i {
  padding-right: .3em;
}

/* ----- side_search end ----- */
/* ----- side_lst_bnr start ----- */
.side_lst_bnr {
  padding: 1.4em;
  background: #ecf4f7;
}
.side_lst_bnr li:not(:last-child) {
  padding-bottom: 10px;
}
.side_lst_bnr img {
  border: 1px solid #ccc;
}
.side_lst_bnr.pt01 {
  padding: 0;
  background: none;
}

/* ----- side_lst_bnr end ----- */
/*	footer
--------------------------------------------------------------------*/
#footer {
  background: #ecf4f7;
}

.f_nav {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 20px 0;
  font-size: 1.2rem;
}
.f_nav a {
  color: #333;
}
.f_nav .ttl {
  font-size: 1.4rem;
  font-weight: bold;
}
.f_nav > ul {
  width: 25%;
  padding: 1em;
  border-right: 1px solid rgba(202, 214, 219, 0.8);
}
.f_nav > ul:first-child {
  border-left: 1px solid rgba(202, 214, 219, 0.8);
}
.f_nav .inner {
  padding: 1em 1em 0;
}
.f_nav .inner li:not(:last-child) {
  padding-bottom: .4em;
}
.f_nav .pdb {
  padding-bottom: 2em;
}

.f_logo {
  margin-bottom: 90px;
  border-top: 4px solid #23ac38;
  background: white;
}
.f_logo .inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}
.f_logo .logo {
  width: 180px;
}
.f_logo .copyright {
  font-size: 1.2rem;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
}

.f_btm {
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -1px 6px rgba(255, 255, 255, 0.6);
  background: #23ac38;
  overflow: hidden;
  z-index: 100;
}
.f_btm .inner {
  display: flex;
  justify-content: center;
  padding: 1em 0;
}
.f_btm .trial {
  max-width: 420px;
  width: 100%;
  margin-right: 1em;
}
.f_btm .trial img {
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
}
.f_btm .tel {
  display: flex;
  align-items: center;
  max-width: 480px;
  width: 100%;
  padding: 0 6px;
  font-weight: bold;
  border-radius: 4px;
  border: 6px solid #ffe240;
  background: white;
}
.f_btm .tel p {
  width: 39%;
  text-align: center;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
}
.f_btm .tel p span {
  display: inline-block;
}
.f_btm .tel .txt {
  font-size: 1.4rem;
}
.f_btm .tel .reception_time {
  font-size: 1rem;
}
.f_btm .tel_nomber {
  width: 61%;
  font-size: 3.3rem;
}
.f_btm .tel_nomber:before {
  width: 38px;
  height: 25px;
}

/* ===================================================================
FontAwesome
=================================================================== */
/* ===================================================================
breadcrumb
=================================================================== */
.breadcrumb {
  background: #ecf4f7;
}
.breadcrumb ol {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 1em 0;
  font-size: 1.2rem;
}
.breadcrumb li:before {
  content: ">";
  padding: 0 0.3em 0 0.8em;
}
.breadcrumb li:first-child:before {
  content: none;
}
.breadcrumb a {
  color: #23ac38;
}
.breadcrumb a:hover {
  color: #23ac38;
}

/* ===================================================================
Pagetop
=================================================================== */
.pagetop {
  position: absolute;
  right: 0;
  bottom: 0;
}
.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 91px;
  height: 91px;
  text-decoration: none;
  color: #23ac38;
  background: #d9f1bc;
}
.pagetop a:hover {
  text-decoration: none;
  color: white;
  background: #23ac38;
}
.pagetop a .fas {
  font-size: 3rem;
}
.pagetop a span {
  font-size: 1rem;
}

.pagetop_sp {
  display: none;
}

/* ===================================================================
Rollover 背景が白の時用
=================================================================== */
a img {
  opacity: 1;
  transition: .3s ease-in-out;
  backface-visibility: hidden;
}
a:hover img {
  opacity: .7;
  filter: alpha(opacity=30);
}


.freedialarea {display: none;}
.freedialarea a {display: flex; justify-content: center; align-items: center; font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif; font-weight: bold;}
.freedialarea a:hover {text-decoration: none;}



@media screen and (min-width: 1200px) {
  .freedialarea svg { fill:#cc2; width: auto; height: 2rem; margin-right: 10px;}
  .freedialarea .txtstyle {color: #23ac38; font-size: 2.8rem;}
}
@media screen and (max-width: 1199px) {
  .freedialarea svg { fill:#fc3; width: auto; height: 6vw; margin-right: 10px;}
  .freedialarea .txtstyle {color: #23ac38; font-size: 7vw;}
}
