@charset "UTF-8";
 /* * {
	outline: 1px solid magenta;
}  */
.br-sp {
    display: none;
}
.br-pc {
    display: block;
}
@media screen and (max-width: 1024px) {
    .br-sp {
        display: block;
    }
    .br-pc {
        display: none;
    }
}

.pc {
	display: block!important;
}
.sp {
	display: none!important;
}
@media screen and (max-width: 1024px) {
    .pc {
        display: none!important;
    }
    .sp {
        display: block!important;
    }
}

.inquiry {
    position: fixed;
    top: 0;
    right: 0;
    background: #06c755;
    width: 160px;
    height: 160px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    text-decoration: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
  }
  .inquiry:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
    .inquiry-con img {
        width: 80px;
        height: auto;
    }
@media screen and (max-width: 1024px) {
    .inquiry {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 80px;
        border-radius: 0;
        flex-direction: row;
        gap: 10px;
        padding: 0 20px;
    }
    .inquiry-con img {
        width: 32px;
        height: auto;
    }
    .inquiry-txt {
        font-size: 20px;
    }
}
  
/* header */
.header {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    background-image: url("../img/header-bg.webp");
    background-size: cover;
}
.header-inner {
    max-width: 1050px;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    display: flex;
}
.header-detail {
    display: flex;
    flex-direction: column;
    justify-content: center; 
}
.logo {
    margin-bottom: 30px;
}

.header-tx-01 img {
  animation: scaleUp 2s ease-in-out infinite;
  }

@keyframes scaleUp {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(1.1) rotate(-5deg); 
  }
  100% {
    transform: scale(1) rotate(-5deg); 
  }
}
.header-tx-03 {
    margin-top: 10px;
}

@media screen and (max-width: 1024px) {
    .header {
        width: 100%;
        height: 500px;
        background-image: url("../img/header-bg-sp.webp");
        background-position: top right;
    }
    .header-inner {
        width: 90%;
        height: 500px;
    }
    .header-detail {
        width: 90%;
    }
}

section {
    width: 100%;
    padding: 80px 0;
}
.section-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 1024px) {
    section {
        padding: 40px 0;
    }
    .section-inner {
        width: 90%;
    }
}

/* title */
.title {
    font-size: 32px;
    font-weight: 700;
    color: #04478E;
    text-align: center;
    line-height: 1.5;
}
.title span {
    font-size: 40px;
}
@media screen and (max-width: 1024px) {
    .title {
        font-size: 22px;
    }
    .title span {
        font-size: 30px;
    }
}

/* cost */
.cost-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 30px auto;
}
.cost-img {
    flex-shrink: 0;
}
.cost-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.cost-list-card {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #FAFAFA;
    padding: 20px 30px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid #E6E6E6;
}
.cost-list-img {
    flex-shrink: 0;
}
.cost-list-title {
    font-size: 28px;
    font-weight: 600;
}
.cost-list-title span {
    font-size: 20px;
}
@media screen and (max-width: 1024px) {
    .cost-box {
        flex-direction: column;
        gap: 20px;
        margin: 30px auto;
    }
    .cost-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .cost-list-card {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px;
    }
    .cost-list-title {
        font-size: 24px;
        text-align: center;
        line-height: 1.2;
    }
    .cost-list-title span {
        font-size: 18px;
    }
    .cost-list-tx {
        margin-top: 10px;
    }
}

