@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #323232;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1rem;
  background: #fefefe; }

a {
  color: #0096d2;
  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: "Noto Sans JP", 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.9s 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 #39C6FF;
    border-radius: 50%;
    border-right: 1px solid rgba(57, 198, 255, 0.2);
    border-top: 1px solid rgba(57, 198, 255, 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 -10px;
    padding: 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: 350px; }
  #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; }
    @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_tel span {
    display: block; }
  #l-header .head-right_tel a {
    color: #39C6FF;
    font-size: 3rem;
    font-family: "Sree Krushnadevaraya", serif;
    padding: 4px 15px; }
    #l-header .head-right_tel a:before {
      font-family: "Font Awesome 5 Free";
      content: "\f879";
      font-weight: bold;
      font-size: 2rem; }
    #l-header .head-right_tel a:hover {
      color: #004d6c; }
  #l-header .head-right_fax a {
    color: #39C6FF;
    font-size: 3rem;
    font-family: "Sree Krushnadevaraya", serif;
    padding: 4px 15px; }
    #l-header .head-right_fax a:before {
      font-family: "Font Awesome 5 Free";
      content: "\f1ac";
      font-weight: bold;
      font-size: 2rem; }
    #l-header .head-right_fax a:hover {
      color: #004d6c; }
  #l-header .head-right_mail {
    padding-right: 10px; }
    #l-header .head-right_mail a {
      display: block;
      padding: 4px 15px;
      border-radius: 40px;
      background: #39C6FF;
      color: #fefefe;
      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: #004d6c;
        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: #fefefe;
    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.3rem;
        padding: 15px 0 15px;
        color: #111;
        text-align: center; }
        #header_nav ul li a span {
          display: block;
          font-size: 2rem;
          font-family: "Sree Krushnadevaraya", serif;
          font-weight: 500;
          position: relative;
          color: #39C6FF;
          letter-spacing: 0.2rem; }
        #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: #39C6FF;
          transition: all 0.3s ease-in; }
      #header_nav ul li:hover .dropdown {
        display: block !important; }
  #header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 70px;
    z-index: 999; }
    #header_nav .dropdown .dropdown-li {
      border-right: 0;
      margin: 0 0 3px;
      background: #fff; }
      #header_nav .dropdown .dropdown-li a {
        display: block;
        width: 200px;
        color: #3a200c;
        color: #555;
        font-size: 1.3rem; }
        #header_nav .dropdown .dropdown-li a:after {
          display: none; }
        #header_nav .dropdown .dropdown-li a:hover {
          background: #39C6FF;
          color: #fff; }
      #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: #06b7ff;
    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-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 11s linear 0s 1 normal both; }

.swiper-slide {
  position: relative;
  overflow: hidden; }

.slide-img {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;"; }
  @media all and (max-width: 1200px) {
    .slide-img {
      height: 50vw; } }
  @media all and (max-width: 639px) {
    .slide-img {
      height: 50vh; } }

#slideshow {
  position: relative;
  overflow: hidden; }

#catch {
  z-index: 50;
  position: absolute;
  right: 1%;
  bottom: 10%;
  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: 95%; } }
  #catch .title_c {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 3px 4px #666; }
    @media all and (max-width: 1200px) {
      #catch .title_c {
        font-size: 2rem; } }
    @media all and (max-width: 639px) {
      #catch .title_c {
        font-size: 1.5rem; } }

