<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*******************************************/
/* メインビジュアル
*******************************************/
.main-visual {
	position: relative;
	text-align: center;
	background: url("/teracan/assets/images/bg/main-visual.jpg") no-repeat center top;
	background-size: cover;
	height: 100vh;
	min-height: 800px;
	margin-top: 90px;
}
/* キャッチコピー（アウトラインテキスト） */
.main-visual__catchcopy {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%);
    width: 20%;
	max-width: 320px;
	min-width: 320px;
}
@media (max-width: 767px) {
	.main-visual {
		position: relative;
		text-align: center;
		background: url("/teracan/assets/images/bg/main-visual-sp.jpg") no-repeat center top;
		background-size: cover;
		height: 70vh;
		min-height: 600px;
		margin-top: 70px;
	}
	/* キャッチコピー（アウトラインテキスト） */
	.main-visual__catchcopy {
		top: 4%;
		left: 50%;
		width: 46%;
		min-width: 175px;
	}
}

/* サークル */
.circle-container {
    position: absolute;
    bottom: 17%;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    gap: 30px;
}


.circle {
    width: 150px;
    height: 150px;
    border: 2px solid var(--sunset-red); /* ピンク系の枠線 */
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); /* 薄いシャドウ */
    text-align: center;
    font-family: sans-serif;
    position: relative;
}
.asterisk span {
    position: absolute;
    top: 15px;
    width: 1.7px;
    height: 14px;
    background-color: var(--fortune-yellow); /* 黄色 */
    border-radius: 1px;
}

.asterisk span:nth-child(1) {
    transform: rotate(0deg);
}

.asterisk span:nth-child(2) {
    transform: rotate(60deg);
}

.asterisk span:nth-child(3) {
    transform: rotate(-60deg);
}

.circle-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px; /* 要素が1つの場合は無視されるのでそのままでOK */
    margin-top: 10px;
}

.large-text {
    color: var(--teracan-purple); /* 紫色 */
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
}
.small-text {
    color: var(--teracan-purple); /* 紫色 */
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
}
.note-text {
    font-size: 1.4rem;
    color: var(--teracan-purple); /* 紫色 */
    margin-top: 5px;
}
@media (max-width: 767px) {
    .circle-container {
        position: absolute;
        bottom: 35%;
        left: 50%;
        transform: translate(-50%);
        display: flex;
        justify-content: center;
        gap: 5px;
    }


    .circle {
        width: 110px;
        height: 110px;
        border: 1px solid var(--sunset-red); /* ピンク系の枠線 */
        background-color: var(--white);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); /* 薄いシャドウ */
        text-align: center;
        font-family: sans-serif;
        position: relative;
    }
    .asterisk span {
        position: absolute;
        top: 15px;
        width: 1.4px;
        height: 10px;
        background-color: var(--fortune-yellow); /* 黄色 */
        border-radius: 0.7px;
    }

    .asterisk span:nth-child(1) {
        transform: rotate(0deg);
    }

    .asterisk span:nth-child(2) {
        transform: rotate(60deg);
    }

    .asterisk span:nth-child(3) {
        transform: rotate(-60deg);
    }

    .circle-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px; /* 要素が1つの場合は無視されるのでそのままでOK */
        margin-top: 20px;
    }

    .large-text {
        color: var(--teracan-purple); /* 紫色 */
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.3;
    }
    .small-text {
        color: var(--teracan-purple); /* 紫色 */
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1;
    }
    .note-text {
        font-size: 1.2rem;
        color: var(--teracan-purple); /* 紫色 */
        margin-top: 5px;
    }
}



