@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");

body {
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.8;
  background: #fefefe;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

@media all and (max-width: 810px) {
  body {
    overflow-x: hidden;
  }
}

a {
  color: #026b6e;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: bold;
}

h2,
h3 {
  line-height: 1.5;
}

@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
    transform: translate(0, 35px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
    transform: translate(0, 35px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
  animation: loader 0.5s linear infinite;
  border: 1px solid #039ca0;
  border-radius: 50%;
  border-right: 1px solid rgba(3, 156, 160, 0.2);
  border-top: 1px solid rgba(3, 156, 160, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}

.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

#header {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4000;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
}

#header #logo {
  /* width: 400px; */
  width: 180px;
  text-align: center;
  margin-top: 5px;
}

@media screen and (max-width: 1280px) {
  #header #logo {
    width: 280px;
  }
}

@media all and (max-width: 639px) {
  #header #logo {
    width: 75%;
  }
}

#header .head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media all and (max-width: 810px) {
  #header .head-right {
    display: none;
  }
}

#header .head-tel a {
  color: #111;
  font-weight: bold;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 200px;
  padding: 5px 10px;
  text-align: center;
  background: #008fa6;
  border-radius: 30px;
  font-size: 2rem;
}

#header .head-tel a:before {
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  content: "\f095";
}

#header .head-tel a:hover {
  background: #006373;
}

@media all and (max-width: 639px) {
  #header .head-tel a {
    font-size: 1.4rem;
    width: 130px;
  }
}

#header .head-mail {
  margin-left: 10px;
}

#header .head-mail a {
  display: block;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding-top: 30px;
  background: #fcfcfc;
  line-height: 1.2;
  color: #111;
  text-align: center;
}

#header .head-mail a:before {
  position: absolute;
  font-size: 2.2rem;
  content: "\f0e0";
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#header .head-mail a:hover {
  background: #000a0a;
  color: #fff;
}

#header .inner {
  width: 1020px;
  margin: 0 auto;
  position: relative;
}

#header .inner #head-right {
  margin-left: auto;
}

#header.scrolled {
  position: fixed;
  z-index: 9999;
  -webkit-animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 0;
  -webkit-box-shadow: 0 0px 10px -2px #039ca0;
  box-shadow: 0 0px 10px -2px #039ca0;
}

#header.scrolled .inner {
  padding: 0;
}

#header.scrolled #logo {
  /* width: 200px; */
  width: 185px;
  top: 10px;
}

#head-sub {
  width: 100%;
  height: 100px;
}

#head-sub #header .inner #logo {
  top: 100px;
  width: 300px;
}

@media all and (max-width: 810px) {
  #head-sub #header .inner #logo {
    top: 75px;
    width: 280px;
  }
}

@media all and (max-width: 810px) {
  #head-sub #header .inner #logo {
    top: 10px;
    width: 200px;
  }
}

#head-sub #header.scrolled .inner #logo {
  top: 10px;
  width: 200px;
}

@media all and (max-width: 810px) {
  #head-sub #header.scrolled .inner #logo {
    width: 200px;
  }
}

#navi ul {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#navi ul li {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  text-align: center;
  /* margin: 0 10px */
  margin: 0 8px;
}

#navi ul li a {
  display: block;
  text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff,
    -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  position: relative;
  line-height: 1.5;
  font-size: 1.7rem;
  padding: 10px 0 10px;
  color: #555;
  font-weight: bold;
  text-align: center;
}

#navi ul li a:before {
  position: absolute;
  content: "";
  width: 15%;
  border-bottom: 1px solid #039ca0;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

#navi ul li a:after {
  position: absolute;
  content: "";
  width: 15%;
  border-bottom: 1px solid #039ca0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

#navi ul li a:hover {
  color: #039ca0;
}

#navi ul li a:hover:before,
#navi ul li a:hover:after {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

#page-top a {
  display: block;
  background: #039ca0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  text-align: center;
}

#page-top a:hover {
  opacity: 0.6;
}

.foot_navi {
  padding: 10px 0;
}

.foot_navi ul {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.foot_navi ul li {
  margin: 0 10px;
}

.foot_navi ul li a {
  color: #039ca0;
  font-weight: bold;
  font-size: 1.4rem;
  position: relative;
  padding-left: 20px;
}

.foot_navi ul li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  margin-right: 3px;
}

.foot_navi ul li a:hover {
  color: #073b3a;
}

.foot_navi ul li.sub a:before {
  display: none;
}

@media all and (max-width: 810px) {
  .foot_navi {
    display: none;
  }
}

#footer {
  border-top: 1px solid #eee;
  background: #eee;
  font-size: 1.2rem;
}

#footer .inner {
  margin: 0 auto;
  padding: 15px 0;
}

#footer .inner .address {
  margin-bottom: 10px;
}

.copyright {
  padding: 3px 0;
}

#catch {
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 25%;
  left: 50%;
  z-index: 100;
}

#catch #catch01,
#catch #catch02 {
  text-align: center;
  opacity: 0;
}

#catch #catch01.on,
#catch #catch02.on {
  opacity: 1;
  -webkit-transition: 3s;
  transition: 3s;
}

#catch #catch01 {
  margin-bottom: 5px;
}

@media all and (max-width: 810px) {
  #catch {
    width: 100%;
    bottom: 10%;
  }
}

@media all and (max-width: 639px) {
  #catch {
    bottom: 26%;
  }
}

#mainView {
  background-size: cover;
  overflow: hidden;
  position: relative;
}

@media all and (max-width: 639px) {
  #mainView {
    height: 100vh;
  }
}

.slide0 {
  background-image: url(../bxslider/images/0.jpg);
  background-position: center bottom;
}

.slide1 {
  background-image: url(../bxslider/images/1.jpg);
  background-position: center center;
}

.slide2 {
  background-image: url(../bxslider/images/2.jpg);
  background-position: center center;
}

.slide3 {
  background-image: url(../bxslider/images/3.jpg);
  background-position: center center;
}

.slide0,
.slide1,
.slide2,
.slide3 {
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  background-attachment: scroll;
  padding: 0px 0;
}

.slideimg {
  max-width: 1020px;
  height: auto;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .slideimg {
    height: 100vh;
  }
}

.bg_contact {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  background: url(../img/body_bg.png);
}

.contact-txt {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact_bnr {
  text-align: center;
}

.contact_bnr li {
  display: inline-block;
  margin: 0 15px;
}

.contact_bnr li .bnr_tel {
  border: 1px solid #039ca0;
  color: #ffffff;
  letter-spacing: 0.1em;
  background: #039ca0;
}

.contact_bnr li .bnr_tel:before {
  content: "\f095";
}

.contact_bnr li .bnr_tel:hover {
  background: #04cdd2;
  color: #ffffff;
}

.contact_bnr li .bnr_fax {
  background: #ffffff;
  border: 1px solid #039ca0;
  color: #039ca0;
}

.contact_bnr li .bnr_fax:before {
  content: "\f1ac";
}

.contact_bnr li .bnr_mail {
  border: 1px solid #008fa6;
  background: #ffe67a;
  color: #111;
}

.contact_bnr li .bnr_mail:before {
  content: "\f0e0";
}

.contact_bnr li .bnr_mail:hover {
  background: #ff9000;
}

.contact_bnr li a,
.contact_bnr li span {
  display: block;
  padding: 8px 5px;
  width: 260px;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 25px;
}

.contact_bnr li a:before,
.contact_bnr li span:before {
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.single {
  width: 1020px;
  margin: 0 auto;
  padding: 50px 0;
}

.single02 {
  margin: 0 auto;
  padding: 40px 0;
  max-width: 1400px;
}

@media all and (max-width: 810px) {
  .single02 {
    width: 95%;
  }
}

.margin-top {
  margin-top: -40px;
}

@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 10px;
  }
}

.mbox2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
}

.mbox3 {
  padding: 10px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
}

@media all and (max-width: 639px) {
  .mbox3 {
    font-size: 1.2rem;
  }
}

.mbox4 {
  padding: 10px;
  border: 1px solid #008fa6;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.bg01 {
  background: url(../img/bg_body2.jpg);
}

.bg02 {
  background: rgba(3, 156, 160, 0.2);
  padding-bottom: 200px;
}