/* point */
.point {
    padding-top: 0;
}
.point-list {
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.point-list-card {
    width: 100%;
    max-width: 300px;
}
.point-list-img img {
    margin: 0 auto;
    display: block;
}
.point-list-number {
    font-size: 28px;
    color: #2ABFB3;
    font-family: "Jost", sans-serif;
    text-align: center;
}
.point-list-title {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}
.point-list-tx {
    margin-top: 10px;
}
@media screen and (max-width: 1024px) {
    .point-list {
        margin: 30px auto 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
    .point-list-card {
        max-width: 90%;
    }
    .point-list-img img {
        margin: 0 auto;
        display: block;
    }
}

/* smartphone */
.smartphone {
    background-image: url("../img/smartphone-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}
.smartphone-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}
.smartphone-title span {
    color: #FF4400;
}
.smartphone-title .big {
    font-size: 40px;
}
.smartphone-box {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto 0;    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.chart-container {
    position: relative;
    width: 80vw;
    max-width: 350px;
    aspect-ratio: 1 / 1;
}
svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.pie-bg {
    fill: none;
    stroke: transparent;
    stroke-width: 30;
}
.pie {
    fill: none;
    stroke: #ff4040;
    stroke-width: 50;
    stroke-linecap: butt;
    stroke-dasharray: 628;
    stroke-dashoffset: 628;
    transition: stroke-dashoffset 1.5s ease-out;
}
.percent-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.percent-text .big {
    font-size: 40px;
}
.percent-text .small {
    font-size: 24px;
}
@media screen and (max-width: 1024px) {
    .smartphone {
        padding: 50px 0;
    }
    .smartphone-title {
        font-size: 26px;
    }
    .smartphone-title .big {
        font-size: 38px;
    }
    .smartphone-box {
        flex-direction: column;
        margin: 30px auto 0;    
        gap: 30px;
    }
}

/* business */
.business-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 50px auto;
}
.business-img {
    flex-shrink: 0;
}
.business-meo {
    margin: 50px auto;
    width: 100%;
    max-width: 900px;    
}
.business-seo {
    margin: 50px auto 0;
    width: 100%;
    max-width: 900px;    
}
.business-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}
.business-headline-main {
    font-size: 110px;
    font-family: "Jost", sans-serif;
    font-weight: 300;
    background: linear-gradient(to right, #FF006F, #8800FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
}
.business-headline-title {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
}
.business-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
}
.business-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.business-card:nth-child(even) {
  flex-direction: row-reverse; 
}
.business-list-img {
    flex-shrink: 0;
}
.business-list-title {
    font-size: 32px;
    font-weight: 700;
    color: #04478E;
}
.business-list-sub {
    font-size: 22px;
    font-weight: 700;
}
.business-list-tx {
    margin-top: 20px;
}
@media screen and (max-width: 1024px) {
    .business-box {
        flex-direction: column-reverse;
        gap: 10px;
        margin: 10px auto;
    }
    .business-meo {
        margin: 30px auto;
    }
    .business-headline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .business-headline-main {
        font-size: 80px;
        line-height: 1;
    }
    .business-headline-title {
        font-size: 20px;
        text-align: center;
    }
    .business-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 0 auto;
    }
    .business-card {
        flex-direction: column;
        gap: 20px;
    }
    .business-card:nth-child(even) {
        flex-direction: column; 
    }
    .business-list-img {
        margin-top: 20px;
    }
    .business-list-title {
        text-align: center;
    }
    .business-list-sub {
        text-align: center;
        line-height: 1.3;
    }
    .business-list-tx {
        margin-top: 10px;
    }
} 

/* failure */
.failure {
    background: #2ABFB3;
}
.failure-title {
    font-size: 32px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
}
.failure-title span {
    font-size: 40px;
    color: #ff0;
}
.failure-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 80px auto 0;
    gap: 60px;
}
.failure-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}
.failure-number {
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90px;
    height: 90px;
    background: #FF4400;
    color: #fff;
    font-size: 20px;
    font-family: "Jost", sans-serif;
    font-weight: 300;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.failure-number .label {
    font-size: 20px;
    line-height: 20px;
}
.failure-number .number {
    font-size: 32px;
    line-height: 32px;
}
.failure-img {
    flex-shrink: 0;
}
.failure-tx span {
    font-weight: 700;
}
.triangle {
  height: 130px;
  width: 100%;
  background: #2ABFB3;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 1024px) {
    .failure-title {
        font-size: 24px;
    }
    .failure-title span {
        font-size: 36px;
        line-height: 1.1;
    }
    .failure-list {
        display: flex;
        flex-direction: column;
    }
    .failure-card {
        flex-direction: column;
        padding: 50px 20px 20px;
        justify-content: center;
        gap: 10px;
    }
    .triangle {
    height: 70px;
    }    
}

/* support */
.support {
    padding-top: 40px;
}
.support-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}
.support-img img {
    margin: 50px auto;
    text-align: center;
    display: block;
}
@media screen and (max-width: 1024px) {
    .support {
        padding-top: 20px;
    }
    .support-title {
        font-size: 26px;
    }
    .support-img img {
        margin: 20px auto;
    }
}

