@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
* {
  box-sizing: border-box;
	min-height:0;
	min-width : 0;
}
html {
  background-color: #3071B5;
}
body {
  font-family: "Noto Sans JP","游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  background-color: #FFF;
  color: #000;
  font-size: 20px;
}
.gFont_en {
  font-family: 'Bahnschrift', sans-serif;
}
.gFont_jp {
  font-family: 'Noto Sans JP', sans-serif;
}
.container {
  margin: 0 auto;
  padding: 0;
}
.container:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
img {
  max-width: 100%;
}
.wrap {
  overflow: hidden;
}
@media (max-width: 599px) {
  body {
    font-size: 16px;
  }
  .hidden_sp {
    display: none;
  }
  .container {
    padding: 0;
    overflow: hidden;
  }
  .spWrap {
    width: 100%;
    overflow: hidden;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .container {
    width: 810px;
    padding: 0 15px;
  }
  .hidden_tb {
    display: none;
  }
}
@media (min-width: 1025px) {
  .container {
    width: 1140px;
    padding: 0;
  }
  .hidden_pc {
    display: none;
  }
}
#header {
  width: 100%;
  background-color: #FFF;
  z-index: 9999;
}
#header .headWrap {
  display: flex;
}
#header .headWrap .sitename {
  display: flex;
  align-items: center;
  text-align: left;
}
@media (max-width: 599px) {
  #header .headWrap {
    height: 60px;
  }
  #header .headWrap .sitename {
    flex-basis: 80%;
    padding-left: 8px;
  }
  #header .headWrap .sitename img {
		height: 50px;
  }
  #header .headWrap .spBtn {
    margin-left: auto;
  }
}
@media (min-width: 600px) {
  #header .headWrap {
		width: 1140px;
    height: 60px;
    margin: 0 auto;
  }
  #header .headWrap .spNavi {
    display: none;
  }
  #header .headWrap .headMenu {
    margin-left: auto;
		display: flex;
    justify-content: flex-end;
    gap: 0px;
  }
  #header .headWrap .headMenu ul {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
  }
  #header .headWrap .headMenu ul li {
    display: flex;
		flex-direction: column;
  }
  #header .headWrap .headMenu ul li a {
		flex-grow: 2;
    display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0 1em;
    text-decoration: none;
    color: #777;
		border-radius: 4px;
		overflow: hidden;
  }
  #header .headWrap .headMenu ul li a.pink {
		background-color: #E91E63;
		color: #FFF;
	}
  #header .headWrap .headMenu ul li a.blue {
		background-color: #3071B5;
		color: #FFF;
	}
  #header .headWrap .sitename {
    padding: 8px;
  }
  #header .headWrap .sitename h1 {
    font-size: 14px;
    white-space: nowrap;
  }
  #header .headWrap .sitename img {
		height: 50px;
  }
}
@media (max-width: 599px) {
  .spBtn {
    position: fixed;
    right: 0px;
    top: 0px;
    background: #FFF;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 10000;
		border-bottom-left-radius: 8px;
  }
  .spBtn .openbtn-area {
    transition: all .6s; /*アニメーションの設定*/
    width: 60px;
    height: 60px;
  }
  .spBtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 18px;
    height: 3px;
    border-radius: 2px;
    background: #0075C2;
    width: 45%;
  }
  .spBtn span:nth-of-type(1) {
    top: 16px;
  }
  .spBtn span:nth-of-type(2) {
    top: 28px;
  }
  .spBtn span:nth-of-type(3) {
    top: 40px;
  }
  /*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
  .spBtn.active .openbtn-area {
    transform: rotate(360deg);
  }
  .spBtn.active span:nth-of-type(1) {
    top: 22px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
  }
  .spBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .spBtn.active span:nth-of-type(3) {
    top: 34px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
  }
  .open {
    right: -100%;
  }
  .open.on {
    right: 0px;
  }
  .move.on.spBtn {
    position: fixed;
    right: 0px;
    top: 0px;
  }
  .spNavi {
    background-color: rgba(250,250,250,0.9);
    margin: 0;
    padding: 0;
    top: 0;
    z-index: 9998;
    height: 100%;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    overflow-y: scroll;
    position: fixed;
  }
  .spNavi .spNavi_wrap {
    width: 100vw; /*スライドで出てくる幅*/
    box-sizing: border-box;
    padding: 0px 0 15px;
  }
  .spNavi .spNavi_wrap .naviTtl {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		text-align: left;
		height: 60px;
  }
  .spNavi .spNavi_wrap .naviTtl img {
		height: 50px;
		object-fit: contain;
  }
	.spNavi .spNavi_wrap .menuIndent {
		margin: 8px;
		padding: 8px;
		background-color: #FFF;
		border-radius: 15px;
		overflow: hidden;
	}
	.spNavi .spNavi_wrap .menuIndent .eventBnr {
		margin-bottom: 15px;
	}
	.spNavi .spNavi_wrap .menuIndent ul.gNavi {
		margin-bottom: 15px;
		display: flex;
    flex-wrap: wrap;
	}
	.spNavi .spNavi_wrap .menuIndent ul.gNavi li {
		border-bottom: 2px dotted #F2F2F3;
		text-align: left;
		width: 100%;
		margin-bottom: 4px;
	}
	.spNavi .spNavi_wrap .menuIndent ul.gNavi li a {
		display: block;
		padding: 8px;
	}
	.spNavi .spNavi_wrap .menuIndent ul.gNavi li.btn {
		border-bottom: none;
		text-align: center;
	}
	.spNavi .spNavi_wrap .menuIndent ul.gNavi li.btn a {
		border-radius: 8px;
		overflow: hidden;
		color: #FFF;
	}
	.spNavi .spNavi_wrap .menuIndent ul.gNavi li.btn a.pink {
		background-color: #E91E63;
	}
	.spNavi .spNavi_wrap .menuIndent ul.gNavi li.btn a.blue {
		background-color: #3071B5;
	}
 .spNavi .spNavi_wrap ul.subNavi{
display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 0.8em;
}
 .spNavi .spNavi_wrap ul.subNavi li{

}
 .spNavi .spNavi_wrap ul.subNavi li a{
   color: #151515;
    text-decoration: none;
    font-weight: 700;
}
 .spNavi .spNavi_wrap .menuIndent .yoyaku a{
    text-decoration: none;
    font-weight: 900;
   background: #E91E63;
    color: #FFF;
    padding: 0.5em 2em;
    border-radius: 50px;
    margin: 0.5em 0;
    display: block;
    font-size: 1.5em
}
 .spNavi .spNavi_wrap .menuIndent .yoshikawa_m{
    margin: 0.5em 0;
}
}
@media (min-width: 600px) {
  .spBtn {
    display: none;
  }
}
.wrapper {
  margin-top: 50px;
}
@media (min-width: 600px) {
  .wrapper {
    margin-top: 120px;
  }
}
#footer {
  background-color: #3071B5;
	color: #FFF;
  padding-bottom: 80px;
	font-size: 14px;
}
#footer .footWrap {
  display: flex;
	flex-direction: column;
	text-align: left;
}
#footer .footWrap a {
	color: #FFF;
	padding: 0.5em 1em;
	display: inline-block;
}
#footer .footWrap .official a {
	background-color: #ec971f;
}
@media (max-width: 599px) {
#footer .footWrap {
	padding: 15px;
	align-items: center;
  }
