@charset "UTF-8";
/* ＝=＝=＝=＝=＝=＝=＝=＝=＝=＝
        事前の準備START
＝=＝=＝=＝=＝=＝=＝=＝=＝=＝ */

/* ＝＝＝＝＝＝＝＝
　　　PC START
＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝見出し＝＝＝ */
#flow .h2{
    margin: 100px 0 40px 0;
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
}
#flow .h2line{
    display: block;
    max-width: 822px;
    margin: 0 auto 100px;
}

/*＝＝＝アコーディオンのためのcss＝＝＝*/
/*アコーディオン全体*/
#flow .accordion-area02{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto 80px;
}
#flow .accordion-area02 li{
    border: 1px solid var(--main);
    border-radius: 10px;
    background-color: #fff;
    padding: 14px 50px 16px 50px;
}
@media screen and (max-width: 550px){
#flow .accordion-area02 li{
    border: 1px solid var(--main);
    border-radius: 10px;
    background-color: #fff;
    padding: 14px 30px 10px 30px;
}
}/* アコーディオン550end */

/*アコーディオンタイトル*/
#flow .ac_title02 {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    padding: 18px 40px 20px 0;
    transition: all .5s ease;
    border-bottom: 4px dotted var(--main);
    font-size: 1.6em;
    color: var(--main);
    display: flex;
    align-items: center;
    gap: 40px;
    line-height: 1.2;
}
#flow .epi_point{
    background-color: var(--main);
    color: #ffffff;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    text-align: center;
}
#flow .epi_title{
    text-align: center;
    font-weight: bold;
    width: 80%;
}

/*アイコンの＋と×*/
#flow .ac_title02::before,
#flow .ac_title02::after{
    position: absolute;
    content:'';
    width: 20px;
    height: 5px;
    background-color: var(--main);
}
#flow .ac_title02::before{
    top:48%;
    right: 0;
    transform: rotate(0deg);
}
#flow .ac_title02::after{    
    top:48%;
    right: 0;
    transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
#flow .ac_title02.close02::before{
  transform: rotate(45deg);
}
#flow .ac_title02.close02::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
#flow .ac_box02 {
    display: none;/*はじめは非表示*/
    background: #FFF;
    border-radius: 10px;
  	margin:0 0;
    padding: 24px 0 22px;
}
#flow .ac_box02{
    font-size: 1em;
    transform: rotate(0.05deg);
}
#flow .ac_box02 p{
    line-height: 1.6;
}
#flow .flow_box{
    display: flex;
    gap: 40px;
}
#flow .redtxt{
    color: var(--main);
    margin-bottom: 18px;
    font-weight: bold;
    font-size: 1.1em;
}
#flow .flow_item01{
    transform: rotate(0.05deg);
    width: 47%;
    margin-left: 10px;
}
#flow .flow_item02{
    transform: rotate(0.05deg);
    font-size: 1.1em;
    width: 47%;
    background-color: #fee7df;
    border-radius: 30px;
    color: var(--main);
    text-align: center;
    padding: 20px 10px;
}
#flow .flow_tell{
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 16px;
}
#flow .flow_tell img{
    width: 8%;
}
#flow .tehai{
    font-weight: bold;
    margin-bottom: 16px;
}
#flow .flow_tell .tehai_txt{
    text-align: left;
    font-weight: bold;
    line-height: 1.3;
}
#flow .tehai_txt span{
    font-weight: bold;
    font-size: 1.3em;
}
#flow .flow_txt{
    line-height: 1.6;
    font-size: 1.1em;
}
#flow .f_box{
    padding: 10px 70px 0 120px;
}

/* アコーディオンの間隔 */
#flow .accordion-area02 li+li{
    margin-top: 26px;
}


/* =================================
【事前の準備】のタブレット・スマホ
==================================== */
@media screen and (max-width: 767px){
    /* =========パンくずリスト========= */
.pankuzu{
    font-size: 1em;
    transform: rotate(0.05deg);
    margin-top: 20px;
}
/* =========見出し========= */
#flow .h2line{display: none;}
#flow .h2{
    margin: 60px 0 30px 0;
    font-size: 1.8em;
}
#flow .h2line_sp{
    width: 70%;
    margin: 0 auto 50px;
}


/* ===アコーディオンのcss=== */
#flow .accordion-area02 li{
    padding: 12px 40px 14px 40px;
}
#flow .ac_title02 {
    font-size: 1.4em;
    gap: 20px;
}
#flow .epi_point {
    background-color: var(--main);
    color: #ffffff;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50%;
    padding: 8px 10px;
    width: 50px;
    height: 50px;
    text-align: center;
}
#flow .flow_box{
    display: block;
    width: 80%;
    margin: 0 auto;
}
#flow .flow_item01{
    width: 100%;
    margin-bottom: 50px;
}
#flow .flow_item02{
    width: 100%;
}
#flow .f_box{
    padding: 0;
    width: 80%;
    margin: 0 auto;
}
#flow .redtxt{
    margin-top: 10px;
}

}/* 767END */

@media screen and (max-width: 550px){
    /* ------見出し------ */
/* ------見出し------ */
#flow .h2{
    margin: 50px 0 30px 0;
    font-size: 1.4em;
}
#flow .h2line_sp{
    width: 90%;
    margin: 0 auto 40px;
}


/* ------アコーディオン------ */
#flow .accordion-area02 li{
    padding: 22px 20px 20px 20px;
}
#flow .ac_title02 {
    padding: 0 30px 10px 0;
    font-size: 1.2em;
    gap: 0;
}
#flow .epi_point {
    background-color: var(--main);
    color: #ffffff;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50%;
    padding:10px;
    width: 50px;
    height: 48px;
    text-align: center;
}
#flow .epi_title{
    width: 80%;
}
#flow .ac_box02 {
    padding: 20px 0 12px;
}
#flow .flow_box{
    width: 92%;
}
#flow .f_box{
    width: 86%;
}
#flow .epi_box{
    flex-direction: column-reverse;
    gap: 18px;
}
#flow .epi_img{
    width: fit-content;
    margin: 0 auto;
}
#flow .epi_txt{
    font-size: 1em;
}
#flow .redtxt{
    font-size: 1em;
    margin-left: 6px;
}
#flow .flow_txt {
    font-size: 1em;
    margin-left: 6px;
}
#flow .flow_tell .tehai_txt {
    line-height: 1.5;
    display: block;
}
#flow .tehai_txt span {
    font-size: 1.1em;
}
#flow .flow_item01 {
    margin-left: 6px;
    margin-bottom: 30px;
}
#flow .flow_item02 {
    font-size: 1em;
}
#flow .flow_tell {
    gap: 20px;
    align-items: center;
}
#flow .flow_tell img {
    width: 26px;
}
}/* 550END */