@charset "UTF-8";
/*自己定義クラス*/
.w-90 {
  width: 90% !important;
}
.container-fluid {
  max-width: 100%;
  padding: 15px;
}

/*定義関数*/
@keyframes OutIn-Line {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    50% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    50.1% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}

/*基本設定*/
body {
  font-size: 1.0rem;
  line-height: 1.7;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #2D2D2D;
}
img {
  display: block;
}
a {
  text-decoration: none;
  color: #2D2D2D;
}
ul, li {
  list-style: none;
  padding: 0;
}
.header {
  height: 12vh;
  background: #fff;
  box-shadow: 2px 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.mainlogo{
	width: auto;
}
h1 {
  height: 100%;
  display: inline-flex;
}
h2{
	position: relative;
  display: inline-block;
  padding: 0 35px;
	text-align: center;
}
h2:before, h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 2px;
	border-radius: 1px;
  background-color:#0c6eb4;
}
h2:before {
  left:0px;
}
h2:after {
  right: 0px;
}
.text-highlight {
  background: linear-gradient(transparent 50%, #abe3ff 50%);
}


/*ナビゲーション*/
nav {
  height: auto;
  margin: auto 0px;
}
/*PC ver*/
.gnavi li {
  width: 100px;
  text-align: center;
}
.gnavi li:not(:last-child) {
  margin-right: 10px;
  padding: 1px;
}
.gnavi li a,#mnav li a{
  position: relative;
  display: block;
}
.gnavi li a::after,#mnav li a::after{
  opacity: 0.8;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 50%;
  background: #0c6eb4;
  transition: .3s;
  transform: scaleX(0.0);
}
.gnavi li.current a::after, .gnavi li:not(:last-child) a:hover::after,
#mnav li.current a::after, #mnav li:not(:last-child) a:hover::after{
  border-radius: 2px;
  transform: scaleX(0.8);
}
.gnavi li:last-child,#mnav li:last-child{
  background: #0c6eb4;
  border-radius: 50px;
  border: 1px solid #0c6eb4;
  transition: .3s;
}
.gnavi li:last-child a ,#mnav li:last-child a {
  color: #fff;
  transition: .3s;
}
.gnavi li:last-child:hover,#mnav li:last-child:hover {
  background: #fff;
  transition: .3s;
}
.gnavi li:last-child a:hover,#mnav li:last-child a:hover {
  color: #0c6eb4;
  transition: .3s;
}
/*モバイルver*/
.openbtn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: .3s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 1px;
  background-color: #0c6eb4;
  width: 45%;
}
.openbtn.active span {
  background-color: #fff;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
}
.openbtn span:nth-of-type(3) {
  top: 32px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
#mnav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.80);
  transition: 0.3s;
	pointer-events: none;
}
#mnav.panelactive {
  opacity: 1;
  z-index: 999;
	pointer-events: auto;
}
#mnav.panelactive #mnav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#mnav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#mnav.panelactive ul {
  display: block;
  text-align: center;
}
#mnav li{
	margin: 7.5vh;
}
#mnav li:last-child{
	padding: 1vh 4vw;
}
#mnav li a {
  display: inline-block;
  color: #fff;
  font-weight: bolder;
  font-size: 1.4rem;
  width: 100%;
  height: 100%;
	
}
#mnav li a::after {
  background: #fff;
}

#sns li{
	width: 3rem;
	height: 3rem;
	border: 1px solid #2d2d2d;
	border-radius: 1.5rem;
	position:relative;
}

#sns li a{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.jump-link{
	font-size: 14px;
  border: 1px solid #333;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 500px;
  text-align: center; 
  padding: 16px 64px;
  transition: all 0.3s;
}
.jump-link::after{
	content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 45px;
  height: 1px;
  background: #2D2D2D;
  transition: all 0.3s ease;
}
.jump-link:hover::after{
	  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
.pagetop {
  right: 0;
	bottom:2.5rem;
  transform: translateX(-50%);
}
.pagetop img {
  width: 35px;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pagetop:hover img {
  transform: scale(1.2);
  opacity: 0.8;
}

/*index.html*/
.mainimg {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: top;
}
.topmessage {
  margin: 5px auto 45px auto;
  text-align: center;
  position: relative;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #333;
  background-color: white;
  color: #0c6eb4;
  font-weight: bold;
  font-size: 5vw;
}
.topmessage::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 20px;
  width: 10px;
  border-right: 1px solid #333;
  background-color: #fff;
  content: "";
}

.home-cont-box{
	border: 1px solid #2D2D2D;
	padding: 30px 30px;
  margin-bottom: 40px;
}

.home-cont-header h3{
	font-size: 1.6em;
	text-align: center;
 	position: relative;
  	padding: 3px 55px;
	box-sizing: border-box;
	margin: auto;
	display: block;
	color: transparent;
	-webkit-text-stroke: 1px #2D2D2D;
	text-shadow: -2px -2px #2D2D2D;
}
.home-cont-header h3:before,
.home-cont-header h3:after {
  content: '';
	position: absolute;
	bottom: 50%;
	width: 2rem;
	height: 1px;
	background-color: #2D2D2D;
}
.home-cont-header h3:before {
  left: 40%;
	transform: translateX( -150% ) rotate(-60deg) translateY(-50%);
}

.home-cont-header h3:after {
  right: 40%;
	transform: translateX( 150% ) rotate(-60deg) translateY(-50%);
	
}
.home-cont-catchcopy {
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #2D2D2D;
}
.detail-link{
	font-size: 14px;
  border: 1px solid #333;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 300px;
  text-align: center; 
  padding: 16px 64px;
  margin: 0 15px 0 auto;
  transition: all 0.3s;
}

.detail-link::after{
	content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 45px;
  height: 1px;
  background: #2D2D2D;
  transition: all 0.3s ease;
}
.detail-link:hover::after{
	  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
/*schedule.html*/
.schedule-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.table_schedule {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.table_schedule th, 
.table_schedule td {
  border-bottom: 2px solid #c1c7c6;
  padding: 2em 1em;
}

.table_schedule th {
  border-bottom: 2px solid #0c6eb4;
  font-weight: bold;
  text-align: center;
  width: 12%;
  min-width: 4em;
}

.table_schedule td {
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 576px) {
  .table_schedule th, 
  .table_schedule td {
    padding: 0.7em;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .header {
    justify-content: flex-start;
  }
}

/*contact.html*/
.contact-top {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  object-position:center;
}