.bg-grid {
  background: url(../img/body_bg.png);
  background-image: -webkit-linear-gradient(
      transparent 95%,
      rgba(221, 221, 221, 0.2) 50%,
      rgba(221, 221, 221, 0.2)
    ),
    -webkit-linear-gradient(0deg, transparent 95%, rgba(221, 221, 221, 0.2) 50%, rgba(221, 221, 221, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-gray {
  background: #f7f7f7;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
  min-height: 250px;
  background-size: contain;
}

@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
    background-position: right top;
  }
}

#main {
  float: left;
  width: 70%;
}

@media all and (max-width: 639px) {
  #main {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
}

#side {
  float: right;
  width: 26%;
}

#side > .pages {
  display: none;
}

@media all and (max-width: 639px) {
  #side {
    float: none;
    width: 100%;
  }
}

.mtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  line-height: 1.5;
  font-style: normal;
  color: #3a200c;
  max-width: 1020px;
  margin: 0 auto 20px;
}

.mtitle em {
  font-style: normal;
  font-size: 4rem;
  color: #039ca0;
  font-family: "Raleway", sans-serif;
  font-weight: normal;
  letter-spacing: 0.2rem;
  font-weight: 200;
}

.mtitle:before,
.mtitle:after {
  border-top: 1px solid rgba(3, 156, 160, 0.6);
  content: "";
  display: inline;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.mtitle:before {
  margin-right: 50px;
}

.mtitle:after {
  margin-left: 50px;
}

@media all and (max-width: 639px) {
  .mtitle {
    font-size: 1.5rem;
  }

  .mtitle em {
    font-size: 2.5rem;
  }
}

.mtitle:before {
  margin-right: 20px;
}

.mtitle:after {
  margin-left: 20px;
}

.mtitle2 {
  font-weight: bold;
  font-size: 2.3rem;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 2px;
  color: #008fa6;
}

.mtitle2 span {
  display: table;
  margin: auto;
  position: relative;
}

.mtitle2 span:before,
.mtitle2 span:after {
  content: "";
  width: 30px;
  height: 1px;
  display: block;
  background: #008fa6;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}

.mtitle2 span:before {
  left: -40px;
}

.mtitle2 span:after {
  right: -40px;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 2rem;
  }
}

.mtitle3 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  color: #026b6e;
  margin: 20px 0 30px;
  font-weight: bold;
}

.mtitle3 span {
  position: absolute;
  z-index: -1;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  text-shadow: none;
  font-size: 6rem;
  font-family: "Raleway", sans-serif;
  top: -55px;
  left: -10px;
}

@media all and (max-width: 639px) {
  .mtitle3 {
    margin-top: 30px;
  }

  .mtitle3 span {
    font-size: 2.7rem;
    top: -38px;
  }
}

.mtitle_point {
  margin-bottom: 15px;
  font-size: 2rem;
  position: relative;
  text-align: center;
}

.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #039ca0;
  display: block;
  margin: 10px auto 0;
}

.mtitle-bll {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  color: #039ca0;
}

.mtitle-bll span {
  padding-left: 5px;
  font-weight: normal;
  font-size: 1.7rem;
  color: #333;
}

.mtitle-bll:after {
  position: absolute;
  content: "";
  height: 2px;
  display: block;
  background: #039ca0;
  bottom: -2px;
  width: 100px;
  left: 0;
}

@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.mtitle_sub {
  color: #3a200c;
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #ffe67a;
  margin: 8px 0;
  font-size: 1.4rem;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #f0844a;
}

.mtitle_box {
  background: #039ca0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 2.2rem;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 25px;
}

.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}

.mtitle_box2 {
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #111;
  font-size: 1.7rem;
  position: relative;
  font-weight: normal;
  border: 1px solid #555;
  overflow: hidden;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box2:before {
  background-color: #555;
  content: "";
  display: block;
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  position: absolute;
  bottom: 0px;
  right: -120px;
  width: 300px;
  height: 280px;
}

@media all and (max-width: 810px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding-right: 40px;
  }

  .mtitle_box2 span {
    font-size: 12px;
  }

  .mtitle_box2:before {
    width: 215px;
    right: -120px;
  }
}

.mtext1 {
  font-size: 2rem;
  font-weight: bold;
}

.mtext2 {
  font-size: 2.8rem;
  font-weight: normal;
  font-family: "YakuHanMP", "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0.15rem;
}

.mtitle_bnr {
  font-size: 2rem;
  font-weight: 600;
  color: #039ca0;
  text-align: center;
  margin-bottom: 10px;
}

.mtitle_bnr:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 5px;
}

.mtitle_bnr.mtitle_bnr_01:before {
  content: "\f015";
}

.mtitle_bnr.mtitle_bnr_02:before {
  content: "\f0ad";
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
  border-bottom: 1px solid #ccc;
}

.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f0ca";
  margin-right: 5px;
  color: #039ca0;
}

@media all and (max-width: 639px) {
  .mtitle_category {
    font-size: 1.5rem;
  }
}

.mtitle_catch {
  font-weight: bold;
  margin: 10px 0;
  color: #026b6e;
  border-bottom: 1px solid #039ca0;
  font-size: 1.8rem;
  background: #f5f5f5;
}

.btn01 a {
  text-align: center;
  width: 250px;
  margin: 0 auto;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border: 1px solid #039ca0;
  background: #fff;
  color: #039ca0;
  border-radius: 25px;
}

.btn01 a:hover {
  background: rgba(3, 156, 160, 0.9);
  color: #fff;
}

.btn02 {
  width: 300px;
  margin: 20px auto 0;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #000;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn02 a:hover i {
  width: 34px;
}

@media all and (max-width: 639px) {
  .btn02 {
    width: 280px;
  }
}

.news-bl {
  overflow: hidden;
  margin: 15px auto;
}

.news-bl dt {
  float: left;
  width: 6.5em;
  padding: 3px 5px;
  line-height: 1.3;
  background: #ffe67a;
  color: #111;
  text-align: center;
}

.news-bl dd {
  padding: 0 0 10px 8em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

.news-bl.white dd a {
  color: #fff;
}

.bg-greet {
  background: url(../img/bg-02.jpg) center;
  background-size: 200px auto;
  width: 100%;
  position: relative;
  z-index: 0;
}

.bg-greet:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.bg-greet .inner {
  width: 1020px;
  margin: 0 auto;
  padding: 140px 0 40px;
  position: relative;
  z-index: 3;
}

@media all and (max-width: 810px) {
  .bg-greet .inner {
    width: 95%;
    margin: 0 auto;
    padding: 100px 0 20px;
  }
}

.page_title {
  text-align: right;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #333;
}

.page_title span {
  font-size: 5rem;
  display: block;
  color: #008fa6;
  font-family: "Raleway", sans-serif;
  font-weight: 200;
}

@media all and (max-width: 639px) {
  .page_title span {
    font-size: 3.3rem;
  }
}

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

.bg-02 {
  background: url(../img/bg-02.jpg) no-repeat center center;
  background-size: cover;
}

.bg-03 {
  background: url(../img/bg-03.jpg) no-repeat center bottom;
  background-size: cover;
}

.bg-gradient {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(3, 156, 160, 0.4)),
    to(rgba(163, 232, 255, 0.2))
  );
  background-image: linear-gradient(
    to top,
    rgba(3, 156, 160, 0.4) 0%,
    rgba(163, 232, 255, 0.2) 100%
  );
}

.bg-sec1 {
  position: relative;
  z-index: 0;
  z-index: 1;
}

