@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ======================================================================
 common
====================================================================== */
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 14px;
  color: #1b1b1b;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 779px) {
  body {
    font-size: 12px;
  }
}

a {
  text-decoration: none;
  color: #1b1b1b;
}

img {
  vertical-align: bottom;
}
@media screen and (max-width: 779px) {
  img {
    width: 100%;
  }
}

.container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 779px) {
  .container {
    width: 92%;
  }
}

.sm {
  display: none !important;
}

@media screen and (max-width: 779px) {
  .sm {
    display: block !important;
  }

  .md {
    display: none !important;
  }
}
.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.trans:hover,
.trans:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  opacity: 0.85;
}

main .btn01 {
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  text-align: center;
  margin: 0 auto;
  border: 1px solid #43adbf;
  background-image: url(../img/common/arrow02_r.png);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 93% 50%;
  background-size: 8px;
  font-size: 16px;
  color: #43adbf;
}
@media screen and (max-width: 779px) {
  main .btn01 {
    font-size: 12px;
    background-size: 6px;
  }
}
main .btn01:hover {
  background-image: url(../img/common/arrow01_r.png);
  background-color: #43adbf;
  color: white;
}

main .btn02 {
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  text-align: center;
  margin: 0 auto;
  border: 1px solid #43adbf;
  color: #43adbf;
  padding: 9px 0;
}
main .btn02:hover {
  background-color: #43adbf;
  color: white;
}

.tel {
  cursor: default;
}

#breadcrumb {
  border-top: 1px solid #f3f3f3;
  padding: 10px 0;
  font-size: 12px;
}
@media screen and (max-width: 779px) {
  #breadcrumb {
    margin-top: 56px;
    overflow-y: scroll;
    padding: 10px;
  }
}
#breadcrumb ul, #breadcrumb div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 779px) {
  #breadcrumb ul, #breadcrumb div {
    width: 200%;
  }
}
#breadcrumb ul li, #breadcrumb ul > span, #breadcrumb div li, #breadcrumb div > span {
  padding: 0 0.25em;
}