/* service */
.service {
    background: #FAFAFA;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    gap: 50px 0;
}
.service-item {
    width: 280px;
    text-align: center;
}
.service-icon img {
    margin: 0 auto;
    display: block;
}
.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
}
@media screen and (max-width: 1024px) {
    .service-grid {
        display: grid;
        grid-template-columns: repeat(2, 280px); 
        gap: 30px;
        justify-content: center; 
        margin: 50px auto;
    }
    .service-item {
        text-align: center;
    }
}
@media (max-width: 599px) {
    .service-grid {
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 50px;
    }
    .service-item {
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }  
}

/* ai */
.ai-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 50px auto;
}
.ai-img {
    flex-shrink: 0;
}
.ai-list {
    width: 100%;
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.ai-card {
    border-radius: 20px;
    padding: 50px;
    background: #FAFAFA;
    border: 1px solid #E6E6E6;
}
.ai-card-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.ai-card-type {
    font-size: 50px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    background: linear-gradient(to right, #FF006F, #8800FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
}
.ai-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}
.ai-card-detail {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-top: 30px;
}
.ai-card-img {
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .ai-box {
        flex-direction: column-reverse;
        gap: 20px;
        margin: 20px auto;
    }
    .ai-list {
        margin: 30px auto 0;
        gap: 30px;
    }
    .ai-card {
        padding: 20px;
    }
    .ai-card-headline {
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }
    .ai-card-type {
        font-size: 40px;
    }
    .ai-card-title {
        font-size: 22px;
        text-align: center;
    }
    .ai-card-detail {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }
}

/* chat */
.chat {
    padding-top: 0;
}
.chat-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 50px auto;
}
.chat-img {
    flex-shrink: 0;
}
.chat-sub {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
}
.chat-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 50px auto;
}
@media (max-width: 1024px) {
    .chat-box {
        flex-direction: column;
        gap: 20px;
        margin: 20px auto;
    }
    .chat-img img {
        width: 200px;
    }
    .chat-list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 30px auto;
        gap: 20px;
    }
}