.bg-sec1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 550px;
  background: url(../img/bg-03.jpg) no-repeat center bottom;
  background-size: cover;
  z-index: -1;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.bg-sec1 .sec1-box {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

@media all and (max-width: 639px) {
  .bg-sec1 {
    margin: 10px 0 30px;
  }

  .bg-sec1:before {
    height: 300px;
  }
}

.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article .article_image {
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article .article_detail {
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 100px 0;
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 80%;
}

@media all and (max-width: 810px) {
  .article .article_detail .inner {
    width: 90%;
  }
}

.article.article_01 {
  background: rgba(3, 156, 160, 0.8);
  color: #fff;
}

.article.article_01 .article_image {
  background-image: url(../img/article_image_01.jpg);
}

@media all and (max-width: 639px) {
  .article .article_image,
  .article .article_detail {
    width: 100%;
  }

  .article .article_image {
    display: none;
  }

  .article .article_detail {
    padding: 30px 0;
  }
}

.tbl {
  width: 100%;
}

.tbl th,
.tbl td {
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #7a7978;
}

.tbl th {
  background: #a3e8ff;
  font-weight: 500;
}

.tbl th span {
  font-size: 1.4rem;
}

.tbl.timetable th,
.tbl.timetable td {
  text-align: center;
  font-size: 1.4rem;
}

@media all and (max-width: 639px) {
  .tbl.timetable th,
  .tbl.timetable td {
    font-size: 1.2rem;
    padding: 5px;
  }
}

.tbl.timetable td {
  color: #3a200c;
  background: #fff;
}

.tbl.timetable .tr-01 td {
  background: lemonchiffon;
  text-align: center;
  font-weight: 500;
}

.tbl2 {
  width: 100%;
}

.tbl2 th,
.tbl2 td {
  padding: 10px;
  vertical-align: middle;
  border: 2px solid #f0f0f0;
}

.tbl2 th {
  background: #19af93;
  font-weight: 500;
  color: #fff;
}

.tbl2 th span {
  font-size: 1.4rem;
}

.tbl2 td {
  background: #fff;
}

.tbl2.timetable th,
.tbl2.timetable td {
  text-align: center;
  font-size: 1.4rem;
}

@media all and (max-width: 639px) {
  .tbl2.timetable th,
  .tbl2.timetable td {
    font-size: 1.2rem;
    padding: 5px;
  }
}

.tbl2.timetable td {
  color: #3a200c;
  background: #fff;
}

.tbl2.timetable .tr-01 td {
  background: lemonchiffon;
  text-align: center;
  font-weight: 500;
}

.tbl_new {
  width: 100%;
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 10px;
}

.tbl_new tr th {
  font-weight: 700;
  color: #3a200c;
}

.tbl_new tr th span {
  font-size: 1.4rem;
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
  background: #f0f0f0;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}

.company th {
  text-align: center;
  width: 15%;
  position: relative;
  background: #19af93;
  color: #ffffff;
  font-weight: bold;
}

.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: #19af93;
  margin-top: -10px;
}

.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.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_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #cccccc;
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_check li {
  font-size: 1.8rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.list_check li:not(:last-child) {
  border-bottom: 1px dotted #cccccc;
}

.list_check li:before {
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  margin-right: 5px;
  color: rgba(3, 156, 160, 0.8);
}

.list_check.type01 > li {
  display: inline-block;
  width: 49%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media all and (max-width: 639px) {
  .list_check.type01 > li {
    width: 100%;
  }
}

.list-type01 li {
  position: relative;
  background: #eee;
  padding: 5px 10px 5px 30px;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.list-type01 li:before {
  content: "";
  width: 45px;
  background: rgba(3, 156, 160, 0.3);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: 40px;
  position: absolute;
  left: -30px;
  top: 0;
}

.list-type01 li:last-child {
  margin-bottom: 0;
}

.ol-list {
  counter-reset: number;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ol-list li {
  line-height: 2;
  border-bottom: 1px solid #aaa;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 49%;
}

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: #039ca0;
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  margin-right: 0.3em;
}

@media all and (max-width: 639px) {
  .ol-list {
    font-size: 1.6rem;
  }
}

.list-center {
  text-align: center;
}

.list-center li {
  display: inline-block;
}

.list-center.type01 li {
  border-radius: 30px;
  background: rgba(0, 143, 166, 0.8);
  color: #fff;
  border: 2px solid #008fa6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px 10px;
  width: 20%;
  margin-bottom: 10px;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .list-center.type01 li {
    width: 49%;
  }
}

.point-wrap {
  border-bottom: 1px soldi #ccc;
  padding: 10px 0;
  margin-bottom: 5px;
}

.point-wrap dt {
  position: relative;
  overflow: hidden;
  padding-left: 90px;
  font-size: 1.8rem;
  color: #039ca0;
  border-bottom: 1px dashed #039ca0;
  margin-bottom: 5px;
}

.point-wrap dt span {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  background: #026b6e;
  font-size: 4rem;
  color: #fff;
  left: 0;
  bottom: -30px;
  text-align: center;
}

.point-wrap dd {
  padding: 5px;
}

@media all and (max-width: 639px) {
  .point-wrap dt {
    font-size: 1.6rem;
    line-height: 1.6;
    overflow: visible;
    padding-left: 70px;
  }

  .point-wrap dt span {
    width: 60px;
    height: 40px;
    line-height: 40px;
    bottom: 0;
    font-size: 2rem;
  }
}

.blog_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog_list .blog_img {
  width: 35%;
  overflow: hidden;
}

.blog_list .blog_img img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog_list .blog_detail {
  width: 60%;
}

.blog_list .blog_detail .blog_ttl {
  font-weight: 500;
  color: #039ca0;
  margin-bottom: 5px;
}

.blog {
  display: block;
  padding: 15px;
  background: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #323232;
}

.blog:hover .blog_img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.date {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #f0844a;
}

.date.date_02 {
  margin-bottom: 15px;
}

.date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  margin-right: 5px;
}

.pages {
  text-align: center;
  margin-top: 10px;
}

.pages .page_next,
.pages .page_prev {
  display: inline;
  margin: 0 20px;
}

.top-blog .pages {
  display: none;
}

.category_nav {
  border: 1px solid #dddddd;
}

.category_nav li a {
  display: block;
  padding: 5px 10px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  margin-right: 5px;
  font-weight: bold;
}

.category_nav li a:hover {
  background: #f1edee;
}

.category_nav li:last-child a {
  border-bottom: none;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.column2 .child {
  position: relative;
  width: 40%;
}

.column2 .child.child1 {
  width: 59%;
}

@media all and (max-width: 639px) {
  .column2 .child.child1 {
    width: 100%;
    margin: 0 auto 10px;
  }
}

@media all and (max-width: 639px) {
  .column2 .child {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -3%;
}

.column3 .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
  position: relative;
}

.column3 .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

.column3.align-items {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #039ca0;
}

.color2 {
  color: #c8210b;
}

.color3 {
  color: #f0844a;
}

.tellink {
  color: #f0844a;
  font-size: 2rem;
  font-weight: bold;
}

.tellink:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2a0";
  margin-right: 5px;
}

.breadcrumb {
  margin-left: auto;
  padding-left: 0;
  font-size: 1.3rem;
  text-align: right;
}

.breadcrumb li {
  display: inline;
  color: #111;
  padding: 3px;
  background: rgba(255, 255, 255, 0.8);
}

.breadcrumb li a {
  color: #039ca0;
}

.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

.breadcrumb li .home {
  font-family: "Font Awesome 5 Free";
}

.form {
  margin: 0 auto;
  width: 90%;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}

.form dl dt span {
  color: #fff;
  background: #f66;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.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,
.form .form-pattern-1 .submit-btn {
  cursor: pointer;
  display: block;
  color: #111;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0 auto;
  width: 250px;
  background: #039ca0;
  border: 1px solid #039ca0;
  border-radius: 25px;
  color: #fff;
}

.form button:hover,
.form .form-pattern-1 .submit-btn:hover {
  background: #fff;
  color: #039ca0;
}

.form .form-pattern-1 .submit-btn::before {
  transition: all 0.2s ease-in-out 0s;
}

.form .form-pattern-1 .submit-btn:hover::before {
  background: #039ca0;
}

.form button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: normal;
  content: "\f0e0";
  margin-right: 10px;
}

.form .form-pattern-1 {
  background: transparent;
}

.form .form-contents {
  padding: 0;
}

.form .form-contents dd:not(.pattern-exclusion) input.textarea03 {
  width: 20%;
}

.form .form-pattern-1 dd:not(.pattern-exclusion) .textarea {
  border-radius: 0;
}

.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: #039ca0;
}

.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: #039ca0;
  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;
  -webkit-box-shadow: 20px -1px #f5f5f5;
  box-shadow: 20px -1px #f5f5f5;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.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 #039ca0;
  border-bottom: 3px solid #039ca0;
  -webkit-transform: rotate(45deg);
  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;
  -webkit-box-shadow: 41px 0px #fff;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
  box-shadow: 41px 0px #eee;
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.memo {
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  padding: 10px;
}

.top_bnr {
  position: relative;
  overflow: hidden;
  min-width: 220px;
  width: 100%;
  background: #000000;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.top_bnr * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.top_bnr img {
  max-width: 100%;
  position: relative;
  opacity: 0.9;
}

.top_bnr figcaption {
  position: absolute;
  top: 45%;
  left: 7%;
  right: 7%;
  bottom: 45%;
  border: 1px solid white;
  border-width: 1px 1px 0;
}

.top_bnr .heading {
  overflow: hidden;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.top_bnr h2 {
  display: table;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  text-align: center;
  width: auto;
  font-size: 2.2rem;
  text-transform: uppercase;
  text-shadow: -2px 1px 0 rgba(0, 0, 0, 0.6);
  font-weight: bold;
}

.top_bnr h2:before,
.top_bnr h2:after {
  position: absolute;
  display: block;
  width: 1000%;
  height: 1px;
  content: "";
  background: white;
  top: 50%;
}

.top_bnr h2:before {
  left: -1000%;
}

.top_bnr h2:after {
  right: -1000%;
}

.top_bnr p {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
  padding: 0 20px;
  margin: 0;
  opacity: 0;
  line-height: 1.6em;
}

.top_bnr a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.top_bnr:hover img,
.top_bnr.hover img {
  opacity: 0.25;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top_bnr:hover figcaption,
.top_bnr.hover figcaption {
  top: 7%;
  bottom: 7%;
}

.top_bnr:hover p,
.top_bnr.hover p {
  opacity: 1;
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.shadow {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gallery li {
  width: calc((100% - 30px) / 3);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 15px 20px 0;
}

.gallery li:nth-child(3n) {
  margin-right: 0;
}

.gallery li a {
  background: #f2f2f2;
  display: block;
  text-align: center;
  padding: 0px;
  height: 180px;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.gallery li p {
  font-size: 13px;
  margin: 3px 0 10px;
}

.gallery.gallery2 li {
  width: calc((100% - 32px) / 5);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 8px 20px 0;
}

.gallery.gallery2 li:nth-child(5n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .gallery.gallery2 li {
    width: calc((100% - 40px) / 3);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 6px 10px;
  }

  .gallery.gallery2 li:nth-child(3n) {
    margin-right: 0;
  }

  .gallery.gallery2 li:nth-child(5n) {
    margin-right: 6px;
  }
}

@media screen and (max-width: 800px) {
  .gallery li {
    width: 48%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    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: 100px;
  }
}

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.flex li {
  width: 32%;
  padding: 15px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flex li .border {
  position: absolute;
  background: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.flex li .border:nth-of-type(1) {
  top: 0;
  left: 0;
  border-left: 1px solid #008fa6;
  border-top: 1px solid #008fa6;
  width: 50px;
  height: 30px;
}

.flex li .border:nth-of-type(2) {
  bottom: 0;
  right: 0;
  border-right: 1px solid #008fa6;
  border-bottom: 1px solid #008fa6;
  width: 50px;
  height: 30px;
}

.flex li:hover .border {
  width: 102%;
  height: 105%;
}

.flex li:hover .linkbtn-more {
  background: #039ca0;
  color: #fff;
  -webkit-transition: all 0.55s ease;
  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-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 *:before,
.snip1445 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  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: #039ca0;
}

.snip1445 h2 {
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.snip1445 .click {
  display: block;
  font-weight: bold;
  width: 150px;
  margin-left: auto;
  background-color: #008fa6;
  padding: 3px 10px;
  color: #111;
  text-shadow: #fff 0px 0px 0px;
}

.snip1445 img {
  opacity: 0.9;
}

.linkbtn-ttl {
  font-size: 1.8rem;
  color: #039ca0;
  margin-bottom: 10px;
  float: left;
}

@media all and (max-width: 639px) {
  .linkbtn-ttl {
    font-size: 1.6rem;
  }
}

.linkbtn-more {
  float: right;
  color: #039ca0;
  padding: 3px;
  border: 1px solid #039ca0;
}

@media all and (max-width: 639px) {
  .linkbtn-more {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    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;
}

.topbnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.topbnr li {
  width: 23%;
  margin: 0 1% 0;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.topbnr li:before {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid #ffe67a;
  border-bottom: 5px solid #ffe67a;
  z-index: 20;
}

.topbnr li:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 0 10px rgba(17, 17, 17, 0.4);
  box-shadow: 0 0 10px rgba(17, 17, 17, 0.4);
}

@media all and (max-width: 639px) {
  .topbnr li {
    width: 48%;
    margin: 0 1% 15px;
  }
}

.topbnr li.type01 {
  width: 48%;
}

@media all and (max-width: 639px) {
  .topbnr li.type01 {
    width: 98%;
    margin: 0 auto;
  }
}

.top-bnr-wrap {
  position: relative;
  background: #fff;
  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 {
  background: #039ca0;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 5px 5px 5px 10px;
  margin-bottom: 10px;
}

.top-bnr-wrap .top-bnr-title:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a9";
  margin-right: 5px;
}

.top-bnr-wrap:hover a {
  cursor: pointer;
}

.top-bnr-wrap:hover .top-bnr-title {
  background: #013a3c;
}

.memo2 {
  background: #ede5d8;
  padding: 10px;
}

.memo2 span {
  padding-right: 5px;
}

.note {
  padding: 10px;
  background: lemonchiffon;
}

.flow-dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 5px rgba(3, 156, 160, 0.5);
  box-shadow: 0 0 5px rgba(3, 156, 160, 0.5);
}

.flow-dl dt {
  background: #006373;
  font-size: 4rem;
  color: #3a200c;
  width: 150px;
  text-shadow: 2px 2px 2px rgba(3, 156, 160, 0.2);
  font-weight: bold;
  text-align: center;
  margin-right: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-top: 10px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.flow-dl dt:before {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid #a3e8ff;
  border-bottom: 8px solid #a3e8ff;
  z-index: 20;
}

.flow-dl dt span {
  font-size: 1.5rem;
  margin-right: 5px;
}

.flow-dl dd {
  width: calc(100% - 180px);
  margin-bottom: 10px;
}

@media all and (max-width: 639px) {
  .flow-dl dt {
    width: 80px;
    font-size: 2.7rem;
  }

  .flow-dl dt span {
    font-size: 1.3rem;
  }

  .flow-dl dd {
    width: calc(100% - 105px);
  }
}

.txt1 {
  padding-left: 10px;
}

.fee-box {
  margin: 10px 0 20px;
  font-weight: bold;
  background: lemonchiffon;
  padding: 5px;
}

.fee-box span {
  display: block;
  font-weight: normal;
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}

.list3 li {
  width: 31%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 1% 10px;
}

@media all and (max-width: 639px) {
  .list3 li {
    width: 100%;
  }
}

.list3.product-list > li {
  border: 1px solid rgba(3, 156, 160, 0.8);
  padding: 10px;
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.list4 > li {
  width: 24%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
}

.list4.top-blogList li {
  background: #fff;
  -webkit-box-shadow: 0 0 8px rgba(3, 156, 160, 0.2);
  box-shadow: 0 0 8px rgba(3, 156, 160, 0.2);
}

.list4.top-blogList li:nth-child(even) {
  -webkit-box-shadow: 0 0 8px rgba(204, 204, 204, 0.4);
  box-shadow: 0 0 8px rgba(204, 204, 204, 0.4);
}

.list4.top-blogList .btn01 a {
  width: 180px;
  font-size: 1.3rem;
  padding: 5px;
}

@media all and (max-width: 810px) {
  .list4.top-blogList {
    padding: 10px;
  }

  .list4.top-blogList li {
    width: 48%;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 639px) {
  .list4.top-blogList li {
    width: 90%;
  }
}

.list3-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list3-2 > li {
  width: 31%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  margin: 10px;
}

.list3-2.top-blogList li {
  background: #fff;
  -webkit-box-shadow: 0 0 8px rgba(3, 156, 160, 0.2);
  box-shadow: 0 0 8px rgba(3, 156, 160, 0.2);
}

.list3-2.top-blogList li:nth-child(even) {
  -webkit-box-shadow: 0 0 8px rgba(204, 204, 204, 0.4);
  box-shadow: 0 0 8px rgba(204, 204, 204, 0.4);
}

.list3-2.top-blogList .btn01 a {
  width: 180px;
  font-size: 1.3rem;
  padding: 5px;
}

@media all and (max-width: 810px) {
  .list3-2.top-blogList {
    padding: 10px;
  }

  .list3-2.top-blogList li {
    width: 48%;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 639px) {
  .list3-2.top-blogList li {
    width: 90%;
  }
}

.fukidashi {
  position: relative;
  display: inline-block;
  padding: 20px;
  max-width: 100%;
  background: #008fa6;
  border-radius: 10px;
}

.fukidashi:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -30px;
  border: 15px solid transparent;
  border-right: 15px solid #008fa6;
}

@media all and (max-width: 639px) {
  .fukidashi:before {
    border-right: solid 15px transparent;
    border-bottom: 15px solid #008fa6;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.fukidashi.fukidashi2 {
  background: rgba(3, 156, 160, 0.2);
}

.fukidashi.fukidashi2:before {
  border-bottom: 15px solid rgba(3, 156, 160, 0.2);
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list2 > li {
  width: 48%;
  margin: 0 1% 10px;
}

@media all and (max-width: 639px) {
  .list2 li {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 15px 0.5%;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  background: #fcfcfc;
}

@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-img {
  width: 100%;
  height: 150px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #eee;
}

.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
}

.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-date {
  color: #f0844a;
  font-size: 14px;
}

.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  margin-right: 5px;
}

.blog-txt {
  font-size: 14px;
  line-height: 1.5;
  color: #3a200c;
}

@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

#side .blog-wrap > li {
  width: 100%;
  margin: 0 auto 10px;
}

#side .blog-wrap .blog-img {
  width: 80px;
  height: 80px;
}

#side .blog-wrap .mtitle_sub {
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: normal;
  border-left: 0;
}

#side .blog-wrap .mtitle_sub:before {
  display: none;
}

#side .blog-wrap .blog-txt {
  display: none;
}

.foot_list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.foot_list3 .child {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 28%;
}

.foot_list3 .child.child1 {
  width: 42%;
}

@media all and (max-width: 810px) {
  .foot_list3 .child {
    width: 100%;
    text-align: center;
  }

  .foot_list3 .child.child1 {
    width: 100%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    text-align: center;
  }

  .foot_list3 .child.child1 img {
    max-width: 300px;
  }

  .foot_list3 .child.child2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.box1 {
  width: 90%;
  margin-top: -40px;
  border: 4px solid #999;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.9);
}

.flex-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-l > .fukidashi {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-child {
  width: 400px;
  margin-right: 20px;
}

@media all and (max-width: 639px) {
  .l-child {
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }
}

.fb-wrap {
  text-align: center;
  position: relative;
  z-index: 15;
  padding: 5px;
}

.fb-wrap:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 120px;
  z-index: -1;
  background: rgba(3, 156, 160, 0.6);
  top: -130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media all and (max-width: 810px) {
  .fb-wrap {
    margin-top: 50px;
  }
}

.top-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.top-gallery li {
  height: 200px;
  overflow: hidden;
  width: calc(100% / 8);
  opacity: 0.8;
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

.top-gallery li:hover {
  opacity: 1;
}

.top-gallery li img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 639px) {
  .top-gallery {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .top-gallery li {
    width: calc(100% / 4);
    height: 90px;
  }
}

.about-list > li {
  padding: 0;
  background: #73f9fc;
  position: relative;
  overflow-x: hidden;
  z-index: 0;
  font-size: 1.4rem;
}

.about-list > li .about-txt {
  position: relative;
  padding: 10px;
  z-index: 4;
}

.about-list > li .about-txt:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -219px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 174px solid transparent;
  border-bottom: 45px solid #73f9fc;
  z-index: 20;
}

.about-list > li .about-img {
  position: relative;
  z-index: 0;
}

.about-list .about-title {
  text-align: center;
  margin: -10px auto 10px;
  line-height: 1.4;
  color: #3a200c;
}

.about-list .about-title span {
  font-family: "Raleway", sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  display: block;
}

@media all and (max-width: 639px) {
  .about-list {
    margin-bottom: -15px;
  }

  .about-list li {
    width: 90%;
    margin: 0 auto 15px;
    font-size: 1.2rem;
  }
}

.quote {
  position: relative;
  background: #fafafa;
  padding: 15px;
  letter-spacing: 0.1rem;
}

.quote:before,
.quote:after {
  position: absolute;
  display: block;
  font-size: 13rem;
  color: rgba(3, 156, 160, 0.2);
}

.quote:before {
  content: " “ ";
  top: -104px;
  left: -26px;
}

.quote:after {
  content: " ” ";
  bottom: -136px;
  right: -26px;
}

.img-wide {
  margin: -15px -15px 30px;
}

.img-wide img {
  width: 100%;
}

.img-wide2 {
  margin: 0 calc(50% - 50vw) 50px;
}

.img-wide2 img {
  width: 100%;
}

.quote-wrap {
  overflow: hidden;
}

.pr-img1 {
  background: url(../img/bg-logo.svg) no-repeat fixed;
}

.pr-img2 {
  background: url(../img/pr-img2.jpg) no-repeat fixed;
}

.parallax {
  min-height: 400px;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 480px) and (max-width: 1024px) {
  .parallax {
    min-height: 400px;
    background-size: cover;
  }
}

.bg-img1 {
  padding: 30px 0;
  background-image: url(../img/bgp3.jpg);
  background-attachment: fixed;
}

.rhalf {
  float: right;
}

.lhalf {
  float: left;
}

.rhalf,
.lhalf {
  width: 50%;
  height: 450px;
  color: #555;
  display: table;
  background: #fff;
}

.rhalf h2,
.lhalf h2 {
  text-align: center;
  margin-bottom: 20px;
}

.rhalf-img {
  float: right;
  background-image: url(../img/rhalf-img.jpg);
}

.lhalf-img {
  float: left;
  background-image: url(../img/lhalf-img.jpg);
}

.rhalf-img,
.lhalf-img {
  width: 50%;
  height: 450px;
  color: #555;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  background-color: #fff;
}

.twrap {
  margin: 0 auto;
  padding: 20px 30px;
  display: table-cell;
  vertical-align: middle;
  background: #f5f5f5;
}

.mtitle-sp {
  font-family: "Josefin Sans", "ＭＳ Ｐ明朝", "MS PMincho",
    "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-weight: normal;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  line-height: 0.9;
  color: #111;
  margin: 20px 0 30px;
  padding-bottom: 10px;
  letter-spacing: 2px;
}

.mtitle-sp span {
  font-size: 13px;
  color: #888;
  font-weight: normal;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.cbtn {
  font-weight: bold;
}

.cbtn * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cbtn a {
  font-family: "Josefin Sans", "ＭＳ Ｐ明朝", "MS PMincho",
    "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 15px;
  text-align: center;
  width: 200px;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border: 1px solid #008fa6;
  margin: 20px auto;
  background: #fff;
}

.cbtn a:link {
  color: #008fa6;
  text-decoration: none;
}

.cbtn a:visited {
  color: #008fa6;
}

.cbtn a:hover {
  color: #fff;
  background: #008fa6;
  text-decoration: none;
  border: 1px solid #008fa6;
}

.bg-top1 {
  background-image: url(../img/bg-logo.svg);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 400px;
  background-attachment: fixed;
}

.bg-top2 {
  background: url(../img/pr-img2.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 400px;
  margin-bottom: -260px;
  background-attachment: fixed;
}

.mttl {
  z-index: 99999;
  font-family: "Josefin Sans", "ＭＳ Ｐ明朝", "MS PMincho",
    "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  color: #039ca0;
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: -25px;
  text-align: center;
}

.mttl span {
  display: block;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
}

.fbox {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .fbox {
    padding: 10px;
  }
}

.btn03 * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn03 a {
  font-family: "Josefin Sans", "ＭＳ Ｐ明朝", "MS PMincho",
    "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  text-decoration: none;
  text-align: center;
  width: 250px;
  margin: 0 auto;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border: 1px solid #039ca0;
  background: #039ca0;
  color: #fff;
}

.btn03 a:hover {
  background: #fff;
  color: #039ca0;
}

.fb-container {
  width: 100%;
}

@media screen and (max-width: 1230px) {
  .fb-container {
    width: 100%;
    max-width: 475px;
  }
}

.contactbx {
  text-align: center;
}

.contactbx a {
  width: 100%;
  display: block;
  font-size: 20px;
}

.contactbx .tl a {
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 300px;
  font-weight: bold;
  padding: 5px 0px;
  background: #008fa6;
  border: 2px solid #008fa6;
}

.contactbx .ml a {
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 300px;
  font-weight: bold;
  padding: 5px 0px;
  background: #039ca0;
  border: 2px solid #039ca0;
}

.contactbx .ol a {
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 300px;
  font-weight: bold;
  padding: 5px 0px;
  background: #039ca0;
}

.contactbx .tl a:link,
.contactbx .tl a:visited {
  color: #fff;
}

.contactbx .tl a:hover {
  color: #008fa6;
  background: #fff;
  border: 2px solid #008fa6;
}

.contactbx .tl a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  margin-right: 5px;
}

.contactbx .ml a:link,
.contactbx .ml a:visited {
  color: #fff;
}

.contactbx .ml a:hover {
  color: #039ca0;
  background: #fff;
  border: 2px solid #039ca0;
}

.contactbx .ml a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 5px;
}

.contactbx .ol a {
  color: #fff !important;
}

.contactbx .ol a:link,
.contactbx .ol a:visited {
  color: #fff !important;
}

.contactbx .ol a:hover {
  color: #fff !important;
  background: #0ff4fa;
}

.contactbx .ol a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f07a";
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .contactbx .tl a {
    min-width: 290px;
    display: block;
  }

  .contactbx .ml a {
    min-width: 290px;
    display: block;
  }

  .contactbx .ol a {
    min-width: 290px;
    display: block;
  }
}

.galleryUl .galleryList {
  float: left;
  width: 31.3%;
  margin: 10px;
  text-align: center;
}

.galleryUl .galleryList a {
  display: none;
}

.galleryUl .galleryList a:first-child {
  display: block;
}

.galleryUl .galleryList img {
  width: 100%;
  height: auto;
}

.photo {
  width: 100%;
  margin: 10px auto 20px;
}

.photo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.photo li {
  width: calc((100% - 40px) / 3);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 5px 5px;
}

.photo li a {
  background: #f7f7f7;
  display: block;
  text-align: center;
  height: 250px;
  vertical-align: middle;
}

.photo li a img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.photo li p {
  font-size: small;
  margin: 5px 0;
  text-align: center;
}

@media all and (max-width: 639px) {
  .photo a {
    height: 100px !important;
  }

  .photo a img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
}

.txt_catch {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}

.txt_catch b {
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 0 1px #008fa6, 0 0 3px #008fa6, 0 0 5px #008fa6,
    0 0 10px #008fa6, 0 0 15px #008fa6;
}

.txt_catch span {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(65%, transparent),
    color-stop(0%, #d1f0ff)
  );
  background: linear-gradient(transparent 65%, #d1f0ff 0%);
}

.txt_catch strong {
  font-size: 2rem;
  font-weight: normal;
}

.txt_catch_s {
  text-align: center;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 1.2px;
}

.txt_catch_s b {
  font-size: 2.4rem;
  color: #039ca0;
  letter-spacing: 1.2px;
  text-shadow: 0 0 5px #fff;
}

.txt_catch_s span {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(65%, transparent),
    color-stop(0%, #a4e9cc)
  );
  background: linear-gradient(transparent 65%, #a4e9cc 0%);
}

.txt_catch_s strong {
  font-size: 2rem;
  font-weight: bold;
}

.w80p {
  width: 80%;
  margin: 0 auto;
}

.link_img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1230px) {
  .bg-top1 {
    background-position: center center;
    background-repeat: no-repeat;
    height: 300px;
    background-attachment: scroll;
  }

  .bg-top2 {
    background-attachment: scroll;
  }
}

.txt {
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin: 5px 0;
}

#top-greetings {
  width: 100%;
  height: 100vh;
  position: relative;
}

#top-greetings .gr-box {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#top-greetings .gr-box .txt-type {
  opacity: 0;
  font-size: 5rem;
  font-weight: 500;
  width: 100%;
}

#top-greetings .gr-box .txt-type span {
  padding: 0 3px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

#top-greetings .gr-box .txt-type span:first-child,
#top-greetings .gr-box .txt-type span:nth-child(5),
#top-greetings .gr-box .txt-type span:nth-child(7) {
  color: #039ca0;
}

#top-greetings .gr-box .news {
  text-align: left;
  width: 425px;
  margin: 30px auto 0;
  max-height: 55px;
  overflow: hidden;
}

#top-greetings .gr-box .news p {
  font-weight: 700;
  color: #039ca0;
  position: relative;
}

#top-greetings .gr-box .news p:after {
  content: "";
  width: 100%;
  position: absolute;
  border-bottom: 1px solid #039ca0;
  bottom: 0;
  left: 0;
}

#top-greetings .gr-box .news dl dt {
  width: 20%;
  float: left;
  color: #039ca0;
}

@media all and (max-width: 810px) {
  #top-greetings .gr-box {
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  #top-greetings .gr-box .news {
    width: 100% !important;
  }
}

#about-1 {
  background: rgba(3, 156, 160, 0.5);
  padding: 20px;
}

#about-1 .motto {
  font-size: 3rem;
  color: #039ca0;
  margin: 30px auto;
}

#about-1 .motto.sub {
  margin-bottom: 10px;
}

@media all and (max-width: 810px) {
  #about-1 .motto {
    font-size: 2.5rem;
  }
}