/* 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: #DBDBDB;
    background: #fefefe;
    padding: 20px;
    border-radius: 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(51, 105, 155, 0.5); } }

.contact_bnr {
  margin: 10px auto 20px; }
  .contact_bnr > li {
    text-align: center; }
    .contact_bnr > li .bnr_tel {
      background: transparent;
      font-size: 3.5rem;
      letter-spacing: 0.15em;
      white-space: nowrap;
      color: #222;
      font-family: "Sree Krushnadevaraya", serif;
      margin: -20px auto 0; }
      .contact_bnr > li .bnr_tel:before {
        font-family: "Font Awesome 5 Free";
        content: "\f095";
        font-weight: bold;
        font-size: 2.5rem; }
      .contact_bnr > li .bnr_tel:hover {
        color: #39C6FF;
        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: #39C6FF;
      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 {
      color: #39C6FF;
      font-family: "Sree Krushnadevaraya", serif;
      background: transparent;
      font-size: 3.5rem;
      margin: -30px auto 0;
      letter-spacing: 0.15em;
      white-space: nowrap;
      color: #222; }
      .contact_bnr > li .bnr_fax:before {
        font-family: "Font Awesome 5 Free";
        content: "\f1ac";
        font-weight: bold;
        font-size: 2.5rem; }
      @media all and (max-width: 639px) {
        .contact_bnr > li .bnr_fax {
          font-size: 2rem;
          max-width: 100%; } }
    .contact_bnr > li .bnr_mail {
      font-family: "Noto Serif JP", serif;
      background: #06b7ff;
      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: #39C6FF;
        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%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 5px; }
    .footer_navi ul li {
      flex: 1 0 auto;
      margin-bottom: 4px;
      margin: 0 0.5% 4px; }
      .footer_navi ul li a {
        color: #264f75;
        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: #33699b;
          width: 10px;
          height: 3px;
          position: absolute;
          top: 0.75em;
          left: 0; }
        .footer_navi ul li a:hover {
          color: #151515; }
      .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 .child1 {
    width: 35%; }
  .column2 .child2 {
    width: 62%; }
  @media all and (max-width: 800px) {
    .column2 .child1,
    .column2 .child2 {
      width: 100%;
      border: 0; } }

.flogo {
  width: 350px;
  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: #39C6FF;
  color: #fefefe;
  font-size: 1.2rem; }
  @media all and (max-width: 800px) {
    .copyright {
      background: #39C6FF;
      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: 400;
  font-size: 1.8rem;
  padding: 10px 20px;
  line-height: 1.6;
  color: #3a200c; }
  .news-title span {
    font-size: 3rem;
    display: block;
    font-weight: 600;
    color: #39C6FF;
    font-family: "Sree Krushnadevaraya", serif;
    font-weight: 500;
    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; }
  @media all and (max-width: 639px) {
    .news-right {
      width: 100%;
      margin: 10px 0 0; } }

/* --features--
----------------------------------*/
.top-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center; }
  .top-list li {
    width: 48%;
    transition: transform 0.3s ease-in;
    position: relative;
    margin: 0 4% 5% 0; }
    .top-list li:nth-child(2n) {
      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;
        padding: 5px; } }
  .top-list .top-list_ttl {
    width: 80%;
    background: #39C6FF;
    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: 2.5rem;
      color: rgba(255, 229, 83, 0.9);
      left: 50%;
      top: -35px;
      transform: translateX(-50%);
      white-space: nowrap;
      font-family: "Sree Krushnadevaraya", serif;
      font-weight: 500; }
    @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: 1.6rem;
          top: -30px; } }
  .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: #33699b; }
    .staff-wrap .staff-name .category {
      display: inline-block;
      padding: 3px 5px;
      border: 2px solid #39C6FF;
      color: #39C6FF;
      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: 30px;
    border-bottom: 2px solid #f6f4eb; }
.service-list .service-ttl {
  font-size: 3rem;
  color: #39C6FF;
  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;
  border-radius: 20px; }
  .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.4;
  font-weight: 400;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.2rem;
  color: #3a200c; }
  .mtitle span {
    display: block;
    font-size: 6rem;
    color: #39C6FF;
    position: relative;
    font-family: "Sree Krushnadevaraya", serif;
    font-weight: 500; }
  .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: 1.4rem;
      text-align: center;
      margin-bottom: 15px; }
      .mtitle span {
        font-size: 4.2rem; } }

.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: "Sree Krushnadevaraya", serif;
    font-weight: 500;
    color: #39C6FF;
    font-weight: normal; }
  @media all and (max-width: 639px) {
    .mtitle2 {
      font-size: 1.2rem; }
      .mtitle2 span {
        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.8rem;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif; }
  .mtitle-bll:before {
    font-family: "Font Awesome 5 Free";
    content: "\f5aa";
    font-weight: bold;
    margin-right: 5px;
    color: #39C6FF; }
  .mtitle-bll:after {
    position: absolute;
    content: "";
    display: block;
    bottom: -1px;
    width: 30%;
    height: 1px;
    background: #39C6FF; }
  @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: #39C6FF; }
    .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 #39C6FF;
  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: #39C6FF;
  color: #fefefe;
  font-size: 1.8rem;
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: 400; }
  .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: #151515;
  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: #39C6FF;
    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: #39C6FF; }

.mtitle_point {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600; }
  .mtitle_point:before {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #39C6FF;
    position: absolute;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0; }
  .mtitle_point span {
    display: block;
    color: #39C6FF;
    font-size: 1.2rem; }

.mtitle_fki {
  position: relative;
  padding: 1.5rem 2rem;
  border: 3px solid #d8d8d8;
  border-radius: 10px;
  background: #f9f9f9; }
  .mtitle_fki:before {
    position: absolute;
    bottom: -14px;
    left: 1em;
    width: 0;
    height: 0;
    content: '';
    border-width: 14px 12px 0 12px;
    border-style: solid;
    border-color: #d8d8d8 transparent transparent transparent; }
  .mtitle_fki:after {
    position: absolute;
    bottom: -10px;
    left: 1em;
    width: 0;
    height: 0;
    content: '';
    border-width: 14px 12px 0 12px;
    border-style: solid;
    border-color: #f9f9f9 transparent transparent transparent; }

.mtitle_re {
  background: #FDC800;
  padding: 15px;
  border-radius: 20px;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 30px; }
  @media all and (max-width: 639px) {
    .mtitle_re {
      font-size: 1.8rem;
      padding: 5px;
      border-radius: 10px;
      margin-bottom: 10px; } }

/* btn
----------------------------------*/
.btn01 a {
  background: #fff;
  text-align: center;
  width: 300px;
  margin: 0 auto;
  color: #39C6FF;
  display: block;
  padding: 8px 5px;
  font-weight: 400;
  border: 2px solid #39C6FF;
  border-radius: 35px; }
  .btn01 a:hover {
    background: #39C6FF;
    border-color: #39C6FF;
    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: #39C6FF;
    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: #33699b;
    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 dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #fefefe;
  text-align: center;
  background: #39C6FF;
  border-radius: 20px; }
.news-bl dd {
  padding: 0 0 10px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px; }
  .news-bl dd a {
    color: #39C6FF; }
    .news-bl dd a:hover {
      opacity: .5; }
  .news-bl dd:last-child {
    margin: 0;
    border-bottom: none; }
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none; }
  .news-bl dd {
    padding: 8px 5px 5px; } }

/* bg-greet
----------------------------------*/
.bg-greet {
  margin: 0 auto 0;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
  z-index: 1;
  background: url(../img/page-title01.jpg) no-repeat 50% 10%/cover; }
  @media all and (max-width: 800px) {
    .bg-greet {
      max-width: calc(100% - 15px); } }
  @media all and (max-width: 639px) {
    .bg-greet {
      background: url(../img/page-title01.jpg) no-repeat 90%/cover; } }
  .bg-greet:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #39C6FF;
    opacity: 0.6; }
  .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; }
        .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);
      margin-top: 10px; }
      .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: 50%;
    z-index: -1;
    background-image: linear-gradient(to bottom, #9fe3ff, #39C6FF);
    background: url(../img/greet-img.jpg) no-repeat center/cover; }

