@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #323232;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.1rem;
  background: #fff; }

a {
  color: #216eb5;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

.bold {
  font-weight: 600; }

h2,
h3 {
  line-height: 1.4; }

.mincho {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; }

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }
.animation {
  opacity: 0; }

.slideup.on {
  opacity: 1;
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1); }

.zoomin.on {
  opacity: 1;
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1); }

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999; }
  .loader::after {
    animation: loader 0.5s linear infinite;
    border: 1px solid #5BA1E1;
    border-radius: 50%;
    border-right: 1px solid rgba(91, 161, 225, 0.2);
    border-top: 1px solid rgba(91, 161, 225, 0.2);
    content: "";
    height: 70px;
    width: 70px; }
  .loader.off {
    display: none; }

@keyframes loader {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }
#l-header {
  width: 100%;
  position: relative; }
  #l-header .inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    min-width: 1024px;
    margin: 0 auto 8px;
    padding-top: 10px;
    align-items: center;
    justify-content: space-between; }
    @media all and (max-width: 800px) {
      #l-header .inner {
        min-width: initial; } }
    #l-header .inner #logo {
      width: 250px; }
  #l-header .head-right {
    margin-left: auto; }
    @media all and (max-width: 800px) {
      #l-header .head-right {
        display: none; } }
  #l-header .head-right_contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding: 5px; }
    @media all and (max-width: 800px) {
      #l-header .head-right_contact {
        justify-content: flex-start;
        margin-top: 10px; } }
    @media all and (max-width: 639px) {
      #l-header .head-right_contact {
        justify-content: center; } }
  #l-header .head-right_mail {
    padding-left: 10px; }
    #l-header .head-right_mail a {
      display: block;
      padding: 4px 15px;
      border-radius: 40px;
      background: #5BA1E1;
      color: #fff;
      transition: all 0.2s ease-in; }
      #l-header .head-right_mail a:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0e0";
        font-weight: bold;
        margin-right: 5px;
        font-weight: 700;
        font-size: 2rem; }
      #l-header .head-right_mail a:hover {
        background: #02757E;
        color: #fff; }

#header_nav {
  position: relative;
  min-width: 1024px; }
  #header_nav.scrolled {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 95%;
    border-radius: 40px;
    transition: position 0.4s ease-out;
    background: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1); }
  #header_nav ul {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto; }
    #header_nav ul li {
      position: relative;
      flex: 1 0 auto;
      text-align: center; }
      #header_nav ul li:last-child {
        margin-right: 0; }
        #header_nav ul li:last-child a:after {
          display: none; }
      #header_nav ul li a {
        display: block;
        letter-spacing: 0.1rem;
        position: relative;
        line-height: 1.5;
        font-size: 1.4rem;
        padding: 15px 0 15px;
        color: #5BA1E1;
        text-align: center; }
        #header_nav ul li a span {
          display: block;
          font-size: 1.6rem;
          font-family: "Lora", serif;
          font-weight: 600;
          position: relative;
          text-transform: uppercase; }
        #header_nav ul li a:after {
          position: absolute;
          content: "";
          width: 1px;
          height: 60%;
          background: #999;
          right: 0;
          top: 50%;
          transform: translateY(-50%) skew(-10deg); }
        #header_nav ul li a:hover span, #header_nav ul li a.active span {
          color: #02757E;
          transition: all 0.3s ease-in; }
  #header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 45px;
    z-index: 999; }
    #header_nav .dropdown .dropdown-li {
      border-right: 0;
      margin: 0 0 5px;
      background: url(../img/bg-wood03.jpg); }
      #header_nav .dropdown .dropdown-li a {
        display: block;
        width: 130px;
        color: #3a200c;
        border: solid 0.9px rgba(58, 32, 12, 0.4);
        color: #555; }
      #header_nav .dropdown .dropdown-li.foot_only {
        display: none; }

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999; }
  #page-top a {
    display: block;
    background: #3088d9;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    text-align: center; }
    #page-top a:hover {
      opacity: 0.6; }
  @media all and (max-width: 639px) {
    #page-top {
      bototm: 20px; } }

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.12); } }
.swiper-slide {
  position: relative; }
  .swiper-slide:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    right: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    z-index: -1; }
  .swiper-slide.slide1:before {
    background-image: url(../img/1.jpg); }
  .swiper-slide.slide2:before {
    background-image: url(../img/2.jpg); }
  .swiper-slide.slide3:before {
    background-image: url(../img/3.jpg); }
  .swiper-slide.slide4:before {
    background-image: url(../img/4.jpg); }

.slide-img {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .slide-img img {
    width: 600px; }
  @media all and (max-width: 1200px) {
    .slide-img {
      height: 50vw; } }
  @media all and (max-width: 800px) {
    .slide-img img {
      width: 60%; } }
  @media all and (max-width: 639px) {
    .slide-img {
      height: 50vh; }
      .slide-img img {
        width: 80%; } }
  @media screen and (width: 568px) {
    .slide-img {
      height: 70vh; } }

#slideshow {
  position: relative;
  overflow: hidden; }

#catch {
  z-index: 50;
  position: absolute;
  left: 1%;
  bottom: 15%;
  opacity: 0;
  width: 720px;
  text-align: center; }
  #catch.on {
    opacity: 1;
    transition: 2s; }
  @media all and (max-width: 1200px) {
    #catch {
      width: 60%; } }
  @media all and (max-width: 639px) {
    #catch {
      width: 85%; } }
  @media screen and (width: 568px) {
    #catch {
      width: 40%; } }

/* bg_contact
----------------------------------*/
.bg_contact {
  position: relative;
  padding-top: 80px; }
  .bg_contact:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    background: url(../img/bg_footer.jpg) no-repeat center bottom/cover; }
  .bg_contact .inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    background: #f1edee;
    background: #fefefe;
    padding: 20px; }
    @media all and (max-width: 639px) {
      .bg_contact .inner {
        width: 90%;
        margin-bottom: 10px; } }

.contact_lead {
  font-size: 1.3em;
  color: #3a200c;
  text-align: center; }
  @media all and (max-width: 639px) {
    .contact_lead {
      font-size: 1em; } }

.map-wrap iframe {
  box-shadow: 0 0 0 4px #fefefe; }
@media all and (max-width: 639px) {
  .map-wrap {
    position: relative;
    padding-bottom: 65%;
    height: 0;
    overflow: hidden; }
    .map-wrap iframe,
    .map-wrap object,
    .map-wrap embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; } }

.contact_wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }
  .contact_wrap .contact_left,
  .contact_wrap .contact_right {
    width: 49%;
    padding: 20px 10px; }
  .contact_wrap .contact_right {
    text-align: right; }
  .contact_wrap .contact_left {
    margin-right: 2%; }
  @media all and (max-width: 639px) {
    .contact_wrap {
      width: 94%;
      flex-direction: column; }
      .contact_wrap .contact_left,
      .contact_wrap .contact_right {
        width: 100%;
        font-size: 0.9em;
        letter-spacing: 0;
        font-weight: normal; }
      .contact_wrap .contact_right {
        text-align: left; }
      .contact_wrap .contact_left {
        margin-right: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(4, 172, 234, 0.5); } }

.contact_bnr {
  margin: 10px auto 20px; }
  .contact_bnr > li {
    text-align: center; }
    .contact_bnr > li .bnr_tel {
      background: transparent;
      font-size: 3rem;
      letter-spacing: 0.15em;
      white-space: nowrap;
      color: #5BA1E1; }
      .contact_bnr > li .bnr_tel:before {
        font-family: "Font Awesome 5 Free";
        content: "\f095";
        font-weight: bold; }
      .contact_bnr > li .bnr_tel:hover {
        color: #1AD7C2;
        text-shadow: 0 0 5px rgba(58, 32, 12, 0.1); }
      @media all and (max-width: 639px) {
        .contact_bnr > li .bnr_tel {
          font-size: 2rem;
          max-width: 100%; } }
    .contact_bnr > li .bnr_mobile {
      background: #5BA1E1;
      letter-spacing: 0.15em; }
      .contact_bnr > li .bnr_mobile:before {
        font-family: "Font Awesome 5 Free";
        content: "\f3cd";
        font-weight: bold; }
      .contact_bnr > li .bnr_mobile:hover {
        background: #555; }
    .contact_bnr > li .bnr_fax {
      background: #ffffff;
      border: 1px solid #5BA1E1;
      color: #5BA1E1; }
      .contact_bnr > li .bnr_fax:before {
        font-family: "Font Awesome 5 Free";
        content: "\f1ac";
        font-weight: bold; }
    .contact_bnr > li .bnr_mail {
      font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
      background: #3088d9;
      color: #fefefe;
      border-radius: 30px; }
      .contact_bnr > li .bnr_mail:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0e0";
        font-weight: bold; }
      .contact_bnr > li .bnr_mail:hover {
        background: #5BA1E1;
        color: #fff; }
    .contact_bnr > li a,
    .contact_bnr > li span {
      display: block;
      padding: 10px;
      margin: 0 auto;
      color: #ffffff;
      font-size: 1.8rem;
      font-weight: 600;
      text-align: center;
      width: 360px;
      letter-spacing: 0.1rem; }
      .contact_bnr > li a:before,
      .contact_bnr > li span:before {
        margin-right: 5px; }
      @media all and (max-width: 639px) {
        .contact_bnr > li a,
        .contact_bnr > li span {
          max-width: 90%;
          font-size: 1.5rem; } }

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative; }
  #l-footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 20px; }
    @media all and (max-width: 800px) {
      #l-footer .inner {
        display: none; } }

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 10px 0;
  margin: 0 auto; }
  .footer_navi ul {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    padding: 0 5px; }
    .footer_navi ul li {
      flex: 1 0 auto;
      margin-bottom: 4px;
      margin: 0 0.5% 4px;
      text-align: center; }
      .footer_navi ul li a {
        color: #3088d9;
        font-size: 1.4rem;
        position: relative;
        padding-left: 20px;
        font-weight: 600; }
        .footer_navi ul li a span {
          display: none; }
        .footer_navi ul li a:before {
          content: "";
          background-color: #5BA1E1;
          width: 10px;
          height: 4px;
          position: absolute;
          top: 0.45em;
          left: 0; }
        .footer_navi ul li a:hover {
          color: #999; }
      .footer_navi ul li .dropdown {
        display: none; }
        .footer_navi ul li .dropdown .dropdon-li a {
          font-size: 1.2rem; }

.column2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center; }
  .column2 .child {
    width: 50%;
    padding: 20px; }
  .column2 .child1 {
    width: 35%; }
  .column2 .child2 {
    width: 62%; }
  @media all and (max-width: 800px) {
    .column2 .child,
    .column2 .child1,
    .column2 .child2 {
      width: 100%;
      border: 0; } }