/**********************************************
* 思い
***********************************************/
.message {
	padding-bottom: 240px;
    position: relative;
}
.message__heading {
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 12px;
    color:#AF172A;
    margin-top: 30px;
}
.message__text {
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 2.4;
    margin-top: 60px;
}
.message img {
    width: 100%;
    max-width: 570px;
    height: auto;
    margin-top: 60px;
}
@media (max-width: 767px) {
    .message {
        padding-bottom: 150px;
    }
    .message__heading {
        font-size: 2.4rem;
        line-height: 1.4; /* 64px */
        letter-spacing: 7.6px;
        margin-top: 20px;
    }
    .message__text {
        font-size: 1.8rem;
        width: 100%;
        margin-top: 40px;
    }
    .message img {
        max-width: 280px;
    }
}
/**********************************************
* 特長
***********************************************/
/* リード文（大）*/
.feature__lead {
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 2.16px;
	margin-bottom: 85px;
}
@media (max-width: 767px) {
	.feature__lead {
		font-size: 1.6rem;
		line-height: 1.6;
		letter-spacing: 1.1px;
	  }
}
/* カード*/
/* container */
.feature__card {
    position: relative;
    width: 370px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 20px 30px;
}
/* 見出し部分（黄色） */
.feature__card-header {
    position: relative;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
    background: #E5AE34;
    color: var(--black);
    font-size: 2.0rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    justify-content: space-between; /* アイコンとテキストの両端揃え */
}
.feature__checkmark {
    width: 24px; /* アイコンサイズ */
    height: auto;
}
.feature__card-title {
	flex: 1;
    text-align: left;
    letter-spacing: 2px;
    padding-left: 15px;
    color: var(--future-blue);
}
/* 折りたたみ三角形 */
.feature__card-header::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 0;
    width: 6px;
    height: 25px;
    background: var(--future-blue);
    clip-path: polygon(0 100%, 0 -5%, 6px 100%);
}
@media (max-width: 767px) {
	.feature__card {
		position: relative;
		width: 100%;
		border-radius: 20px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		padding: 0px 20px 30px;
	}
	.feature__card-header {
		top: -25px;
		left: 50%;
		width: 260px;
		font-size: 1.8rem;
		padding: 10px 15px;
		border-radius: 0 0 10px 10px;
	}
	.feature__card-title {
		font-size: 1.8rem;
		letter-spacing: 1.8px;
		padding-left: 15px;
	}
	/* 折りたたみ三角形 */
	.feature__card-header::after {
		content: "";
		position: absolute;
		right: -6px;
		top: 0;
		width: 6px;
		height: 25px;
		clip-path: polygon(0 100%, 0 -5%, 6px 100%);
	}
}
/* 本文部分 */
.feature__card-subtitle {
    color: var(--teracan-purple);
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.feature__card-text {
	color: var(--black);
	font-size: 1.8rem;
	line-height: 1.7;
	letter-spacing: 0.9px;
}
@media (max-width: 767px) {
	/* 本文部分 */
	.feature__card-subtitle {
		font-size: 2.4rem;
		margin-bottom: 20px;
	}
	.feature__card-text {
		font-size: 1.6rem;
	}
}
/* サークル */
.circle-container-feature {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}


.circle-feature  {
    width: 150px;
    height: 150px;
    background-color: var(--fortune-yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); /* 薄いシャドウ */
    text-align: center;
    font-family: sans-serif;
    position: relative;
}
.asterisk-feature  span {
    position: absolute;
    top: 15px;
    width: 1.7px;
    height: 14px;
    background-color: var(--white); 
    border-radius: 1px;
}

.asterisk-feature  span:nth-child(1) {
transform: rotate(0deg);
}

.asterisk-feature  span:nth-child(2) {
transform: rotate(60deg);
}

.asterisk-feature  span:nth-child(3) {
transform: rotate(-60deg);
}

.circle-text-feature  {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px; /* 要素が1つの場合は無視されるのでそのままでOK */
    margin-top: 10px;
}

.large-text-feature  {
    color: var(--future-blue); 
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
}
.small-text-feature  {
    color: var(--future-blue); 
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
}
.note-text-feature  {
    font-size: 1.4rem;
    color: var(--future-blue); 
    margin-top: 5px;
}
@media (max-width: 767px) {
    .circle-container-feature {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }


    .circle-feature {
        width: 105px;
        height: 105px;
        background-color: var(--fortune-yellow);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); /* 薄いシャドウ */
        text-align: center;
        font-family: sans-serif;
        position: relative;
    }
    .asterisk-feature span {
        position: absolute;
        top: 15px;
        width: 1.4px;
        height: 10px;
        background-color: var(--white); /* 黄色 */
        border-radius: 0.5px;
    }

    .asterisk-feature span:nth-child(1) {
        transform: rotate(0deg);
    }

    .asterisk-feature span:nth-child(2) {
        transform: rotate(60deg);
    }

    .asterisk-feature span:nth-child(3) {
        transform: rotate(-60deg);
    }

    .circle-text-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px; /* 要素が1つの場合は無視されるのでそのままでOK */
        margin-top: 15px;
    }

    .large-text-feature {
        color: var(--future-blue); /* 紫色 */
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.3;
    }
    .small-text-feature {
        color: var(--future-blue); /* 紫色 */
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1;
    }
    .note-text-feature {
        font-size: 1.2rem;
        color: var(--future-blue); /* 紫色 */
        margin-top: 3px;
    }
}


