@charset "UTF-8";

/* 全体 */
main {
	width:100%;
	max-width: 900px;
	letter-spacing: 0.05em;
	color: #333333;
	margin: 0 auto;
	line-height: 1.7em;
}

/* タイトル */
#title {
    margin: 0 auto ;
   /* padding-bottom: 3rem;*/
    /*border-bottom: 1px solid #dddddd;*/
    width: 85%;
	
}

h1{
	text-align: center;
	padding: 4rem 0;
	font-size: 2rem;
	letter-spacing: 0.05em;
	
}

h1 span{
	font-size: 1.2rem;
	display: block;
	margin-top: 1em;
	font-weight: normal;
	
}
#title p{
	font-size:1.2rem;
	border-left: 4px solid #dddddd;
    /* padding-left: 1em; */
    padding: 0.5em 0 0.7em 1em;
		line-height: 1.7em;
}


section {
    margin-bottom: 4rem;
}


/* 注意 */
#size_attention{
    line-height: 1.5em;
    width: 86%;
    margin: 2em auto 4em;
}

#size_attention p{
	font-size:1.2rem;
	margin-bottom:1em;
}

#size_attention ul {
/*    width: 90%;*/
    margin: 0 auto;
    padding-left: 2em;
}

#size_attention ul li{
	font-size:1.2rem;
	margin-bottom:1em;
	list-style-type:disc;
}

#size_ct_ti {
	background-color:#333333;
	padding:0.8em 0 ;
	font-size:1.4rem;
	color: #f2f2f2;
	text-align:center;
}


/*アコーディオン全体*/
.menu {
  /*width: 90%;*/
	margin: 0 auto;
	border-bottom: 1px solid #dddddd;

}
.menu input {
  display: none; /*チェックボックスを隠す*/
}
/*バー部分*/
.menu label {
  cursor :pointer;
  display: block;
  text-decoration: none;
  position: relative;
  padding: 1.2em 5%;
	border-top: 1px solid #dddddd;
	font-weight: normal;
	font-size: 1.4rem;
}


/*開いたときに表示される部分*/
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu li {
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}
#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li ,
#menu_bar03:checked ~ #links03 li ,
#menu_bar04:checked ~ #links04 li ,
#menu_bar05:checked ~ #links05 li ,
#menu_bar06:checked ~ #links06 li ,
#menu_bar07:checked ~ #links07 li ,
#menu_bar08:checked ~ #links08 li ,
#menu_bar09:checked ~ #links09 li ,
#menu_bar10:checked ~ #links10 li {
  height: auto; /*開いたときに表示されるliの高さ*/
  opacity: 1;
 /* background: #f1f1f1;*/
  padding:0 0 1rem;
}
 /*開いたときの下の余白*/
/*#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child {
  margin-bottom: 20px;
}
*/
/*閉じた状態の矢印描画*/
.menu h2 label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #333 1px solid;
  border-right: #333 1px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 5%;
  top: 0;
  bottom: 15%;
  margin: auto;
}
/*開いた状態の矢印描画*/
.menu input[type=checkbox]:checked + h2 label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #333 1px solid;
  border-right: #333 1px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  right: 5%;
  top: 7%;
  bottom: 0;
  margin: auto;
}


.menu > ul{
	font-size: 1.2rem;
}

/*.menu > ul > li > p{
	padding-bottom:  1em;
}

*/
.menu .detail{
	margin-bottom: 3.5rem;
}

.menu .detail > div > p{
	width: 85%;
	margin: 0 auto 2.5rem;
}


.menu .detail img{
	display:block;
	width: 100%;
	max-width: 500px;
	margin:0 auto;
}

.menu .detail ul{
	display:block;
	width:80%;
	max-width:450px;
    margin: 0 auto 1em;
    line-height: 1.5em;
}
.menu .detail > img{
	 width: 100%;
}

.menu .detail > ul > li p::before {
    content: "-";
    padding: 0 0.5em;
	color: #dddddd;
}

.link_button {
	display: block;
	border: 1px solid #333333;
	border-radius: 4px;
	width:80%;
	margin: 0.5em auto 4em;
	color: #333333;
	text-align: center;
	padding: 1em 0;
	max-width: 540px;
}

.link_button:hover {
	border-color: #666666;
	background-color: #666666;
	color: #f2f2f2;
}

.more_question {
	text-align: center;	
}

.more_question p {
	margin-bottom: 1em;
}

.more_question .link_button{
	margin-bottom: 6rem;
}

.more_question .contact_button{
	border-color: #8B0007;
	color: #8B0007;
}
.more_question .contact_button:hover{
	border-color: #6e2b2e;
	background-color: #6e2b2e;
	color: #f2f2f2;
}
div.more_question {
    border-top: dashed 1px #dddddd;
    padding-top: 4em;
}

/* */
.detail_description {
	 margin: 0 5%;
	line-height: 1.5em;

}
.detail_description p{
	margin:4em 0 0.5em ;
	font-size:1.3rem;
	font-weight:bold;
	border-top: 1px solid #dddddd;
    padding-top: 3rem;
}

/* */
p i{
	margin-right: 0.2em;
}
p.tel{
	font-size: 1.8rem;
	text-align: center;
	color: #333333;
    margin-top: 1.5em;
}
p.tel a{
	color: #333333;
	text-decoration: none;
}
p.tel span{
	font-size: 1.2rem;
	display: block;
	padding-top:0.5em; 
}


@media screen and (min-width: 641px) {

html{
	font-size: 68.75%; /*11px*/

}
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

@media screen and (min-width: 961px) {
	

html{
	font-size: 75%; /*12px*/
}
.detail{
	display: flex;
	align-items: center;
	}
#size_ct .detail {
    margin: 3rem 0 4rem;
}
#size_ct .detail img{
		margin: 0;
	}

}