#footer .footWrap .footLogo {
	width: 50%;
	margin: 0 auto;
  }
#footer .footWrap .footLink ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
}
#footer .footWrap .footLink ul li {
	flex-basis: calc(50% - 2px);
	text-align: center;
}
#footer .footWrap .footLink ul li.official {
	flex-basis: 100%;
}
}
@media (min-width: 600px) {
#footer .footWrap {
	padding: 30px 0 0;
	flex-direction: row;
	justify-content: space-between;
	gap: 15px;
}
#footer .footWrap > div {
	flex-basis: calc(33.3% - 10px);
}
#footer .footWrap .footLogo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#footer .footWrap .footLogo img {
	flex-basis: 80px;
}
#footer .copyright {
}
}
.fixed_foot{
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
	background-color: #FFF100;
	display: flex;
	justify-content: space-between;
	gap: 4px;
	height: 60px;
}
.fixed_foot .btn {
	display: flex;
	flex-direction: column;
}
.fixed_foot .btn a {
	flex-grow: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.8em 1em;
	color: #FFF;
	white-space: nowrap;
}
.fixed_foot .btn a.pink {
	background-color: #E91E63;
}
.fixed_foot .btn a.blue {
	background-color: #3071B5;
}
@media (max-width: 599px) {
.fixed_foot > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.fixed_foot .tel {
	flex-shrink: 3;
	padding: 4px;
}
}
@media (min-width: 600px) {
.fixed_foot {
	height: 80px;
}
.fixed_foot > div {
	display: flex;
	font-size: 16px;
}
.fixed_foot .tel {
	flex-grow: 2;
	gap: 4px;
	justify-content: center;
}
.fixed_foot > div h3 {
	font-weight: 500;
	font-size: 24px;
}
.fixed_foot > div h3,
.fixed_foot > div > div {
	flex-grow: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
}
#pageTop {
}
#pageTop {
  position: fixed;
  right: 0;
  bottom: 80px;
  opacity: 0.95;
  z-index: 9;
}
@media (max-width: 599px) {
  #pageTop {
    width: 50px;
    bottom: 60px;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex > li, .flex > div {
  box-sizing: border-box;
}
.flex.flex_reverce.row2 {
  flex-direction: row-reverse;
}
.flex.row2 > li, .flex.row2 > div {
  flex-basis: 50%;
}
.flex.row3 > li, .flex.row3 > div {
  flex-basis: 33.3%;
}
.flex > .item {
  padding: 4px;
}
.flex.imgC {
  flex-direction: column;
}
.flex.imgC .img {
  align-self: center;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .flex.flex_reverce.row2_1 {
    flex-direction: row-reverse;
  }
  .flex > .item {
    padding: 15px;
  }
  .flex.row2_1 > li, .flex.row2_1 > div {
    flex-basis: 50%;
  }
  .flex.row3_1 > li, .flex.row3_2 > li, .flex.row3_1 > div, .flex.row3_2 > div, .flex.row3_2-1 > div {
    flex-basis: 33.3%;
  }
  .flex.row4_2 > div {
    flex-basis: 25%;
  }
  .flex.imgL {
    flex-direction: row;
  }
  .flex.imgL .img {
    flex-basis: 30%;
    box-sizing: border-box;
    padding: 0 15px 15px 0;
  }
  .flex.imgL .text {
    flex-basis: 70%;
    box-sizing: border-box;
    padding: 0 0 15px 15px;
  }
}
@media (max-width: 599px) {
  .flex {
    margin-bottom: 0px;
  }
  .flex.flex_reverce.row2_1 {
    flex-direction: column-reverse;
  }
  .flex.row3_1, .flex.row2_1 {
    flex-direction: column;
  }
  .flex.row4_2 > li, .flex.row3_2 > li, .flex.row4_2 > div, .flex.row3_2 > div {
    flex-basis: 50%;
  }
}
@media (max-width: 599px) {
  table.table_sp, table.table_sp tbody, table.table_sp thead, table.table_sp tfoot, table.table_sp tr, table.table_sp th, table.table_sp td {
    display: block;
  }
}
.video_wrap, .gmap_wrap {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  width: 100%;
  overflow: hidden;
}
.video_wrap iframe, .gmap_wrap iframe, .gmap_wrap object, .gmap_wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 30px 0;
}
.button {
  display: inline-flex;
  background-color: #294256;
  color: #FFF;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.button a {
  color: #FFF;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  transition: all .35s ease-Out;
  padding: 0.5em 1em;
}
.button #slide {
  width: 100%;
  height: 100%;
  left: -100%;
  background: #BFC0C0;
  position: absolute;
  transition: all .35s ease-Out;
  bottom: 0;
}
.button:hover #slide {
  left: 0;
}
.button:hover a {
  color: #2D3142;
}
@media (max-width: 599px) {}
.scroll {}
@media (max-width: 750px) {
  .scroll {
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}


.contsTtl {
	background-color: #2DB4FF;
	background-image: url(../img/mainI_bg.jpg);
	color: #FFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 120px;
}
.contsTtl h1 {
	font-size: 26px;
	font-weight: bold;
}
@media (min-width: 600px) {
.contsTtl {
	height: 200px;
}
.contsTtl h1 {
	font-size: 36px;
}
}
.breadcrumb {
  background-color: #F2F2F3;
	padding: 4px;
}
.breadcrumb ul {
	display: flex;
	font-size: 12px;
}
.breadcrumb ul li + li::before {
	content: ">";
	padding: 0 0.5em;
}
@media (min-width: 600px) {
.breadcrumb ul {
	font-size: 14px;
}
}
/************************************************************
　pager　.pager
*/
.pager {
  margin-bottom: 10px;
}
.pager .right ul {
  display: flex;
}
.pager .right ul li {
  display: flex;
  flex-direction: column;
}
.pager .right ul li + li {
  padding: 0 1px;
}
.pager .right ul li span {
  padding: 2px 0.5em;
  border: 1px solid #CCC;
  background-color: #EEEEF0;
  color: #999;
  align-self: stretch;
}
.pager .right ul li a {
  display: inline-block;
  padding: 2px 0.5em;
  border: 1px solid rgba(233,30,99,1.00);
  background-color: rgba(233,30,99,0.05);
  color: rgba(233,30,99,1.00);
  font-weight: 900;
  text-decoration: none;
  align-self: stretch;
}
.pager .right ul li a:hover {
  background-color: rgba(233,30,99,0.2);
}
@media (max-width: 599px) {
  .pager {
    font-size: 1.1rem;
    text-align: center;
  }
  .pager .right ul {
    justify-content: center;
  }
}
@media (min-width: 600px) {
  .pager {
    display: flex;
    justify-content: space-between;
  }
  .pager .right {
    margin-left: auto;
  }
  .pager .right ul {
    align-self: flex-end;
    justify-content: flex-end;
  }
}
/*
　/pager　.pager
************************************************************/
/* タグエリア */
.tagArea ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5em;
}
.tagArea ul li a {
	padding: 0.2em 1.5em;
	background-color: #F2F2F3;
	border-radius: 999px;
}
/* タグエリア */