/**********************************************
 * 作業内容
 ***********************************************/
/* テキスト */
.detail__text {
	font-size: 2.0rem;
	font-weight: 400;
	line-height: 1.8; /* 36px */
	letter-spacing: 2px;
}
.detail__text + .detail__text {
	margin-top: 20px;
}

/* コンテンツ */
.example__container {
	display: flex;
	justify-content: center;
	gap: 100px;
	flex-wrap: wrap;
	padding-top: 60px;
}
@media (max-width: 767px) {
	.detail__text {
		font-size: 1.8rem;
		letter-spacing: 1.8px;
	}
	.example__container {
		gap: 60px; /* 要素間の余白 */
	}
}
/* 例示ボックス */
.example__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 360px;
}
@media (max-width: 767px) {
	.example__box {
		width: 320px;
	}
}
/* タスクの吹き出し */
.example__bubble {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fortune-yellow);
	color: var(--future-blue);
	border-radius: 10px;
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	width: 100px;
	padding: 10px 0;
	text-align: center;
	margin-bottom: 20px; /* 少し余白を調整 */
}
.example__bubble::after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	left: 33px;
	bottom: -15px;
	border-style: solid;
	border-width: 18px 15px 0 15px;
	border-color: var(--fortune-yellow) transparent transparent transparent;
}
/* 例示ヘディング */
.example__heading {
	font-size: 3.6rem;
	font-weight: 400;
	line-height: 1.35; /* 48.6px */
	letter-spacing: 3.6px;
	margin-bottom: 20px;
	color: var(--teracan-purple);
}
@media (max-width: 767px) {
	.example__heading {
		font-size: 2.8rem;
		letter-spacing: 2.8px;
		margin-bottom: 30px;
	}
}

