@charset "UTF-8";
/* CSS Document */
*{
	box-sizing:border-box;	
	word-wrap: break-word;/*改行のルール*/
	margin: 0; 
	padding: 0;
}
html, body {
	scroll-padding-top: 48px;/*アンカーリンク遷移先のタイトルが見えるようにする*/
	margin: 0;
	padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
	background-color: #f0f0ef;
	color: #000000;
	font-family:'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	/* 以下短いページでフッターを最下部に表示させるためのもの */
	display: flex; /* フレックスボックスに有効に */
	flex-flow: column; /* 要素を縦に並べる */
	min-height: 100vh; /* 最小でも画面の高さ分のbodyの高さを担保する */
}
::before , ::after {
	box-sizing: inherit;
}
p{
	font-weight: 300;
	margin-bottom: 1em;
}
a{
	color: #0000ff;
}
a:hover{
	color: #000099;
}
img{
	width: 100%;
	height: auto;
}
.clearfix:after{
	content:"";
	display:block;
	clear:both;
}
header, main, footer{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
main {
	/* 以下短いページでフッターを最下部に表示させるためのもの */
	flex: 1; /* 画面の高さから他の同レイヤーの要素の高さを引いた値に */
}
header{
	background-color: #999999;
	height: 28px;
	display: flex;
	align-items: center;/* 縦位置 */
	justify-content: center;/* 横位置 */
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index:999;
}
.headtitle{
	width: 100%;
	font-size: 100%;
	line-height: 1em;
	font-weight: 600;
	text-align: center;
	padding: 0 1em;
}
.headtitle a{
	display: block;
	color: #ffffff;
	text-decoration: none;
}
.pagetop {
    height: 48px;
    width: 48px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #666666;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop-arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #666666;
    border-right: 3px solid #666666;
    transform: translateY(20%) rotate(-45deg);
}
footer{
 	background: #999999;
	padding: 0.2em 1em;
}
footer p{
	color: #ffffff;
	font-size: 80%; 
	font-weight: 300;
	text-align: center;
	margin: 0 auto;
}
main{
	background-color: #ffffff;
}
#main-visual{
	width: 100%;
	margin: 0 auto;
}
.planinfo{
	display: flex;
	align-items: center;/* 縦位置 */
	justify-content: space-between;/* 横位置 */
	flex-direction: row;/* 順番 */
	flex-wrap: wrap;/* 折り返し */
	border: solid 1px #cccccc;
	/*border-radius: 10px;*/
	padding: 1.2em 1.5em 1.5em;
	margin-bottom: 1em;
}
.pi-a{
	border-top: solid 5px #02c0b5;
}
.pi-b{
	border-top: solid 5px #fb8195;
}
.pi-c{
	border-top: solid 5px #61b0ec;
}

.planinfo .plantxt{
	width: 67%;
	padding-right: 2em;
}
.planinfo .plantxt h3{
	font-size: 110%;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 0.5em
}
.planinfo .plantxt p{
	font-size: 100%;
	margin-bottom: 0;
}
.planinfo .planbtn{
	width: 33%;
	display: flex;
	align-items: center;/* 縦位置 */
}