#about-2 {
  background: rgba(3, 156, 160, 0.5);
}

#about-2 .single {
  padding-bottom: 70px;
}

#about-2 .motto {
  font-size: 3rem;
  color: #073b3a;
  margin: 30px auto 0;
}

@media all and (max-width: 810px) {
  #about-2 .motto {
    font-size: 2.5rem;
  }
}

@media all and (max-width: 639px) {
  #about-2 .motto {
    font-size: 1.7rem;
  }
}

#about-3 .motto {
  font-size: 3rem;
  color: #039ca0;
  margin: 30px auto;
}

#about-3 .motto span {
  position: relative;
  font-weight: 700;
}

#about-3 .motto span:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #fdff2b;
  z-index: -1;
}

#about-3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 100px auto 75px;
}

#about-3 ul li {
  width: 24%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

#about-3 ul li:before {
  position: absolute;
  content: "";
  background: url(../img/guideline-list.png) no-repeat;
  background-size: contain;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
  width: 80%;
  height: 60px;
}

#about-3 ul li:after {
  position: absolute;
  content: "";
  background: url(../img/guideline-list.png) no-repeat;
  background-size: contain;
  bottom: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
}

#about-3 ul li div {
  width: 100%;
  font-size: 2.5rem;
  font-weight: 700;
  color: #039ca0;
  text-shadow: 0 0 10px #fff;
  text-align: center;
}