/* ======================================================================
 header
====================================================================== */
header .top {
  border: 1px solid #f3f3f3;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: white;
  height: 60px;
}
@media screen and (max-width: 779px) {
  header .top {
    padding: 10px 3%;
    width: 94%;
    height: inherit;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    height: inherit;
  }
}
@media screen and (max-width: 779px) {
  header .top > * {
    width: 50%;
  }
}
header .top .search img, header .top .btn img {
  width: 60px;
}
@media screen and (max-width: 779px) {
  header .top .search img, header .top .btn img {
    width: 36px;
  }
}
header .top .logo {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 779px) {
  header .top .logo {
    margin-top: 0;
    text-align: left;
  }
  header .top .logo img {
    width: 100px;
  }
}
header .top .btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 10px;
}
@media screen and (max-width: 779px) {
  header .top .btn {
    position: static;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
  }
}
header .top .btn a {
  margin-left: 10px;
}
@media screen and (max-width: 779px) {
  header .top .btn a {
    margin-left: 7px;
  }
}
header .top .btn .hamburger {
  margin-left: 13px;
}
header .btm {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding-top: 82px;
}
@media screen and (max-width: 779px) {
  header .btm {
    padding-top: 0;
    display: none;
    /*display: block;*/
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
header .btm a {
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  width: 20%;
  text-align: center;
  font-size: 16px;
  padding: 22px 0;
}
@media screen and (max-width: 779px) {
  header .btm a {
    width: 100%;
    display: block;
  }
}
header .btm a:hover {
  background: #43adbf;
  color: white;
}

/* ======================================================================
 footer
====================================================================== */
footer .contact {
  background-size: cover;
  background: #f3f3f3;
  text-align: center;
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  footer .contact {
    padding: 5%;
  }
}
footer .contact .container {
  background: white;
  width: 720px;
  padding: 50px 40px 40px;
}
@media screen and (max-width: 779px) {
  footer .contact .container {
    width: 90%;
    padding: 7% 5%;
  }
}
footer .contact .container > .ttl {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
  font-size: 26px;
}
footer .contact .container > .ttl span {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  color: #43adbf;
  margin-top: 20px;
  display: block;
}
footer .contact .container .txt {
  line-height: 1.5;
  margin: 30px 0 50px;
}
@media screen and (max-width: 779px) {
  footer .contact .container .txt {
    margin: 5% 0;
  }
}
footer .contact .container .call {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 779px) {
  footer .contact .container .call {
    display: block;
  }
}
footer .contact .container .call .box {
  position: relative;
  border: 1px solid #d7d7d7;
  padding: 40px 20px 30px;
  width: 340px;
}
@media screen and (max-width: 779px) {
  footer .contact .container .call .box {
    padding: 10% 5% 7%;
    width: 75%;
    margin: 10% auto 0;
  }
}
footer .contact .container .call .box:last-child {
  margin-left: 40px;
}
@media screen and (max-width: 779px) {
  footer .contact .container .call .box:last-child {
    margin: 10% auto 0;
  }
}
footer .contact .container .call .box .ttl {
  position: absolute;
  top: -18px;
  left: 50%;
  margin-left: -125px;
  background: #43adbf;
  color: white;
  width: 250px;
  padding: 10px;
}
@media screen and (max-width: 779px) {
  footer .contact .container .call .box .ttl {
    width: 200px;
    padding: 3% 0;
    margin-left: -100px;
  }
}
footer .contact .container .call .box .tel {
  display: block;
  color: #43adbf;
  font-size: 30px;
  margin-bottom: 15px;
}
@media screen and (max-width: 779px) {
  footer .contact .container .call .box .tel {
    font-size: 20px;
    margin-bottom: 5%;
  }
}
footer .contact .container .call .box .tel img {
  width: 44px;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 779px) {
  footer .contact .container .call .box .tel img {
    width: 33px;
    margin-right: 5px;
  }
}
footer .sns {
  margin: -40px 0 50px;
}
@media screen and (max-width: 779px) {
  footer .sns {
    margin: -3% 0 13%;
  }
}
footer .sns .ttl {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 779px) {
  footer .sns .ttl {
    margin-bottom: 3%;
  }
}
footer .sns .ttl img {
  width: 218px;
}
@media screen and (max-width: 779px) {
  footer .sns .ttl img {
    width: 165px;
  }
}
footer .sns .btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
footer .sns .btn a {
  margin: 0 30px;
}
@media screen and (max-width: 779px) {
  footer .sns .btn a {
    margin: 0 5%;
  }
}
footer .sns .btn a img {
  width: 50px;
}
@media screen and (max-width: 779px) {
  footer .sns .btn a img {
    width: 38px;
  }
}
footer .menu {
  background: #f3f3f3;
  padding: 40px 0 10px;
}
@media screen and (max-width: 779px) {
  footer .menu {
    padding: 1.5em 0 0;
  }
}
footer .menu .container .box {
  margin-bottom: 30px;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box {
    margin-bottom: 7%;
  }
}
footer .menu .container .box > .ttl {
  border-left: 3px solid #43adbf;
  border-bottom: 1px solid #e0e0e0;
  padding: 7px 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box > .ttl {
    padding: 7px;
  }
}
footer .menu .container .box .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 10px;
  font-size: 12px;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box .list {
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.2em;
    margin-bottom: 1.2em;
  }
}
footer .menu .container .box .list.w100 {
  display: block;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box .list.w100 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: none;
  }
}
@media screen and (max-width: 779px) {
  footer .menu .container .box .list.w100 .link {
    width: 50%;
    margin-top: -1.5em;
  }
}
footer .menu .container .box .list.w100 .link a {
  margin: 0 0.5em 1em 0;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box .list.w100 .link a {
    margin: 1.5em 0;
  }
}
footer .menu .container .box .list .ttl {
  width: 180px;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box .list .ttl {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    background: url(../img/common/arrow02_d.png) no-repeat 100% 50%;
    background-size: 13px;
  }
  footer .menu .container .box .list .ttl.active {
    background: url(../img/common/arrow02_u.png) no-repeat 100% 50%;
    background-size: 13px;
  }
}
footer .menu .container .box .list .ttl + .link {
  width: 820px;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box .list .ttl + .link {
    width: 100%;
    display: none;
  }
}
footer .menu .container .box .list .link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box .list .link {
    display: block;
  }
}
footer .menu .container .box .list .link a {
  margin: 0 0.5em 0.5em 0;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box .list .link a {
    display: block;
    margin: 1.5em 0;
  }
  footer .menu .container .box .list .link a:last-child {
    margin: 1.5em 0 0;
  }
}
footer .menu .container .box .list .link a:not(:last-child):after {
  content: "/";
  margin-left: 0.5em;
  color: #d7d7d7;
}
@media screen and (max-width: 779px) {
  footer .menu .container .box .list .link a:not(:last-child):after {
    display: none;
  }
}
footer #gototop {
  cursor: pointer;
  position: fixed;
  right: 40px;
  bottom: 90px;
}
@media screen and (max-width: 779px) {
  footer #gototop {
    position: static;
    text-align: center;
    padding: 5% 0;
  }
}
footer #gototop img {
  width: 50px;
}
@media screen and (max-width: 779px) {
  footer #gototop img {
    width: 38px;
  }
}
footer .copy {
  background: #43adbf;
  color: white;
  text-align: center;
  font-size: 13px;
  padding: 19px;
}
@media screen and (max-width: 779px) {
  footer .copy {
    padding: 4%;
    font-size: 10px;
  }
}

/* ======================================================================
 under
====================================================================== */
.u_kv {
  position: relative;
  background-size: cover;
  text-align: center;
  height: 250px;
}
@media screen and (max-width: 779px) {
  .u_kv {
    height: 125px;
  }
  .u_kv + #breadcrumb {
    margin-top: -56px;
  }
}
.u_kv .ttl {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  color: white;
}
@media screen and (max-width: 779px) {
  .u_kv .ttl {
    font-size: 20px;
  }
}

