@charset "utf-8";
/* CSS Document */
body{
	margin:0!important;
	font-family: "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"
}
a{
	text-decoration:none;
}
a:hover{
	opacity:0.7;
}
/*ヘッダー*/
header{
	position: fixed;
	z-index:9997;
	width:100%;
	background-color:#FFFFFF;
}
li {
  list-style-type: none;
}
* {
  box-sizing: border-box;
}
.header {
	
}
.pc-header{
	display:flex;
	justify-content:space-between;
	height:100px;
}
.pc-header1{
	display:flex;
	align-items:center;
}
.headaer-logo{
	width:70px;
	margin-right:10px;
	padding:0 20px;
	display:flex;
	align-items:center;
}
.headaer-logo img{
	width:100%;
}
.pc-header1 p{
	font-size:25px;
}
.pc-header2{
	height:100px;
}
.pc-header2 ul{
	list-style:none;
	display:flex;
	padding:0;
	margin:0;
	width:300px;
	height:100%;
}
.pc-header2 ul li{
	width:50%;
	height:100%
}
.pc-header2 ul li a{
	display:block;
	background-color:#00A5E6;
	color:#fff;
	text-decoration:none;
	font-weight:bold;
	box-sizing: border-box;
	width:100%;
	height:100%;
	text-align:center;
	display:flex;
	justify-content:center;
	align-items:center;
	border-left:solid 2px #fff;
}
@media(max-width:960px){
	.sp-header{
	display:block;
}
	.sp-header-logo{
	padding:10px 20px;
}
	.sp-header-logo a{
		display:flex;
		align-items:center;
		text-decoration:none;
		color:#000;
}
	.sp-header-logo a span{
		display:block;
	width:50px;
		margin-right:10px;
}
	.sp-header-logo a span img{
	width:100%;
}
	.header-bottom{
	height:76px;
}
	.header-logo a{
	display:block;
	width:250px;
	padding:3px 0 0 10px;
}
}
/*ハンバーガー*/
.sp-header{
	display:none;
}
@media(max-width:960px){
.pc-header{
	display:none;
}
.sp-header{
	display:block;
}	
}
.sp-header{
	width:100%;
}
.hamburger{
	width:100%;
	position:absolute;
	top:0;
	right:0;
}
.hamburger-menu {
  width: 100%;
  height: 50px;
  position: relative;
  top:0;
  right:0;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #00A5E6;
  position: absolute;
  right: 0;
  top:0;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
/*ハンバーガー内アコーディオンメニュー*/
/*開閉*/
.accordion {
  background-color: #FEFBF2;
  color: #221714;
  font-weight:bold;
  font-size:16px;
  cursor: pointer;
  width: 100%;
  text-align:center;
  border: none;
  outline: none;
  transition: 0.4s;
  border-bottom: solid 1px #00A5E6;
}
.accordion2{
  padding:15px 0;
}
.accordion a{
  color: #221714;
  text-decoration:none;
  display:block;
  padding:15px 0;
}
.active, .accordion:hover {
  background-color:#cccc;
}
/*隠す*/
.panel {
  background-color:#FFF2CF;
  display: none;
  overflow: hidden;
  text-align:center;
  height:100%;
  overflow-y: scroll;
}
.panel a{
  text-decoration:none;
  color: #221714;
  display:block;
  padding:7px 0;
  border-bottom: solid 1px #00A5E6;
  font-weight:bold;
  font-size:15px;
}
/*ハンバーガー中身*/
.navigation {
  display: none;
  background: #FEFBF2;
  position:fixed;
  top: 100px;
  width: 100%;
  z-index: 9998;
  height:100%;
  overflow-y: scroll;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation__list-item {
  border-bottom: solid 1px #00A5E6;
  color:#221714;
}
.navigation__list-item:first-child {
  border-top: solid 1px #FEFBF2;
}
.navigation__list-item a{
  color:#221714;
}
.navigation__link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 15px 0;
  transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #CCCCCC;
}
}
/*ヘッダーここまで*/