#about-3 ul li span {
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  color: #073b3a;
}

@media all and (max-width: 810px) {
  #about-3 .motto {
    font-size: 2.5rem;
  }
}

@media all and (max-width: 639px) {
  #about-3 ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
  }

  #about-3 ul li {
    width: 48%;
    margin-top: 70px;
  }

  #about-3 ul li:first-child,
  #about-3 ul li:nth-child(2) {
    margin-top: 0;
  }

  #about-3 ul li:before {
    display: none;
  }

  #about-3 ul li:after {
    height: 35px;
    bottom: -40px;
    left: 60%;
    width: 100%;
  }
}

#about-4 {
  background: rgba(3, 156, 160, 0.5);
}

#lib-1 {
  background: rgba(3, 156, 160, 0.5);
  padding: 20px;
}

#lib-1 .top {
  width: 75%;
  position: relative;
}

#lib-1 .top img {
  width: 100%;
}

#lib-1 .top .q-box {
  position: absolute;
  width: 480px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  top: 50%;
  right: -250px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#lib-1 .top .q-box .sub-head:after {
  width: 100%;
}

#lib-1 .top .q-box .content {
  padding: 20px;
}

#lib-1 .top .q-box .content p {
  font-size: 2rem;
  color: #039ca0;
  font-weight: 700;
}

