@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
   box-sizing: border-box;
}
body {
   margin: 0;
   padding: 0;
   font-family: 'M PLUS Rounded 1c', 'Roboto', sans-serif;
   background-color: #C8BEC8;
   letter-spacing : 0.2em;
}

header {
   padding: 10px 30px 0px;
   position: fixed;
   top: 0;
   width: 100%;
	height: 65px;
   background-color: #383038;
   display: flex;
   align-items: center;
}

header img {
	height: 30px;
	width: auto;
	margin: 5px;
	
}

header a {	
   text-decoration: none;
   color: #fff;
}

header a:hover{
	color: #9B8A9B;
	transition-duration: 0.2s;
}

nav {
   margin: 0 0 0 auto;
}


.menu {
	list-style-type:none;
}
.menu > li {
	display:inline-block;
	position:relative;
	margin:0 10px;
	padding: 0 30px 0 0;
}
.menu > li > ul {
	display:none;
}
.menu > li > ul >li {
	line-height: 3em;
	font-size: 0.9em;
}
.menu > li:hover ul {
	display:block;
	position:absolute;
	padding:20px 10px 0 ;
	margin:0;
	top:1.5em;
	list-style-type:none;
	background: rgba(56,48,56,0.70);
}



.main-visual {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;
	background-image: url("../img/back_1.png");
	background-repeat:no-repeat;
	background-position: center;
	background-size:contain;
}

.main {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 80px 0;
	background: url("../img/back.png") no-repeat center fixed;
	background-size: contain;

}

h1{
	font-size: 1.3em;
	font-weight: normal;
	border-bottom: #fff dotted 2px;
	text-align: center;
	width: 100%;
	color: rgba(56,48,56,1.00);
	
}


h3 {
	font-size: 1.3em;
	font-weight: normal;
	border-left: rgba(255,255,255,0.50) double 10px;
	border-bottom: rgba(255,255,255,0.50) solid 2px;
	border-top: rgba(255,255,255,0.50) solid 2px;
	color: rgba(255,255,255,0.80);
	padding: 5px 20px 5px;
	margin: 0 0 5px;
}

h4 {
	border-bottom: rgba(133,114,133,1.00) dashed 1px;
	padding: 0 10px;
	color: rgba(133,114,133,1.00);
	line-height: 1.3em;
}

h2 {
   margin: 0;
   font-size: 30px;
   font-weight: normal;
   color: #fff;
	text-align: center;
}


hr {
	margin: 10px 0;
	height: 0;
	border: 0;
	padding: 0;
	border-top: rgba(179,167,179) solid 1px;
	
	

}

.sp-nav {
   display: none;
}



footer {
   position: fixed;
   bottom: 0;
   width: 100%;
	height: 30px;
   background-color: #383038;
   display: flex;
}

footer p {
	font-size: 0.5em;
	text-align: center;
	color:rgba(225,225,225,0.4);
	margin: auto;
}




.content {
	width: 60%;
	height: auto;
	margin: auto;
}

.content p {
	text-align: center;
	font-size: 0.9em;
}


.content-box {
	background: rgba(255,255,255,0.20);
	padding: 10px;
	margin: 0 0 15px 0;
}

.content-in {
	width: 60%;
	height: auto;
	margin: auto;
	padding-bottom: 40px;
}

.content-in p {
	text-align: left;
	font-size: 0.9em;
	margin: 10px;
}

.plice {
	font-size: 1.4em;
	font-weight: bold;
	margin: 0 20px;
	color: rgba(56,48,56,1.00);
	text-shadow:  1px 2px 3px #fff;
}

.plice-small {
	font-size: 0.6em;
	font-weight: normal;
}



.option {
	margin: 20px 20px 0 ;
	
}

.option-title {
	font-weight: bold;
	margin: -10px 10px 0;
	font-size: 0.9em;
	line-height: 1em;
	
}

.option-small {
	font-weight: normal;
	font-size: 0.9em;
	line-height: 1em;
}

.option p {
	font-size: 0.9em;
	margin: 0 20px 30px;
}




.plan {
	font-size: 0.8em;
	font-weight: normal;
	margin: 0 10px;
	color: #564A56;
}

.plan2 {
	font-size: 1em;
	font-weight: bold;
	margin: 0 10px;
	color: #564A56;
}


.caution {
	font-size: 1.2em;
	font-weight: bold;
	color: rgba(153,17,65,1.00);
}

.flow {
	font-weight: bold;
	font-size: 0.9em;
	margin: 0 0 -5px;
	padding: 10px 0 0;
}







@media screen and (max-width: 660px) {
   .pc-nav {
      display: none;
   }
   .sp-nav {
      z-index: 1;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      display: block;
      width: 100%;
      background: rgba(56,48,56,.9);
      opacity: 0;
      transform: translateY(-100%);
      transition: all .2s ease-in-out;
   }
   #hamburger {
      position: relative;
      display: block;
      width: 30px;
      height: 25px;
      margin: 0 0 0 auto;
   }
   #hamburger span {
      position: absolute;
      top: 50%;
      left: 0;
      display: block;
      width: 100%;
      height: 2px;
      background-color: #fff;
      transform: translateY(-50%);
   }
   #hamburger::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #fff;
   }
   #hamburger::after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 70%;
      height: 2px;
      background-color: #fff;
   }
   /*スマホメニュー*/
   .sp-nav ul {
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
	   list-style-type: none;
   }
   .sp-nav li {
      margin: 0;
      padding: 0;
	   font-weight: bold;
	   font-size: 1.2em;
	   display: block;
	   padding: 60px 0 0;
	   text-decoration: underline;

   }



	.sp-nav .small {
		font-weight: normal;
		font-size: 1em;
		line-height: 1.2em;
		padding: 20px 0 0;
		text-decoration: none;

	}
	
	
	
   /*-閉じるアイコンー*/
   .sp-nav .close {
      position: relative;
	  padding: 100px;
	  color: #fff;
	  text-decoration: none;
	  font-weight: normal;
	  font-size: 1em;
	   
   }

   .toggle {
      transform: translateY( 0 );
      opacity: 1;
   }
   .main-visual {
      padding: 0 4%;
   }
   h2 {
      line-height: 1.6;
      text-align: center;
   }

	
.content {
	width: 95%;
	height: auto;
}
	

	.content-in {
		width: 90%;
	}
	
	
	footer p {
	font-size: 0.5em;
	line-height: 1em;
}