/*固定ボタン*/
.btn-fixed {
	position:fixed;
	right:15px;
	bottom:30px;
	z-index:2;
	width:240px;
	display:block;
}
.shop-btn-fixed a, .contact-btn-fixed a{
	display:block;
	color:#fff;
	text-align:center;
	padding:10px 0;
	margin:5px 0;
    font-weight:500;
    border-radius: 10px;
	border:solid 2px #fff;
	font-size:18px;
	text-decoration:none;
}
.top-btn-fixed{
	display:flex;
	justify-content:flex-end;
	padding-right:5px;
}
.top-btn-fixed a{
	width:50px;
	display:block;
}
.top-btn-fixed a img{
	width:100%;
	display:block;
}
.shop-btn-fixed a{
	background-color:#0E9AAE;
	font-weight:bold;
}
.contact-btn-fixed a{
	background-color:#FF8C42;
	font-weight:bold;
}
.top-btn-fixed a:hover, .shop-btn-fixed a:hover, .contact-btn-fixed a:hover{
	opacity:0.7
}
@media(max-width:960px){
.btn-fixed {
	display:none;
}
}
.btn-fixed-sp {
	position:fixed;
	z-index:999;
	width:100%;
	bottom:0;
	right:0;
	display:none;
}
.fixed-sp-flex {
	display:flex;
	justify-content:space-between;
	background-color:#fff;
}
.fixed-sp-shop, .fixed-sp-contact{
	width:49.9%;
	border-top:solid 2px #fff;
	border-right:solid 1px #fff;
}
.fixed-sp-contact{
	border-right:none;
}
.fixed-sp-shop a, .fixed-sp-contact a{
	margin:0;
	display:block;
	width:100%;
	text-align:center;
	font-size:18px;
	padding:10px 0;
	color:#fff;
	text-decoration:none;
    font-weight:500;
}
.fixed-sp-top a{
	/*color:#00A5E6;
	font-weight:bold;
	text-decoration:none;
	position:absolute;
	right:10px;
	top:-50px;
	background-color:#fff;
	padding:10px;
	border-radius:10px;*/
	position:absolute;
	right:5px;
	top:-80px;
	padding:10px;
	width:80px;
}
.fixed-sp-top a img{
	width:100%;
	display:block;
}
.fixed-sp-shop a{
	background-color:#0E9AAE;
}
.fixed-sp-contact a{
	background-color:#FF8C42;
}
.fixed-sp-top a:hover, .fixed-sp-shop a:hover, .fixed-sp-contact a:hover{
	opacity:0.7;
}
@media(max-width:960px){
	.btn-fixed-sp {
	display:block;
}
}
/*固定ボタンここまで*/

/*メイン基本部分*/
.base-bg {
	background-color:#E5F7FB;
	padding:100px 0 80px 0;
}
.basic-content{
	display:flex;
	justify-content:space-between;
	gap:20px;
	background-color:#fff;
	width:90%;
	max-width:1200px;
	margin:auto;
	border:solid 2px #00A5E6;
	border-radius:30px;
	padding:30px;
	box-sizing: border-box;
}
.side-menu {
	width:20%;
	min-width:190px;
}
.main {
	width:80%;
	display:flex;
	justify-content:center;
	padding-bottom:50px;
}
@media(max-width:960px){
.basic-content{
	display:flex;
	flex-direction:column-reverse;
}	
.side-menu {
	width:100%;
	min-width:190px;
}
.main {
	width:100%;
}
}
.home{
	width:100%;
	margin-bottom:10px;
}
.home a{
	width:100%;
	display:block;
	background-color:#00A5E6;
	color:#fff;
	text-align:center;
	padding:10px;
	border-radius:10px;
	font-weight:bold;
	box-sizing: border-box;
}
.menu-1_title {
	width:100%;
	display:block;
	background-color:#00A5E6;
	color:#fff;
	text-align:center;
	padding:12px 5px 7px 5px;
	border-radius:10px 10px 0 0;
	font-weight:bold;
	box-sizing: border-box;
}
.menu-1_title p{
	margin:0px;
}

.side-menu-1 {
	width:100%;
	border-radius:0 0 10px 10px;
	box-sizing: border-box;
	border:solid 2px #00A5E6;
	margin-bottom:20px;
}
.side-menu-1 ul{
	list-style:none;
	padding:0;
}
.side-menu-1 ul li{
}
.side-menu-1 ul li a{
	color:#000;
	border-bottom:dashed 1px #8E8E8E;
	display:block;
	padding:10px;
	box-sizing: border-box;
    font-weight:bold;
}
.side-menu-1 ul li:last-child a{
	color:#000;
	border-bottom:none;
}