@media all and (max-width: 810px) {
  #lib-1 .q-box {
    right: -180px !important;
  }
}

@media all and (max-width: 639px) {
  #lib-1 {
    padding: 0px;
  }

  #lib-1 .single {
    width: 100%;
    padding: 0;
  }

  #lib-1 .top {
    width: 100%;
    height: 420px;
  }

  #lib-1 .top .q-box {
    width: calc(100% - 40px);
    right: 0 !important;
    top: 300px;
  }
}

#lib-2 .f-box {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#lib-2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  width: 60%;
  -webkit-box-shadow: 0 0 8px rgba(3, 156, 160, 0.2);
  box-shadow: 0 0 8px rgba(3, 156, 160, 0.2);
  position: relative;
}

#lib-2 .inner:before {
  font-weight: bold;
  font-size: 8rem;
  display: inline-block;
  color: #039ca0;
  background: #039ca0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#039ca0),
    to(#073b3a)
  );
  background: linear-gradient(to left, #039ca0, #073b3a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

#lib-2 .inner:first-child:before {
  content: "01";
}

#lib-2 .inner:nth-child(2):before {
  content: "02";
}

#lib-2 .inner:nth-child(3):before {
  content: "03";
}

#lib-2 .inner:nth-child(4):before {
  content: "04";
}