/* サークル背景 */
.example__illust {
	width: 300px;
	height: 300px;
	background: rgba(233, 163, 174, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.example__illust img {
	width: 240px;
	height: auto;
}

@media (max-width: 767px) {
	.example__illust {
		width: 260px;
		height: 260px;
	}
	.example__illust img {
		width: 100%;
		height: auto;
		max-width: 210px;
	}
}


/**********************************************
 * スケジュール
 ***********************************************/
 /* 開所時間 */
 .open-hours {
	font-family: 'Roboto', sans-serif;
	color: var(--future-blue);
    font-weight: 500;
    font-size: 3.6rem;
	line-height: 1;
	margin-bottom: 60px;
}
@media (max-width: 767px) {
.open-hours {
	font-size: 2.8rem;
	letter-spacing: 1.4px;
}
}
 /* スケジュール */
 .schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 570px;
    height: 50px;
    border-radius: 30px;
    background: var(--white);
    margin: 0 auto;
}
.schedule-row + .schedule-row {
	margin-top: 30px;
}
.schedule-time {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1;
	width: 30%;
    color: var(--teracan-purple);
}
.schedule-text {
    text-align: left;
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.1px;
    flex: 1; /* ← 自動調整で収まりやすく */
}
  /* リード文（小）*/
  .schedule-info {
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 180%; /* 39.6px */
	letter-spacing: 1.1px;
	width: 570px;
	margin: 35px auto;
  }
@media (max-width: 767px) {
	.schedule-row {
		width: 100%;
		height: 50px;
		border-radius: 25px;
		background: var(--white);
	}
	.schedule-time {
		font-size: 1.6rem;
	}
	.schedule-text {
		font-size: 1.6rem;
		flex: 1;
	}
  	/* リード文（小）*/
  	.schedule-info {
		font-size: 1.6rem;
		line-height: 1; /* 39.6px */
		letter-spacing: 0.8px;
		width: 320px;
		margin: 35px auto;
  	}
 }
/**********************************************
* ご利用の流れ
***********************************************/
.flow-wrap {
	margin-top: 60px;
}
 .flow-item {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* 水平方向の中央揃え */
    text-align: center; /* テキストの中央揃え */
}
.flow-item + .flow-item {
	padding-top: 48px;
	margin-top: 30px;
}
.flow-item + .flow-item::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	content: '';
	background: url("/teracan/assets/images/illust/dash-line.svg") no-repeat center center;
	background-size: contain;
	width: 100%;
	height: 18px;
	margin: 0 auto;

}
.flow-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--teracan-purple);
    color: white;
    font-size: 3.6rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
    border-radius: 50%;
}
.flow-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-top: 15px; /* 円と見出しの間隔 */
	color: var(--teracan-purple);
	letter-spacing: 1.4px;
}
.flow-text {
    font-size: 1.8rem;
    margin-top: 15px; /* 見出しとテキストの間隔 */
	color: var(--black);
	line-height: 1.8;
	letter-spacing: 0.9px;
}
@media (max-width: 767px) {
	.flow-num {
		width: 40px;
		height: 40px;
		font-size: 2.6rem;
	}
	.flow-title {
		font-size: 2.2rem;
	}
	.flow-text {
		font-size: 1.6rem;
		line-height: 1.6;
		letter-spacing: 0.9px;
	}
}
/**********************************************
* 募集要項
***********************************************/
.recruit-title {
    width: fit-content; /* テキストの幅に合わせる */
    margin: 50px auto; /* 上下60px、左右中央揃え */
    color: var(--black);
    font-size: 2.4rem;
	font-weight: 500;
    line-height: 1;
    text-align: center;
    position: relative; /* 疑似要素の基準位置にする */
}
.recruit-title::after {
    content: "";
    display: block;
    width: 26px; /* 長方形の幅 */
    height: 6px; /* 長方形の高さ */
    background: #A897C4; /* 色を見出しと合わせる */
    margin: 0 auto; /* 左右中央 */
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* 完全に中央揃え */
    bottom: -25px; /* 20px 下に配置 */
}
@media (max-width: 767px) {
	.recruit-title {
		font-size: 2.2rem;
		margin: 50px auto; /* 上下60px、左右中央揃え */
	}	
}
 /**********************************************
 * 事業所
 ***********************************************/
.office_name {
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.4; /* 39.2px */
	letter-spacing: 1.4px;
	color: var(--black);
}
@media (max-width: 767px) {
	.office_name {
		font-size: 2.4rem;
		line-height: 1.4; /* 39.2px */
		letter-spacing: 1.2px;
	}
}
/**********************************************
* google map
***********************************************/
.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 28.65%; /* 550 / 1920 = 28.65% → アスペクト比維持 */
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 767px) {
    .map-container {
        width: calc(100% - 40px); 
        margin: 0 auto;
		padding-bottom: 90%;

    }
}
/**********************************************
* contact
***********************************************/
.contact-wrap {
    margin: 150px auto;
	padding-bottom: 70px;
    max-width: 640px;
    border-top: #A897C4 3px solid;
}
@media (max-width: 767px) {
    .contact-wrap {
        margin: 100px auto;
        width: 100%;
        max-width: 320px;
    }
}
/**********************************************
 * bg
 ***********************************************/
 .bg-color {
	padding-bottom: 270px;
    position: relative;
    z-index: 1; 
}
/* 半透明レイヤー */
.bg-color::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FDFAFB 0%, #F8F6F9 62.18%);
    z-index: -1; 
}
.bg-color-green {
	padding-bottom: 270px;
    position: relative;
    z-index: 1; 
}
/* 半透明レイヤー */
.bg-color-green::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FBFFF4 0.66%, #EFF8F5 50.61%, #EFF2F8 88.43%);
    z-index: -1; 
}
.bg-white {
	padding-bottom: 270px;
    background: var(--white); 
    position: relative;
    z-index: 1; 
}
#access {
	padding-bottom: 0;
    background: var(--white); 
    position: relative;
    z-index: 1; 
}
/* 背景切り替えライン */
.arch-left-divider,
.line-right-divider,
.arch-right-divider,
.line-left-divider,
.arch-left-divider-green {
    position: absolute;
    top: -150px;
    width: 100%;
    height: 200px;
    background-size: cover;
    z-index: -1; /* 一段階前面に */
}

