@charset "utf-8";

.app01 {
    display: block;
    max-width: 179px;
    width: 100%;
    transition: all .3s;
}

.app01:hover {
	transform: scale(1.2);
}

/*===========================================================

===========================================================*/

.beginner01-btn-area {
    display: grid;
    place-content: center;
    place-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 40px;
}

.beginner03-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.beginner03-img-box::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: rgba(199, 176, 176, 0.62);
	z-index: 1;
}

.beginner03-title {
	padding: 0 0 14px;
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 1.1003)), 35px);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-align: center;
	color: var(--primary);
	border-bottom: 1px solid var(--base-font-color);
}

.beginner03-link-area {
    display: grid;
    place-content: center;
    place-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 40px;
}

.beginner04-title-box {
	border-bottom: 1px solid var(--base-font-color);
}

.beginner04-item::before {
    content: "";
    display: block;
    width: 86px;
    height: 23px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--primary);
}

.beginner04-item:last-child::before {
	display: none;
}

.beginner04-block {
	margin: 40px 0 0;
}

.beginner04-block:first-child {
	margin: 0;
}

.beginner04-block-secondary .beginner04-item::before {
	background: var(--secondary);
}

.beginner05-btn-area .btn01 {
	max-width: 310px;
}

.beginner06-block {
	margin: 40px 0 0;
}

.beginner06-block:first-child {
	margin: 0;
}

.beginner06-text-item::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    background: var(--primary);
}

/*===========================================================
accordion
===========================================================*/

/* .faqList {
	padding: 0 15px;
} */

.faqList:first-child {
    margin: 0;
}

.accordionBtn {
    position: relative;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0 10px;
    border-radius: 3px;
}

.faqIcon {
	border: 1px solid var(--white);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 28px;
}  

.qIcon {
    color: var(--tertiary);
    background: var(--white);;
}

.aIcon {
    color: var(--white);
    background: var(--tertiary);
    border-color: var(--tertiary);
}

.qBox {
	display: flex;
	align-items: center;
    width: 100%;
    background: var(--white);
    border-radius: 50px;
    padding: 3% 4%;
	transition: all .3s;
}

.qBox:hover {
    opacity: .5;
}

.question {
	max-width: 900px;
	width: 75%;
	margin: 0 0 0 1.6%;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	flex: 1;
}

.aBox {
	display: none;
  padding: 20px 4% 0;
}

.answerInBox {
	display: flex;
}

.answer {
    max-width: 900px;
    width: 75%;
	margin: 0 0 0 15px;
    font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.05em;
    line-height: 1.688em;
}

.answer > a {
    display: inline-block;
}

.answer .sns-link01 {
    padding: 0 0 10px;
}

.faqList {
	overflow: hidden;
}

/*アコーディオンアイコン*/

.accordionIcon {
	position: relative;
	width: 100%;
	height: 24px;
	margin-right: 5px;
	margin: 0 0 0 5%;
	max-width: 24px;
	border-radius: 50%;
}

.accordionIconItem01 {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 24px;
	height: 2px;
	background-color: var(--tertiary);
	border-radius: 4px;
	top: 50%;
	transform: rotate(0deg);
}

.accordionIconItem02 {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 24px;
	height: 2px;
	background-color: var(--tertiary);
	border-radius: 4px;  
	top: 50%;
	transform: rotate(90deg);
	transition: .5s;
}

.accordionIcon.active > .accordionIconItem01 {
	display: none;
}

.accordionIcon.active > .accordionIconItem02 {
	top: 50%;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}


.gjs-dashed  .aBox {
    display: block;
}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:600px) {


/*===========================================================

===========================================================*/

.beginner01-btn-area {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
}

.beginner03-link-area {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
}

} /* min-width: 544px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 768px) {


/*===========================================================

===========================================================*/


.beginner01-btn-area {
    gap: 20px 40px;
}

.beginner03-link-area {
    gap: 20px 40px;
}

.beginner06-block {
	margin: 60px 0 0;
}

/*===========================================================
accordion
===========================================================*/

.faqIcon {
    max-width: 55px;
    width: 100%;
    height: 55px;
    font-size: 18px;
} 

.question,.answer  {
    width: 83%;
}

.faqList:first-child {
	margin: 0;
}

.question,.answer {
	font-size: 16px;
}

.accordionIcon {
	margin: 0 0 0 8.9%;
}

.qBox {
    padding: 1% 4%;
}


} /* min-width: 768px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 1024px) {


/*===========================================================

===========================================================*/

.beginner04-block {
	margin: 0;
}

.beginner06-block {
	margin: 80px 0 0;
}

} /* min-width: 1024px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1200px) {


/*===========================================================

===========================================================*/



} /* min-width: 1200px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1440px) {


/*===========================================================

===========================================================*/



} /* min-width: 1440px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1620px) {




} /* min-width: 1520px ここまで */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */ 