@charset "UTF-8";
/*----------------------------------------
       Reset  設定
----------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i,700|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i");
/* line 5, ../sass/_reset.scss */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* line 26, ../sass/_reset.scss */
body {
  line-height: 1;
}

/* line 30, ../sass/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 35, ../sass/_reset.scss */
ul, li {
  list-style: none;
}

/* line 39, ../sass/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 43, ../sass/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 49, ../sass/_reset.scss */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  outline: none;
}

/* line 58, ../sass/_reset.scss */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* line 63, ../sass/_reset.scss */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* line 69, ../sass/_reset.scss */
del {
  text-decoration: line-through;
}

/* line 72, ../sass/_reset.scss */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* line 76, ../sass/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 80, ../sass/_reset.scss */
td,
th {
  padding: 0;
}

/* line 84, ../sass/_reset.scss */
ul, dl, ol {
  text-indent: 0;
}

/* line 87, ../sass/_reset.scss */
li {
  list-style: none;
}

/* line 89, ../sass/_reset.scss */
img {
  border: 0;
  max-width: 100%;
  height: auto;
}

/* line 95, ../sass/_reset.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* line 103, ../sass/_reset.scss */
input, select {
  vertical-align: middle;
}

/* line 106, ../sass/_reset.scss */
button,
input {
  line-height: normal;
}

/* line 111, ../sass/_reset.scss */
input,
textarea {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  /* Removing the inner shadow, rounded corners on iOS inputs */
  padding: 4px 8px;
  border: 1px solid #e3e3e3;
  outline: none;
  background: #fff;
}

/* line 121, ../sass/_reset.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  outline: 0;
}

/*box-sizingを全ブラウザに対応*/
/* line 130, ../sass/_reset.scss */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 3, ../sass/_layout.scss */
html {
  font-size: 62.5%;
}

/* line 6, ../sass/_layout.scss */
body {
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  color: #000;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  /* line 6, ../sass/_layout.scss */
  body {
    overflow-x: hidden;
  }
}

/* line 17, ../sass/_layout.scss */
* {
  font-family: 'Open Sans', sans-serif;
}