.bg-01 {
  background-image: linear-gradient(to right, rgba(51, 105, 155, 0.5) 0%, rgba(51, 105, 155, 0.4) 50%, #eacd9a 50.1%, #eacd9a 100%); }
  @media all and (max-width: 639px) {
    .bg-01 {
      background-image: linear-gradient(to bottom, rgba(57, 198, 255, 0.4) 0%, rgba(57, 198, 255, 0.4) 55%, #eacd9a 55.1%, #eacd9a 100%); } }

.bg-02 {
  background: url(../img/bg01.jpg); }

.bg-gradient {
  background-image: linear-gradient(to right bottom, rgba(254, 254, 254, 0.5) 0%, rgba(238, 238, 238, 0.7) 50%, rgba(170, 170, 170, 0.5) 100%); }

.bg-pattern {
  background: url(../img/back01.gif);
  background-size: 400px; }

.bg-base {
  background: rgba(57, 198, 255, 0.1); }

.bg-gray {
  background: #DBDBDB; }

.bg-beige {
  background: rgba(246, 244, 235, 0.8); }

.bg-beige2 {
  background: rgba(246, 244, 235, 0.5); }

/* tbl
----------------------------------*/
.tbl {
  width: 100%; }
  .tbl th,
  .tbl td {
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #0096d2; }
  .tbl th {
    background: #f0f0f0;
    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: #39C6FF; }
  .tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
    background: #DBDBDB; }

.tbl-border {
  width: 100%; }
  .tbl-border th,
  .tbl-border td {
    padding: 15px;
    border-bottom: 1px solid #ccc;
    vertical-align: middle; }
  .tbl-border th {
    width: 25%; }
    @media all and (max-width: 639px) {
      .tbl-border th {
        width: 30%; } }

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px; }
  .company th,
  .company td {
    padding: 15px 10px;
    vertical-align: middle; }
  .company th {
    text-align: left;
    width: 25%;
    position: relative;
    background: #33699b;
    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: #33699b;
      margin-top: -10px; }
  .company td {
    background: #f9f9f9;
    padding-left: 20px; }
    .company td a {
      color: #39C6FF;
      text-decoration: underline; }

.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: 36.25%;
  height: 0;
  overflow: hidden; }
  .ggmap iframe,
  .ggmap object,
  .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* youtube
----------------------------------*/
.youtube {
  position: relative;
  padding-bottom: 50.25%;
  height: 0;
  overflow: hidden; }
  .youtube iframe,
  .youtube object,
  .youtube 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: #33699b; }
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem; } }

.list_disc li {
  padding: 4px; }
  .list_disc li:before {
    content: "●";
    color: #39C6FF;
    margin-right: 5px; }

.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(57, 198, 255, 0.3);
      display: inline-block;
      width: 2em;
      height: 2em;
      text-align: center;
      font-family: "Noto Sans JP", 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 {
          width: 100%;
          font-size: 1.8rem;
          margin-right: 0;
          margin-bottom: .5rem; } }

/* 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: #39C6FF;
  background: #39C6FF;
  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: #00a8ec;
  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: #39C6FF; }
  @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: #0096d2;
      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: #DBDBDB; }
  .category_nav li:last-child a {
    border-bottom: none; }

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1; }

.w300 {
  width: 300px; }

.spbr {
  display: none; }

.color1 {
  color: #39C6FF; }

.color2 {
  color: #33699b; }

.color3 {
  color: #f33d10; }

.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: #33699b; }

.telbox {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #eee;
  text-align: center; }
  .telbox .inner {
    background: #fff;
    padding: 10px; }

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem; }
  .breadcrumb li {
    display: inline;
    color: #555; }
    .breadcrumb li a {
      color: #33699b; }
    .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: #39C6FF;
      padding: 5px 10px;
      margin-right: 5px;
      font-size: 11px;
      border-radius: 15px;
      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: #39C6FF;
    border: 1px solid #39C6FF;
    border-radius: 25px;
    color: #fff; }
    .form button:hover {
      background: #fff;
      color: #39C6FF; }
    .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: #39C6FF; }
  .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: 17px;
      height: 17px;
      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: #39C6FF;
      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 #39C6FF;
      border-bottom: 3px solid #39C6FF;
      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 #39C6FF;
  box-shadow: 0 0 0 8px rgba(57, 198, 255, 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: #fff;
  border-top: 0;
  margin-top: 30px;
  border-radius: 20px; }

.mtitle_small {
  position: relative;
  font-size: 2rem;
  color: #33699b;
  line-height: 1.4;
  margin-bottom: 30px; }
  .mtitle_small:before {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #39C6FF;
    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: #39C6FF;
    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) / 2);
    margin: 0 10px 20px 0; }
    @media all and (-ms-high-contrast: none) {
      .gallery li {
        width: 32%; } }
    .gallery li:nth-child(2n) {
      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対策*/
        border-radius: 20px; }
    .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, .list2 .child {
    width: 48%;
    margin: 0 1% 35px; }
    .list2 > li img, .list2 .child img {
      width: 100%;
      margin-bottom: 20px;
      border-radius: 30px; }
    @media all and (max-width: 639px) {
      .list2 > li, .list2 .child {
        width: 100%;
        margin: 0 auto 20px; } }

.list3 {
  display: flex;
  flex-wrap: wrap; }
  .list3 > li {
    width: 31%;
    margin: 0 calc(2.33% + (2.33% / 2)) 30px 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; } }

.list4 {
  display: flex;
  flex-wrap: wrap; }
  .list4 > li {
    width: 23%;
    margin: 0 calc(2% + (2% / 4)) 30px 0; }
    .list4 > li:nth-child(4n) {
      margin-right: 0; }
      @media all and (max-width: 639px) {
        .list4 > li:nth-child(4n) {
          margin-right: auto; } }
    @media all and (max-width: 800px) {
      .list4 > li {
        width: 48.5%;
        margin: 0 calc(2% + (2% / 4)) 30px 0; }
        .list4 > li:nth-child(2n) {
          margin-right: 0; } }
    @media all and (max-width: 800px) and (max-width: 639px) {
      .list4 > li:nth-child(2n) {
        margin-right: auto; } }

    @media all and (max-width: 639px) {
      .list4 > li {
        width: 95%;
        margin: 0 auto 20px; } }

.prv dt {
  color: #39C6FF;
  border-bottom: 1px solid #ccc;
  margin: 10px 0; }

.top-business-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1300px;
  margin: 30px auto 0; }
  .top-business-list li {
    width: 24%;
    margin: 0 calc(.33% + (.33% / 2)) 50px 0;
    position: relative; }
    .top-business-list li:nth-child(4n) {
      margin-right: 0; }
      @media all and (max-width: 639px) {
        .top-business-list li:nth-child(4n) {
          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: grayscale(70%);
        filter: grayscale(70%);*/
        opacity: .5;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out; }
    @media all and (max-width: 1200px) {
      .top-business-list li {
        width: 48%;
        margin: 0 calc(.33% + (.33% / 2)) 50px 0; }
        .top-business-list li:nth-child(2n) {
          margin-right: 0; } }
    @media all and (max-width: 639px) {
      .top-business-list li {
        width: 90%;
        margin: 0 auto 30px; }
        .top-business-list li:nth-child(2n) {
          margin: 0 auto 30px; }
        .top-business-list li:nth-child(4n) {
          margin: 0 auto 30px; } }
  .top-business-list .top-business-txt {
    position: relative;
    max-width: 90%;
    background: #fefefe;
    z-index: 2;
    margin: -30px auto 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 20px; }
    .top-business-list .top-business-txt .title {
      line-height: 1.5;
      font-size: 2rem;
      letter-spacing: 0.2rem;
      font-weight: 600;
      font-family: "Noto Serif JP", serif; }
      .top-business-list .top-business-txt .title:before {
        position: absolute;
        content: "";
        left: 50%;
        top: 40%;
        width: 50px;
        height: 3px;
        transform: translateX(-50%);
        background: #39C6FF; }
      @media all and (max-width: 639px) {
        .top-business-list .top-business-txt .title {
          font-size: 1.8rem;
          line-height: 2; }
          .top-business-list .top-business-txt .title:before {
            top: 45%; } }
    .top-business-list .top-business-txt .cap {
      font-size: 1.3rem;
      font-family: "Noto Sans JP", sans-serif;
      padding: 30px 0 0;
      font-weight: 400; }
    @media all and (max-width: 639px) {
      .top-business-list .top-business-txt {
        padding: 15px;
        margin-top: -20px; } }

.topbnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 0;
  max-width: 1500px; }
  .topbnr li {
    width: 24%;
    margin-bottom: 25px;
    box-shadow: 0 0 0 2px #39C6FF;
    overflow: hidden;
    position: relative; }
    @media all and (max-width: 1200px) {
      .topbnr li:nth-child(4n) {
        margin-right: 1%; } }
    @media all and (max-width: 639px) {
      .topbnr li:nth-child(4n) {
        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 #33699b;
      border-top: 18px solid #39C6FF;
      z-index: 20; }
    .topbnr li:hover {
      transition: all 0.3s ease-in; }
    @media all and (max-width: 1200px) {
      .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 #39C6FF;
    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: #39C6FF;
    color: #ffe553; }

/* --top-intro--
----------------------------------*/
.top-intro {
  position: relative;
  margin: 2em auto 8em; }
  @media all and (max-width: 639px) {
    .top-intro {
      margin: 9em auto 4em; } }
  .top-intro:before {
    right: 5%;
    top: 0%;
    background: url(../img/bg-intro.jpg) no-repeat 40% 100%/cover;
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    z-index: -1;
    opacity: 0.8; }
    @media all and (max-width: 1200px) {
      .top-intro:before {
        right: 5%; } }
    @media all and (max-width: 800px) {
      .top-intro:before {
        width: 70%;
        right: 0; } }
    @media all and (max-width: 639px) {
      .top-intro:before {
        background-size: cover;
        height: 50%;
        width: 90%; } }
  .top-intro.concept {
    margin: 6em auto 6em; }
    .top-intro.concept:before {
      left: 15%;
      right: auto;
      background: url(../img/bg-concept.jpg) no-repeat center/cover; }
      @media all and (max-width: 639px) {
        .top-intro.concept:before {
          left: 0; } }
    .top-intro.concept .top-box {
      margin: 30px 20px 30px auto; }
      @media all and (max-width: 639px) {
        .top-intro.concept .top-box {
          margin-top: 180px; } }

.top-intro_title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  text-align: left;
  font-size: 6rem;
  line-height: 1.3;
  left: 2%;
  top: 50px;
  font-weight: normal;
  white-space: nowrap;
  z-index: 3; }
  @media all and (max-width: 639px) {
    .top-intro_title {
      writing-mode: initial;
      font-size: 3rem;
      top: 20px;
      left: 0; }
      .top-intro_title:before {
        left: 0;
        top: 50%;
        width: 100px;
        height: 70px;
        margin: 0;
        transform: translateY(-50%); } }

.top-box2 {
  max-width: 700px;
  background: #fff;
  padding: 45px 35px;
  position: relative;
  z-index: 5;
  margin: 30px auto 30px 0;
  position: relative;
  line-height: 2.5;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  box-shadow: 16px 14px 13px 0px rgba(57, 198, 255, 0.1); }
  @media all and (max-width: 800px) {
    .top-box2 {
      max-width: 80%;
      padding: 20px; } }
  @media all and (max-width: 639px) {
    .top-box2 {
      max-width: 90%;
      font-size: 1.1rem;
      margin-top: 180px;
      margin-bottom: 0; } }

.top-box {
  max-width: 750px;
  margin: 30px auto;
  background: #fefefe;
  padding: 25px;
  border: 1px dashed #39C6FF; }
  @media all and (max-width: 639px) {
    .top-box {
      max-width: 95%;
      padding: 15px; } }

.base {
  color: #39C6FF; }

.top-recruit {
  background: url(../img/top-recruit.jpg) no-repeat center/cover; }
  .top-recruit .top-recruit-box {
    max-width: 600px;
    margin-left: auto;
    padding: 35px 25px;
    background: rgba(254, 254, 254, 0.9);
    font-size: 1.7rem;
    line-height: 2; }
  @media all and (max-width: 639px) {
    .top-recruit {
      padding: 25px 0; }
      .top-recruit .top-recruit-box {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        font-size: 1.3rem; } }

.notion {
  margin: -30px auto 20px;
  text-align: center; }
  .notion span {
    background: #264f75;
    color: #fefefe;
    font-size: 1.8rem;
    padding: 10px 40px; }

.note {
  padding: 15px;
  margin-top: 10px;
  background: #f6f4eb;
  max-width: 700px;
  margin: 35px auto 0;
  border: 6px solid #fefefe; }

.flow-dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 10px 0; }
  .flow-dl dt {
    background: #39C6FF;
    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 #33699b;
    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: 80px 0 30px;
  margin-top: 50px; }
  .greet-wrap:before {
    position: absolute;
    content: "";
    width: 85%;
    height: 100%;
    left: 50%;
    top: 0;
    background: url(../img/greet-img.jpg) no-repeat center/cover;
    z-index: -1;
    transform: translateX(-50%); }
    @media all and (max-width: 639px) {
      .greet-wrap:before {
        width: 95%;
        height: 90%; } }

.greet-box {
  max-width: 800px;
  color: #fefefe;
  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: #06b7ff;
  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: #39C6FF;
      font-size: 3rem;
      background: rgba(57, 198, 255, 0.2); }
  .faq-dl .faq-inner dd:before {
    content: "A";
    color: #f33d10;
    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 80px;
        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 #f33d10;
  line-height: 1.3;
  margin-bottom: 15px; }
  .point-title span {
    color: #f33d10;
    font-size: 4rem;
    font-family: "Sree Krushnadevaraya", serif;
    font-weight: 500; }
  @media all and (max-width: 639px) {
    .point-title {
      font-size: 1.6rem; }
      .point-title span {
        font-size: 2.2rem; } }

/* Tiny Carousel */
.slider1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 0px;
  background-repeat: repeat; }
  .slider1 .viewport {
    width: 100%;
    margin: 0 auto;
    height: 230px;
    position: relative; }
  .slider1 .buttons {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    position: absolute;
    top: 30%;
    left: 0;
    width: 10px;
    height: 10px;
    color: #39C6FF;
    text-decoration: none;
    margin: 0 5px;
    z-index: 5;
    cursor: pointer;
    font-size: 60px; }
  .slider1 .next {
    right: 10px;
    left: auto;
    top: 30%; }
  .slider1 .buttons:hover {
    opacity: 0.6; }
  .slider1 .disable {
    visibility: hidden; }
  .slider1 .overview {
    list-style: none;
    position: absolute;
    padding: 0;
    margin: 0;
    width: 180px;
    left: 0;
    top: -1px; }
    .slider1 .overview li {
      width: 230px;
      height: 300px;
      float: left;
      text-align: center;
      vertical-align: middle;
      display: table;
      z-index: 99999;
      overflow: hidden;
      font-weight: bold; }
  .slider1 img {
    width: 230px;
    height: 240px;
    padding-bottom: 5px;
    vertical-align: middle;
    text-align: center;
    object-fit: cover; }
  .slider1 li p {
    width: 230px;
    height: 0px;
    text-align: center;
    color: #39C6FF !important;
    font-weight: bold;
    font-size: 13px !important;
    border-radius: 10px; }

#blog_flexwrap {
  color: #222222;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: 40px auto; }
  @media (max-width: 960px) {
    #blog_flexwrap {
      width: calc(100% - 16px); } }
  #blog_flexwrap #blog_side {
    width: 300px;
    margin-left: 40px; }
    #blog_flexwrap #blog_side section {
      margin-bottom: 25px; }
  #blog_flexwrap #blog_main {
    flex: 1; }
    #blog_flexwrap #blog_main section {
      padding: 24px;
      margin-bottom: 25px; }

