
html,
body {
font-family: 'Noto Sans JP', sans-serif;
margin: 0;
padding: 0;
 }

img,video {
  vertical-align:bottom;
  max-width: 100%;
  width: 100%;
display: block;}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#wrapper {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}



.cv_area {
position: relative;
}

.cv_area a {
    width: 85%;
    display: block;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;

}

.cv_area a:hover {
    opacity: 0.6;
    transition: 0.5s;
}


.cv1 a {
    bottom: 20%;  
}
.cv2 a {
    bottom:27%;  
}
.single a {
    bottom: 24%;
    width: 42%;
    left: auto;
    right: 7%;
}

.oficial a {
bottom: 19%;
    width: 52%;
    left: 5%;
    right: auto;
}

.fv_area video {
max-width: 100%;
}

.accordion {
    background: url("../images/acordion_bk.png") no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 10px 0;
}

.wrap {
    width: 95%;
    margin: 0 auto;
}

.accordion_toggle {
	display: none;
}
.accordion_Label {		/*タイトル*/
	padding: 10px 0;
	display: block;
	color: #fff;
    text-align: center;
    font-size: 28px;
	background:#1e0000;
    cursor: pointer;
}
.accordion_Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 15px;
	height: 15px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	    top: calc( 30% - 1px );
	right: 20px;
	transform: rotate(135deg);
}
.accordion_Label,
.accordion_content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.accordion_content {		/*本文*/
	height: 0;
	padding:0 20px;
	overflow: hidden;
}

.accordion_content p {
    font-size: 23px;
    line-height: 150%;
}

.accordion_toggle:checked + .accordion_Label + .accordion_content {	/*開閉時*/
height: auto;

	padding:0 20px;
	transition: all 0.3s;
    background: white;
}
.accordion_toggle:checked + .accordion_Label::before {
	transform: rotate(-45deg) !important;
        top: calc( 40% - 1px );
}

.center {
    text-align: center;
}

.data {
    padding: 5% 0;
}


.data h3 {
    color: white;
    text-align: center;
    background: #3d7335;
    font-size: 26px;
    padding: 10px 0;
    letter-spacing: 0.2em;
        font-weight: normal;
}

.data dl {
    margin: 5% auto;
    width: 95%;
}

.data dt {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 4px solid;
    text-align: center;
    margin-bottom: 15px;
}

.data dd {
    font-size: 16px;
    line-height: 160%;
}
.data dd table {
    margin: 25px 0;
      width: 100%;
  border-collapse: collapse;
}
tr {
width: 100%;
}
.data dd table td {
padding: 2%;
    border: 1px solid;
}
.data dd table td.bk {
    background: #f6f3eb;
}
.data dd ul {
    padding-left: 30px;
    margin: 15px 0;
}
.data dd li span {
    color: #c90c22;
}
.data dd p a {
    color: black;
}


a.to_contact {
    display: block;
    margin: 20px auto;
    width: 60%;
}



.question {
    padding: 5%;
    background: url("../images/question_bk.png") no-repeat;
    background-size: cover;
    background-position: center top;
}

.question h3 {
    margin: 4% auto 7%;
    width: 70%;
}


.toggle {
	display: none;
}
.Label {		/*タイトル*/
	display: block;
    position: relative;
    cursor: pointer;
}




.Label::before{		/*タイトル横の矢印*/
content: "";
    position: absolute;
    width: 42px;
  height: 42px;
    background: url("../images/vector_off.png") no-repeat;
    background-size: contain;
    top: 31%;
    right: 4%;

}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:5%;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	transition: all .3s;
}
.toggle:checked + .Label::before {
    width: 42px;
  height: 42px;
    background: url("../images/vector.png") no-repeat;
    background-size: contain;

}

.foot_text02 {
    padding-top: 11px;
    font-size: 11pt;
    font-weight: bold;
        text-align: center;
}

.foot_text02 a {
    text-decoration: none;
    font-weight: normal;
    color: black;
}

footer p,footer small {
    text-align: center;
        font-size: 11pt;
    display: block;
    margin: 10px 0;
}

footer article {
    display: flex;
    width: 17%;
    margin: 15px auto;
}

div.tel {
    width: 80%;
    margin: 5% auto;
}


/*リンクの形状*/
#fix_btn a{
display: block;
    width: 240px;
}

/*リンクを右下に固定*/
#fix_btn {
    width: 240px;
    position: fixed;
    left: auto;
    right: 2%;
    bottom: 5px;
    z-index: 2;
    opacity: 0;
    margin: auto;
    transform: translateY(300px);
}

/*　上に上がる動き　*/

#fix_btn.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(300px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#fix_btn.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(300px);
  }
}



@media (min-width: 768px) {
.sp {
display: none;
}



}