.flogo {
  width: 300px;
  text-align: center;
  margin: 0 auto 10px;
  min-height: 0; }
  @media all and (max-width: 639px) {
    .flogo {
      margin: 0 auto 10px;
      width: 90%; } }

.address {
  text-align: center; }

.copyright {
  padding: 15px 0;
  background: #333;
  color: #fefefe;
  font-size: 1.2rem; }
  @media all and (max-width: 800px) {
    .copyright {
      background: #5BA1E1;
      padding: 30px 0;
      font-size: 12px; } }

/*----------------------------------
 top-contents
----------------------------------*/
/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 0;
  padding: 15px;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  background: #fefefe;
  display: flex;
  align-items: flex-start; }
  @media all and (max-width: 639px) {
    .news-box {
      flex-direction: column;
      width: 100%;
      padding: 10px; } }

.news-title {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  padding: 10px 20px;
  line-height: 1.6;
  color: #3a200c; }
  .news-title span {
    font-size: 1.8rem;
    display: block;
    font-weight: 600;
    color: #5BA1E1;
    font-family: "Lora", serif;
    font-weight: 600;
    margin-bottom: 0px; }
  @media all and (max-width: 639px) {
    .news-title {
      padding: 5px 10px;
      width: 100%;
      font-size: 2rem; }
      .news-title span {
        font-size: 1.4rem; } }

.news-right {
  flex: 1;
  padding: 10px 30px;
  border-left: 1px solid #5BA1E1; }
  @media all and (max-width: 639px) {
    .news-right {
      width: 100%;
      margin: 10px 0 0;
      border-left: 1px solid rgba(91, 161, 225, 0);
      border-top: 1px solid #5BA1E1;
      padding: 30px 10px; } }

.top-blog {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px; }
  .top-blog li {
    width: 32%;
    margin: 0 1.5% 10px;
    position: relative; }
    .top-blog li > a {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 2; }
      .top-blog li > a:hover ~ .top-blog_img img {
        transform: scale(1.1); }
    .top-blog li:nth-child(3n) {
      margin-right: 0; }
  .top-blog .top-blog_img {
    margin-bottom: 10px;
    overflow: hidden;
    height: 180px; }
    .top-blog .top-blog_img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      font-family: "object-fit: cover;";
      transition: transform 0.2s ease-in; }
  .top-blog .top-blog_content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; }
  .top-blog .top-blog_time {
    background: #5BA1E1;
    padding: 8px 5px;
    color: #fff;
    width: 25%;
    text-align: center;
    line-height: 1.2; }
    .top-blog .top-blog_time span {
      display: block;
      font-size: 1.3rem;
      letter-spacing: 0.1rem; }
      .top-blog .top-blog_time span.day {
        font-size: 2.5rem;
        font-weight: 600; }
  .top-blog .top-blog_detail {
    flex: 1;
    padding-left: 10px; }
  .top-blog .top-blog_ttl {
    font-size: 1.7rem;
    font-weight: 600; }
  @media all and (max-width: 800px) {
    .top-blog li {
      width: 49%;
      margin-right: 2%; }
      .top-blog li:nth-child(3n) {
        margin-right: 2%; }
      .top-blog li:nth-child(2n) {
        margin-right: 0; } }
  @media all and (max-width: 639px) {
    .top-blog li {
      width: 85%;
      margin: 0 auto 20px; }
      .top-blog li:nth-child(2n), .top-blog li:nth-child(3n) {
        margin-right: auto; }
    .top-blog .top-blog_time span {
      font-size: 1.1rem; }
      .top-blog .top-blog_time span.day {
        font-size: 1.8rem; }
    .top-blog .top-blog_ttl {
      font-size: 1.3rem; } }

/* --features--
----------------------------------*/
.top-list-wrap {
  width: calc(100% - 50px);
  margin: 0 auto;
  position: relative; }
  .top-list-wrap:before {
    position: absolute;
    content: "";
    left: 0%;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 40px;
    background: url(../img/bg_feature.jpg) no-repeat center/cover;
    opacity: 0.5; }
  @media all and (max-width: 639px) {
    .top-list-wrap {
      width: 95%; } }

.top-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
  justify-content: center; }
  .top-list li {
    width: 32%;
    transition: transform 0.3s ease-in;
    position: relative;
    margin: 0 1.5% 2% 0; }
    .top-list li:nth-child(3n) {
      margin-right: 0; }
    .top-list li .top-list_img {
      width: 93%;
      padding: 10px; }
      .top-list li .top-list_img img {
        width: 100%;
        border: 3px solid #3a200c; }
    @media all and (max-width: 639px) {
      .top-list li {
        width: 95%;
        margin: 0 auto 20px; } }
  .top-list .top-list_ttl {
    width: 80%;
    background: #5BA1E1;
    border-radius: 15px 0 0 0;
    text-align: center;
    padding: 10px 0;
    position: relative;
    font-size: 1.8rem;
    margin: -30px 0 0 auto;
    font-weight: 600;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.1rem;
    box-shadow: 0 0 8px rgba(58, 32, 12, 0.2); }
    .top-list .top-list_ttl span {
      position: absolute;
      font-size: 4rem;
      color: rgba(255, 229, 83, 0.9);
      left: 50%;
      top: -45px;
      transform: translateX(-50%);
      white-space: nowrap; }
    @media all and (max-width: 639px) {
      .top-list .top-list_ttl {
        font-size: 1.4rem;
        padding: 6px 0;
        width: 90%; }
        .top-list .top-list_ttl span {
          font-size: 3rem;
          top: -50px; } }
  .top-list .top-list_txt {
    padding: 15px;
    border-radius: 0 0 15px 0;
    width: 80%;
    margin-left: auto;
    background: #fefefe; }
    @media all and (max-width: 639px) {
      .top-list .top-list_txt {
        font-size: 1.1rem;
        width: 90%;
        letter-spacing: 1.5; } }
  .top-list .notes {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
    color: #8f4f1d; }

/*----------------------------------
 --others--
----------------------------------*/
.sec1 {
  position: relative;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd; }
  .sec1:before {
    position: absolute;
    content: "";
    width: 40%;
    height: 100%;
    left: 0;
    top: 0;
    background: #f0f0f0;
    border-right: 2px solid #ddd; }
    @media all and (max-width: 639px) {
      .sec1:before {
        width: 20%; } }

/* --staff--
----------------------------------*/
.staff-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .staff-wrap:not(:last-of-type) {
    margin-bottom: 50px;
    border-bottom: 2px solid #f6f4eb;
    padding-bottom: 50px; }
  .staff-wrap .staff-left {
    width: 27%;
    text-align: center; }
  .staff-wrap .staff-right {
    width: 70%; }
  .staff-wrap .staff-name {
    font-size: 2.5rem;
    color: #04acea; }
    .staff-wrap .staff-name .category {
      display: inline-block;
      padding: 3px 5px;
      border: 2px solid #5BA1E1;
      color: #5BA1E1;
      font-size: 1.4rem; }
    .staff-wrap .staff-name .eng {
      color: #794319; }
  @media all and (max-width: 639px) {
    .staff-wrap {
      flex-direction: column; }
      .staff-wrap .staff-left,
      .staff-wrap .staff-right {
        width: 90%;
        margin: 0 auto; }
      .staff-wrap .staff-left {
        padding: 10px 15px; }
      .staff-wrap .staff-name {
        font-size: 2rem; }
        .staff-wrap .staff-name .category {
          font-size: 1.2rem; }
        .staff-wrap .staff-name .eng {
          font-size: 1.6rem; } }

/* --service--
----------------------------------*/
.service-list > li {
  position: relative;
  padding: 10px 10px 20px 20px; }
  .service-list > li:not(:last-child) {
    margin-bottom: 100px; }
    @media all and (max-width: 639px) {
      .service-list > li:not(:last-child) {
        margin-bottom: 50px; } }
.service-list .service-ttl {
  font-size: 3rem;
  color: #5BA1E1;
  letter-spacing: 0.2rem;
  margin-bottom: 10px; }
  .service-list .service-ttl:before {
    font-family: "Font Awesome 5 Free";
    content: "\f7d9";
    font-weight: bold;
    margin-right: 5px;
    font-size: 2.2rem;
    color: #777; }
.service-list .service-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .service-list .service-container .service-img {
    display: block;
    margin-right: 40px;
    position: relative;
    width: 430px; }
  .service-list .service-container .service-txt {
    flex: 1; }
@media all and (max-width: 639px) {
  .service-list li {
    padding: 10px; }
  .service-list .service-ttl {
    line-height: 1.5;
    font-size: 1.9rem;
    text-align: center; }
    .service-list .service-ttl:before {
      font-size: 1.6rem; }
  .service-list .service-container {
    flex-direction: colmun; }
    .service-list .service-container .service-img {
      width: 90% px;
      margin: 0 auto 20px; }
    .service-list .service-container .service-txt {
      width: 100%;
      flex: auto; } }

/* contents
----------------------------------*/
.single {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative; }

.single02 {
  margin: 0 auto;
  padding: 80px 0; }

.single03 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative; }

.margin-top {
  margin-top: -80px; }
  @media all and (max-width: 639px) {
    .margin-top {
      margin-top: -30px; } }

.lsingle,
.rsingle {
  width: 48.44%; }

.lsingle {
  float: left; }

.rsingle {
  float: right; }

.mbox {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px; }
  .mbox.transparent {
    background: transparent; }
  @media all and (max-width: 639px) {
    .mbox {
      padding: 15px; } }

.mbox2 {
  border: 3px solid #ccc;
  background: #fefefe;
  margin-right: auto;
  margin-left: auto;
  padding: 30px; }
  @media all and (max-width: 639px) {
    .mbox2 {
      padding: 15px; } }

.small-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0; }

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
   border-bottom: 1px solid #555;*/
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat; }

.bg-map {
  background: url(../img/map.png) no-repeat right bottom; }
  @media all and (max-width: 639px) {
    .bg-map {
      -webkit-background-size: auto 200px;
      background-size: auto 200px;
      background-position: right top; } }

#main {
  float: left;
  width: 76%; }
  @media all and (max-width: 800px) {
    #main {
      float: none;
      width: 100%; } }

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px; }
  @media all and (max-width: 800px) {
    #side {
      float: none;
      width: 100%;
      position: static;
      margin-top: 40px; } }