/*各ページへのボタンのデザイン*/
a.link{
	display: block;
	text-decoration: none;
	width: 100%;
	max-width: 320px;
	font-size: 125%;
	font-weight: 700;
	line-height: 1.4em;
	color: #ffffff;
	border-radius: 10px;
	text-align: center;
	padding: 1em 0.5em;
	margin: 0 auto;
}
a.link-a{
	background: #02c0b5;
}
a.link-a:hover{
	background: #09928a;
}
a.link-b{
	background: #fb8195;
}
a.link-b:hover{
	background: #ec3e6b;
}
a.link-c{
	background: #61b0ec;
}
a.link-c:hover{
	background: #046ab8;
}
#plantitle{
	position: -webkit-sticky;
	position: sticky;
	top: 28px;
	z-index:999;
	padding: 0;
}
.wrapper{
	width: 100%;
	margin: 0 auto;
	padding: 1em 2em;
}
.wrapper h2{
	width: 100%;
	display: block;
	color: #fff;
	font-size: 120%;
	font-weight: 700;
	line-height: 1em;
	border-radius: 2em;
	padding: 0.3em 1em 0.4em;
	margin-bottom: 1em;
}
#plan-a .wrapper h2{
	background-color: #02c0b5;
}
#plan-b .wrapper h2{
	background-color: #fb8195;
}
#plan-c .wrapper h2{
	background-color: #61b0ec;
}
.wrapper h2 span{
	font-size: 80%;
}
.inner{
	width: 100%;
	margin: 0 auto;
	padding: 0.5em 1em;
}
.inner ul{
	font-size: 100%;
	font-weight: 300;
}
.inner p.txt-right{
	text-align: right;
}
.outline{
	font-size: 100%;
	line-height: 1.2em;
	width: 100%;
	display: flex;
	align-items: flex-start;/* 縦位置 */
	justify-content: space-between;/* 横位置 */
	flex-direction: row;/* 順番 */
	flex-wrap: wrap;/* 折り返し */
	text-align: center;
	border-top: solid 1px #666666;
	border-left: solid 1px #666666;
	margin-bottom: 1em;
}
.outline div{
	display: flex;
	align-items: flex-start;/* 縦位置 */
	justify-content: space-between;/* 横位置 */
	flex-direction: row;/* 順番 */
	flex-wrap: wrap;/* 折り返し */
	border-right: solid 1px #666666;
	border-bottom: solid 1px #666666;
}
.outline dt{
	font-weight: 500;
	width: 100%;
	height: 3.5em;
	display: flex;
	align-items: center;/* 縦位置 */
	justify-content: center;/* 横位置 */
	background-color: #ecedec;
	border-bottom: solid 1px #666666;
	padding: 0.5em;
	
}
.outline dd{
	font-weight: 300;
	width: 100%;
	height: 3.5em;
	display: flex;
	align-items: center;/* 縦位置 */
	justify-content: center;/* 横位置 */
	padding: 0.5em;
}
#schedule .outline .width-n{
	width: 25%;
}
#schedule .outline .width-w{
	width: 50%;
}
#price .outline .width-n{
	width: 12%;
}
#price .outline .width-p{
	width: 34%;
}
#price .outline .width-p span.small{
	font-size: 80%;
}
#price .outline .width-w{
	width: 42%;
}
/*プランCのみ文字量が違うため調整*/
/*751px以上の場合に限る*/
@media screen and (min-width: 751px) {
#plan-c #price .outline .width-p{ 
	width: 41%;
}
#plan-c #price .outline .width-w{ 
	width: 35%;
}
}
.schtable{
	width: 100%;
	border-top: solid 1px #666666;
	border-left: solid 1px #666666;
	margin-bottom: 1em;
}
.schtable th, .schtable td {
	border-right: solid 1px #666666;
	border-bottom: solid 1px #666666;
}
.schtable th{
	background-color: #ecedec;
	font-size: 100%;
	font-weight: 500;
	vertical-align: middle;
	text-align: center;
	padding: 0.3em 1em;
}
.schtable td {
	padding: 0.5em 1em 0;
}
.schtable .date{
	width: 7em;
}
.schtable dl{
	font-size: 100%;
	font-weight: 300;
	line-height: 1.2em;
	width: 100%;
	display: flex;
	align-items: flex-start;/* 縦位置 */
	justify-content: space-between;/* 横位置 */
	flex-direction: row;/* 順番 */
	flex-wrap: wrap;/* 折り返し */
	margin-bottom: 0.5em;
}
.schtable dl dt{
	width: 100%;
	margin-bottom: 0.3em;
}
.schtable dl dt.time{
	width: 5.8em;
	text-align: center;
}
.schtable dl dt.ar{
	width: 5.8em;
	text-align: center;
	margin-right: calc(100% - 6em) ;
}
.schtable dl dd{
	width: calc(100% - 7.3em);
	margin-bottom: 0.3em;
}
.schtable dl strong{
	font-weight: 500;
}
.event{
	display: block;
	text-decoration: none;
	width: 100%;
	max-width: 20em;
	font-size: 100%;
	font-weight: 500;
	color: #ffffff;
	border-radius: 0.5em;
	text-align: center;
	padding: 0.3em 0.5em;
	margin-bottm: 0.5em;
}
#plan-a .event{
	background: #09928a;
}
#plan-b .event{
	background: #ec3e6b;
}
#plan-c .event{
	background: #046ab8;
}
.stay{
	margin-top: 1em;
	border-top: dotted 1px #000;
	padding-top: 0.5em;
}
.attention{ 
	margin-bottom: 1em;
}
.attention li{ 
	list-style: none;
	font-size: 90%;
	line-height: 1.3em;
	text-indent: -1em;
	margin-left: 1em;
	margin-bottom: 0.2em;
}
.attention li:before{
    content:'※';
}
.detail{
	margin-bottom: 1em;
}
.detail li{ 
	list-style: none;
	line-height: 1.5em;
	text-indent: -1em;
	margin-left: 1em;
	margin-bottom: 1em;
}
.detail li:before{
    content:'★';
}
.detail span.small{
	font-size: 90%;
}
.torikeshi{
	font-size: 85%;
	line-height: 1.2em;
	text-indent: 0;
	width: 100%;
	display: flex;
	align-items: flex-start;/* 縦位置 */
	justify-content: space-between;/* 横位置 */
	flex-direction: row;/* 順番 */
	flex-wrap: wrap;/* 折り返し */
	text-align: center;
	border-top: solid 1px #666666;
	border-left: solid 1px #666666;
	margin-bottom: 0.5em;
}
.torikeshi div{
	display: flex;
	align-items: flex-start;/* 縦位置 */
	justify-content: space-between;/* 横位置 */
	flex-direction: row;/* 順番 */
	flex-wrap: wrap;/* 折り返し */
	border-right: solid 1px #666666;
	border-bottom: solid 1px #666666;
}
.torikeshi div.trk-th{
	width: 12%;
}
.torikeshi div.trk-td-01{
	width: 16%;
}
.torikeshi div.trk-td-02{
	width: 24%;
}
#plan-a .torikeshi div.trk-td-02{
	width: 20%;
}
.torikeshi span{
	font-size: 75%;
}
.torikeshi dt{
	font-weight: 300;
	width: 100%;
	height: 3em;
	display: flex;
	align-items: center;/* 縦位置 */
	justify-content: center;/* 横位置 */
	/*background-color: #ecedec;*/
	border-bottom: solid 1px #666666;
	padding: 0.5em;
	
}
.torikeshi dd{
	font-weight: 300;
	width: 100%;
	height: 3em;
	display: flex;
	align-items: center;/* 縦位置 */
	justify-content: center;/* 横位置 */
	padding: 0.5em;
}
#toggleCheckbox{
	margin-right: 0.5em;
}
.btn{
	width: 100%;
	display: flex;
	align-items: flex-start;/* 縦位置 */
	justify-content: center;/* 横位置 */	
}
#myButton {/*ボタンのデザイン*/
	display: block;
	text-decoration: none;
	width: 100%;
	max-width: 320px;
	font-size: 140%;
	font-weight: 700;
	line-height: 1.4em;
	color: #ffffff;
	border-radius: 0.5em;
	border: none;
	text-align: center;
	padding: 1em 1em;
	margin: 0 auto;
}
#plan-a #myButton{
	background: #02c0b5;
}
#plan-a #myButton:hover{
	background: #09928a;
}
#plan-b #myButton{
	background: #fb8195;
}
#plan-b #myButton:hover{
	background: #ec3e6b;
}
#plan-c #myButton{
	background: #61b0ec;
}
#plan-c #myButton:hover{
	background: #046ab8;
}
.arrow {
	display: block;
	width: 4em;
	height: 3em;
	clip-path: polygon(0 48.4%, 26.3% 48.4%, 26.3% 0, 73.7% 0, 73.7% 48.4%, 100% 48.4%, 50% 100%);
	margin: 1em auto;
}
#plan-a .arrow {
	background: #09928a;
}
#plan-b .arrow {
	background: #ec3e6b;
}
#plan-c .arrow {
	background: #046ab8;
}
#flow .inner{
	border: solid 1px #666666;
	border-radius: 1em;
	padding: 1em 2em;
}
h3 {
	font-size: 150%;
	font-weight: 700;
	line-height: 1.5em;
	margin-bottom: 0.5em;
}
.deadline-box{
	margin-bottom: 3em;
	text-align: center;
}
.deadline-box_2{
	margin-bottom: 3em;
}
h3.deadline-title{
	display: block;
	width: 100%;
	background-color: #ec3e6b;
	color: #fff;
	font-size: 150%;
	line-height: 1.5em;
	text-align: center;
	margin-bottom: 1.5em;
}
.deadline{
	font-size: 200%;
	font-weight: 700;
	line-height: 1.4em;
	margin-bottom: 0.5em;
}
.deadline_2{
	font-size: 100%;
	font-weight: 700;
	line-height: 1.7em;
	margin-bottom: 0.5em;
}
.deadline_2 strong{
	font-size: 130%;
}
#flow p.strong {
	font-size: 100%;
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 0.5em;
}
.flow-box p.strong {
	margin-top: 2em;
}
.important-red {
	margin-bottom: 1em;
}
.important-red li{
	list-style: disc;
	color: #ef0256;
	font-weight: 600;
	line-height: 1.5em;
	margin-left: 1.5em;
	margin-bottom: 0.3em;
}
.important-brk {
	margin-bottom: 0.5em;
}
.important-brk li{
	list-style: disc;
	font-size: 90%;
	font-weight: 500;
	line-height: 1.2em;
	margin-left: 1.5em;
	margin-bottom: 0.5em;
}
#requirements p{
	margin-bottom: 2em;
}
.required{
	color: #ef0256;
	font-size: 120%;
	font-weight: 700;
	margin-bottom: 0.5em;
}
h4{
	font-size: 110%;
	font-weight: 700;
	line-height: 1.5em;
	margin-bottom: 1em;
}
h4 span.small{
	display: inline-block;
	font-size: 85%;
}
.list-nomal{ 
	margin-bottom: 1em;
}
.list-nomal li{ 
	font-weight: 300;
	list-style: none;
	line-height: 1.5em;
	text-indent: -1em;
	margin-left: 1em;
}
.list-nomal li:before{
    content:'・';
}
.list-number{ 
	margin-bottom: 1em;
}
.list-number li{ 
	font-weight: 300;
	line-height: 1.5em;
	margin-left: 1em;
	margin-bottom: 0.5em;
}
#confirmation{
	padding-bottom: 2em;
}
#confirmation .inner{
	background-color: #fafaec;
	border-radius: 1em;
	padding: 2em;
}
#confirmation p.strong{
	font-weight: 500;
	text-align: center;
}
#confirmation .link{
	margin-bottom: 0;
}
#contact .small{
	font-size: 85%;
}
.touroku{
	width: 100%;
	display: flex;
	align-items: flex-start;/* 縦位置 */
	justify-content: space-between;/* 横位置 */	
}
.touroku .small{
	display: block;
	width: 60%;
}
.t-nb{
	display: block;
	max-width: 13em;
	text-align: center;
	border: solid 1px #000;
	padding: 0.2em 0.5em;
	margin-bottom: 1em;
}
/*501px以上の場合*/
@media screen and (min-width: 501px) {
#schedule .outline dd br{
	display: none;
}
}
/*750px以下の場合*/
@media screen and (max-width: 750px) {
#price .outline .width-n, #price .outline .width-p, #price .outline .width-w{
	width: 100%;
}
#price .outline dt{
	width: 40%;
	border-right: solid 1px #666666;
	border-bottom: none;
}
#price .outline dd{
	width: 60%;
}
.torikeshi div br{
	display: none;
}
.torikeshi div.trk-th, .torikeshi div.trk-td-01, .torikeshi div.trk-td-02, #plan-a .torikeshi div.trk-td-02{
	width: 100%;
}
.torikeshi dt{
	width: 50%;
	border-right: solid 1px #666666;
	border-bottom: none;	
}
.torikeshi dd{
	width: 50%;
}
}
/*600px以下の場合*/
@media screen and (max-width: 600px) {
body {
	font-size: 14px;
}
.wrapper{
	padding: 1em;
}
.outline dt{
}
#schedule .outline .width-n, #schedule .outline .width-w{
	width: 100%;
}
#schedule .outline dt{
	width: 25%;
	border-right: solid 1px #666666;
	border-bottom: none;
}
#schedule .outline dd{
	width: 75%;
}