#lib-2 .inner:nth-child(5):before {
  content: "05";
}

#lib-2 .inner:nth-child(even) {
  margin-left: 40%;
}

#lib-2 .inner:not(:last-child) {
  margin-bottom: 30px;
}

#lib-2 .inner .content {
  padding-left: 10px;
  width: 40%;
}

#lib-2 .inner .content .title {
  color: #039ca0;
  font-weight: 700;
  font-size: 2rem;
}

#lib-2 .inner .pic {
  margin-left: 10px;
  height: 260px;
  width: 260px;
}

#lib-2 .inner .pic img {
  width: 100%;
  height: 80%;
  -o-object-fit: cover;
  object-fit: cover;
}

#lib-2 .inner .pic .cap {
  font-weight: 700;
  color: #039ca0;
}

#lib-2 .inner .pic .cap:before {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
  margin-right: 5px;
}

@media all and (max-width: 810px) {
  #lib-2 .inner {
    width: calc(100% - 40px);
  }

  #lib-2 .inner:nth-child(even) {
    margin-left: 0;
  }
}

@media all and (max-width: 639px) {
  #lib-2 .inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #lib-2 .inner:before {
    font-size: 6rem;
  }

  #lib-2 .inner .content {
    width: 70%;
  }

  #lib-2 .inner .pic {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
}

#lib-3 {
  background: rgba(3, 156, 160, 0.5);
  padding: 20px;
}

#lib-3 .f-box {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

#lib-3 .f-box .inner:first-child {
  width: 60%;
}

#lib-3 .f-box .inner:nth-child(2) {
  width: 35%;
}

#lib-3 .detail p {
  font-weight: 700;
  font-size: 2rem;
  color: #039ca0;
}

#lib-3 .detail ul {
  width: 100%;
}

#lib-3 .detail ul li {
  border-bottom: 1px dotted #ccc;
}

#lib-3 .detail ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f06d";
  font-weight: 900;
  margin-right: 10px;
  color: #039ca0;
}

@media all and (max-width: 639px) {
  #lib-3 .f-box {
    margin-top: 0;
  }

  #lib-3 .f-box .inner:first-child,
  #lib-3 .f-box .inner:nth-child(2) {
    width: 100%;
  }

  #lib-3 .f-box .inner:nth-child(2) {
    margin-top: 15px;
  }
}

#lib-4 {
  background: url(../img/bg-lib-4.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
}

#lib-4 .single {
  background: rgba(255, 255, 255, 0.8);
  padding: 50px;
}

#lib-4 .sub-head:after {
  width: 100%;
}

@media all and (max-width: 810px) {
  #lib-4 .single {
    width: calc(95% - 100px);
  }
}

@media all and (max-width: 639px) {
  #lib-4 {
    padding: 20px 10px;
  }

  #lib-4 .single {
    padding: 10px;
    width: calc(95% - 20px);
  }
}

/* read */
#read-1 {
  background: rgba(3, 156, 160, 0.5);
  padding: 20px;
}

#read-1 .top {
  width: 75%;
  position: relative;
}

#read-1 .top img {
  width: 100%;
}

#read-1 .top .q-box {
  position: absolute;
  width: 480px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  top: 50%;
  right: -250px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#read-1 .top .q-box .sub-head:after {
  width: 100%;
}

#read-1 .top .q-box .content {
  padding: 20px;
}

#read-1 .top .q-box .content p {
  font-size: 2rem;
  color: #039ca0;
  font-weight: 700;
}

@media all and (max-width: 810px) {
  #read-1 .q-box {
    right: -180px !important;
  }
}

@media all and (max-width: 639px) {
  #read-1 {
    padding: 0px;
  }

  #read-1 .single {
    width: 100%;
    padding: 0;
  }

  #read-1 .top {
    width: 100%;
    height: 420px;
  }

  #read-1 .top .q-box {
    width: calc(100% - 40px);
    right: 0 !important;
    top: 300px;
  }
}

#read-2 .f-box {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#read-2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  width: 60%;
  -webkit-box-shadow: 0 0 8px rgba(3, 156, 160, 0.2);
  box-shadow: 0 0 8px rgba(3, 156, 160, 0.2);
  position: relative;
}

#read-2 .inner:before {
  font-weight: bold;
  font-size: 8rem;
  display: inline-block;
  color: #039ca0;
  background: #039ca0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#039ca0),
    to(#073b3a)
  );
  background: linear-gradient(to left, #039ca0, #073b3a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

#read-2 .inner:first-child:before {
  content: "01";
}

#read-2 .inner:nth-child(2):before {
  content: "02";
}

#read-2 .inner:nth-child(3):before {
  content: "03";
}

#read-2 .inner:nth-child(4):before {
  content: "04";
}

#read-2 .inner:nth-child(5):before {
  content: "05";
}

#read-2 .inner:nth-child(even) {
  margin-left: 40%;
}

#read-2 .inner:not(:last-child) {
  margin-bottom: 30px;
}

#read-2 .inner .content {
  padding-left: 10px;
  width: 40%;
}

#read-2 .inner .content .title {
  color: #039ca0;
  font-weight: 700;
  font-size: 2rem;
}

#read-2 .inner .pic {
  margin-left: 10px;
  height: 260px;
  width: 260px;
}

#read-2 .inner .pic img {
  width: 100%;
  height: 80%;
  -o-object-fit: cover;
  object-fit: cover;
}

#read-2 .inner .pic .cap {
  font-weight: 700;
  color: #039ca0;
}

#read-2 .inner .pic .cap:before {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
  margin-right: 5px;
}

@media all and (max-width: 810px) {
  #read-2 .inner {
    width: calc(100% - 40px);
  }

  #read-2 .inner:nth-child(even) {
    margin-left: 0;
  }
}

@media all and (max-width: 639px) {
  #read-2 .inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #read-2 .inner:before {
    font-size: 6rem;
  }

  #read-2 .inner .content {
    width: 70%;
  }

  #read-2 .inner .pic {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
}
/* readここまで */

#nail-1 {
  background: rgba(3, 156, 160, 0.5);
  padding: 20px;
}

#nail-1 span {
  color: #039ca0;
  font-weight: 700;
  font-size: 150%;
}

#nail-1 .sub-head span {
  font-size: 4rem;
}

#nail-1 .motto {
  font-size: 3rem;
  color: #039ca0;
  margin: 30px auto;
}

@media all and (max-width: 639px) {
  #nail-1 p span {
    font-size: 120%;
  }

  #nail-1 .motto {
    font-size: 2.2rem;
  }
}

#nail-2 .discount {
  font-size: 2rem;
  color: #039ca0;
  font-weight: 700;
}

#nail-3 {
  background: rgba(3, 156, 160, 0.5);
  padding: 20px 0;
  overflow: hidden;
}

#nail-3 .nail-gallery .slick-slide div {
  width: 300px;
  margin: 0 auto;
}

@media screen and (max-width: 1280px) {
  #nail-3 .nail-gallery .slick-slide div {
    width: 200px;
  }
}

@media all and (max-width: 639px) {
  #nail-3 .nail-gallery .slick-slide div {
    width: 105px;
  }
}

#nail-4 .sub-head:after {
  width: 95%;
}

#nail-4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#nail-4 ul li {
  text-align: center;
}

#nail-4 ul li:first-child {
  margin-right: 30px;
}

#nail-4 ul li a {
  font-size: 3rem;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

#nail-4 ul li a:hover {
  color: #039ca0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media all and (max-width: 639px) {
  #nail-4 ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  #nail-4 ul li:first-child {
    margin-right: 0;
  }

  #nail-4 ul li a {
    font-size: 2rem;
  }
}

#contact-bnr {
  background: rgba(3, 156, 160, 0.5);
}

#contact-bnr .f-box {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#contact-bnr dl {
  margin-top: 10px;
}

#contact-bnr dl dt {
  width: 25%;
  background: #fff;
  padding: 5px 0;
  color: #039ca0;
  font-weight: 700;
  text-align: center;
  float: left;
}

#contact-bnr dl dd {
  padding: 5px 0;
  padding-left: 27%;
  margin-bottom: 5px;
}

.inner-box {
  background: #fff;
}