.pager {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.pager li:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 779px) {
  .pager li:not(:last-child) {
    margin-right: 5px;
  }
}
.pager li a {
  position: relative;
  border: 1px solid #43adbf;
  color: #43adbf;
  display: block;
  font-size: 16px;
  width: 38px;
  height: 38px;
}
@media screen and (max-width: 779px) {
  .pager li a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.pager li a.active {
  background: #43adbf;
  color: white;
}
.pager li a span {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* ======================================================================
 top
====================================================================== */
@media screen and (max-width: 779px) {
  .top {
    padding-top: 58px;
  }
}
.top .sec_ttl {
  text-align: center;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
  font-size: 26px;
}
.top .sec_ttl span {
  display: block;
  margin-top: 20px;
  font-family: "Lato", sans-serif;
  color: #43adbf;
  font-size: 12px;
}
.top .sec_txt {
  text-align: center;
  line-height: 1.5;
  margin: 40px 0;
}
@media screen and (max-width: 779px) {
  .top .sec_txt {
    margin: 5% 0;
    text-align: left;
  }
}
.top .kv img {
  width: 100%;
}
.top .kv .slick-dots {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: absolute;
  width: 100%;
  bottom: 20px;
}
@media screen and (max-width: 779px) {
  .top .kv .slick-dots {
    bottom: 10px;
  }
}
.top .kv .slick-dots li {
  margin: 0 3px;
}
.top .kv .slick-dots li button {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: white;
  font-size: 0;
  padding: 0;
  border: none;
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 779px) {
  .top .kv .slick-dots li button {
    width: 5px;
    height: 5px;
  }
}
.top .kv .slick-dots li.slick-active button {
  background: #43adbf;
}
.top .news {
  border-bottom: 1px solid #f3f3f3;
}
.top .news .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 779px) {
  .top .news .container {
    display: block;
  }
}
@media screen and (max-width: 779px) {
  .top .news .container {
    padding: 5% 0;
  }
}
.top .news .container .ttl {
  font-weight: bold;
  color: #43adbf;
  text-align: center;
  font-size: 16px;
  width: 280px;
}
@media screen and (max-width: 779px) {
  .top .news .container .ttl {
    width: 100%;
    font-size: 13px;
    margin-bottom: 3%;
  }
}
.top .news .container .list {
  width: 720px;
}
@media screen and (max-width: 779px) {
  .top .news .container .list {
    width: 100%;
  }
}
.top .news .container .list a {
  display: block;
  overflow: hidden;
  line-height: 2;
}
@media screen and (max-width: 779px) {
  .top .news .container .list a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.top .news .container .list a span {
  margin-right: 1em;
}
.top .sec01 {
  text-align: center;
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .top .sec01 {
    padding: 10% 0 5%;
  }
}
.top .sec01 .ttl01, .top .sec01 .ttl02, .top .sec01 .txt {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
}
.top .sec01 .ttl01 {
  font-size: 30px;
}
@media screen and (max-width: 779px) {
  .top .sec01 .ttl01 {
    font-size: 23px;
  }
}
.top .sec01 .ttl02 {
  font-size: 45px;
}
@media screen and (max-width: 779px) {
  .top .sec01 .ttl02 {
    font-size: 30px;
    line-height: 1.3;
  }
}
.top .sec01 .txt {
  margin: 40px 0 50px;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 779px) {
  .top .sec01 .txt {
    margin: 8% 0;
    font-size: 12px;
    line-height: 2;
  }
}
.top .sec01 .btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-top: 40px;
}
@media screen and (max-width: 779px) {
  .top .sec01 .btn {
    display: block;
    margin-top: 10%;
  }
}
.top .sec01 .btn .btn01 {
  width: 350px;
  padding: 21px 0;
  margin: 0 20px;
}
@media screen and (max-width: 779px) {
  .top .sec01 .btn .btn01 {
    width: 90%;
    padding: 5%;
    margin: 5% 0;
  }
}
.top .sec02 {
  background: #f8f8f8;
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .top .sec02 {
    padding: 10% 0 5%;
  }
}
.top .sec02 .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 60px;
}
@media screen and (max-width: 779px) {
  .top .sec02 .list {
    margin-top: 7%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.top .sec02 .list li {
  position: relative;
  width: 220px;
  height: 350px;
}
@media screen and (max-width: 779px) {
  .top .sec02 .list li {
    width: 48%;
    height: auto;
    margin-bottom: 7%;
  }
}
.top .sec02 .list li:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 779px) {
  .top .sec02 .list li:not(:last-child) {
    margin-right: auto;
  }
}
@media screen and (max-width: 779px) {
  .top .sec02 .list li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
.top .sec02 .list li .img {
  position: relative;
}
.top .sec02 .list li .img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.top .sec02 .list li .img:after {
  content: "";
  width: 93%;
  height: 91%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid white;
  margin: 3%;
}
.top .sec02 .list li .img .ttl {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 16px;
  line-height: 1.7;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
  z-index: 1;
}
@media screen and (max-width: 779px) {
  .top .sec02 .list li .img .ttl {
    line-height: 1.3;
  }
}
.top .sec02 .list li .img img {
  width: 100%;
}
.top .sec02 .list li .txt {
  line-height: 1.5;
  margin-top: 15px;
}
@media screen and (max-width: 779px) {
  .top .sec02 .list li .txt {
    min-height: 7em;
  }
}
.top .sec02 .list li .txt span {
  display: block;
  font-size: 10px;
}
.top .sec02 .list li .btn01 {
  width: 180px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -90px;
  padding: 15px 0;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
}
@media screen and (max-width: 779px) {
  .top .sec02 .list li .btn01 {
    width: 90%;
    padding: 9% 0;
    font-size: 10px;
    position: static;
    margin: 7% auto 0;
  }
}
.top .sec03 {
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .top .sec03 {
    padding: 10% 0;
  }
}
.top .sec03 .recommend {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 779px) {
  .top .sec03 .recommend {
    margin-top: 5%;
  }
}
.top .sec03 .recommend a {
  display: block;
}
.top .sec03 .recommend a img {
  margin: 0 auto 20px;
  border: 1px solid #e0e0e0;
}
@media screen and (max-width: 779px) {
  .top .sec03 .recommend a img {
    margin: 0 auto;
    width: 50%;
  }
}
.top .sec03 .recommend a .txt {
  line-height: 1.5;
}
.top .sec03 .recommend .slick-arrow {
  z-index: 99;
  cursor: pointer;
  position: absolute;
  font-size: 0;
  background: none;
  top: 50%;
  width: 40px;
  margin-top: -20px;
}
@media screen and (max-width: 779px) {
  .top .sec03 .recommend .slick-arrow {
    width: 30px;
    /*margin-top: -15px;*/
  }
}
.top .sec03 .recommend .slick-arrow.prev-arrow {
  left: -40px;
}
@media screen and (max-width: 779px) {
  .top .sec03 .recommend .slick-arrow.prev-arrow {
    left: 0;
  }
}
.top .sec03 .recommend .slick-arrow.next-arrow {
  right: -40px;
}
@media screen and (max-width: 779px) {
  .top .sec03 .recommend .slick-arrow.next-arrow {
    right: 0;
  }
}
.top .sec04 {
  background: url(../img/top/bg01.jpg) no-repeat 0 0;
  background-size: cover;
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .top .sec04 {
    background: url(../img/top/sm/bg01.jpg) #fcfcfe no-repeat 0 0;
    background-size: 100%;
    padding: 10% 0;
  }
}
.top .sec04 .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 779px) {
  .top .sec04 .list {
    margin-bottom: 7%;
  }
}
.top .sec04 .list li {
  margin-bottom: 40px;
}
@media screen and (max-width: 779px) {
  .top .sec04 .list li {
    width: 49%;
    margin-bottom: 6%;
  }
}
.top .sec04 .list li:not(:nth-child(3n)) {
  margin-right: 40px;
}
@media screen and (max-width: 779px) {
  .top .sec04 .list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 779px) {
  .top .sec04 .list li:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}
.top .sec04 .list li a {
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  display: block;
  background: white;
  width: 286px;
  padding: 10px 10px 5px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 779px) {
  .top .sec04 .list li a {
    width: 96%;
    padding: 2% 2% 6%;
    position: relative;
  }
}
.top .sec04 .list li a .img {
  position: relative;
}
.top .sec04 .list li a .img img {
  width: 100%;
}
.top .sec04 .list li a .img .cat {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #43adbf;
  color: white;
  text-align: center;
  padding: 7px;
  font-size: 12px;
}
.top .sec04 .list li a .ttl {
  line-height: 1.5;
  margin: 10px 0;
}
@media screen and (max-width: 779px) {
  .top .sec04 .list li a .ttl {
    margin: 2% 0;
    font-size: 10px;
  }
  .top .sec04 .list li a .ttl .cat {
    background: #43adbf;
    color: white;
    font-size: 10px;
    padding: 2% 4%;
    margin-bottom: 3%;
    display: table !important;
  }
}
.top .sec04 .list li a .date {
  text-align: right;
  color: #999999;
  right: 10px;
  bottom: 10px;
  position: absolute;
}
@media screen and (max-width: 779px) {
  .top .sec04 .list li a .date {
    font-size: 10px;
  }
}
.top .sec04 .btn01 {
  width: 200px;
  padding: 18px 0;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
}
@media screen and (max-width: 779px) {
  .top .sec04 .btn01 {
    width: 150px;
    padding: 4% 0;
  }
}
.top .sec05 {
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .top .sec05 {
    padding: 10% 0;
  }
}
.top .sec05 .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 779px) {
  .top .sec05 .list {
    display: block;
    margin-bottom: 7%;
  }
}
.top .sec05 .list li {
  width: 306px;
}
@media screen and (max-width: 779px) {
  .top .sec05 .list li {
    width: 100%;
    margin-bottom: 5%;
  }
}
.top .sec05 .list li:not(:nth-child(3n)) {
  margin-right: 40px;
}
@media screen and (max-width: 779px) {
  .top .sec05 .list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.top .sec05 .list li iframe {
  width: 100%;
  height: 200px;
}
.top .sec05 .btn01 {
  width: 200px;
  padding: 18px 0;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
}
@media screen and (max-width: 779px) {
  .top .sec05 .btn01 {
    width: 150px;
    padding: 4% 0;
  }
}
.top .sec06 {
  background: url(../img/top/bg02.jpg) no-repeat 0 0;
  background-size: 100%;
  padding: 220px 0 70px;
}
@media screen and (max-width: 779px) {
  .top .sec06 {
    background: url(../img/top/sm/bg02.jpg) no-repeat 0 0;
    background-size: 100%;
    padding: 20% 0 10%;
  }
}
.top .sec06 .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 779px) {
  .top .sec06 .container {
    display: block;
  }
}
.top .sec06 .container .box {
  width: 470px;
}
@media screen and (max-width: 779px) {
  .top .sec06 .container .box {
    width: 100%;
    margin-top: 15%;
  }
}
.top .sec06 .container .box:last-child {
  margin-left: 60px;
}
@media screen and (max-width: 779px) {
  .top .sec06 .container .box:last-child {
    margin-left: 0;
  }
}
.top .sec06 .container .box .img {
  margin: 30px 0 15px;
}
@media screen and (max-width: 779px) {
  .top .sec06 .container .box .img {
    margin: 7% 0 5%;
  }
}
.top .sec06 .container .box .txt {
  line-height: 1.5;
  height: 3em;
}
@media screen and (max-width: 779px) {
  .top .sec06 .container .box .txt {
    height: auto;
  }
}
.top .sec06 .container .box .btn01 {
  width: 200px;
  padding: 18px 0;
  margin-top: 40px;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
}
@media screen and (max-width: 779px) {
  .top .sec06 .container .box .btn01 {
    width: 150px;
    padding: 4% 0;
    margin-top: 7%;
  }
}