/* line 20, ../sass/_layout.scss */
a:hover {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

/* header
----------------------------------------- */
/* line 25, ../sass/_layout.scss */
.l-header {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-bottom: solid 1px #ddd;
}
/* line 51, ../sass/_mixin.scss */
.l-header:after {
  content: "";
  display: table;
  clear: both;
}
/* line 31, ../sass/_layout.scss */
.l-header.is-fixed {
  position: fixed;
  top: 0;
  z-index: 100;
}
/* line 36, ../sass/_layout.scss */
.l-header__content {
  max-width: 1190px;
  padding: 0 10px;
  margin: 0 auto;
}
/* line 51, ../sass/_mixin.scss */
.l-header__content:after {
  content: "";
  display: table;
  clear: both;
}
/* line 41, ../sass/_layout.scss */
.l-header__content .logo.logo-header {
  float: left;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  /* line 41, ../sass/_layout.scss */
  .l-header__content .logo.logo-header {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
/* line 49, ../sass/_layout.scss */
.l-header__content .header-links {
  position: relative;
  float: right;
  line-height: 40px;
  padding: 5px 0;
}
@media only screen and (max-width: 768px) {
  /* line 49, ../sass/_layout.scss */
  .l-header__content .header-links {
    display: none;
  }
}
/* line 57, ../sass/_layout.scss */
.l-header__content .header-links nav {
  position: relative;
  float: left;
  z-index: 10;
  margin-right: 60px;
}
/* line 62, ../sass/_layout.scss */
.l-header__content .header-links nav li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
}
/* line 66, ../sass/_layout.scss */
.l-header__content .header-links nav li:hover {
  text-decoration: underline;
}
/* line 69, ../sass/_layout.scss */
.l-header__content .header-links nav li a {
  color: #444;
}
/* line 74, ../sass/_layout.scss */
.l-header__content .header-links #search {
  position: relative;
  float: right;
  width: 40px;
  height: 40px;
  margin-left: -40px;
}
/* line 81, ../sass/_layout.scss */
.l-header__content .header-links #label {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 20;
}
/* line 87, ../sass/_layout.scss */
.l-header__content .header-links #label label {
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/icon_header_search.png") 0 0;
  background-size: 82px 41px;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  cursor: pointer;
}
/* line 98, ../sass/_layout.scss */
.l-header__content .header-links #label label:hover {
  background: url("../img/icon_header_search.png") -40px 0;
  background-size: 80px 40px;
}
/* line 102, ../sass/_layout.scss */
.l-header__content .header-links #label.active label {
  background: url("../img/icon_header_search.png") -40px 0;
  background-size: 80px 40px;
}
/* line 106, ../sass/_layout.scss */
.l-header__content .header-links #input {
  position: absolute;
  top: 0;
  left: -450px;
  width: 450px;
  height: 40px;
  z-index: 5;
  overflow: hidden;
}
/* line 115, ../sass/_layout.scss */
.l-header__content .header-links #input input {
  display: block;
  position: absolute;
  top: 0;
  left: -450px;
  width: 450px;
  height: 100%;
  margin: 0;
  padding: 0 10px;
  border: none;
  background-color: #fff;
  border: solid 1px #327d69;
  color: #4d4d4d;
  font-size: 18px;
  -webkit-backface-visibility: none;
  -moz-backface-visibility: none;
  -ms-backface-visibility: none;
  backface-visibility: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: left 0;
  -moz-transition: left 0;
  -ms-transition: left 0;
  -o-transition: left 0;
  transition: left 0;
}
/* line 142, ../sass/_layout.scss */
.l-header__content .header-links #input input:focus {
  outline: none;
}
/* line 145, ../sass/_layout.scss */
.l-header__content .header-links #input.focus {
  z-index: 20;
}
/* line 148, ../sass/_layout.scss */
.l-header__content .header-links #input.focus input {
  left: 0;
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  -ms-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}
/* line 157, ../sass/_layout.scss */
.l-header__content .gnavi-area {
  float: right;
}
@media only screen and (max-width: 768px) {
  /* line 157, ../sass/_layout.scss */
  .l-header__content .gnavi-area {
    display: none;
    position: absolute;
    opacity: 0;
    z-index: 300000;
    top: 54px;
    right: -100%;
    width: 100%;
    background-color: #fff;
    transition: 0.3s;
  }
}
/* line 171, ../sass/_layout.scss */
.l-header__content .gnavi-area.show {
  right: 0;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  /* line 171, ../sass/_layout.scss */
  .l-header__content .gnavi-area.show {
    display: block;
  }
}
/* line 178, ../sass/_layout.scss */
.l-header__content .btn--schedule-demo {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  /* line 178, ../sass/_layout.scss */
  .l-header__content .btn--schedule-demo {
    float: none;
    width: 100%;
    margin: 10px auto;
  }
}
/* line 187, ../sass/_layout.scss */
.l-header__content .btn--schedule-demo a {
  padding: 0.8em 1.5em 0.8em 2em;
  background-color: #f9a94b;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  /* line 187, ../sass/_layout.scss */
  .l-header__content .btn--schedule-demo a {
    padding: 0.8em 1em 0.8em 1.5em;
    width: 180px;
  }
}
/* line 196, ../sass/_layout.scss */
.l-header__content .btn--schedule-demo a:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  border-left: solid 6px #fff;
  border-top: solid 5px transparent;
  border-bottom: solid 5px transparent;
}
/* line 206, ../sass/_layout.scss */
.l-header__content .btn--schedule-demo:hover {
  opacity: 0.8;
}
/* line 210, ../sass/_layout.scss */
.l-header__content .sp-menu {
  display: none;
}
@media only screen and (max-width: 768px) {
  /* line 210, ../sass/_layout.scss */
  .l-header__content .sp-menu {
    display: block;
    float: right;
    width: 50px;
    height: 40px;
    padding-top: 20px;
    text-align: center;
  }
}
/* line 220, ../sass/_layout.scss */
.l-header__content .sp-menu a {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  box-sizing: border-box;
}
/* line 226, ../sass/_layout.scss */
.l-header__content .sp-menu a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}
/* line 233, ../sass/_layout.scss */
.l-header__content .sp-menu a span:nth-of-type(1) {
  top: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim4;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
/* line 243, ../sass/_layout.scss */
.l-header__content .sp-menu a span:nth-of-type(2) {
  top: 7px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim5;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
/* line 253, ../sass/_layout.scss */
.l-header__content .sp-menu a span:nth-of-type(3) {
  top: 14px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim6;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
/* line 264, ../sass/_layout.scss */
.l-header__content .sp-menu a.active span:nth-of-type(1) {
  animation-name: menuAnim1;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
/* line 271, ../sass/_layout.scss */
.l-header__content .sp-menu a.active span:nth-of-type(2) {
  animation-name: menuAnim2;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
/* line 278, ../sass/_layout.scss */
.l-header__content .sp-menu a.active span:nth-of-type(3) {
  animation-name: menuAnim3;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
/* line 286, ../sass/_layout.scss */
.l-header__content .gnavi {
  float: left;
}
@media only screen and (max-width: 768px) {
  /* line 286, ../sass/_layout.scss */
  .l-header__content .gnavi {
    float: none;
    max-height: 70vh;
    overflow-y: scroll;
  }
}
/* line 293, ../sass/_layout.scss */
.l-header__content .gnavi__inner {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  /* line 293, ../sass/_layout.scss */
  .l-header__content .gnavi__inner {
    display: block;
  }
}
/* line 299, ../sass/_layout.scss */
.l-header__content .gnavi__inner .expander {
  display: none;
}
@media only screen and (max-width: 768px) {
  /* line 299, ../sass/_layout.scss */
  .l-header__content .gnavi__inner .expander {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #327d69;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 312, ../sass/_layout.scss */
  .l-header__content .gnavi__inner .expander:hover {
    background-color: #327d69;
    color: #fff;
  }
}
/* line 320, ../sass/_layout.scss */
.l-header__content .gnavi__main {
  height: 50px;
}
@media only screen and (max-width: 768px) {
  /* line 320, ../sass/_layout.scss */
  .l-header__content .gnavi__main {
    border-bottom: solid 1px #327d69;
  }
}
/* line 325, ../sass/_layout.scss */
.l-header__content .gnavi__main a {
  display: block;
  padding: 1em;
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
  color: #444;
}
@media only screen and (max-width: 768px) {
  /* line 325, ../sass/_layout.scss */
  .l-header__content .gnavi__main a {
    display: inline-block;
    width: calc(100% - 50px);
    border-radius: 0;
  }
}
/* line 338, ../sass/_layout.scss */
.l-header__content .gnavi__main a:after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: solid 6px #327d69;
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
}
@media only screen and (max-width: 768px) {
  /* line 338, ../sass/_layout.scss */
  .l-header__content .gnavi__main a:after {
    display: none;
  }
}
/* line 352, ../sass/_layout.scss */
.l-header__content .gnavi__main:hover a:after {
  border-top: solid 6px #fff;
}
/* line 355, ../sass/_layout.scss */
.l-header__content .gnavi__main:hover a:hover {
  background-color: #327d69;
  color: #fff;
}
/* line 360, ../sass/_layout.scss */
.l-header__content .gnavi__main--support a:after {
  display: none;
}
/* line 363, ../sass/_layout.scss */
.l-header__content .gnavi__main--support a:hover:after {
  display: none;
}
/* line 367, ../sass/_layout.scss */
.l-header__content .gnavi .gnavi__inner:hover .gnavi__sub__list {
  overflow: visible;
  height: auto;
}
/* line 371, ../sass/_layout.scss */
.l-header__content .gnavi .gnavi__inner:hover .gnavi__sub__list + li {
  border-top: solid 1px #327d69;
}
@media only screen and (max-width: 768px) {
  /* line 371, ../sass/_layout.scss */
  .l-header__content .gnavi .gnavi__inner:hover .gnavi__sub__list + li {
    border-top: 0;
  }
}
/* line 377, ../sass/_layout.scss */
.l-header__content .gnavi__hide-menu {
  display: block;
}
@media only screen and (max-width: 768px) {
  /* line 377, ../sass/_layout.scss */
  .l-header__content .gnavi__hide-menu {
    display: none;
    width: 100%;
  }
}
/* line 384, ../sass/_layout.scss */
.l-header__content .gnavi__sub {
  position: absolute;
  top: 50px;
  left: 0;
  width: 200px;
  z-index: 10;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
}
@media only screen and (max-width: 768px) {
  /* line 384, ../sass/_layout.scss */
  .l-header__content .gnavi__sub {
    position: static;
    width: auto;
    border-radius: 0;
  }
}
/* line 397, ../sass/_layout.scss */
.l-header__content .gnavi__sub__list {
  overflow: hidden;
  height: 0;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  /* line 397, ../sass/_layout.scss */
  .l-header__content .gnavi__sub__list {
    overflow: visible;
    height: 100%;
    border-bottom: solid 1px #327d69;
  }
}
/* line 406, ../sass/_layout.scss */
.l-header__content .gnavi__sub__list:last-child a {
  border-radius: 0 0 5px 5px;
}
@media only screen and (max-width: 768px) {
  /* line 406, ../sass/_layout.scss */
  .l-header__content .gnavi__sub__list:last-child a {
    border-radius: 0;
  }
}
/* line 412, ../sass/_layout.scss */
.l-header__content .gnavi__sub__list a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.2em 2em 1.2em 1em;
  color: #444;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
@media only screen and (max-width: 768px) {
  /* line 412, ../sass/_layout.scss */
  .l-header__content .gnavi__sub__list a {
    position: relative;
    padding: 1.2em 2em 1.2em 3em;
  }
}
/* line 424, ../sass/_layout.scss */
.l-header__content .gnavi__sub__list a:hover {
  color: #fff;
  background-color: #327d69;
}

@keyframes menuAnim1 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 9px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@keyframes menuAnim2 {
  0% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes menuAnim3 {
  0% {
    top: 14px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 9px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@keyframes menuAnim4 {
  0% {
    top: 9px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes menuAnim5 {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes menuAnim6 {
  0% {
    top: 9px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 14px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
/* l-main
----------------------------------------- */
/* line 538, ../sass/_layout.scss */
.l-main.is-fixed {
  margin-top: 102px;
}
@media only screen and (max-width: 768px) {
  /* line 538, ../sass/_layout.scss */
  .l-main.is-fixed {
    margin-top: 53px;
  }
}

/* l-content
----------------------------------------- */
/* line 546, ../sass/_layout.scss */
.l-content {
  width: auto;
}
/* line 548, ../sass/_layout.scss */
.l-content__inner {
  width: auto;
  max-width: 1190px;
  padding: 0 10px;
  margin: 0 auto;
}

/* .l-main .main-visual
----------------------------------------- */
/* line 558, ../sass/_layout.scss */
.l-main .main-visual {
  width: auto;
  height: 200px;
  background-size: cover;
  border-bottom: solid 1px #dee6e4;
}
/* line 563, ../sass/_layout.scss */
.l-main .main-visual__title {
  display: table-cell;
  height: 200px;
  padding-bottom: 10px;
  vertical-align: bottom;
  font-size: 64px;
  font-size: 6.4rem;
  font-weight: 800;
  font-family: 'Open Sans Condensed';
  color: #327d69;
  line-height: 1.1;
}
@media only screen and (max-width: 768px) {
  /* line 563, ../sass/_layout.scss */
  .l-main .main-visual__title {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

/* .breadcrumb
----------------------------------------- */
/* line 581, ../sass/_layout.scss */
.breadcrumb {
  position: relative;
  font-size: 12px;
  font-size: 1.2rem;
  color: #327d69;
}
/* line 585, ../sass/_layout.scss */
.breadcrumb__content {
  position: absolute;
  top: 10px;
  left: 0;
}
/* line 589, ../sass/_layout.scss */
.breadcrumb__content li {
  display: inline-block;
  padding-right: 7px;
}
/* line 592, ../sass/_layout.scss */
.breadcrumb__content li a {
  color: #327d69;
}
/* line 595, ../sass/_layout.scss */
.breadcrumb__content li span:before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  width: 0;
  height: 0;
  border-left: solid 4px #327d69;
  border-top: solid 4px transparent;
  border-bottom: solid 4px transparent;
}
/* line 605, ../sass/_layout.scss */
.breadcrumb__content li.current {
  font-weight: 800;
}

/* .l-content--bottom-visual
----------------------------------------- */
/* line 613, ../sass/_layout.scss */
.l-content--bottom-visual {
  height: 400px;
  background-image: url("../img/bg_bottom_visual.png");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
/* line 619, ../sass/_layout.scss */
.l-content--bottom-visual .bottom-visual {
  padding-top: 120px;
}
/* line 621, ../sass/_layout.scss */
.l-content--bottom-visual .bottom-visual .l-content-title {
  position: relative;
  padding-bottom: 40px;
  text-align: center;
  font-size: 46px;
  font-size: 4.6rem;
  font-weight: 800;
  font-family: 'Open Sans Condensed';
  color: #327d69;
  line-height: 1.1;
}
/* line 630, ../sass/_layout.scss */
.l-content--bottom-visual .bottom-visual .l-content-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #327d69;
}
/* line 643, ../sass/_layout.scss */
.l-content--bottom-visual .bottom-visual .l-content-title:after {
  display: none;
}
/* line 647, ../sass/_layout.scss */
.l-content--bottom-visual .btn--bottom-visual {
  width: 400px;
  height: 60px;
}
@media only screen and (max-width: 768px) {
  /* line 647, ../sass/_layout.scss */
  .l-content--bottom-visual .btn--bottom-visual {
    width: 100%;
  }
}
/* line 653, ../sass/_layout.scss */
.l-content--bottom-visual .btn--bottom-visual a {
  padding: 10px 0 0;
  font-size: 28px;
  font-size: 2.8rem;
  font-family: 'Open Sans Condensed';
  font-weight: 800;
  background-color: #f9a94b;
  border-radius: 5px;
  color: #fff;
  box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.25);
}
/* line 664, ../sass/_layout.scss */
.l-content--bottom-visual .btn--bottom-visual a:after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  width: 0;
  height: 0;
  border-left: solid 8px #fff;
  border-top: solid 8px transparent;
  border-bottom: solid 8px transparent;
}
/* line 674, ../sass/_layout.scss */
.l-content--bottom-visual .btn--bottom-visual a:hover {
  opacity: 0.8;
}

/* footer
----------------------------------------- */
/* line 682, ../sass/_layout.scss */
.l-footer {
  position: relative;
  width: auto;
}
/* line 685, ../sass/_layout.scss */
.l-footer .pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
}
.l-footer .pagetop img{
  width: 80px;
}
/* line 691, ../sass/_layout.scss */
.l-footer__main-content {
  width: auto;
  max-width: 1190px;
  padding: 0 10px;
  margin: 0 auto;
  padding: 50px 10px;
}
/* line 51, ../sass/_mixin.scss */
.l-footer__main-content:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 768px) {
  /* line 691, ../sass/_layout.scss */
  .l-footer__main-content {
    display: none;
  }
}
/* line 701, ../sass/_layout.scss */
.l-footer__main-content__inner {
  float: right;
}
/* line 51, ../sass/_mixin.scss */
.l-footer__main-content__inner:after {
  content: "";
  display: table;
  clear: both;
}
/* line 705, ../sass/_layout.scss */
.l-footer__main-content .footer-links {
  width: 170px;
  float: left;
}
/* line 708, ../sass/_layout.scss */
.l-footer__main-content .footer-links + .footer-links {
  padding-left: 30px;
}
/* line 711, ../sass/_layout.scss */
.l-footer__main-content .footer-links__main-category {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  font-size: 2rem;
  font-family: 'Open Sans Condensed';
  font-weight: 800;
}
/* line 718, ../sass/_layout.scss */
.l-footer__main-content .footer-links__main-category:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #327d69;
}
/* line 728, ../sass/_layout.scss */
.l-footer__main-content .footer-links__main-category a {
  line-height: 1.2;
  color: #327d69;
}
/* line 731, ../sass/_layout.scss */
.l-footer__main-content .footer-links__main-category a:hover {
  text-decoration: underline;
}
/* line 737, ../sass/_layout.scss */
.l-footer__main-content .footer-links__sub-category a {
  line-height: 1.2;
  color: #444;
}
/* line 740, ../sass/_layout.scss */
.l-footer__main-content .footer-links__sub-category a:hover {
  text-decoration: underline;
}
/* line 744, ../sass/_layout.scss */
.l-footer__main-content .footer-links__sub-category + li {
  padding-top: 30px;
}
/* line 750, ../sass/_layout.scss */
.l-footer__sub-content {
  width: auto;
  padding: 30px 10px;
  text-align: center;
  border-top: solid 1px #c1d8d2;
}
/* line 755, ../sass/_layout.scss */
.l-footer__sub-content li {
  display: inline-block;
  padding: 10px 40px;
}
@media only screen and (max-width: 768px) {
  /* line 755, ../sass/_layout.scss */
  .l-footer__sub-content li {
    padding: 5px 10px;
  }
}
/* line 761, ../sass/_layout.scss */
.l-footer__sub-content li a {
  color: #444;
}
/* line 763, ../sass/_layout.scss */
.l-footer__sub-content li a:hover {
  text-decoration: underline;
}
/* line 769, ../sass/_layout.scss */
.l-footer .copyright {
  padding: 0 10px 30px;
  text-align: center;
  color: #999;
}

/*=============================
common parts
=============================*/
/* line 5, ../sass/_parts.scss */
.logo {
  background-image: url(../img/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* line 10, ../sass/_parts.scss */
.logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
}
/* line 17, ../sass/_parts.scss */
.logo.logo-header {
  width: 240px;
  height: 33px;
}
/* line 21, ../sass/_parts.scss */
.logo.logo-footer {
  float: left;
  width: 280px;
  height: 68px;
  margin-right: 20px;
}

/* line 28, ../sass/_parts.scss */
.btn {
  display: inline-block;
  text-align: center;
}
/* line 31, ../sass/_parts.scss */
.btn a,
.btn span {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

/*# sourceMappingURL=common.css.map */