.blog_sttl01 {
  text-indent: 5px;
  border-top: 1px dashed #39C6FF;
  border-bottom: 1px dashed #39C6FF;
  color: #39C6FF;
  background: #fff;
  padding: 5px 0;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: center; }

.blog_mttl {
  width: calc(100% - 20px);
  color: #39C6FF;
  font-size: 2.3rem;
  letter-spacing: 0.1rem;
  overflow: hidden;
  font-weight: bold;
  margin: 0px 0 16px;
  line-height: 1.8; }
  @media (max-width: 1200px) {
    .blog_mttl {
      font-size: 1.8rem; } }

.blog_time {
  padding-top: 0px;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: right; }
  @media (max-width: 479px) {
    .blog_time {
      font-size: 1.2rem; } }
  .blog_time:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin-right: 5px;
    font-weight: normal; }

.blog_box {
  min-height: 500px;
  position: relative; }
  .blog_box img {
    max-width: 100%;
    padding: 16px 0; }

.pages {
  width: calc(100% - 20px);
  margin-top: 40px;
  font-size: 1.2rem; }
  .pages a {
    display: block;
    padding: 5px 10px;
    border: 1px solid #39C6FF;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .pages a:link, .pages a:visited {
      color: #39C6FF; }
    .pages a:hover {
      opacity: 0.6; }
  .pages .page_next {
    float: left;
    width: calc(45% - 20px); }
  .pages .page_prev {
    float: right;
    text-align: right;
    width: calc(45% - 20px); }

.archive * {
  transition: 0.3s; }
.archive ul {
  margin: 8px 0 0; }
.archive li {
  background: #f6f4eb;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
  background: #fff; }
  .archive li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px; }
    .archive li a:link, .archive li a:visited {
      color: #333; }
    .archive li a:hover {
      color: #39C6FF; }

.blog_side_list {
  position: relative;
  margin: 0 0 16px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .blog_side_list .blog_bx {
    transition: 0.3s ease-in-out;
    width: 100% !important;
    border: 1px solid #ccc;
    position: relative;
    padding: 8px;
    margin-bottom: 8px;
    background: #fff; }
    .blog_side_list .blog_bx a {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1; }
    .blog_side_list .blog_bx .blog_bx_flex {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      .blog_side_list .blog_bx .blog_bx_flex div {
        width: calc(100% - 120px);
        padding: 0; }
    .blog_side_list .blog_bx:hover {
      transform: translateY(0px);
      box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px; }
    .blog_side_list .blog_bx figcaption {
      width: 100px;
      height: 70px;
      display: block;
      text-align: center;
      background-position: center center;
      background-repeat: no-repeat;
      float: left;
      margin-bottom: 0px;
      box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px; }
    .blog_side_list .blog_bx * {
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .blog_side_list .blog_bx img {
      vertical-align: middle;
      height: 70px;
      width: 100%;
      object-fit: cover;
      font-family: "object-fit: cover;"; }
    .blog_side_list .blog_bx:hover img {
      opacity: 1 !important; }
    .blog_side_list .blog_bx .ttl {
      font-weight: bold;
      font-size: 1.2rem;
      color: #39C6FF;
      float: none;
      background: #fff;
      padding: 0 0px;
      border-bottom: 1px dashed #39C6FF;
      font-family: "Noto Serif JP", serif; }
    .blog_side_list .blog_bx .ttm {
      float: none;
      padding-top: 0px;
      font-size: 1.2rem;
      color: #888;
      font-weight: normal; }
      .blog_side_list .blog_bx .ttm:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f017";
        margin-right: 5px;
        font-weight: normal; }
    .blog_side_list .blog_bx .blog_ttl {
      clear: both;
      font-weight: normal;
      color: #39C6FF;
      font-size: 1.2rem;
      margin-bottom: 8px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .blog_side_list.list .ttl {
    display: none; }

.blog_top_list {
  position: relative;
  margin: 0 0px 16px 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .blog_top_list:after {
    content: "";
    display: block;
    width: 31%; }
  .blog_top_list .blog_bx {
    transition: 0.3s ease-in-out;
    width: calc(33.33% - 16px) !important;
    font-size: 12px;
    margin: 25px 0;
    position: relative;
    transform: translateY(0px);
    background-color: #FFFFFF;
    border: 1px solid #39C6FF;
    padding: 10px; }
    .blog_top_list .blog_bx:nth-child(3) {
      margin-right: 0px; }
    .blog_top_list .blog_bx a {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1; }
    .blog_top_list .blog_bx .blog_bx_flex {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      background: #fff; }
      .blog_top_list .blog_bx .blog_bx_flex div {
        width: 100%;
        padding: 16px; }
    .blog_top_list .blog_bx:hover {
      transform: translateY(-16px);
      box-shadow: 3px 3px 10px #9E9E9E; }
    .blog_top_list .blog_bx figcaption {
      display: block;
      text-align: center;
      width: 100%;
      height: 230px;
      overflow: hidden;
      background-color: #fff;
      background-position: center center;
      background-repeat: no-repeat;
      float: none; }
    .blog_top_list .blog_bx * {
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .blog_top_list .blog_bx p {
      line-height: 1.6em;
      font-size: 13px; }
    .blog_top_list .blog_bx img {
      vertical-align: middle;
      height: 100%;
      width: 100%;
      object-fit: cover;
      font-family: "object-fit: cover;"; }
    .blog_top_list .blog_bx:hover img {
      opacity: 1 !important;
      transform: scale(1.1); }
    .blog_top_list .blog_bx .ttl {
      font-weight: bold;
      font-size: 12px;
      color: #fff;
      float: left;
      background: #39C6FF;
      padding: 0 15px;
      margin-bottom: 5px;
      font-family: "Noto Serif JP", serif; }
    .blog_top_list .blog_bx .ttm {
      padding-top: 0px;
      font-size: 12px;
      font-weight: normal;
      color: #aaa; }
      .blog_top_list .blog_bx .ttm:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f017";
        margin: 0 5px;
        font-weight: normal; }
    .blog_top_list .blog_bx .blog_ttl {
      clear: both;
      font-weight: normal;
      font-size: 1.4rem;
      color: #39C6FF; }
    .blog_top_list .blog_bx .blog_text {
      margin-top: 5px; }
  .blog_top_list.list .blog_bx .ttl {
    display: none; }

@media (max-width: 960px) {
  .blog_top_list .blog_bx {
    width: 100% !important;
    margin-top: 0; }
    .blog_top_list .blog_bx figcaption {
      border-radius: 0; }

  #blog_flexwrap {
    display: -webkit-block;
    display: block;
    width: 95%;
    margin: 20px auto 30px; }
    #blog_flexwrap #blog_main {
      width: 100%;
      flex: 1;
      margin-bottom: 32px; }
    #blog_flexwrap #blog_side {
      width: 100%;
      margin-left: 0px; }

  .pages {
    width: 100%; }
    .pages .page_next {
      float: none;
      width: calc(100% - 20px);
      margin-bottom: 8px; }
    .pages .page_prev {
      float: none;
      text-align: left;
      width: calc(100% - 20px); } }
.w80 {
  width: 80%;
  margin: 0 auto; }
  @media all and (max-width: 639px) {
    .w80 {
      width: 90%; } }

.top-bnr-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding: 0 10px; }
  .top-bnr-list li {
    width: 48%; }
    .top-bnr-list li a {
      display: block;
      width: 100%;
      height: 100%; }
      .top-bnr-list li a:hover img {
        transition: 0.3s transform ease-in-out;
        transform: scale(1.05); }
    .top-bnr-list li .top-bnr-img {
      width: 80%;
      height: 250px;
      margin: 0 auto;
      overflow: hidden; }
      .top-bnr-list li .top-bnr-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        font-family: "object-fit: cover;"; }
      @media all and (max-width: 639px) {
        .top-bnr-list li .top-bnr-img {
          height: 200px; } }
    .top-bnr-list li .top-bnr-title2 {
      text-align: center;
      margin: -35px auto 20px;
      position: relative;
      z-index: 5;
      width: 70%;
      background: #fefefe;
      padding: 15px;
      box-shadow: 0 0 8px rgba(57, 198, 255, 0.2);
      font-family: "Noto Sans JP", sans-serif; }
      .top-bnr-list li .top-bnr-title2 .en {
        font-family: "Sree Krushnadevaraya", serif;
        font-weight: 500;
        font-size: 2rem;
        margin-top: -10px;
        border-bottom: 1px solid #39C6FF;
        line-height: 1.3;
        display: block; }
      @media all and (max-width: 639px) {
        .top-bnr-list li .top-bnr-title2 .en {
          font-size: 2.5rem; } }
    @media all and (max-width: 639px) {
      .top-bnr-list li {
        width: 90%;
        justify-content: center;
        margin: 0 auto 20px; } }

/* transparent_box
----------------------------------*/
.transparent_box {
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
  -webkit-border-image: url(../img/bdr.png) 3/3px repeat;
  -moz-border-image: url(../img/bdr.png) 3/3px repeat;
  -o-border-image: url(../img/bdr.png) 3/3px repeat;
  border-image: url(../img/bdr.png) 3/3px repeat;
  padding: 60px 40px;
  color: #fff; }
  .transparent_box a {
    color: #fff; }
  .transparent_box:hover {
    background: #fff;
    color: #39C6FF;
    opacity: .8;
    transition: all 0.3s ease; }
    .transparent_box:hover a {
      color: #39C6FF; }
  .transparent_box .inner {
    width: auto;
    margin: 0 auto; }
  @media all and (max-width: 639px) {
    .transparent_box {
      padding: 40px 10px; } }

.mtitle_big {
  position: relative;
  margin-bottom: 30px;
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: .5em;
  letter-spacing: .05em;
  font-family: "Sree Krushnadevaraya", serif; }
  .mtitle_big span {
    display: block;
    color: #39C6FF;
    font-family: "Sree Krushnadevaraya", serif;
    font-size: 1.5rem; }
  .mtitle_big.b-n {
    margin-bottom: 0px;
    letter-spacing: .5rem; }
    @media all and (max-width: 639px) {
      .mtitle_big.b-n {
        font-size: 2rem;
        letter-spacing: .2rem; }
        .mtitle_big.b-n span {
          font-size: 1.3rem; } }

.single_bnr {
  margin: 0 auto;
  max-width: 97%;
  padding: 20px 0; }

.bg_06 {
  position: relative;
  background-image: url(../img/index_bnr_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 auto 50px;
  width: 80%; }
  @media screen and (max-width: 667px) {
    .bg_06 {
      background-position: center;
      width: 100%; } }



      .form-contents{
        padding: 0 !important;
        width: 90%;
         margin: 0 auto;
    }
    
    .form-contents form dl dd:not(.pattern-exclusion) input, .form-contents form dl dd:not(.pattern-exclusion) textarea{
        vertical-align: baseline;
    }
    
    .form-contents form dl dt:not(.pattern-exclusion){
        font-weight: 700;
    }
    
    .form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before{
        background: #39C6FF !important;
        padding: 5px 8px !important;
        margin-right: 5px !important;
        font-size: 11px !important;
        border-radius: 20px;
    }
    
    .form-pattern-1 dd:not(.pattern-exclusion) .textarea{
        border-radius: 0 !important;
        padding: 5px !important;
        border: 1px solid #ddd;
    }
    .form-pattern-1 dd:not(.pattern-exclusion) textarea.textarea{
      height: 270px;
    }
    
    .form-contents form dl dd:not(.pattern-exclusion){
        border-bottom: 1px dotted #cccccc !important;
    }
    
    .form-contents :not(.pattern-exclusion) button{
        cursor: pointer;
        display: block;
        color: #fff;
        text-align: center;
        -webkit-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s;
        border: 1px solid #39C6FF;
        font-weight: 700;
        padding: 12px 5px;
        margin: 0 auto;
        width: 250px;
        background: #39C6FF;
        border-radius: 25px;
    }
    
    .form-contents :not(.pattern-exclusion) button:hover{
        background: #fff !important;
        color: #39C6FF !important;
    }
    
    .form-pattern-1 .submit-btn:hover::before{
        background-color: #39C6FF !important;
        transition: all 0.2s ease-in-out 0s;
    }
    
    @media screen and (max-width: 680px){
        .form-contents{
            width: 100%;
        }
        .form-contents form dl dd:not(.pattern-exclusion) label{
            display: inline-block;
            margin-bottom: 10px;
        }
    }