.carousel {
  background: #f3f3f3;
  padding: 45px 0;
}
@media screen and (max-width: 779px) {
  .carousel {
    padding: 7% 0;
  }
}
.carousel a {
  display: block;
  position: relative;
  margin: 0 15px;
}
.carousel a img {
  width: 100%;
}
.carousel a .ttl {
  width: 94%;
  min-height: 42px;
  line-height: 1.5;
  padding: 10px 0 0;
  text-align: center;
}

.shopping {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media screen and (max-width: 779px) {
  .shopping {
    display: block;
  }
}
.shopping .box {
  display: block;
  margin: 50px 20px;
}
@media screen and (max-width: 779px) {
  .shopping .box {
    margin: 5% 0;
  }
}

/* ======================================================================
 column
====================================================================== */
.column .u_kv {
  border-top: 1px solid #f3f3f3;
  height: 150px;
}
@media screen and (max-width: 779px) {
  .column .u_kv {
    height: 100px;
    margin-top: 56px;
  }
}
.column .u_kv .ttl {
  text-shadow: none;
  color: #999999;
}
@media screen and (max-width: 779px) {
  .column .menu {
    border: 1px solid #d1d1d1;
    width: 70%;
    margin: 0 auto 5%;
  }
}
.column .menu .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media screen and (max-width: 779px) {
  .column .menu .box {
    display: none;
  }
}
.column .menu .ttl {
  font-size: 14px;
  color: #43adbf;
  padding: 5%;
  position: relative;
}
.column .menu .ttl:after {
  content: "▼";
  font-size: 10px;
  color: #43adbf;
  position: absolute;
  right: 3%;
  top: 40%;
}
.column .menu a {
  position: relative;
  display: block;
  padding: 20px 40px 40px;
  font-size: 16px;
}
@media screen and (max-width: 779px) {
  .column .menu a {
    padding: 5%;
    font-size: 14px;
    color: #43adbf;
    border-top: 1px solid #e8e8e8;
  }
}
.column .menu a:hover, .column .menu a.active {
  color: #43adbf;
}
.column .menu a:hover:after, .column .menu a.active:after {
  content: "▼";
  position: absolute;
  text-align: center;
  bottom: 22px;
  left: 48%;
  font-size: 10px;
}
@media screen and (max-width: 779px) {
  .column .menu a:hover:after, .column .menu a.active:after {
    display: none;
  }
}
.column .top_box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 779px) {
  .column .top_box {
    display: block;
    margin-bottom: 10%;
  }
}
.column .top_box > .detail {
  width: 680px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail {
    width: 100%;
  }
}
.column .top_box > .detail .recommend a {
  position: relative;
  display: block;
  color: white;
}
.column .top_box > .detail .recommend a .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQzYWRiZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzQzYWRiZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0M2FkYmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(67, 173, 191, 0)), color-stop(50%, rgba(67, 173, 191, 0)), color-stop(100%, #43adbf));
  background-image: -moz-linear-gradient(top, rgba(67, 173, 191, 0) 0%, rgba(67, 173, 191, 0) 50%, #43adbf 100%);
  background-image: -webkit-linear-gradient(top, rgba(67, 173, 191, 0) 0%, rgba(67, 173, 191, 0) 50%, #43adbf 100%);
  background-image: linear-gradient(to bottom, rgba(67, 173, 191, 0) 0%, rgba(67, 173, 191, 0) 50%, #43adbf 100%);
}
.column .top_box > .detail .recommend a .bg .box {
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  position: absolute;
  bottom: 0;
  left: 0;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  padding: 30px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .recommend a .bg .box {
    padding: 5%;
  }
}
.column .top_box > .detail .recommend a .bg .box .date {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .recommend a .bg .box .date {
    font-size: 12px;
  }
}
.column .top_box > .detail .recommend a .bg .box .date .cat {
  background: #43adbf;
  color: white;
  font-size: 12px;
  padding: 5px;
  margin-left: 10px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .recommend a .bg .box .date .cat {
    font-size: 9px;
    padding: 3px 5px;
  }
}
.column .top_box > .detail .recommend a .bg .box .ttl {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .recommend a .bg .box .ttl {
    font-size: 15px;
  }
}
.column .top_box > .detail .recommend .slick-dots {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-top: 10px;
}
.column .top_box > .detail .recommend .slick-dots li {
  margin: 0 5px;
}
.column .top_box > .detail .recommend .slick-dots li.slick-active button {
  background: #43adbf;
}
.column .top_box > .detail .recommend .slick-dots li button {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  border: 1px solid #43adbf;
  background: white;
  width: 10px;
  height: 10px;
}
.column .top_box > .detail .list {
  margin-bottom: 60px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .list {
    margin-bottom: 10%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.column .top_box > .detail .list li {
  margin-top: 30px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .list li {
    margin-top: 5%;
    width: 48.5%;
  }
  .column .top_box > .detail .list li:not(:nth-child(2n)) {
    margin-right: 3%;
  }
}
.column .top_box > .detail .list li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .list li a {
    display: block;
  }
}
.column .top_box > .detail .list li a .img {
  width: 245px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .list li a .img {
    width: 100%;
  }
}
.column .top_box > .detail .list li a .img img {
  width: 100%;
}
.column .top_box > .detail .list li a .box {
  width: 415px;
  margin-left: 20px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .list li a .box {
    width: 100%;
    margin-left: 0;
  }
}
.column .top_box > .detail .list li a .box .date {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .list li a .box .date {
    font-size: 9px;
    margin: 5% 0;
  }
}
.column .top_box > .detail .list li a .box .date .cat {
  background: #43adbf;
  color: white;
  font-size: 12px;
  padding: 5px;
  margin-left: 10px;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .list li a .box .date .cat {
    display: table;
    margin: 5% 0 0;
    font-size: 9px;
    padding: 5px;
  }
}
.column .top_box > .detail .list li a .box .ttl {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 779px) {
  .column .top_box > .detail .list li a .box .ttl {
    font-size: 12px;
  }
}
.column .top_box > .detail .list li a .box .txt {
  line-height: 1.5;
  margin-top: 1em;
}
.column .detail_box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 779px) {
  .column .detail_box {
    display: block;
    margin-bottom: 10%;
  }
}
.column .detail_box > .detail {
  width: 680px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail {
    width: 100%;
  }
}
.column .detail_box > .detail .head .date {
  font-size: 12px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .head .date {
    font-size: 12px;
  }
}
.column .detail_box > .detail .head .date .cat {
  display: inline-block;
  vertical-align: middle;
  background: #43adbf;
  color: white;
  font-size: 12px;
  padding: 7px 5px;
  margin-left: 10px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .head .date .cat {
    margin-left: 5px;
    font-size: 9px;
    padding: 5px;
  }
}
.column .detail_box > .detail .head .ttl {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 20px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .head .ttl {
    font-size: 15px;
    margin: 3% 0;
  }
}
.column .detail_box > .detail .main p {
  line-height: 1.7;
  font-size: 15px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .main p {
    line-height: 1.5;
  }
}
.column .detail_box > .detail .main h1, .column .detail_box > .detail .main h2, .column .detail_box > .detail .main h3, .column .detail_box > .detail .main h4, .column .detail_box > .detail .main h5, .column .detail_box > .detail .main h6 {
  font-weight: bold;
  padding: 13px 0;
  font-size: 18px;
  margin: 60px 0 20px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .main h1, .column .detail_box > .detail .main h2, .column .detail_box > .detail .main h3, .column .detail_box > .detail .main h4, .column .detail_box > .detail .main h5, .column .detail_box > .detail .main h6 {
    font-size: 12px;
    padding: 3% 0;
    margin: 10% 0 3%;
  }
}
.column .detail_box > .detail .main .kv {
  margin: 30px 0;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .main .kv {
    margin: 5% 0;
  }
}
.column .detail_box > .detail .main .kv img {
  width: 100%;
}
.column .detail_box > .detail .main .sns {
  margin: 30px 0;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .main .sns {
    margin: 5% 0;
  }
}
.column .detail_box > .detail .main .content {
  border: 1px solid #d1d1d1;
  padding: 30px;
  display: inline-block;
  margin-top: 30px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .main .content {
    display: block;
    padding: 5%;
    margin-top: 5%;
  }
}
.column .detail_box > .detail .main .content .ttl {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .main .content .ttl {
    margin-bottom: 3%;
  }
}
.column .detail_box > .detail .main .content a {
  display: block;
  color: #43adbf;
  line-height: 1.7;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .main .content a {
    line-height: 1.5;
  }
}
.column .detail_box > .detail .other > .ttl {
  border: 1px solid #d1d1d1;
  color: #43adbf;
  padding: 13px 20px;
  font-size: 18px;
  margin: 60px 0 20px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .other > .ttl {
    font-size: 12px;
    padding: 3% 5%;
    margin: 10% 0 3%;
  }
}
.column .detail_box > .detail .other .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.column .detail_box > .detail .other .list li {
  width: 155px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 12px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .other .list li {
    width: 48.5%;
    margin-bottom: 4%;
  }
}
.column .detail_box > .detail .other .list li:not(:nth-child(4n)) {
  margin-right: 20px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .other .list li:not(:nth-child(4n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .other .list li:not(:nth-child(2n)) {
    margin-right: 3%;
  }
}
.column .detail_box > .detail .other .list li .img {
  margin-bottom: 10px;
}
@media screen and (max-width: 779px) {
  .column .detail_box > .detail .other .list li .img {
    margin-bottom: 3%;
  }
}
.column .detail_box > .detail .other .list li .img img {
  width: 100%;
}
.column .detail_box > .detail .other .list li .date {
  font-size: 9px;
}
.column .column_side {
  width: 280px;
  margin-left: 40px;
}
@media screen and (max-width: 779px) {
  .column .column_side {
    width: 100%;
    margin: 15% 0 0 0;
  }
}
.column .column_side > * {
  margin-bottom: 30px;
}
@media screen and (max-width: 779px) {
  .column .column_side > * {
    margin-bottom: 10%;
  }
}
.column .column_side .fb {
  height: 130px;
  overflow: hidden;
}
.column .column_side .side_ttl {
  border: 1px solid #d1d1d1;
  text-align: center;
  color: #43adbf;
  padding: 10px;
}
@media screen and (max-width: 779px) {
  .column .column_side .side_ttl {
    font-size: 18px;
    padding: 3%;
  }
}
.column .column_side .search {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 779px) {
  .column .column_side .search {
    width: 80%;
    margin: 0 auto 15%;
  }
}
.column .column_side .search input[type=text] {
  border: 1px solid #d1d1d1;
  padding: 10px;
  width: 220px;
}
@media screen and (max-width: 779px) {
  .column .column_side .search input[type=text] {
    width: 74%;
    padding: 5%;
  }
}
.column .column_side .search input[type=submit] {
  cursor: pointer;
  font-size: 0;
  background: #43adbf url(../img/common/search.png) no-repeat 50% 50%;
  background-size: 21px;
  border: none;
  width: 40px;
}
@media screen and (max-width: 779px) {
  .column .column_side .search input[type=submit] {
    width: 16%;
  }
}
.column .column_side .ranking a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 10px;
}
.column .column_side .ranking a .img {
  position: relative;
  width: 80px;
}
@media screen and (max-width: 779px) {
  .column .column_side .ranking a .img {
    width: 30%;
  }
}
.column .column_side .ranking a .img img {
  width: 100%;
}
.column .column_side .ranking a .img .rank {
  color: white;
  background: #43adbf;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 11px;
  width: 24px;
  padding: 6px 0;
}
.column .column_side .ranking a .img .rank.c01 {
  background: #ccc000;
}
.column .column_side .ranking a .img .rank.c02 {
  background: #b4b4b4;
}
.column .column_side .ranking a .img .rank.c03 {
  background: #dc7f25;
}
.column .column_side .ranking a .box {
  width: 190px;
  margin-left: 10px;
  line-height: 1.3;
}
@media screen and (max-width: 779px) {
  .column .column_side .ranking a .box {
    width: 67%;
    margin-left: 3%;
  }
}
.column .column_side .ranking a .box .date {
  font-size: 10px;
  margin-bottom: 5px;
}
.column .column_side .ranking a .box .ttl {
  font-size: 12px;
}
@media screen and (max-width: 779px) {
  .column .column_side .ranking a .box .ttl {
    font-size: 13px;
  }
}
.column .column_side .keyword .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 5px;
}
.column .column_side .keyword .list a {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #e8e8e8;
  background: url(../img/common/tag.png) no-repeat 5px 50%;
  background-size: 11px;
  padding: 6px 6px 6px 20px;
  margin: 5px 5px 0 0;
  font-size: 11px;
}
@media screen and (max-width: 779px) {
  .column .column_side .keyword .list a {
    font-size: 13px;
  }
}

/* ======================================================================
 product
====================================================================== */
.product .menu {
  background: url(../img/product/bg01.jpg) no-repeat 100% 100%;
  background-size: 100%;
  padding: 60px 0;
  height: 600px;
  margin-bottom: -400px;
}
@media screen and (max-width: 779px) {
  .product .menu {
    background: url(../img/product/sm/bg01.jpg) no-repeat 100% 100%;
    background-size: 100%;
    padding: 0;
    margin-bottom: -250px;
  }
}
.product .menu .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.product .menu .list li {
  text-align: center;
  width: 22.75%;
  text-shadow: 0 0 10px white, 0 0 10px white, 0 0 10px white, 0 0 10px white, 0 0 10px white;
}
@media screen and (max-width: 779px) {
  .product .menu .list li {
    width: 47.5%;
    margin-top: 5%;
  }
}
.product .menu .list li:not(:last-child) {
  margin-right: 3%;
}
@media screen and (max-width: 779px) {
  .product .menu .list li:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 779px) {
  .product .menu .list li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
.product .menu .list li a {
  color: #43adbf;
  font-weight: bold;
  line-height: 1.5;
  font-size: 16px;
}
@media screen and (max-width: 779px) {
  .product .menu .list li a {
    font-size: 15px;
  }
}
.product .menu .list li a img {
  width: 100%;
  margin-bottom: 5px;
}
@media screen and (max-width: 779px) {
  .product .menu .list li a img {
    margin-bottom: 5%;
  }
}
.product .product_ttl {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
  font-size: 26px;
}
@media screen and (max-width: 779px) {
  .product .product_ttl {
    font-size: 20px;
    margin-bottom: 7%;
  }
}
.product .product_ttl:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 30px auto 0;
  background: #43adbf;
}
@media screen and (max-width: 779px) {
  .product .product_ttl:after {
    width: 30px;
    margin: 5% auto 0;
  }
}
.product .product_txt {
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 779px) {
  .product .product_txt {
    text-align: left;
  }
}
.product .product_img {
  margin: 30px 0 20px;
}
@media screen and (max-width: 779px) {
  .product .product_img {
    margin: 5% 0 0;
  }
}
.product .product_img img{
    width: 100%;
}
.product .product_line {
  text-align: center;
  color: white;
  padding: 15px 0;
  font-weight: bold;
  font-size: 16px;
  margin: 60px 0 15px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.product .product_line.c01 {
  background: #ADADAD;
}
.product .product_line.c02 {
  background: #5476E4;
}
.product .product_line.c03 {
  background: #DFB449;
}
.product .product_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*@include justify_content(center);*/
}
@media screen and (max-width: 779px) {
  .product .product_list {
    display: block;
    margin-top: 0;
  }
}
.product .product_list li {
  background: white;
  margin-top: 30px;
  border: 1px solid #e2e2e2;
  width: 281px;
  padding: 30px 15px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 779px) {
  .product .product_list li {
    margin-top: 4%;
    width: 92%;
    padding: 4%;
  }
}
.product .product_list li:not(:nth-child(3n)) {
  margin-right: 30px;
}
@media screen and (max-width: 779px) {
  .product .product_list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.product .product_list li .name {
  text-align: center;
  line-height: 1.3;
  font-size: 16px;
  /*height: 4.5em;*/
  height: 1.5em;
  position: relative;
  font-weight: bold;
}
.product .product_list li .name span {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: block;
  color: white;
  text-align: center;
  font-size: 12px;
  padding: 5px 0;
}
.product .product_list li .name span.c01 {
  background: #ADADAD;
}
.product .product_list li .name span.c02 {
  background: #5476E4;
}
.product .product_list li .name span.c03 {
  background: #DFB449;
}
@media screen and (max-width: 779px) {
  .product .product_list li .name {
    font-size: 12px;
    /*height: 5em;*/
  }
}
.product .product_list li .img {
  text-align: center;
}
.product .product_list li .img img {
  width: 100%;
}
.product .product_list li .txt {
  line-height: 1.5;
  margin-bottom: 20px;
  height: 5em;
}
@media screen and (max-width: 779px) {
  .product .product_list li .txt {
    margin-bottom: 8%;
    /*height: 6em;*/
    height: auto;
  }
}
.product .product_list li .btn01 {
  width: 200px;
  padding: 17px 0;
}
@media screen and (max-width: 779px) {
  .product .product_list li .btn01 {
    /*width: 80%;*/
    width: 100%;
    padding: 4% 0;
  }
}
.product .sec01, .product .sec02 {
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .product .sec01, .product .sec02 {
    padding: 10% 0;
  }
}
.product .sec02 {
  background: #f7f7f7;
}

/* ======================================================================
 about
====================================================================== */
.about {
  padding: 40px 0 70px;
  background: url(../img/about/bg01.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 779px) {
  .about {
    padding: 6% 0 10%;
  }
}
.about .img {
  text-align: center;
}
@media screen and (max-width: 779px) {
  .about .img {
    margin: 0 4%;
  }
}
.about .about_logo{
  margin: 0 auto 20px;
  display: block;
  width: 94px;
}
.about .box {
  text-align: center;
  padding: 45px 0;
  background: rgba(255,255,255,.7);
  margin-bottom: 100px;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", HG明朝E, serif;
}
@media screen and (max-width: 779px) {
  .about .box {
    padding: 7% 2%;
    margin-bottom: 7%;
  }
}
.about .box .ttl01 {
  margin-bottom: 50px;
  font-size: 36px;
}
@media screen and (max-width: 779px) {
  .about .box .ttl01 {
    font-size: 23px;
    margin-bottom: 6%;
  }
}
.about .box .ttl01:before, .about .box .ttl01:after {
  content: "";
  width: 50px;
  height: 1px;
  background: black;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em 5px;

}
@media screen and (max-width: 779px) {
  .about .box .ttl01:before, .about .box .ttl01:after {
    display: none;
  }
}
@media screen and (max-width: 779px) {
  .about .box .ttl01:after {
    content: "";
    width: 40px;
    height: 1px;
    background: white;
    display: block;
    margin: 7% auto 0;
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  }
}
.about .box .ttl02 {
  font-size: 24px;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 779px) {
  .about .box .ttl02 {
    font-size: 18px;
    text-align: left;
    line-height: 1.5;
  }
}
.about .box .txt {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 3em;
}
@media screen and (max-width: 779px) {
  .about .box .txt {
    font-size: 12px;
    text-align: left;
  }
}