.sub-head {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.sub-head .en {
  position: relative;
  font-weight: bold;
  font-size: 4rem;
  display: inline-block;
  color: #039ca0;
  background: #039ca0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#039ca0),
    to(#073b3a)
  );
  background: linear-gradient(to left, #039ca0, #073b3a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-head .jp {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: #999;
}

.sub-head:after {
  position: absolute;
  content: "";
  border-bottom: 1px solid #039ca0;
  bottom: 0;
  left: 0;
  width: 500px;
}

.sub-head.sub .jp {
  color: #073b3a;
}

.sub-head.sub:after {
  border-bottom: 1px solid #073b3a;
}

@media all and (max-width: 639px) {
  .sub-head .en {
    font-size: 3rem !important;
  }

  .sub-head .jp {
    font-size: 1.5rem !important;
  }

  .sub-head:after {
    width: 100%;
  }
}

.table-new {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px 10px;
}

.table-new th {
  width: 25%;
  background: #039ca0;
  color: #fff;
  padding: 10px 0;
  position: relative;
  vertical-align: middle;
}

.table-new th:after {
  right: -5px;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #039ca0;
  border-left-color: #039ca0;
  border-width: 10px;
  margin-top: -10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.table-new td {
  background: #f6f6f6;
  padding: 10px 0;
  padding-left: 15px;
  vertical-align: middle;
}

.table-new td.b-right {
  border-right: 1px solid #039ca0;
}

.table-new .sub th:after {
  display: none;
}

.table-new .sub th:not(:last-child) {
  border-right: 1px solid #fff;
}

@media all and (max-width: 810px) {
  .table-new th {
    width: 29%;
  }

  .table-new th:after {
    right: -7px !important;
  }
}

@media all and (max-width: 639px) {
  .table-new tr.no-disp {
    display: none;
  }

  .table-new th {
    width: calc(100% - 10px);
    display: block;
    text-align: left;
    padding-left: 10px;
  }

  .table-new th:after {
    display: none;
  }

  .table-new td {
    width: calc(100% - 15px);
    display: block;
  }

  .table-new td.b-right {
    border-right: none;
  }

  .table-new td.full:before {
    content: "正社員";
    color: #039ca0;
    font-weight: 700;
    margin-right: 5px;
    display: block;
  }

  .table-new td.part:before {
    content: "パート";
    color: #039ca0;
    font-weight: 700;
    margin-right: 5px;
    display: block;
  }
}

.f-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-box .inner.half {
  width: 48%;
}

@media all and (max-width: 639px) {
  .f-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .f-box .inner.half {
    width: 100%;
  }

  .f-box .inner.half:first-child {
    margin-bottom: 20px;
  }
}

#blog_flexwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1020px;
  margin: 20px auto 100px;
}

#blog_flexwrap #blog_side {
  width: 300px;
  margin-left: 20px;
}

#blog_flexwrap #blog_main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#blog_flexwrap #blog_main section {
  margin-bottom: 25px;
}

.blog_sttl01 {
  background: #039ca0;
  color: #fff;
  text-indent: 5px;
  font-size: 17px;
  padding: 5px 0;
  margin-bottom: 10px;
  font-weight: normal;
}

.blog_sttl01:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0ca";
  margin-right: 5px;
}

.blog_mttl {
  width: calc(100% - 20px);
  background: #f1f1f1;
  color: #039ca0;
  font-size: 18px;
  overflow: hidden;
  font-weight: bold;
  border-left: 2px solid #039ca0;
  margin: 0px 0 20px;
  padding: 5px 10px;
  line-height: 1.8;
}

.blog_time {
  padding-top: 0px;
  font-weight: normal;
}

.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: 15px 0;
}

.pages {
  position: absolute;
  bottom: -50px;
  width: 100%;
  right: 0;
}

.page_next {
  float: left;
  width: 49%;
}

.page_prev {
  float: right;
  text-align: right;
  width: 49%;
}

.page_prev a {
  display: block;
  padding: 5px 10px;
  background: #039ca0;
}

.page_next a {
  display: block;
  padding: 5px 10px;
  background: #039ca0;
}

.page_prev a:hover,
.page_next a:hover {
  opacity: 0.6;
}

.page_prev a:link,
.page_prev a:visited,
.page_prev a:hover {
  color: #fff;
}

.page_next a:link,
.page_next a:visited,
.page_next a:hover {
  color: #fff;
}

.blog_side_list {
  position: relative;
  margin: 0 0 0px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.blog_side_list .blog_bx {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: calc(100% - 0px) !important;
  font-size: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  position: relative;
  padding: 10px 10px 10px;
}

.blog_side_list .blog_bx:not(:first-child) .ttl {
  display: none;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog_side_list .blog_bx .blog_bx_flex div {
  width: calc(100% - 120px);
}

.blog_side_list .blog_bx:hover {
  background: #f2f2f2;
}

.blog_side_list .blog_bx figcaption {
  display: block;
  text-align: center;
  width: 100px;
  height: 100px;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
}

.blog_side_list .blog_bx * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog_side_list .blog_bx p {
  line-height: 1.6em;
  font-size: 13px;
}

.blog_side_list .blog_bx img {
  vertical-align: middle;
  height: 100px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog_side_list .blog_bx:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blog_side_list .blog_bx .ttl {
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  float: left;
  background: #039ca0;
  padding: 0 15px;
  margin-bottom: 5px;
}

.blog_side_list .blog_bx .ttm {
  float: right;
  padding-top: 0px;
  font-size: 13px;
  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;
}

.blog_top_list {
  position: relative;
  margin: 0 0 0px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.blog_top_list .blog_bx {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: calc(33.33% - 42px) !important;
  font-size: 12px;
  margin: 10px;
  border: 1px solid #ccc;
  position: relative;
  padding: 10px 10px 10px;
}

.blog_top_list .blog_bx:not(:first-child) .ttl {
  display: none;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog_top_list .blog_bx .blog_bx_flex div {
  width: 100%;
}

.blog_top_list .blog_bx:hover {
  background: #f2f2f2;
}

.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;
  margin-bottom: 15px;
}

.blog_top_list .blog_bx * {
  -webkit-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%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog_top_list .blog_bx:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blog_top_list .blog_bx .ttl {
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  float: left;
  background: #039ca0;
  padding: 0 15px;
  margin-bottom: 5px;
}

.blog_top_list .blog_bx .ttm {
  float: right;
  padding-top: 0px;
  font-size: 13px;
  font-weight: normal;
}

.blog_top_list .blog_bx .ttm:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f017";
  margin-right: 5px;
  font-weight: normal;
}

.blog_top_list .blog_bx .blog_ttl {
  clear: both;
  font-weight: normal;
}

.blog_top_list .blog_bx .blog_text {
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .blog_top_list .blog_bx {
    width: calc(100% - 22px) !important;
    margin: 0px 0 20px;
  }

  .blog_top_list .blog_bx figcaption {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  #blog_flexwrap {
    display: -webkit-block;
    display: block;
    width: 95%;
    margin: 20px auto 30px;
  }

  #blog_flexwrap #blog_main {
    background: #fff;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 20px;
  }

  #blog_flexwrap #blog_side {
    width: 100%;
    margin-left: 0px;
  }

  .pages {
    position: static;
    bottom: 0;
    width: 100%;
    margin-top: 30px;
  }

  .page_next {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .page_prev {
    float: none;
    text-align: left;
    width: 100%;
  }
}

.vis-contents {
  font-size: 17px;
  width: 100%;
}

.vis-contents ul li {
  text-indent: -1.3em;
  line-height: 1.3;
  padding: 10px 0 10px 1.3em;
  border-bottom: 1px dotted #9c9c9c;
  margin-top: 20px;
}

.vis-contents ul p {
  font-size: 1.5rem;
}

.sub_tittle {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: rgba(3, 156, 160, 0.5);
}

.nail-gallery li img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.boshu {
  background: #f6f6f6;
  padding: 20px 0;
}
.boshu h3 {
  font-size: 3rem;
}
.boshu p {
  text-align: center;
  font-size: 2.4rem;
}
@media (max-width: 810px) {
  .boshu h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .boshu p {
    font-size: 1.5rem;
  }
}

/* 画像ギャラリーのレイアウト（3カラム維持） */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3カラム表示 */
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.image-gallery li {
  text-align: center;
}

.image-item {
  width: 100%;
  max-width: 400px; /* 画像が大きくなりすぎるのを防ぐ */
  margin: auto;
}

.image-item a {
  display: block;
  width: 100%;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.image-item img:hover {
  transform: scale(1.05);
}


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