/* line */
.line {
    background: #FAFAFA;    
}
.line-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 50px auto;
}
.line-img {
    flex-shrink: 0;
}
.line-list {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.line-card {
    width: 310px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E6E6E6;
}
.line-card-number {
    font-size: 32px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    background: linear-gradient(to right, #FF006F, #8800FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    line-height: 1;
}
.line-card-img img {
    margin: 0 auto;
    display: block;
}
.line-card-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.line-card-tx {
    margin-top: 5px;
}
@media (max-width: 1024px) {
    .line-box {
        flex-direction: column-reverse;
        gap: 20px;
        margin: 20px auto;
    }
    .line-img img {
        width: 200px;
    }
    .line-list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    .line-card {
        width: 100%;
        padding: 20px;
        background: #fff;
        border-radius: 20px;
        border: 1px solid #E6E6E6;
    }
}

/* result */
.result-img img {
    margin: 20px auto;
    display: block;
}
.result-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px;
    background: #FAFAFA;
    border-radius: 20px;
    margin: 50px auto;
    border: 1px solid #E6E6E6;
}
.result-card-img {
    flex-shrink: 0;
}
.result-card-number {
    font-size: 40px;
    line-height: 1;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    background: linear-gradient(to right, #FF006F, #8800FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.result-card-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}
.result-card-tx {
    margin-top: 10px;
}
@media (max-width: 1024px) {
    .result-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin: 20px auto;
    }
}

/* achievements */
.achievements {
    background: #FAFAFA;   
}
.achievements-list {
	width: 100%;
	height: auto;
	margin: 50px auto 0;
}
.achievements-list-item {
    width: 300px;
	text-align: left;
	display: inline-block;
	margin: 0 30px;
	padding: 0;
}
.achievements-list-name {
	font-size: 18px;
	margin-top: 10px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
}
.achievements-list-url {
    font-family: "Jost", sans-serif;
    font-weight: 400;
}
@media (max-width: 1024px) {
	.achievements-list {
		width: 100%;
		height: 300px;
		margin: 40px auto 0;
	}
	.achievements-list-item {
        width: 250px;
		text-align: left;
		display: inline-block;
		margin: 0 25px;
		padding: 0;	
	}
	.achievements-list-img img {
		width: 250px;
	}
	.achievements-list-name {
		font-size: 20px;
		margin-top: 10px;
	}
	.achievements-list-url {
		font-size: 16px;
	}
}

/* step */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px auto;
}
.step-card {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.step-card-img {
    flex-shrink: 0;
}
.step-card-headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.step-card-number {
    font-size: 40px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    background: linear-gradient(to right, #FF006F, #8800FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
}
.step-card-title {
    font-size: 28px;
    font-weight: 700;
}
@media (max-width: 1024px) {
    .step-list {
        gap: 50px;
        margin: 20px auto;
    }
    .step-card {
        flex-direction: column;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .step-card-img img {
        margin: 0 auto;
        display: block;
    }
    .step-card-headline {
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }
    .step-card-number {
        font-size: 30px;
        line-height: 1;
    }
    .step-card-title {
        font-size: 20px;
    }
}

/* faq */
.faq {
    background: #2ABFB3;
}
.faq-title {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}
.faq-accordion {
	width: 800px;
	border-radius: 10px;
	overflow: hidden;
	background-color: #fff;
	margin: 15px auto;
}
.faq-first {
	margin-top: 50px;
}
.faq-accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	cursor: pointer;
}
.faq-accordion-header .faq-question {
	display: flex;
	align-items: center;
	font-weight: normal;
    font-size: 18px;
}
.faq-accordion-header .faq-question .faq-q-icon {
	font-size: 30px;
    color: #2ABFB3;
	font-family: "Jost", sans-serif;
	font-weight: 300;  
	margin-right: 16px;
}
.faq-accordion-header .faq-toggle-icon {
	font-size: 24px;
	color: #000;
	transition: transform 0.3s ease;
	margin-left: 16px;
}
/* 展開時のアイコン回転 */
.faq-accordion-header.active .faq-toggle-icon {
	transform: rotate(45deg);
}
/* コンテンツ部分のスタイル */
.faq-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 30px;
	background-color: #FAFAFA;
}
.faq-accordion-content p {
	padding: 30px 0;
}
/* 展開時にコンテンツを表示 */
.faq-accordion-content.open {
	max-height: 300px; /* ここで高さを調整 */
}
@media (max-width: 1024px) {
    .faq-title {
        font-size: 30px;
    }    
	.faq-accordion {
		width: 90%;
	}
	.faq-first {
		margin-top: 40px;
	}
	.faq-accordion-header .faq-question {
		font-size: 18px;
	}
	.faq-accordion-header .faq-question .faq-q-icon {
		font-size: 30px;
	}
	.faq-accordion-header .faq-toggle-icon {
		font-size: 24px;
	}
	/* コンテンツ部分のスタイル */
	.faq-accordion-content {
		padding: 0 20px;
	}
	.faq-accordion-content p {
		padding: 20px 0;
	}
}

/* comparison */
.comparison-tb {
    width: 100%;
    max-width: 950px;
    margin: 50px auto 0;
    overflow-x: auto;
	font-size: 16px;
}
.comparison-tb table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
	table-layout: fixed; 
}
.comparison-tb th, 
.comparison-tb td 
{
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}
.comparison-tb td:first-child {
    background-color: #F5F5F5; 
}
.comparison-tb thead th {
    background-color: #F5F5F5;
}

.comparison-tb tbody td.highlight {
    background-color: #FFFEEE;
    font-weight: bold;
}
.comparison-tb thead .highlight {
    background-color: #FFEACC;
    font-weight: bold;
}
.comparison-tb tbody tr td {
    vertical-align: middle;
    font-size: 14px;
}
.comparison-tb .comparison-transparent-cell {
    background-color: transparent;
    border: none;
    color: transparent;
}
.comparison-scroll {
	text-align: center;
}
@media (max-width: 768px) {
    .comparison-tb {
        overflow-x: auto; /* 小さい画面のみ横スクロールを許可 */
    }
    .comparison-tb table {
        width: 950px; /* テーブルの固定幅を指定して横スクロールを発生させる */
    }
    /* フォントサイズやパディングを小さくして見やすく */
    .comparison-tb {
        font-size: 14px;
    }
    .comparison-tb th, 
    .comparison-tb td {
        padding: 10px;
    }
}

/* fee */
.fee {
    padding-top: 0;
}
.fee-list {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px auto;
}
.fee-card {
    background: #2ABFB3;
    padding: 30px;
    border-radius: 20px;
}
.fee-card-title {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.fee-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin: 30px auto;
 }
.fee-flex-item {
    background: #fff;
    width: 360px;
    border-radius: 20px;
    padding: 30px;
}
.fee-flex-img img {
    margin: 0 auto;
    display: block;
}
.fee-flex-title {
    font-size: 22px;
    color: #04478E;
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
}
.fee-flex-title span {
    background: #FF4400;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 0 10px;
    margin-left: 15px;
}
.fee-flex-price {
    color: #FF4400;
    text-align: center;
    font-weight: 700;
    line-height: 1;
}
.fee-flex-price span {
    font-family: "Roboto", sans-serif;
    font-size: 34px;
}
.fee-flex-tx {
    margin-top: 10px;
}
@media (max-width: 1024px) {
    .fee-list {
        width: 90%;
        flex-direction: column;
        gap: 30px;
        margin: 30px auto;
    }
    .fee-card {
        background: #2ABFB3;
        padding: 20px;
    }
    .fee-card-title {
        font-size: 24px;
    }
    .fee-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 20px auto;
    }
    .fee-flex-item {
        width: 90%;
        padding: 20px;
    }
}

