@charset "UTF-8";

/*エリア専用CSSはこちらに記載*/

/* 基本 */
:root {
	--v-a-space: clamp(50px, 7vw, 80px);
}

/*section1*/
.a_sec1 {
	padding: var(--v-a-space) 0;
	background-color: #e9e9e9;
}


.a_sec1__title {
    font-size: clamp(30px,5vw,40px);
    font-weight: 700;
    text-align: center;
    font-family: 'Kiwi Maru';
}  
.a_sec1__title span {
    font-size: clamp(40px,5vw,60px);
}


ul.a_sec1__list{
    margin-top: 10px;
    font-size: clamp(18px,5vw,25px);
    line-height: 1.7;
    list-style-type: none;
    column-count: 1;		/*リスト横並び数を指定*/
}
.a_sec1__list li+li {
    margin-top: 5px;
}
.a_sec1__list li {
    position: relative;
    padding-left: 35px;
    border-bottom: 1px solid #ccc;
}
.a_sec1__list li:before {
    content: "";
    position: absolute;
    width: clamp(2px,3vw,14px);
    height: clamp(17px,5vw,25px);
    top: 0em;
    left: 6px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    border-right: 3px solid var(--accent-color1);
    border-bottom: 3px solid var(--accent-color1);
}
.a_sec1__list li:after {
    content: "";
    position: absolute;
    top: .2em;
    left: 0;
    width: clamp(18px,5vw,25px);
    height: clamp(18px,5vw,25px);
    border: 1px solid #9c9c9c;
    border-radius: 2px;
}



/*section2*/
.a_sec2::before {
    content: "";
    width: 100%;
    height: 80px;
    background-color: #e9e9e9;
    position: absolute;
    top: -1px;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}
.a_sec2 {
    padding: var(--v-a-space) 0;
    background-color: #FFF;

    padding-top: 100px;
    padding-bottom: 88px;
    position: relative;
}

.a_sec2__catch01 {
    font-size: clamp(18px,5vw,25px);
    text-align: center;
    width: 160px;
    margin-inline: auto;
    border: 1.5px solid var(--accent-color1);
    font-weight: 700;    
    font-family: 'Kiwi Maru';
  }

.a_sec2__title {
    font-weight: 700;
    font-size: 34px;
    text-align: center;
    margin-top: 20px;
    position: relative;    
    font-size: clamp(25px,5vw,40px);
    font-family: 'Kiwi Maru';    
	background-image: url(../img/a_sec2__title.png);
    background-size: contain;
    background-position: center bottom;
	background-repeat: no-repeat;
}
.a_sec2__title span {
    font-size: clamp(35px,5vw,60px);
    color:var(--accent-color1);
}