@charset "UTF-8";
/* ----------------------------------------------
 base
---------------------------------------------- */
html {
  font-size: 62.5%; /*基準が16pxの場合、10px*/
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6em;
  color: #301915;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, pre, ul, li, img, dl, dt, dd, blockquote, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 2rem 0 0 0;
  padding: 0;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  line-height: 1.8;
}

blockquote {
  margin: 2rem 0 0 2rem;
  padding: 0;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  line-height: 1.8;
  font-style: italic;
}

ul {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style-type: none;
}
ul li {
  margin: 1.2rem 0 0 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
ul li:first-child {
  margin: 0;
}

ol {
  margin: 2rem 0 0 0;
}
ol li {
  margin: 1.2rem 0 0 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
ol li:first-child {
  margin: 0 0 0 0;
}

dl {
  margin: 2rem 0 0 0;
  padding: 0;
}
dl dt, dl dd {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

em {
  font-style: normal;
}

hr {
  border: 0;
  border-top: 1px solid #d3d3d3;
  margin: 3rem 0;
}

table {
  margin: 3rem 0 0 0;
  border-width: 0;
  empty-cells: show;
  width: 100%;
}
table caption {
  font-weight: bold;
}
table th {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
}
table td {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
}
table td p {
  margin: 0;
  padding: 0;
}

button, input, select, textarea {
  font: inherit;
}

select {
  border: 1px solid #c0c0c0;
  font-size: 100%;
}

input[type=text], textarea {
  background: #ffffff;
  padding: 3px;
  border: 1px solid #c0c0c0;
  color: #000000;
}

input[type=text]:focus, textarea:focus {
  background: #fffde8;
}

a:link {
  color: #007850;
  text-decoration: none;
}

a:visited {
  color: #007850;
  text-decoration: none;
}

a:hover {
  color: #007850;
  text-decoration: underline;
}

a:active {
  color: #007850;
  text-decoration: underline;
}

a.ul:link {
  color: #007850;
  text-decoration: underline;
}

a.ul:visited {
  color: #007850;
  text-decoration: underline;
}

a.ul:hover {
  color: #007850;
  text-decoration: underline;
}

a.ul:active {
  color: #007850;
  text-decoration: underline;
}

a:hover img {
  opacity: 0.6;
  transition: opacity 0.1s;
}

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
/* ----------------------------------------------
 utility
---------------------------------------------- */
.u_mg_0 {
  margin-top: 0;
}

.u_mg_5 {
  margin-top: 5px;
}

.u_mg_10 {
  margin-top: 10px;
}

.u_mg_15 {
  margin-top: 15px;
}

.u_mg_30 {
  margin-top: 30px;
}

.u_mg_45 {
  margin-top: 45px;
}

.u_mg_60 {
  margin-top: 60px;
}

.u_align_r {
  text-align: right;
}

.u_align_c {
  text-align: center;
}

/* vertical-align - utility
--------------------------------------------------------- */
/* border-none */
/* ----------------------------------------------
 component
---------------------------------------------- */
.h_lg {
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

.h_md {
  font-size: 1.8rem;
  font-weight: bold;
}

.h_sm {
  font-size: 1.6rem;
  font-weight: bold;
}

.h_xs {
  font-size: 1.4rem;
  font-weight: bold;
}

ul.list_circle li {
  padding: 0 0 0 32px;
  background: url("../imgs/common/icon_bullet_circle.svg") 14px 8px no-repeat;
  background-size: 5px;
}

.container {
  width: 1080px;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .container {
    width: auto;
    margin: 0 20px;
    padding: 4rem 0;
  }
}

.container_narrow {
  width: 800px;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .container_narrow {
    width: auto;
    margin: 0 20px;
    padding: 4rem 0;
  }
}

.container_fluid .inner {
  width: 1080px;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .container_fluid .inner {
    width: auto;
    padding: 4rem 20px;
  }
}

.container_fluid_bg {
  background-color: #daf2e9;
}
.container_fluid_bg .inner {
  width: 1080px;
  margin: 0 auto;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .container_fluid_bg .inner {
    width: auto;
    padding: 4rem 20px;
  }
}

.container p:first-child, .container_narrow p:first-child, .container_fluid_bg p:first-child {
  margin: 0;
}

table.tb_line {
  background: url("../imgs/common/line_dotted.png") bottom left repeat-x;
}
table.tb_line tr {
  background: url("../imgs/common/line_dotted.png") top left repeat-x;
}
table.tb_line th {
  padding: 1.5rem 1.5rem 1.5rem 0;
  font-weight: bold;
}
table.tb_line td {
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.col2 {
  display: flex;
}
.col2 .col.photo {
  width: 400px;
  margin-right: 40px;
}
.col2 .col.photo_small {
  width: 280px;
  margin-right: 40px;
}

a.rollover img {
  opacity: 1;
}

.caption {
  color: #666666;
}

p.page-nav {
  margin: 50px 0 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
p.page-nav span {
  display: block;
  text-align: center;
  margin: 0 4px;
  padding: 5px 0 0 0;
  background-color: #009161;
  height: 30px;
  width: 35px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  color: #fff;
}
p.page-nav span.dots {
  background: none;
  color: #009161;
}
p.page-nav a {
  display: block;
  text-align: center;
  margin: 0 4px;
  padding: 5px 0 0 0;
  background-color: #f0f0f0;
  height: 30px;
  width: 35px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
p.page-nav a:hover {
  background-color: #009161;
  color: #fff;
  text-decoration: none;
}
p.page-nav a.next, p.page-nav a.prev {
  background: none;
}
p.page-nav a.next:hover, p.page-nav a.prev:hover {
  color: #009161;
  text-decoration: underline;
}

.footer_breadcrumbs {
  border-top: 1px solid #d3d3d3;
  margin: 80px 0 -80px 0;
}
.footer_breadcrumbs ul {
  width: 1055px;
  margin: 0 auto;
  padding: 25px 0 25px 25px;
  background: url("../imgs/common/bc_toppage.png") 2px 26px no-repeat;
}
.footer_breadcrumbs ul li {
  margin: 0;
  padding: 0 30px 0 0;
  font-size: 1.3rem;
  display: inline;
  color: #666666;
  background: url("../imgs/common/icon_bc_arrow.svg") right 12px center no-repeat;
  background-size: 6px;
}
.footer_breadcrumbs ul li:last-child {
  background: none;
}
.footer_breadcrumbs ul li a {
  color: #007850;
}
.footer_breadcrumbs ul li a:hover {
  color: #007850;
}
@media screen and (max-width: 768px) {
  .footer_breadcrumbs {
    margin: 50px 0 -50px 0;
  }
  .footer_breadcrumbs ul {
    width: auto;
    margin: 0 20px;
  }
}

a.bullet {
  padding: 0 0 0 20px;
  background: url("../imgs/common/icon_bullet_arrow_c.svg") 0px 2px no-repeat;
  background-size: 13px;
}

a.btn {
  color: #fff;
  padding: 5px 15px;
  border-radius: 10px;
}

a.btn-primary {
  background-color: #009161;
  border: 1px solid #00875a;
}
a.btn-primary.btn:hover, a.btn-primary.btn:active {
  background-color: #026c49;
  text-decoration: none;
}

a.btn-orange {
  background-color: #f1b931;
  border: 1px solid #f0b423;
}
a.btn-orange.btn:hover, a.btn-orange.btn:active {
  background-color: #e6a814;
  text-decoration: none;
}

a.btn2 {
  color: #fff;
  padding: 7px 35px 8px 35px;
  border-radius: 20px;
}

a.btn2-list {
  background: #009161 url("../imgs/common/icon_bullet_wh.png") right 9px center no-repeat;
  background-size: 9px;
}
a.btn2-list:hover, a.btn2-list:active {
  background-color: #66bba0;
  text-decoration: none;
}