/* 2column */
#col2-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto; }
  #col2-wrap #col2-main {
    width: 78%; }
    @media all and (max-width: 800px) {
      #col2-wrap #col2-main {
        width: 100%;
        margin: 0 auto;
        order: 2; } }
  #col2-wrap #col2-side {
    width: 20%;
    padding: 60px 0 0; }
    @media all and (max-width: 800px) {
      #col2-wrap #col2-side {
        width: 95%;
        margin: 0 auto 20px;
        padding-top: 30px; } }

/* mtitle
----------------------------------*/
.mtitle {
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  font-size: 3.2rem;
  color: #3a200c; }
  .mtitle span {
    display: block;
    font-size: 1.8rem;
    color: #5BA1E1;
    position: relative;
    font-family: "Lora", serif;
    font-weight: 600; }
  .mtitle.white {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
    .mtitle.white span {
      color: #fff;
      text-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
      .mtitle.white span:after {
        background-color: #eee; }
  .mtitle.black {
    color: #333; }
    .mtitle.black span {
      color: #555; }
      .mtitle.black span:after {
        background-color: #555; }
  .mtitle.mtitle_left {
    text-align: left; }
    .mtitle.mtitle_left span:after {
      left: 0;
      transform: none; }
  @media all and (max-width: 639px) {
    .mtitle {
      font-size: 2rem;
      text-align: center; }
      .mtitle span {
        font-size: 1.4rem; } }

.mtitle2 {
  color: #3a200c;
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative; }
  .mtitle2 span {
    font-size: 3.5rem;
    letter-spacing: 0.1rem;
    margin-right: 15px;
    font-family: "Lora", serif;
    font-weight: 600;
    color: #5BA1E1;
    font-weight: normal; }
  @media all and (max-width: 639px) {
    .mtitle2 {
      font-size: 1.2rem; }
      .mtitle2 span {
        display: block;
        font-size: 2.5rem; } }
  .mtitle2:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 1px;
    background: #3a200c; }

.mtitle3 {
  font-size: 2.8rem;
  font-weight: normal;
  color: #3a200c;
  margin-bottom: 20px; }
  @media all and (max-width: 639px) {
    .mtitle3 {
      font-size: 2rem; } }

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 600;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5; }
  .mtitle-bll:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: bold;
    margin-right: 5px;
    color: #5BA1E1; }
  .mtitle-bll:after {
    position: absolute;
    content: "";
    display: block;
    bottom: -2px;
    width: 100px;
    height: 2px;
    background: #5BA1E1; }
  @media all and (max-width: 639px) {
    .mtitle-bll {
      font-size: 1.6rem; } }

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem; }
  .mtitle4 span {
    position: relative;
    display: inline-block;
    min-width: 10%; }
    .mtitle4 span:before, .mtitle4 span:after {
      content: "";
      display: inline-block;
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 1px;
      height: 2rem;
      background-color: #5BA1E1; }
    .mtitle4 span:before {
      left: -11px;
      -webkit-transform: rotate(-20deg);
      transform: rotate(-20deg); }
    .mtitle4 span:after {
      right: -11px;
      -webkit-transform: rotate(20deg);
      transform: rotate(20deg); }
  .mtitle4.white span:before, .mtitle4.white span:after {
    background-color: #ffe553; }
  @media all and (max-width: 639px) {
    .mtitle4 {
      font-size: 2rem; } }
  @media all and (max-width: 320px) {
    .mtitle4 span:before {
      left: -3px; }
    .mtitle4 span:after {
      right: -3px; } }

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #5BA1E1;
  margin: 8px 0;
  font-size: 1.1em;
  letter-spacing: 0.2rem; }
  .mtitle_sub:before {
    position: absolute;
    left: -6px;
    bottom: 0;
    content: "";
    width: 6px;
    height: 50%;
    background-color: #ddd; }

.mtitle_box {
  background: url(../img/bg-pattern02.jpg);
  background-size: 300px;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: 600; }
  .mtitle_box span {
    font-weight: normal;
    font-size: 14px;
    padding-left: 10px; }
  .mtitle_box:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f30a";
    font-weight: bold;
    display: block;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff; }
  @media all and (max-width: 639px) {
    .mtitle_box {
      font-size: 1.5rem; } }

.mtitle_box2 {
  background: #02757E;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  padding: 12px 10px 12px 20px;
  margin-bottom: 25px; }
  .mtitle_box2 .small-cap {
    font-weight: normal;
    font-size: 14px; }
  .mtitle_box2:before {
    background-color: #FFD700;
    content: "";
    display: block;
    transform: rotate(60deg);
    position: absolute;
    bottom: -10px;
    right: -150px;
    width: 300px;
    height: 280px; }
  @media all and (max-width: 639px) {
    .mtitle_box2 {
      font-size: 15px;
      line-height: 1.5;
      padding: 10px 10px 10px 15px;
      padding-right: 40px; }
      .mtitle_box2 span {
        font-size: 12px; }
      .mtitle_box2:before {
        width: 215px;
        right: -170px; } }

.mtext1 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600; }
  @media all and (max-width: 639px) {
    .mtext1 {
      font-size: 1.5rem; } }

.mtext2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.4; }
  @media all and (max-width: 639px) {
    .mtext2 {
      font-size: 2.1rem; } }

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal; }
  .mtitle_category:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0ca";
    font-weight: bold;
    margin-right: 5px;
    color: #5BA1E1; }

.mtitle_border {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 1px solid #02757E;
  color: #02757E;
  margin-bottom: 10px; }

.box_haiki {
  border: 1px solid #02757E;
  padding: 10px; }

/* btn
----------------------------------*/
.btn01 a {
  background: #ffe553;
  text-align: center;
  width: 300px;
  margin: 0 auto;
  color: #3a200c;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border: 2px solid #3a200c;
  border-radius: 35px; }
  .btn01 a:hover {
    background: #5BA1E1;
    border-color: #04acea;
    color: #fff; }
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%; } }

.btn02 {
  width: 300px;
  margin: 20px auto 20px; }
  .btn02 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: #222;
    line-height: 24px;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff; }
    .btn02 a i {
      display: block;
      position: absolute;
      top: 50%;
      right: -10px;
      width: 50px;
      height: 1px;
      background-color: #ffffff;
      transition: all 0.3s ease; }
    .btn02 a:hover i {
      width: 34px; }
  @media all and (max-width: 639px) {
    .btn02 {
      width: 260px; }
      .btn02 a {
        font-size: 1.4rem; } }

/* news
----------------------------------*/
.news {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap; }
  .news dt {
    width: 6em;
    padding: 3px 5px;
    background: #04acea;
    text-align: center;
    font-weight: 600;
    color: #fff; }
  .news dd {
    padding: 5px;
    background: #fff;
    width: calc(100% - 7em);
    margin-left: 10px; }
  .news dt:not(:last-child),
  .news dd:not(:last-child) {
    margin-bottom: 5px; }

.news-bl {
  overflow: hidden; }
  .news-bl dt {
    float: left;
    width: 8em;
    padding: 3px 5px;
    line-height: 1.3;
    color: #5BA1E1;
    border: 1px solid #5BA1E1;
    border-radius: 30px;
    text-align: center;
    /*&:before {
     @include awesome(\f0da);
     margin-right: 5px;
    }*/ }
    @media all and (max-width: 639px) {
      .news-bl dt {
        float: none; } }
  .news-bl dd {
    padding: 0 0 10px 9.2em;
    line-height: 1.6;
    border-bottom: 1px dotted #dddddd;
    margin: 0 0 10px; }
    @media all and (max-width: 639px) {
      .news-bl dd {
        padding: 10px 0 10px 0; } }
    .news-bl dd a {
      color: #1d619f; }
    .news-bl dd:last-child {
      margin: 0;
      border-bottom: none; }

/* bg-greet
----------------------------------*/
.bg-greet {
  margin: 0 auto 0;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  background: url(../img/2.jpg) no-repeat center/cover; }
  @media all and (max-width: 800px) {
    .bg-greet {
      max-width: calc(100% - 15px); } }
  .bg-greet.page-title01 {
    background: url(../img/1.jpg) no-repeat center/cover; }
  .bg-greet:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #1AD7C2;
    opacity: 0.3; }
  .bg-greet .inner {
    margin: 0 auto;
    padding: 120px 0;
    max-width: 1200px; }
    .bg-greet .inner > .mtitle {
      text-align: left;
      color: #fff;
      text-shadow: 0 0 8px rgba(58, 32, 12, 0.4);
      font-size: 2.2rem; }
      .bg-greet .inner > .mtitle span {
        display: inline-block;
        font-size: 5rem;
        padding-right: 30px;
        color: #fff;
        text-transform: uppercase; }
        .bg-greet .inner > .mtitle span:first-letter {
          color: #fff; }
      @media all and (max-width: 639px) {
        .bg-greet .inner > .mtitle {
          padding-left: 15px;
          font-size: 1.5rem; }
          .bg-greet .inner > .mtitle span {
            font-size: 2.5rem;
            padding-right: 10px;
            display: block; } }
  @media all and (max-width: 800px) {
    .bg-greet {
      width: calc(100% - 20px); }
      .bg-greet .inner {
        width: 99%;
        padding: 60px 0 20px; } }

.top-bg {
  position: relative; }
  .top-bg:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90%;
    z-index: -1;
    background: #5BA1E1; }

.bg-01 {
  background-image: linear-gradient(to right, rgba(4, 172, 234, 0.5) 0%, rgba(4, 172, 234, 0.4) 50%, #eacd9a 50.1%, #eacd9a 100%); }
  @media all and (max-width: 639px) {
    .bg-01 {
      background-image: linear-gradient(to bottom, rgba(91, 161, 225, 0.4) 0%, rgba(91, 161, 225, 0.4) 55%, #eacd9a 55.1%, #eacd9a 100%); } }

.bg-02 {
  background: url(../img/grid2.png); }

.bg-gradient {
  background-image: linear-gradient(to right bottom, rgba(254, 254, 254, 0.5) 0%, rgba(91, 161, 225, 0.7) 50%, rgba(91, 161, 225, 0.5) 100%); }

.bg-pattern {
  background: url(../img/back01.gif);
  background-size: 400px; }

.bg-base {
  background: rgba(4, 172, 234, 0.3); }

.bg-gray {
  background: #f1edee; }

.bg-beige {
  background: rgba(246, 244, 235, 0.8); }

.bg-beige2 {
  background: rgba(246, 244, 235, 0.5); }

.bg-03 {
  background: url("../img/bg_footer.jpg") no-repeat center/cover; }

/* tbl
----------------------------------*/
.tbl {
  width: 100%; }
  .tbl th,
  .tbl td {
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #216eb5; }
  .tbl th {
    background: rgba(91, 161, 225, 0.4);
    font-weight: 500;
    text-align: left;
    width: 35%; }
    .tbl th span {
      font-size: 1.4rem; }
  .tbl .cell01 {
    width: 25%; }
  @media all and (max-width: 639px) {
    .tbl th,
    .tbl td {
      padding: 10px; } }

.tbl_new {
  margin: 0 auto;
  width: 100%; }
  @media all and (max-width: 1200px) {
    .tbl_new {
      width: 95%; } }
  @media all and (max-width: 639px) {
    .tbl_new th {
      width: 36%; } }
  .tbl_new tr th,
  .tbl_new tr td {
    vertical-align: middle;
    padding: 15px 10px; }
  .tbl_new tr th {
    font-weight: 700;
    width: 27%;
    color: #04acea; }
  .tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
    background: #f6f4eb; }

.tbl-border {
  width: 100%; }
  .tbl-border th,
  .tbl-border td {
    padding: 15px;
    border-bottom: 1px solid #323232;
    vertical-align: middle; }
  .tbl-border th {
    width: 25%; }
    @media all and (max-width: 639px) {
      .tbl-border th {
        width: 30%; } }
  .tbl-border a {
    color: #FFD700; }

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px; }
  .company th,
  .company td {
    padding: 5px 10px;
    vertical-align: middle; }
  .company th {
    text-align: left;
    width: 25%;
    position: relative;
    background: #04acea;
    color: #fff;
    font-weight: 600; }
    .company th::after {
      left: 100%;
      top: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: #f9f9f9;
      border-width: 10px;
      border-left-color: #04acea;
      margin-top: -10px; }
  .company td {
    background: #f9f9f9;
    padding-left: 20px; }

.tbl0 {
  width: 100%; }
  .tbl0 th,
  .tbl0 td {
    padding: 3px 5px;
    border: 0; }
  .tbl0 th {
    padding-left: 0;
    font-weight: normal;
    background: none;
    width: 25%;
    color: #111; }
    .tbl0 th:after, .tbl0 th:before {
      display: none; }
    @media all and (max-width: 639px) {
      .tbl0 th {
        width: 40%; } }

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden; }
  .ggmap iframe,
  .ggmap object,
  .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted #cccccc; }
  .list_common li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }

.list_check li {
  padding-bottom: 5px;
  font-weight: 600;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(58, 32, 12, 0.5); }
  .list_check li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: bold;
    margin-right: 10px;
    color: #04acea; }
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem; } }

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  margin: 0;
  padding: 0; }
  .ol-list li {
    line-height: 2;
    border-bottom: 1px solid #aaa;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: 600; }
    .ol-list li span {
      font-weight: normal;
      display: block;
      padding: 10px;
      line-height: 1.6; }
    .ol-list li:before {
      counter-increment: number;
      content: counter(number);
      background: rgba(91, 161, 225, 0.3);
      display: inline-block;
      width: 2em;
      height: 2em;
      text-align: center;
      font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
      font-size: 2rem;
      color: #222;
      margin-right: 0.3em; }
    @media all and (max-width: 639px) {
      .ol-list li {
        font-size: 1.3rem; }
        .ol-list li span {
          font-size: 0.9em; }
        .ol-list li:before {
          font-size: 1.8rem; } }

.list_line li {
  position: relative;
  display: inline-block;
  padding: 0 10px; }
  .list_line li:after {
    position: absolute;
    right: 0;
    content: "/"; }
  .list_line li:last-child:after {
    display: none; }

.list_macker {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold; }
  .list_macker li {
    width: 18.4%;
    margin: 0 2% 1% 0; }
    .list_macker li:nth-child(5n) {
      margin: 0 0 1% 0; }

/* blog
----------------------------------*/
.blog-wrap {
  display: flex;
  flex-wrap: wrap; }
  .blog-wrap * {
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .blog-wrap > li {
    width: 32%;
    margin: 0 0.5% 15px 0.5%;
    box-sizing: border-box;
    padding: 10px;
    background: #fefefe;
    border: 1px solid #e6e1c8;
    position: relative; }
    @media all and (max-width: 1200px) {
      .blog-wrap > li {
        width: 49%; } }
    .blog-wrap > li > a {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
      .blog-wrap > li > a:hover ~ .blog-img img {
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2); }
    @media all and (max-width: 639px) {
      .blog-wrap > li {
        width: 90%;
        margin: 0 auto 10px; } }

.blog-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #ccc; }
  .blog-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    font-family: "object-fit: cover;";
    /*IE対策*/ }
  .blog-img:hover img {
    opacity: 1 !important;
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }

.blog-date {
  color: #5BA1E1;
  background: #5BA1E1;
  color: #fff;
  width: 100px;
  padding: 8px 5px;
  line-height: 1.3;
  text-align: center;
  font-size: 0.9em;
  margin-bottom: 10px;
  display: block; }
  .blog-date .year {
    margin-top: 10px;
    display: block;
    font-size: 1.5rem; }
  .blog-date .month {
    font-size: 1.2rem; }
  .blog-date .day {
    font-size: 1.8rem;
    display: inline-block; }
    .blog-date .day:before {
      content: "/";
      padding: 0 3px 0 0; }

.blog-date2 {
  color: #257bca;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px; }
  .blog-date2:before {
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    margin-right: 5px; }

.blog-title {
  font-weight: 600;
  color: #3a200c;
  line-height: 1.3;
  border-left: 1px solid rgba(58, 32, 12, 0.3);
  padding-left: 15px;
  margin-bottom: 10px; }

.blog-txt {
  font-size: 14px;
  line-height: 1.5;
  color: #5BA1E1; }
  @media all and (max-width: 639px) {
    .blog-txt {
      font-size: 12px; } }

.pages {
  text-align: center;
  margin-top: 30px; }
  .pages .page_next,
  .pages .page_prev {
    display: inline;
    margin: 0 20px; }
    .pages .page_next a,
    .pages .page_prev a {
      color: #216eb5;
      padding: 3px 5px;
      background: #fff; }

.category_nav {
  border: 1px solid #dddddd; }
  .category_nav li a {
    display: block;
    padding: 15px;
    border-bottom: 1px dotted #dddddd;
    background-color: #ffffff; }
    .category_nav li a:before {
      font-family: "Font Awesome 5 Free";
      content: "\f0a9";
      font-weight: bold;
      margin-right: 5px; }
    .category_nav li a:hover {
      background: #f1edee; }
  .category_nav li:last-child a {
    border-bottom: none; }

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1; }

.w300 {
  width: 300px; }

.spbr {
  display: none; }

.color1 {
  color: #5BA1E1; }

.color2 {
  color: #04acea; }

.color3 {
  color: #f80300; }

.num a {
  color: #3a200c;
  font-weight: 600;
  font-size: 2.7rem;
  text-align: center; }
  @media all and (max-width: 639px) {
    .num a {
      font-size: 2rem; } }
  .num a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: bold;
    margin-right: 5px; }
  .num a:hover {
    color: #02757E; }

.num2 a {
  color: #3a200c;
  font-weight: 600;
  font-size: 2.7rem;
  text-align: center; }
  @media all and (max-width: 639px) {
    .num2 a {
      font-size: 2rem; } }
  .num2 a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f1ac";
    font-weight: bold;
    margin-right: 5px; }

.telbox {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 20px;
  background: rgba(2, 117, 126, 0.5);
  text-align: center;
  display: flex; }
  .telbox .inner {
    background: #fff;
    padding: 10px;
    width: 50%; }
  @media all and (max-width: 639px) {
    .telbox {
      display: block; }
      .telbox .inner {
        width: 100%; } }

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem; }
  .breadcrumb li {
    display: inline;
    color: #555; }
    .breadcrumb li a {
      color: #04acea; }
    .breadcrumb li + li:before {
      margin: 0 10px;
      content: ">"; }

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%; }
  .form dl dt {
    float: left;
    width: 280px;
    padding-top: 20px;
    font-weight: 600; }
    .form dl dt span {
      color: #fff;
      background: #5BA1E1;
      padding: 0 5px 0;
      margin-right: 5px;
      font-size: 11px;
      border-radius: 2px;
      position: relative;
      top: -2px; }
  .form dl dd {
    padding-left: 280px;
    padding-bottom: 20px;
    padding-top: 23px;
    line-height: 1.5;
    border-bottom: 1px dotted #cccccc; }
    .form dl dd:last-child {
      border-bottom: none; }
  .form .textarea,
  .form textarea {
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none; }
  .form .textarea {
    height: 30px; }
  .form .textarea02 {
    width: 48.5%;
    margin-right: 3%; }
    .form .textarea02:last-child {
      margin-right: 0; }
  .form .textarea03 {
    width: 20%;
    margin-right: 1%; }
  .form button {
    cursor: pointer;
    display: block;
    color: #111;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 8px 5px;
    margin: 0 auto;
    width: 250px;
    background: #5BA1E1;
    border: 1px solid #5BA1E1;
    border-radius: 25px;
    color: #fff; }
    .form button:hover {
      background: #fff;
      color: #5BA1E1; }
    .form button:before {
      font-weight: normal;
      font-family: "Font Awesome 5 Free";
      content: "\f0e0";
      font-weight: bold;
      margin-right: 10px; }
  .form .select-wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 192px;
    min-width: 12em;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    color: #333; }
    .form .select-wrap select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      position: relative;
      z-index: 2;
      display: block;
      width: 200%;
      width: -webkit-calc(100% + 5em);
      margin: 0;
      padding: 11px 35px 11px 11px;
      padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
      background: transparent;
      border: 0;
      outline: none;
      line-height: 1.5; }
  .form .entypo-down-open-mini:before {
    font-family: "FontAwesome";
    content: "\f0ab";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    right: 0.75rem;
    margin-top: -8px;
    margin-top: -0.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    color: #5BA1E1; }
  .form label.radio_text {
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    padding-left: 20px;
    display: inline-block; }
    .form label.radio_text:before {
      position: absolute;
      width: 15px;
      height: 15px;
      border: 1px solid #ccc;
      border-radius: 50%;
      left: 0px;
      top: 2px;
      content: "";
      z-index: 3; }
    .form label.radio_text:after {
      content: "";
      position: absolute;
      width: 11px;
      height: 11px;
      border-radius: 100%;
      left: 3px;
      top: 5px;
      background-color: #5BA1E1;
      z-index: 1; }
    .form label.radio_text input[type="radio"] {
      -moz-appearance: none;
      -webkit-appearance: none;
      position: absolute;
      z-index: 2;
      width: 20px;
      height: 20px;
      left: -23px;
      top: 0px;
      margin: 0px;
      box-shadow: 20px -1px #fff; }
      .form label.radio_text input[type="radio"]:checked {
        box-shadow: none; }
      .form label.radio_text input[type="radio"]:focus {
        opacity: 0.2;
        box-shadow: 20px -1px #eeebda; }
  .form label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin: 0 20px 5px 0;
    overflow: hidden;
    display: inline-block; }
    .form label.checkbox_text:before {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      left: 0px;
      top: 0;
      border: 1px solid #ccc;
      z-index: 3;
      padding: 1px; }
    .form label.checkbox_text:after {
      content: "";
      position: absolute;
      top: 40%;
      left: 5px;
      display: block;
      margin-top: -9px;
      width: 8px;
      height: 12px;
      border-right: 3px solid #5BA1E1;
      border-bottom: 3px solid #5BA1E1;
      transform: rotate(45deg);
      z-index: 1; }
    .form label.checkbox_text input[type="checkbox"] {
      -moz-appearance: none;
      -webkit-appearance: none;
      position: absolute;
      left: -40px;
      width: 20px;
      height: 20px;
      display: block;
      box-shadow: 41px 0px #fff;
      z-index: 2;
      margin: 0px;
      padding: 0px; }
      .form label.checkbox_text input[type="checkbox"]:checked {
        box-shadow: none; }
        .form label.checkbox_text input[type="checkbox"]:checked:focus {
          box-shadow: 40px 0px #666;
          opacity: 0.1; }
      .form label.checkbox_text input[type="checkbox"]:focus {
        box-shadow: 41px 0px #eee; }

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px; }

.memo {
  border: 2px solid rgba(246, 244, 235, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px; }

.thanks {
  padding: 40px;
  border: 3px solid #5BA1E1;
  box-shadow: 0 0 0 8px rgba(91, 161, 225, 0.2);
  max-width: 700px;
  margin: 0 auto;
  background: #fefefe; }
  @media all and (max-width: 639px) {
    .thanks {
      max-width: 90%;
      padding: 30px 20px; } }

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }

.policy {
  padding: 30px;
  background: rgba(255, 215, 0, 0.15);
  border-top: 0; }

.mtitle_small {
  position: relative;
  font-size: 2rem;
  color: #5BA1E1;
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: bold; }
  .mtitle_small:before {
    content: "";
    width: 30px;
    height: 3px;
    background-color: #5BA1E1;
    position: absolute;
    left: 0;
    bottom: -15px; }
  @media all and (max-width: 639px) {
    .mtitle_small {
      font-size: 1.4rem; } }

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px; }
  .mtitle_small2:before {
    content: "";
    background-color: #5BA1E1;
    width: 10px;
    height: 4px;
    position: absolute;
    top: 0.6em;
    left: 0; }

/*photoギャラリー*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .gallery li {
    width: calc((100% - 20px) / 3);
    margin: 0 10px 20px 0; }
    .gallery li:nth-child(3n) {
      margin-right: 0; }
    .gallery li a {
      background: rgba(246, 244, 235, 0.2);
      display: block;
      text-align: center;
      padding: 0px;
      height: 240px; }
      .gallery li a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        font-family: "object-fit: cover;";
        /*IE対策*/ }
    .gallery li p {
      font-size: 13px;
      margin: 3px 0 10px; }

@media all and (max-width: 800px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px; }
    .gallery li:nth-child(2n) {
      margin-right: 0; }
    .gallery li:nth-child(3n) {
      margin: 0 1% 20px; }
    .gallery li a {
      height: 120px; } }
.top-works-gallery li a {
  background: rgba(246, 244, 235, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 220px; }
  .top-works-gallery li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
    /*IE対策*/ }
  @media all and (max-width: 639px) {
    .top-works-gallery li a {
      height: 140px; } }

.list2 {
  display: flex;
  flex-wrap: wrap; }
  .list2.type1 li {
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding: 15px; }
  .list2 > li {
    width: 48%;
    margin: 0 1% 35px; }
    @media all and (max-width: 639px) {
      .list2 > li {
        width: 100%;
        margin: 0 auto 20px; } }

.list3 {
  display: flex;
  flex-wrap: wrap; }
  .list3 > li {
    width: 31%;
    margin: 0 calc(2.33% + (2.33% / 2)) 20px 0; }
    .list3 > li:nth-child(3n) {
      margin-right: 0; }
      @media all and (max-width: 639px) {
        .list3 > li:nth-child(3n) {
          margin-right: auto; } }
    @media all and (max-width: 639px) {
      .list3 > li {
        width: 95%;
        margin: 0 auto 20px; } }

.list6 {
  display: flex;
  flex-wrap: wrap; }
  .list6 > li {
    width: 13.5%;
    margin: 0 calc(2.33% + (2.33% / 2)) 20px 0; }
    .list6 > li:nth-child(6n) {
      margin-right: 0; }
      @media all and (max-width: 639px) {
        .list6 > li:nth-child(6n) {
          margin-right: auto; } }
    @media all and (max-width: 639px) {
      .list6 > li {
        width: 95%;
        margin: 0 auto 20px; } }
  @media all and (max-width: 639px) {
    .list6.mono li {
      width: 31%;
      font-size: 1rem; }
      .list6.mono li:nth-child(3n) {
        margin-right: 0; } }
    @media all and (max-width: 639px) and (max-width: 639px) {
      .list6.mono li:nth-child(3n) {
        margin-right: auto; } }

.prv dt {
  color: #5BA1E1;
  border-bottom: 1px solid #ccc;
  margin: 10px 0; }

/* linkbtnA
----------------------------------*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto; }
  .flex li {
    width: 32%;
    padding: 15px;
    position: relative; }
    .flex li .border {
      position: absolute;
      background: none;
      transition: all 0.3s ease-in-out; }
      .flex li .border:nth-of-type(1) {
        top: 0;
        left: 0;
        border-left: 1px solid #04acea;
        border-top: 1px solid #04acea;
        width: 50px;
        height: 30px; }
      .flex li .border:nth-of-type(2) {
        bottom: 0;
        right: 0;
        border-right: 1px solid #04acea;
        border-bottom: 1px solid #04acea;
        width: 50px;
        height: 30px; }
    .flex li:hover .border {
      width: 102%;
      height: 105%; }
    .flex li:hover .linkbtn-more {
      background: #5BA1E1;
      color: #fff;
      transition: all 0.55s ease; }
    .flex li a {
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      -webkit-transition: all 0.55s ease;
      transition: all 0.55s ease; }
    .flex li:hover .snip1445 img,
    .flex li:hover .snip1445 .hover img {
      zoom: 1;
      filter: alpha(opacity=50);
      -webkit-opacity: 0.4;
      opacity: 0.4; }
    .flex li:hover .snip1445 figcaption:before,
    .flex li:hover .snip1445 .hover figcaption:before,
    .flex li:hover .snip1445 figcaption:after,
    .flex li:hover .snip1445 .hover figcaption:after,
    .flex li:hover .snip1445 figcaption div:before,
    .flex li:hover .snip1445 .hover figcaption div:before,
    .flex li:hover .snip1445 figcaption div:after,
    .flex li:hover .snip1445 .hover figcaption div:after {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0); }
    .flex li:hover .snip1445 figcaption:before,
    .flex li:hover .snip1445 .hover figcaption:before,
    .flex li:hover .snip1445 figcaption:after,
    .flex li:hover .snip1445 .hover figcaption:after {
      -webkit-transition-delay: 0.15s;
      transition-delay: 0.15s; }

.snip1445 {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  max-width: 100%;
  height: 200px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background-color: #111; }
  .snip1445 * {
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease; }
    .snip1445 *:before, .snip1445 *:after {
      -webkit-transition: all 0.55s ease;
      transition: all 0.55s ease; }
  .snip1445 img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    vertical-align: top; }
  .snip1445 figcaption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 10px 10px; }
    .snip1445 figcaption:before, .snip1445 figcaption:after {
      height: 1px;
      width: 100%;
      position: absolute;
      content: "";
      background-color: #ffffff; }
    .snip1445 figcaption:before {
      top: 0;
      left: 0;
      -webkit-transform: translateX(200%);
      transform: translateX(200%); }
    .snip1445 figcaption:after {
      bottom: 0;
      right: 0;
      -webkit-transform: translateX(-250%);
      transform: translateX(-250%); }
    .snip1445 figcaption > div:before, .snip1445 figcaption > div:after {
      width: 1px;
      height: 300px;
      position: absolute;
      content: "";
      background-color: #ffffff; }
    .snip1445 figcaption > div:before {
      top: 0;
      left: 0;
      -webkit-transform: translateY(200%);
      transform: translateY(200%); }
    .snip1445 figcaption > div:after {
      bottom: 0;
      right: 0;
      -webkit-transform: translateY(-250%);
      transform: translateY(-250%); }
  .snip1445 h2,
  .snip1445 h4 {
    margin: 0;
    width: 150px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    color: #5BA1E1; }
  .snip1445 h2 {
    font-size: 1.8rem;
    letter-spacing: 1px; }
  .snip1445 .click {
    display: block;
    font-weight: 600;
    width: 150px;
    margin-left: auto;
    background-color: #04acea;
    padding: 3px 10px;
    color: #111;
    text-shadow: #fff 0px 0px 0px; }
  .snip1445 img {
    opacity: 0.9; }

.linkbtn-ttl {
  font-size: 1.8rem;
  color: #5BA1E1;
  margin-bottom: 10px;
  float: left; }
  @media all and (max-width: 639px) {
    .linkbtn-ttl {
      font-size: 1.6rem; } }

.linkbtn-more {
  float: right;
  color: #5BA1E1;
  padding: 3px;
  border: 1px solid #5BA1E1; }
  @media all and (max-width: 639px) {
    .linkbtn-more {
      font-size: 1.2rem; } }

@media screen and (max-width: 768px) {
  .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; }
    .flex li {
      width: 80%;
      margin-bottom: 30px; }

  .snip1445 {
    min-width: 230px;
    max-width: 100%;
    height: 200px; }
    .snip1445 img {
      opacity: 0.6;
      width: 100%; } }
@media screen and (max-width: 480px) {
  .flex li {
    width: 95%; } }
.linkbtn-txt {
  color: #111;
  line-height: 1.5;
  margin-top: 10px; }

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden; }

.topbnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 0;
  max-width: 1500px; }
  .topbnr li {
    width: 33%;
    margin-bottom: 25px;
    box-shadow: 0 0 0 2px #333;
    overflow: hidden;
    position: relative; }
    @media all and (max-width: 1200px) {
      .topbnr li:nth-child(3n) {
        margin-right: 1%; } }
    @media all and (max-width: 639px) {
      .topbnr li:nth-child(3n) {
        margin-right: auto; } }
    .topbnr li img {
      width: 100%; }
    .topbnr li:before {
      content: "";
      position: absolute;
      right: 0px;
      top: 0px;
      width: 0;
      height: 0;
      border-bottom: 18px solid transparent;
      border-left: 18px solid transparent;
      border-right: 18px solid #02757E;
      border-top: 18px solid #02757E;
      z-index: 20; }
    .topbnr li:hover {
      transition: all 0.3s ease-in; }
    @media all and (max-width: 700px) {
      .topbnr li {
        width: 48%;
        margin: 0 1% 3%; } }
    @media all and (max-width: 639px) {
      .topbnr li {
        width: 95%;
        margin: 0 auto 25px; } }

.top-bnr-wrap {
  position: relative; }
  .top-bnr-wrap .caption {
    padding: 10px; }
  .top-bnr-wrap a {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    z-index: 10; }
  .top-bnr-wrap .top-bnr-title {
    position: relative;
    display: block;
    background: #555;
    color: #fefefe;
    letter-spacing: 0.2rem;
    border-top: 4px solid #333;
    text-align: center;
    font-size: 2.2rem;
    transition: all 0.2s ease;
    padding: 15px 0; }
    @media all and (max-width: 639px) {
      .top-bnr-wrap .top-bnr-title {
        font-size: 1.5rem; } }
  .top-bnr-wrap:hover a {
    cursor: pointer; }
  .top-bnr-wrap:hover .top-bnr-title {
    background: #1AD7C2;
    color: #FFD700; }

.note {
  padding: 15px;
  margin-top: 10px;
  border: 3px solid #f6f4eb; }

.flow-dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 10px 0; }
  .flow-dl dt {
    background: #5BA1E1;
    font-size: 3rem;
    color: #fff;
    width: 50px;
    text-align: center;
    margin-right: 20px; }
    .flow-dl dt span {
      font-size: 1.5rem;
      display: block;
      margin-bottom: -10px; }
  .flow-dl dd {
    width: calc(100% - 80px); }
  .flow-dl dt:not(:last-child),
  .flow-dl dd:not(:last-child) {
    margin-bottom: 20px; }

.txt1 {
  padding-left: 10px; }

.fee-box {
  margin: 10px 0 20px;
  font-weight: 600;
  background: lemonchiffon;
  padding: 5px; }
  .fee-box span {
    display: block;
    font-weight: normal; }

.blog-month {
  margin-bottom: 10px; }
  .blog-month ul li {
    border: 1px solid #04acea;
    padding: 5px 0;
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: 0;
    background: lemonchiffon; }
    .blog-month ul li a {
      color: #3a200c; }

#a01,
#a02,
#a03,
#a04,
#a05,
#a06 {
  display: block;
  padding-top: 70px;
  margin-top: -70px; }

.price {
  font-weight: 600;
  color: #ffe553;
  font-size: 1.1em;
  padding-right: 5px; }

.greet-wrap {
  position: relative;
  padding: 40px 0;
  margin-top: 30px; }
  .greet-wrap:before {
    position: absolute;
    content: "";
    width: 90%;
    height: 100%;
    left: 50%;
    top: 0;
    background: url(../img/greet-img.jpg) no-repeat center/cover;
    z-index: -1;
    transform: translateX(-50%); }

.greet-box {
  max-width: 800px;
  padding: 25px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  line-height: 1.9;
  position: relative; }
  @media all and (max-width: 800px) {
    .greet-box {
      width: 70%;
      padding: 15px;
      font-size: 1.1rem; } }
  @media all and (max-width: 639px) {
    .greet-box {
      width: 95%; } }

.greet_lead {
  font-size: 2.5rem;
  color: #3088d9;
  text-align: center;
  margin-bottom: 10px; }
  @media all and (max-width: 639px) {
    .greet_lead {
      font-size: 1.3rem; } }

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .list-center li {
    max-width: 250px; }
    .list-center li:not(:last-child) {
      margin: 0 5px 5px; }
  @media all and (max-width: 639px) {
    .list-center li {
      width: 220px; }
      .list-center li:not(:last-child) {
        margin: 0 0 5px; } }

.side-list li {
  max-width: 200px;
  margin: 0 auto; }
  .side-list li img {
    transition: transform 0.3s ease-in; }
  .side-list li:hover img {
    transform: translateY(5px); }
@media all and (max-width: 800px) {
  .side-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; }
    .side-list li {
      max-width: initial;
      width: 24%; } }
@media all and (max-width: 639px) {
  .side-list li {
    width: 48%;
    margin-bottom: 10px; } }

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px; }
  .faq-dl .faq-inner:not(:last-of-type) {
    margin-bottom: 35px;
    padding-bottom: 20px;
    background: url(../img/bg-border.png) repeat-x left bottom; }
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    position: relative;
    padding: 10px 10px 10px 55px; }
    .faq-dl .faq-inner dt:before,
    .faq-dl .faq-inner dd:before {
      position: absolute;
      content: "";
      width: 45px;
      height: 45px;
      line-height: 45px;
      text-align: center;
      left: 0;
      top: 0; }
  .faq-dl .faq-inner dt {
    margin-bottom: 10px; }
    .faq-dl .faq-inner dt:before {
      content: "Q";
      color: #5BA1E1;
      font-size: 3rem;
      background: rgba(91, 161, 225, 0.2); }
  .faq-dl .faq-inner dd:before {
    content: "A";
    color: #f80300;
    font-size: 3rem;
    background: rgba(255, 229, 83, 0.2); }

.content-top {
  position: relative;
  height: 500px;
  margin-bottom: 50px; }
  .content-top:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 800px;
    height: 100%; }
  .content-top.content-01:before {
    background: url(../img/content-01.jpg) no-repeat center/cover; }
  .content-top.content-02:before {
    background: url(../img/content-02.jpg) no-repeat center/cover; }
  .content-top.content-03:before {
    background: url(../img/content-03.jpg) no-repeat center/cover; }
  .content-top .inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 25px;
    margin: 0px 10px 0px auto;
    transform: translateY(-50%);
    top: 50%;
    background: #fefefe; }
  @media all and (max-width: 639px) {
    .content-top {
      padding: 40px 0;
      height: auto; }
      .content-top:before {
        width: 100%; }
      .content-top .inner {
        padding: 30px 15px;
        margin: 0 auto 10px;
        max-width: 90%;
        background: rgba(254, 254, 254, 0.7);
        top: auto;
        transform: inherit; } }

.point-title {
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #f80300;
  line-height: 1.3;
  margin-bottom: 15px; }
  .point-title span {
    color: #f80300;
    font-size: 4rem;
    font-family: "Lora", serif;
    font-weight: 600; }
  @media all and (max-width: 639px) {
    .point-title {
      font-size: 1.6rem; }
      .point-title span {
        font-size: 2.2rem; } }

#top_2 {
  position: relative; }
  #top_2:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    opacity: .5; }
  #top_2 .single {
    padding: 80px 0 80px; }
  #top_2 .read {
    font-size: 25px;
    letter-spacing: .1em;
    font-weight: bold;
    color: #5BA1E1;
    margin-bottom: 30px;
    position: relative;
    padding: 20px 0;
    text-align: center;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    line-height: 1.2em; }
    #top_2 .read ._sp {
      display: none; }
    #top_2 .read span {
      font-weight: 500;
      font-size: 15px;
      letter-spacing: .1em;
      display: block;
      font-weight: bold;
      line-height: 1em;
      padding: .5em; }
  #top_2 ul {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 90px auto 0;
    justify-content: center; }
    #top_2 ul li {
      width: 20%;
      margin-right: 2%;
      position: relative;
      margin-bottom: 30px; }
      #top_2 ul li:nth-child(4n) {
        margin-right: 0; }
      #top_2 ul li:nth-child(even) {
        margin-top: -50px; }
      #top_2 ul li img {
        width: 90%;
        margin-left: auto;
        display: block;
        border-radius: 10px; }
      #top_2 ul li .nub {
        font-family: "Dancing Script",cursive;
        font-size: 28px;
        letter-spacing: .1em;
        margin-top: -10px;
        line-height: 1em;
        color: #02757E;
        opacity: .5; }
        #top_2 ul li .nub span {
          font-family: "Dancing Script",cursive;
          font-size: 58px;
          letter-spacing: .1em; }
      #top_2 ul li .item_teext {
        font-size: 19px;
        letter-spacing: .1em;
        font-weight: bold;
        line-height: 1.5em;
        margin-top: 14px;
        color: #5BA1E1; }
        @media all and (max-width: 1200px) {
          #top_2 ul li .item_teext {
            font-size: 1rem; } }
        @media all and (max-width: 600px) {
          #top_2 ul li .item_teext {
            font-size: 1.5rem; } }
      #top_2 ul li .item_main {
        font-size: 14px;
        letter-spacing: .1em;
        color: #333;
        line-height: 1.7em;
        margin-top: 11px; }

@media all and (max-width: 639px) {
  #top_2 .single {
    padding: 90px 0 80px; } }
@media all and (max-width: 639px) {
  #top_2 .read ._sp {
    display: block;
    line-height: 1.5em; } }
@media all and (max-width: 639px) {
  #top_2 ul {
    display: block; } }
@media all and (max-width: 639px) {
  #top_2 ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 45px; } }
@media all and (max-width: 639px) {
  #top_2 ul li:nth-child(even) {
    margin-top: 0; } }
.pc {
  display: block; }

.sp {
  display: none; }

@media all and (max-width: 639px) {
  .pc {
    display: none; }

  .sp {
    display: block; } }
/* フレックスコンテナ
-------------------------------------------------- */
.k-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .k-flex * {
    box-sizing: border-box; }
  .k-flex img {
    vertical-align: middle;
    max-width: 100%; }
  .k-flex.jc-left {
    justify-content: left; }
  .k-flex.jc-center {
    justify-content: center; }
  .k-flex.jc-right {
    justify-content: right; }
  .k-flex.col-1 > .k-fitem {
    width: 100%; }
  .k-flex.col-2 > .k-fitem {
    width: 50%; }
  .k-flex.col-3 > .k-fitem {
    width: 33.3333333%; }
  .k-flex.col-4 > .k-fitem {
    width: 25%; }
  .k-flex.col-5 > .k-fitem {
    width: 20%; }
  .k-flex > .k-fitem.k-w5 {
    width: 5%; }
  .k-flex > .k-fitem.k-w10 {
    width: 10%; }
  .k-flex > .k-fitem.k-w15 {
    width: 15%; }
  .k-flex > .k-fitem.k-w20 {
    width: 20%; }
  .k-flex > .k-fitem.k-w25 {
    width: 25%; }
  .k-flex > .k-fitem.k-w30 {
    width: 30%; }
  .k-flex > .k-fitem.k-w33 {
    width: 33.3333333%; }
  .k-flex > .k-fitem.k-w35 {
    width: 35%; }
  .k-flex > .k-fitem.k-w40 {
    width: 40%; }
  .k-flex > .k-fitem.k-w45 {
    width: 45%; }
  .k-flex > .k-fitem.k-w50 {
    width: 50%; }
  .k-flex > .k-fitem.k-w55 {
    width: 55%; }
  .k-flex > .k-fitem.k-w60 {
    width: 60%; }
  .k-flex > .k-fitem.k-w65 {
    width: 65%; }
  .k-flex > .k-fitem.k-w70 {
    width: 70%; }
  .k-flex > .k-fitem.k-w75 {
    width: 75%; }
  .k-flex > .k-fitem.k-w80 {
    width: 80%; }
  .k-flex > .k-fitem.k-w85 {
    width: 85%; }
  .k-flex > .k-fitem.k-w90 {
    width: 90%; }
  .k-flex > .k-fitem.k-w95 {
    width: 95%; }
  .k-flex > .k-fitem.k-w100 {
    width: 100%; }
  .k-flex > .k-fitem.order1 {
    order: 1; }
  .k-flex > .k-fitem.order2 {
    order: 2; }
  .k-flex > .k-fitem.order3 {
    order: 3; }
  .k-flex > .k-fitem.order4 {
    order: 4; }

@media screen and (max-width: 768px) {
  .k-flex {
    /*モバイルで100%にしたくない時の指定*/ }
    .k-flex > .k-fitem {
      width: 100% !important; }
      .k-flex > .k-fitem.order1, .k-flex > .k-fitem.order2, .k-flex > .k-fitem.order3, .k-flex > .k-fitem.order4 {
        order: 0 !important; }
    .k-flex.col-4 > .k-fitem {
      width: 50% !important; }
    .k-flex.fix.col-1 > .k-fitem {
      width: 100% !important; }
    .k-flex.fix.col-2 > .k-fitem {
      width: 50% !important; }
    .k-flex.fix.col-3 > .k-fitem {
      width: 33.3333333% !important; }
    .k-flex.fix.col-4 > .k-fitem {
      width: 25% !important; }
    .k-flex.fix.col-5 > .k-fitem {
      width: 20% !important; }
    .k-flex.fix > .k-fitem.k-w5 {
      width: 5% !important; }
    .k-flex.fix > .k-fitem.k-w10 {
      width: 10% !important; }
    .k-flex.fix > .k-fitem.k-w15 {
      width: 15% !important; }
    .k-flex.fix > .k-fitem.k-w20 {
      width: 20% !important; }
    .k-flex.fix > .k-fitem.k-w25 {
      width: 25% !important; }
    .k-flex.fix > .k-fitem.k-w30 {
      width: 30% !important; }
    .k-flex.fix > .k-fitem.k-w33 {
      width: 33.3333333% !important; }
    .k-flex.fix > .k-fitem.k-w35 {
      width: 35% !important; }
    .k-flex.fix > .k-fitem.k-w40 {
      width: 40% !important; }
    .k-flex.fix > .k-fitem.k-w45 {
      width: 45% !important; }
    .k-flex.fix > .k-fitem.k-w50 {
      width: 50% !important; }
    .k-flex.fix > .k-fitem.k-w55 {
      width: 55% !important; }
    .k-flex.fix > .k-fitem.k-w60 {
      width: 60% !important; }
    .k-flex.fix > .k-fitem.k-w65 {
      width: 65% !important; }
    .k-flex.fix > .k-fitem.k-w70 {
      width: 70% !important; }
    .k-flex.fix > .k-fitem.k-w75 {
      width: 75% !important; }
    .k-flex.fix > .k-fitem.k-w80 {
      width: 80% !important; }
    .k-flex.fix > .k-fitem.k-w85 {
      width: 85% !important; }
    .k-flex.fix > .k-fitem.k-w90 {
      width: 90% !important; }
    .k-flex.fix > .k-fitem.k-w95 {
      width: 95% !important; }
    .k-flex.fix > .k-fitem.k-w100 {
      width: 100% !important; }
    .k-flex.fix > .k-fitem.order1 {
      order: 1 !important; }
    .k-flex.fix > .k-fitem.order2 {
      order: 2 !important; }
    .k-flex.fix > .k-fitem.order3 {
      order: 3 !important; }
    .k-flex.fix > .k-fitem.order4 {
      order: 4 !important; } }
/* ビフォーアフター1
================================================== */
.k-beforeAfter1 {
  position: relative; }
  .k-beforeAfter1 * {
    box-sizing: border-box; }
  .k-beforeAfter1 .before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    z-index: 2; }
  .k-beforeAfter1 .after {
    padding: 10px 10px 30px 30px; }
    .k-beforeAfter1 .after .inner img {
      height: 200px !important; }
  .k-beforeAfter1 .inner {
    position: relative;
    background-color: #fff; }
    .k-beforeAfter1 .inner img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border: solid 5px #fff;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); }
    .k-beforeAfter1 .inner p {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: rgba(91, 161, 225, 0.8);
      padding: 5px 10px;
      text-align: right;
      z-index: 3;
      color: #fff; }
      .k-beforeAfter1 .inner p.only {
        top: 35px; }
    .k-beforeAfter1 .inner a {
      transition: all .3s ease; }
      .k-beforeAfter1 .inner a:hover {
        opacity: 0.6; }

@media screen and (max-width: 768px) {
  .k-beforeAfter1 .before {
    width: 50%; } }
.k-sns1 {
  /*clearfix*/
  width: 100%;
  _display: inline-block;
  /*clearfix*/ }
  .k-sns1 * {
    box-sizing: border-box; }
  .k-sns1:after {
    content: ".";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden; }
  .k-sns1 .inner-left, .k-sns1 .inner-right {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px; }
    .k-sns1 .inner-left .k-snsimg, .k-sns1 .inner-right .k-snsimg {
      width: 15%; }
      .k-sns1 .inner-left .k-snsimg > img, .k-sns1 .inner-right .k-snsimg > img {
        width: 100%;
        border-radius: 100%;
        border: solid thin #999; }
      .k-sns1 .inner-left .k-snsimg > figcaption, .k-sns1 .inner-right .k-snsimg > figcaption {
        text-align: center;
        font-size: 0.8em; }
    .k-sns1 .inner-left .k-snsbody, .k-sns1 .inner-right .k-snsbody {
      position: relative;
      width: 80%;
      padding: 20px;
      border-radius: 20px; }
      .k-sns1 .inner-left .k-snsbody:before, .k-sns1 .inner-left .k-snsbody:after, .k-sns1 .inner-right .k-snsbody:before, .k-sns1 .inner-right .k-snsbody:after {
        position: absolute;
        content: ''; }
  .k-sns1 .inner-left {
    float: left; }
    .k-sns1 .inner-left .k-snsbody {
      margin-left: 5%;
      background: #eee; }
      .k-sns1 .inner-left .k-snsbody::before {
        border: 10px solid transparent;
        border-right: solid 10px #eee;
        top: 22px;
        left: -20px; }
    .k-sns1 .inner-left .k-snsstamp {
      position: relative;
      width: 20%;
      margin-top: 15px;
      margin-left: 20%; }
      .k-sns1 .inner-left .k-snsstamp .stamp-inner {
        overflow: hidden;
        border: solid thin #999;
        border-radius: 20px; }
        .k-sns1 .inner-left .k-snsstamp .stamp-inner img {
          width: 100%; }
      .k-sns1 .inner-left .k-snsstamp::after {
        width: 4em;
        position: absolute;
        bottom: 0;
        left: calc(100% + 0.8em);
        content: "原文画像";
        font-size: 0.8em; }
  .k-sns1 .inner-right {
    float: right; }
    .k-sns1 .inner-right .k-snsimg {
      order: 2; }
    .k-sns1 .inner-right .k-snsbody {
      margin-right: 5%;
      order: 1;
      background: #9cd6e7; }
      .k-sns1 .inner-right .k-snsbody::after {
        border: 10px solid transparent;
        border-left: solid 10px #9cd6e7;
        top: 22px;
        right: -20px; }

@media screen and (max-width: 768px) {
  .k-sns1 {
    font-size: 0.9rem; }
    .k-sns1 .inner-left, .k-sns1 .inner-right {
      width: 100%;
      padding: 5px; }
      .k-sns1 .inner-left .k-snsstamp, .k-sns1 .inner-right .k-snsstamp {
        width: 30%; }
      .k-sns1 .inner-left .k-snsbody, .k-sns1 .inner-right .k-snsbody {
        padding: 15px; } }
.pola img {
  width: 100%;
  border: solid 5px #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); }
.pola p {
  text-align: center;
  margin: 5px 0 10px; }

.item_box {
  width: 100%;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  padding: 10px 5px;
  border-radius: 5px;
  box-sizing: border-box; }
  .item_box.ib01 {
    background: #86bae9;
    border: 3px solid #5BA1E1;
    color: #fff; }
  .item_box.ib02 {
    background: #02757E;
    border: 3px solid #01464c;
    color: #fff; }

a.anchor {
  display: block;
  padding-top: 140px;
  margin-top: -140px; }
  @media screen and (max-width: 768px) {
    a.anchor {
      padding-top: 10px;
      margin-top: -10px; } }

.top-business-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto; }
  .top-business-list li {
    width: 31%;
    margin: 0 calc(2.33% + (2.33% / 2)) 50px 0;
    position: relative; }
    .top-business-list li:nth-child(3n) {
      margin-right: 0; }
      @media all and (max-width: 639px) {
        .top-business-list li:nth-child(3n) {
          margin-right: auto; } }
    .top-business-list li img {
      width: 100%;
      border: 4px solid #fefefe;
      border-radius: 30px; }
      .top-business-list li img:hover {
        -webkit-filter: sepia(100%);
        filter: sepia(100%);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out; }
    @media all and (max-width: 639px) {
      .top-business-list li {
        width: 90%;
        margin: 0 auto 30px; } }
  .top-business-list .top-business-txt {
    position: relative;
    max-width: 90%;
    background: #5BA1E1;
    color: #fff;
    z-index: 2;
    margin: -30px auto 0;
    padding: 20px;
    text-align: center;
    line-height: 1.5;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    /*
    &:before {
     position: absolute;
     content: "";
     left: 50%;
     top: 80%;
     width: 50px;
     height: 3px;
     transform: translateX(-50%);
     background: $base_color;
    }*/ }
    @media all and (max-width: 639px) {
      .top-business-list .top-business-txt {
        font-size: 1.4rem;
        padding: 15px;
        margin-top: -20px; } }
