@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Kosugi Maru', sans-serif;
}
*, *::after, *::before {
  box-sizing: inherit;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, hr {
  margin: 0;
  padding: 0;
  border: 0;
}
html {
  line-height: 1.8;
  letter-spacing: 0.1rem;
  font-size: 14px;
  color: var(--color-gray-80);
  font-weight: 400;
}
html, body {
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main, form legend {
  display: block;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img, video, svg {
  max-width: 100%;
}
:root {
  --space-md: calc(2 * 1rem);
  --component-padding: var(--space-md);
}
body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 14px;
  color: #009ed8;
  line-height: 1.4;
  overflow-wrap: break-word;
	font-weight: 500;background: #ffee00;}

.flex {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
}
.flex-center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.flex-wrap{
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content:  flex-start;}

.center{
	text-align: center;
}
/*表示なし*/
.none {
  display: none !important;
}
.bg_blue{background:#009ed8}
a{color:#009ed8;}
a:hover{opacity: 0.5;}
a:visited{color:#009ed8;}
/*---レイアウト---*/
h1{text-align: center;}
.pc {
  display: none !important;
}
section {
  width: 100%;
	max-width: 900px;
	margin: 1rem auto;
	padding: 1rem;
}
section:not(:last-child) {
  margin-bottom: 30px;
}
.lower { /*nav余白*/
  margin-top: 70px;
}
.space-top {
  padding-top: 30px;
}
.space-bottom {
  padding-bottom: 30px;
}
.space {
  padding: 1rem;
}
.center {
  text-align: center;
}

.present figure{
	width:50%;
	padding:0.5rem 0.2rem 1rem;
}

.present figure img{
	width:100%;
}
/*フォントサイズ*/
h2 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.boxinner {
  width: 100%;
  padding: var(--space-md);
}

.bg_white{
	background: #FFF;
}

/*マップ*/
.map_box{position: relative;flex-wrap:wrap;}
.map{width:100%;max-width:640px;
	height: 460px;
margin: 1rem auto;}
.map iframe{height: 100%;width: 100%;} 
.map_right{
	width:100%;
	padding:2rem;
}
/*--copy---*/
.copyright {
  width: 100%;
  text-align: center;
  background: var(--color-blue-darker);
  color: var(--color-white);
  font-size: 0.7rem;
  padding: 0.3rem;
}
/*ガイド*/
.guide_group h3 {
  color: var(--color-pink-dark);
  font-size: 1.4rem;
}
.guide_group h5 {
	color: #FFF;
	width: 100%;
	font-size: 1.3rem;
	padding: 0.2rem 0.2rem 0.2rem 2rem;
	background: url("https://www.knb.ne.jp/images_TOP/l_mark.png") no-repeat var(--color-pink);
	background-position: 7px 14px;
	background-size: 20px;
	border-radius: 3px;
}

.guide_box {
  flex-wrap: wrap;
	justify-content:  flex-start;
}
.guide_unit {
  margin: 1rem auto;
  padding: 0.5rem;
}
.guide_unit h4 {
  color: var(--color-pink);
  border-bottom: 1px solid var(--color-pink);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.guide_unit p {
  margin: 1rem auto;
}
.guide_unit figure {
  width: 100%;
  margin: 0.5rem auto;
}
.guide_unit figure img {
  width: 100%;
}
.step {
  text-align: center;
  position: relative;
  font-size: 1.2rem;
  display: inline-block;
  margin: 0.5rem 1rem 1rem -3rem;
  padding: 1rem 2rem;
  color: #fff;
  border-radius: 0 100vh 100vh 0;
  background: var(--color-pink);
  line-height: 1.5;
}
.step i {
  font-style: normal;
  display: block;
  margin: 0 auto;
  line-height: 0.8;
  font-size: 0.7rem;
}
/*流れ*/
.flow_unit {width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
		margin: 1.3rem auto;
}
.flow_unit figure,.flow_unit figure img{width:100%}

.note {
  padding: 1rem;
  border-radius: 10px;
  font-size: 14px;
}

.tyuui{padding:0.8rem;}
.tyuui li{
	list-style: disc;
	margin-bottom:0.5rem;
}

/*アプリダウンロード*/
.pc {
	display: none !important;
}
  .sp {
    display: block !important;
  }
/*アプリダウンロード*/
.appdl.withbc {
  width: 95%;
  border-radius: 10px;
  margin: 1rem auto;
}
.appdl {
  overflow: hidden;
}
.appdl.withbc p img {
  width: 48%;
}
.appdl.withbc div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 5% 0;
}
.appdl.withbc p {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 6% auto 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.appdl.withbc div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 30%;
  margin: 0 5%;
}
.appdl.withbc div a img {
  margin: 5% 0;
}


.step_box {
	flex-wrap: wrap;
}
.step_box figure{
	width:100%;
	text-align: center;
}
@media screen and (min-width : 436px) {
  html {
    font-size: 15px;
	}

	.map_box{
	}
	.map_box div{
		width:100%;
	}
	

}
@media screen and (min-width:1024px) { /*---レイアウト---*/
  html {
    font-size: 16px;
  }
  .boxinner {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
  }  .appdl.withbc {
    width: 100%;
    margin: 2rem auto;
    max-width: 700px;
  }.pc {
	display: block !important;
}
  .sp {
    display: none !important;
  }.present figure{
	width:33.3333%;
	padding:0.5rem 0.2rem 1rem;
}h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}.step_box {
	flex-wrap: wrap;
}
.step_box figure{
	width:33.3%;
}
}
@media screen and (min-width:1281px) { /*---レイアウト---*/
  html {
    font-size: 17px;
  }

  section:not(:last-child) {
    margin-bottom: 50px;
  }
	
}
@media screen and (min-width:1300px) {
  .boxinner {
    max-width: 1100px;
    margin: 0 auto;
  }
  
}
@media screen and (min-width:1600px) {
  .boxinner {
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media screen and (min-width:1900px) {
 
}