.arch-left-divider-divider {
	background: url("/teracan/assets/images/bg/bg-arch-left.svg") no-repeat center/cover; 
}
.line-right-divider {
	background: url("/teracan/assets/images/bg/bg-line-right.svg") no-repeat center/cover; 
}
.arch-left-divider-green {
	background: url("/teracan/assets/images/bg/bg-arch-left-green.svg") no-repeat center/cover; 
}
.arch-right-divider {
	background: url("/teracan/assets/images/bg/bg-arch-right.svg") no-repeat center/cover; 
}
.line-left-divider {
	background: url("/teracan/assets/images/bg/bg-line-left.svg") no-repeat center/cover; 
}
@media (max-width: 767px) {
    .bg-color {
        padding: 20px 0 190px 0;
        position: relative;
        z-index: 1; 
    }
	.bg-color-green {
        padding: 20px 0 190px 0;
        position: relative;
        z-index: 1; 
    }
    .bg-white {
        padding: 30px 0 190px 0;
        background: var(--white); 
        position: relative;
        z-index: 1;
    }    
	.arch-left-divider,
	.line-right-divider,
	.arch-right-divider,
	.line-left-divider,
	.arch-left-divider-green {
    position: absolute;
    top: -42px;
    width: 100%;
    height: 42px; 
    background-size: cover;
    z-index: -1; /* 一段階前面に */
}
    .arch-left-divider {
        background: url("/teracan/assets/images/bg/bg-arch-left-sp.svg") no-repeat center/cover; 
    }    
    .line-right-divider {
        background: url("/teracan/assets/images/bg/bg-line-right-sp.svg") no-repeat center/cover; 
    }    
    .arch-right-divider {
        background: url("/teracan/assets/images/bg/bg-arch-right-sp.svg") no-repeat center / cover;
    }    
	.arch-left-divider-green {
        background: url("/teracan/assets/images/bg/bg-arch-left-green-sp.svg") no-repeat center / cover;
    }    
    .line-left-divider {
        background: url("/teracan/assets/images/bg/bg-line-left-sp.svg") no-repeat center / cover;
    }
}
/* アクセントイラスト共通 */
.section-accent {
    position: absolute;
    height: auto;
    max-width: none; /* 画像のサイズを固定しない */
	z-index: -1;
}
.accent-left-feature {
    left:40px; 
    top: -420px;
    width: 420px;
}
.accent-right-detail {
    right: 30px;
    top: -310px;
    width: 300px;
}
.accent-left-schedule {
    left: 30px;
    top: -435px;
    width: 350px;
}
.accent-right-flow {
    right: 80px;
    top: -380px;
    width: 450px;
}
.accent-left-points {
    left: 30px;
    top: -350px;
    width: 390px;
}
.accent-right-access {
    right:  30px;
    top: -350px;
    width: 390px;
}
@media (max-width: 767px) {
    .accent-left-feature {
        left: 20px;
        top: -150px;
        width: 160px;
    }
    .accent-right-detail {
        right: 20px;
        top: -140px;
        width: 150px;
    }
    .accent-left-schedule {
        left: 15px;
        top: -170px;
        width: 130px;
    }
    .accent-right-flow {
        right: 20px;
        top: -150px;
        width: 190px;
    }
    .accent-left-points {
        left: 30px;
        top: -140px;
        width: 170px;
    }
    .accent-right-access {
        right: 20px;
        top: -130px;
        width: 170px;
    }
}
</pre></body></html>