body{
	margin: 0;
	padding: 0;
}

.instagram_wrap{
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
}


.instagram_wrap h1,
.instagram_wrap h2,
.instagram_wrap h3,
.instagram_wrap h4,
.instagram_wrap p,
.instagram_wrap a,
.instagram_wrap ul,
.instagram_wrap ul li{
	margin: 0;
	padding: 0;
}

.instagram_wrap a{
	text-decoration: none;
	color: inherit;
}

.instagram_wrap ul li{
	list-style: none;
}


.instagram_main{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.instagram_main img{
	width: 100%;
}

.tenpo-wrap{
	display: block;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 80px;
}


.title-wrap{
	display: block;
	margin: 0 auto;
	padding-bottom: 40px;
}

.tenpo-wrap .title-wrap h2{
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
	/* padding-top: 1em; */
	position: relative;
	color: #000000;
}

.tenpo-wrap h2::after{
	position: absolute;
	display: inline-block;
	content: "";
	width: 20px;
	height: 2px;
	bottom: -8px;
	background: #ED753A;
	left: calc((100% - 10px) / 2);
}

.tenpo-wrap ul{
	padding-bottom: 80px;
}

.tenpo-wrap ul li{
	display: inline-block;
	width: 100%;
	padding: 15px;
}

.tenpo-wrap ul li a{
	color: #ED753A;
    font-weight: 500;
    position: relative;
    display: block;
    padding-left: 2em;
}

.tenpo-wrap ul li a span{
	color: #666666;
    font-weight: 200;
	font-size: 0.9em;
}

.tenpo-wrap ul li a::after{
	content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px #ED753A;
    border-right: solid 2px #ED753A;
    position: absolute;
    top: 30%;
    left:0;
    margin-top: 4px;
    transform: rotate(45deg);
}

.tenpo-wrap ul li a::before{
    content: '';
    width: 100%;
    height: 1px;
    background: #ED753A;
    bottom: -15px;
    max-width: 1200px;
    position: absolute;
    left: 0;
}

.acd-content ul li .noline::before{
	content: none;
}

.tenpo-wrap .acd-content ul {
    padding-bottom: 0px;
}


*,
*::after,
*::before {
  box-sizing: border-box;
}

.accordion {
  width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

/*------------------------------

ここからアコーディオンのCSS

------------------------------*/

.acd-check{
  display: none;
}
.acd-label{
	background: #fff;
    color: #ED753A;
    display: block;
    margin-bottom: 15px;
    padding: 10px;
    border: 2px solid #ED753A;
}
.acd-content{
  border_bottom: 1px solid #ED753A;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: .5s;
  visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content{
	height: auto;
	opacity: 1;
	padding: 10px;
	visibility: visible;
	background: #FBFFD6;
	margin-bottom: 15px;
}

.acd-check:checked + .acd-label{
	background: #ED753A;
	color: #ffffff;
}


/* 開閉状態を示すアイコン+の作成 */
/*.accordion-open::before,
.accordion-open::after*/
.acd-label{
	position: relative;
}

.acd-label:before,
.acd-label:after{
  content: '';
  width: 20px;
  height: 3px;
  background: #ED753A;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
.acd-label::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.acd-check:checked + .acd-label:after {
  transform: translateY(-50%) rotate(0);
	background: #ffffff;
}

/* 下余白 */
.acd-check:checked +  .acd-label {
    margin-bottom: 0;
}

/* ボタン */
.guideline_button{
	display: block;
	padding-top: 20px;
}

.guideline_button a{
	display: block;
    width: 100%;
    max-width: 600px;
    background:#ED753A;
    padding: 0.8em 2em;
    margin: 0 auto;
    text-align: center;
    border-radius: 30px;
    color: #ffffff;
    font-size: 1.2em;
    box-sizing: border-box;
    position: relative;
    font-weight: bold;
}

.guideline_button a::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    position: absolute;
    top: 36%;
    /* left: 8px; */
    margin-top: 4px;
    transform: rotate(45deg);
    right: 3%;
}


@media screen and (max-width: 767px){
	.guideline_button a{
	width: 90%;
	font-size: 0.9em;
	margin: 0 auto;
	padding-left: 0.5em;
	padding-right: 0.5em;
	}
	
	.guideline_button a::after {
		margin-top: 0;
    top: 40%;
    right: 5%;
}
}

@media screen and (max-width: 350px){
	.guideline_button a {
	width: 100%;
}
}