@media (max-width: 767px) {

.pc {
display: none;
}

.cv {
width: 90%;
margin: 0 auto;
}
p {
font-size: 14px;
line-height: 160%;
}

    a.phone {
        display: block;
    }



.cv_area {
position: relative;
}

.cv_area a {
    width: 85%;
    display: block;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;

}

.cv_area a:hover {
    opacity: 0.6;
    transition: 0.5s;
}


.cv1 a {
    bottom: 20%;  
}
.cv2 a {
    bottom:27%;  
}
.single a {
    bottom: 24%;
    width: 42%;
    left: auto;
    right: 7%;
}

.oficial a {
bottom: 19%;
    width: 52%;
    left: 5%;
    right: auto;
}

.fv_area video {
max-width: 100%;
}

.accordion {
    background: url("../images/acordion_bk.png") no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 10px 0;
}

.wrap {
    width: 95%;
    margin: 0 auto;
}

.accordion_toggle {
	display: none;
}
.accordion_Label {		/*タイトル*/
	padding: 10px 0;
	display: block;
	color: #fff;
    text-align: center;
    font-size: 15px;
	background:#1e0000;
    cursor: pointer;
}
.accordion_Label::before{		/*タイトル横の矢印*/
	content:"";
    width: 10px;
    height: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	    top: calc( 30% - 1px );
	right: 20px;
	transform: rotate(135deg);
}
.accordion_Label,
.accordion_content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.accordion_content {		/*本文*/
	height: 0;
	padding:0 20px;
	overflow: hidden;
}

.accordion_content p {
    font-size: 15px;
    line-height: 150%;
}

.accordion_toggle:checked + .accordion_Label + .accordion_content {	/*開閉時*/
height: auto;
    padding: 0 20px;
    transition: all .3s;
    background: white;
}
.accordion_toggle:checked + .accordion_Label::before {
	transform: rotate(-45deg) !important;
        top: calc( 40% - 1px );
}

.center {
    text-align: center;
}

.data {
    padding: 5% 0;
}


.data h3 {
    color: white;
    text-align: center;
    background: #3d7335;
    font-size: 22px;
    padding: 10px 0;
    letter-spacing: 0.2em;
        font-weight: normal;
}

.data dl {
    margin: 5% auto;
    width: 95%;
}

.data dt {
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 5px;
    border-bottom: 4px solid;
    text-align: center;
    margin-bottom: 15px;
}

.data dd {
    font-size: 15px;
    line-height: 160%;
}
.data dd table {
    margin: 25px 0;
      width: 100%;
  border-collapse: collapse;
}
tr {
width: 100%;
}
.data dd table td {
padding: 2%;
    border: 1px solid;
    font-size: 14px;
}
.data dd table td.bk {
    background: #f6f3eb;
}
.data dd ul {
    padding-left: 30px;
    margin: 15px 0;
}
.data dd li span {
    color: #c90c22;
}
.data dd p a {
    color: black;
}


a.to_contact {
    display: block;
    margin: 20px auto;
    width: 80%;
}



.question {
    padding: 5%;
    background: url("../images/question_bk.png") no-repeat;
    background-size: cover;
    background-position: center top;
}

.question h3 {
    margin: 4% auto 7%;
    width: 70%;
}


.toggle {
	display: none;
}
.Label {		/*タイトル*/
	display: block;
    position: relative;
    cursor: pointer;
}




.Label::before{		/*タイトル横の矢印*/
content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: url("../images/vector_off.png") no-repeat;
    background-size: contain;
    top: 31%;
    right: 4%;

}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:5%;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	transition: all .3s;
}
.toggle:checked + .Label::before {
    width: 22px;
    height: 22px;
    background: url("../images/vector.png") no-repeat;
    background-size: contain;

}

    footer {
        width: 90%;
        margin: 0 auto;
    }





.foot_text02 {
    padding-top: 11px;
    font-size: 13px;
    font-weight: bold;
        text-align: center;
}

.foot_text02 a {
    text-decoration: none;
    font-weight: normal;
    color: black;
}

footer p,footer small {
    text-align: center;
        font-size: 12px;
    display: block;
    margin: 10px 0;
}

footer article {
    display: flex;
    width: 35%;
    margin: 15px auto;
}

div.tel {
    width: 80%;
    margin: 5% auto;
}


/*リンクの形状*/
#fix_btn a{
display: block;
    margin-left: auto;
    width: 35%;
}

/*リンクを右下に固定*/
#fix_btn {
    width:100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 2;
    opacity: 0;
    margin: auto;
    transform: translateY(200px);
}

    .black {
        background: black;
    }



 }


.yureru-s {
    animation: yureru-s 2s infinite;
}
@keyframes yureru-s {
    0% {
        transform: translate(2px, 0px);
    }
    5% {
        transform: translate(-2px, 0px);
    }
    10% {
        transform: translate(2px, 0px);
    }
    15% {
        transform: translate(-2px, 0px);
    }
    20% {
        transform: translate(2px, 0px);
    }
    25% {
        transform: translate(-2px, 0px);
    }
    30% {
        transform: translate(0px, 0px);
    }
}