.schtable th{
	padding: 0.3em;
}
.schtable td {
	padding: 0.3em 0.5em 0;
}
.schtable .date{
	width: 5em;
}	
#flow .inner{
	padding: 1em 1.5em;
}
.trikeshi br{
	display: none;
}
}
/*500px以下の場合*/
@media screen and (max-width: 500px) {	
.planinfo .plantxt{
	width: 100%;
	padding-right: 0;
}
.planinfo .plantxt h3{
}
.planinfo .plantxt p{
	font-size: 100%;
	margin-bottom: 1em;
}
.planinfo .planbtn{
	width: 100%;
}
#price .outline{
	font-size: 90%;
}
#price .outline dd br{
	display: none;
}
#confirmation p.strong br{
	display: none;
}
.touroku{
	display: inline-block;	
}
.touroku .small{
	width: 100%;
}
}
/*450px以下の場合*/
@media screen and (max-width: 450px) {
.schtable dl dt.time{
	width: 100%;
	text-align: left;
}
.schtable dl dt.ar{
	width: 100%;
	text-align: left;
	margin-right:0 ;
}
.schtable dl dd{
	width: 100%;
}
}
/*360px以下の場合*/
@media screen and (max-width: 360px) {
#price .outline dt,  #price .outline dd{
	height: 4.5em;
}
#price .outline dt br{
	display: none;
}
}
/*715px以上の場合*/
@media screen and (min-width: 715px) {
.deadline_2 br{
	display: none;
}
}