.banner-group {
	
}
.banner-group ul{
	list-style:none;
	padding:0;
}
.banner-group ul li{
	margin-bottom:10px;
}
.banner-group ul li img{
	width:100%;
	display:block;
}
.main h2{
	background-color:#00A5E6;
	color:#fff;
	padding:2px 15px;
	font-size:22px;
	border-radius:5px;
}
.main .ver2-h2{
	text-align:center;
	color:#000;
	background-color:transparent;
	font-size:40px;
}
.main .ver2-h2 span{
	/*background:linear-gradient(transparent 70%, #FFFFAA 60%);*/
	border-bottom:dashed 3px #00A5E6;
}
/*セクション共通*/
.section1{
	padding-bottom:50px;
}
/*ボタン種類*/
.btn-1 {
  margin-top:30px;
}
.btn-gradient-radius {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 25px;
  width:100%;
  text-align:center;
  font-size:20px;
  font-weight:bold;
  text-decoration: none;
  color: #FFF;
  background-image: linear-gradient(45deg, #00A5E6 0%, #89D5F3 100%);
  transition: .4s;
}

.btn-gradient-radius:hover {
  background-image: linear-gradient(45deg, #89D5F3 0%, #00A5E6 100%);
}
.btn-2{
	vertical-align:middle; 
    text-align: center;
	margin:30px 0;
}
.btn-2-1 {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans Japanese";
  font-weight: bold; 
  line-height: 1.5;
  padding: 20px 0 20px 0;
  width:80%;
  transition: 0.3s;
  text-decoration: none;
  color: #fff; 
  border-radius: 0.5rem;
  background: #2DC4FF; 
  box-shadow: 0 5px 0 #1D85AE;
  margin-left: 0;
}

.btn-2-1 p {
  margin: 0;
}

.btn-2-1 .btn_balloon {
  position: absolute;
  display: inline-block;
  bottom: 0.8em;
  left: -10px;
  width: 5em;
  height: 5em;
  font-family: "Noto Sans Japanese";
  line-height: 5em;
  text-align: center;
  color: #2DC4FF;
  font-size: 80%;
  font-weight: bold;
  background: #fff;
  border: 3px solid #2DC4FF;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-10deg);
}

.btn-2-1 .btn_balloon::before {
  position: absolute;
  content: "";
  bottom: -5px;
  right: -10px;
  border: 9px solid transparent;
  border-left: 15px solid #FFF;
  z-index: 0;
  transform: rotate(45deg);
}
.btn-2-1:hover {
  transform: translate(0, 3px);
  background: #50C2EF; 
  box-shadow: 0 2px 0 #1D85AE;
}
/*矢印種類*/
.arrow-right1 {
  display: inline-block;
  vertical-align: middle;
  color: #00A5E6;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  margin:0 10px;
}

.arrow-right1::before {
  content: '';
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.18em 0.31177em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
/*最寄りの店舗を探すボタン*/
.search-shop {
    margin-bottom:50px;
}
.search-shop a{
	display:block;
	font-weight:bold;
	color:#000;
	font-size:25px;
	border:solid 3px #00A5E6;
	text-align:center;
	padding:30px;
	border-radius:20px;
	display:flex;
	align-items:center;
	justify-content:center;
}
.search-shop a span{
	width:50px;
	display:block;
	margin-right:10px;
}
.search-shop a span img{
	width:100%;
	display:block;
}
/*フッター*/
footer{
	
}
.footer{
	border-top:solid 5px #00A5E6;
	padding-bottom:80px;
}
.footer-logo{
	padding:30px 0;
}
.footer-logo a{
	display:flex;
	align-items:center;
	justify-content:center;
	color:#000;
	font-size:18px;
	font-weight:bold;
}
.footer-logo a span{
	display:block;
	width:60px;
	margin-right:10px;
}
.footer-logo a span img{
	width:100%;
}
.footer-menu {
	padding:0 30px;
}
.footer-menu ul{
	padding:0;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	gap:20px;
}
.footer-menu ul li{
	
}
.footer-menu ul li a{
	color:#000;
	display:flex;
	align-items:center;
	font-weight:bold;
}
.footer-menu ul li a::before{
	content:"";
	display:block;
	width:2px;
	height:17px;
	background-color:#89D5F3;
	margin-right:7px;
	border-radius:50px;
}

.footer-band {
	text-align:center;
}
.footer-band a{
	color:#000;
}