/* footer */
.footer {
    text-align: center;
    padding: 80px 20px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.footer-links a {
    position: relative;
    margin: 0 10px;
s    text-decoration: none;
    transition: color 0.3s ease;
    overflow: visible;
  }
    .footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;              /* ← ここを下げると“落ちてくる”感が出る */
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: translateY(-200%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  }
    .footer-links a:hover::after {
    transform: translateY(0);
    opacity: 1;
  }
  @media screen and (max-width: 767px) {
    .footer {
        text-align: center;
        padding: 40px 10px 100px;
    }
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .footer-links a::after {
        display: none;
    }
  }

  /* animations */
.animation-title
{
	transition-duration:1.5s;
	opacity: 0;
	transform: translateY(1rem);
}
.animation-title.active
{
	opacity: 1.0;
	transform: translateY(0rem);
}
.animation-slide-right
{
	transition-duration:2.5s;
	opacity: 0;
	transform: translateX(4rem);
}
.animation-slide-right.active
{
	opacity: 1.0;
	transform: translateX(0rem);
}
.animation-fadein
{
	transition-duration:1.5s;
	opacity: 0;
	transform: translateY(4rem);
}
.animation-fadein.active
{
	opacity: 1.0;
	transform: translateY(0rem);
}

.line-card,
.chat-list-item,
.point-list-card,
.failure-card,
.service-item,
.step-card
{
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.line-card.in-view,
.chat-list-item.in-view,
.point-list-card.in-view,
.failure-card.in-view,
.service-item.in-view,
.step-card.in-view
{
  opacity: 1;
  transform: translateY(0);
}


/*container*/
.container {
	width: 100%;
	z-index: 1;
	position: relative;
	margin: 0 auto;
}

/*page*/
.page {
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	max-width: 800px;
	margin: 50px auto;
}
.page_box {
	margin-top: 80px;
}
.page_box h2 {
    font-size: 18px;
    padding-left: 16px;
    font-weight: bold;
    position: relative; 
}
.page_box h2::before,
.page_box h2::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    background: #04478E;
}
.page_box h2::before {
    left: 0;
    width: 4px;
}
.page_box h2::after {
    left: 6px;
    width: 2px; 
}
.page_tx {
	margin-top: 10px;
	margin-bottom: 30px;
	font-size: 16px;
}

@media screen and (max-width: 480px) {
	.page {
		max-width: 90%;
		margin: 20px auto;
	}
	.page_box {
		margin-top: 50px;
	}
	.page_tx {
		margin-top: 10px;
		margin-bottom: 30px;
		font-size: 14px;
	}
}

/*tokuteisho*/
.tokuteisho{
	padding: 0;
}

.tokuteisho table {
	width: 90%;
	margin: 0 auto;
	border-collapse: collapse;
	color: #000;
	font-size: 14px;
}

.tokuteisho table td,
.tokuteisho table th {
	padding: 16px!important;
	border: 1px solid #000;
}

.tokuteisho table th {
	width: 35%;
	font-weight: normal;
	vertical-align: middle;
}

.tokuteisho table td {
	width: 65%;		
	font-weight: normal;
	text-align: left;
}	

@media screen and (max-width: 480px) {
	.tokuteisho{
		padding: 0;
	}

	.tokuteisho table {
		width: 100%;
		margin: 0 auto;
		border-collapse: collapse;
		color: #000;
		font-size: 14px;
	}

	.tokuteisho table td,
	.tokuteisho table th {
		padding: 10px!important;
		border: 1px solid #000;
	}

	.tokuteisho table th {
		width: 30%;
		font-weight: normal;
	}

	.tokuteisho table td {
		width: 70%;		
		font-weight: normal;
		text-align: left;
	}	
}	