@charset "utf-8";


/* -----------------------------
    intro-area
-------------------------------- */
.intro-area {
    padding: 100px 0;
    display: flex;
    width: 100%;
}

.intro-area .img-wrap {
    width: 35%;
    margin-left: 5%;
    border-radius: 20px;
}

.intro-area .txt-wrap {
    width: 60%;
    padding: 0 calc( ( 100% - 1200px ) / 2 ) 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    container-type: inline-size;
}

.intro-area .sec-catch {
    font-weight: bold;
    letter-spacing: .2rem;
    font-size: 4.6cqw;
}

.intro-area .sec-catch .green {
    /*font-size: 7cqw;
    font-weight: 700;*/
}

.intro-area .sec-catch .min {
    font-size: 3.6cqw;
}

@media screen and (max-width: 768px){
	.intro-area {
        padding: 40px 20px;
        flex-wrap: wrap;
    }
    
    .intro-area .img-wrap {
        width: 100%;
        margin-left: 0;
        border-radius: 15px;
        height: 50vw;
    }
    
    .intro-area .txt-wrap {
        width: 100%;
        padding: 20px 0 0;
    }
    
    .intro-area .sec-catch {
        letter-spacing: .1rem;
        font-size: min(6cqw,3.6rem);
    }
    
    .intro-area .sec-catch .min {
        font-size: 5cqw;
    }
    
    .intro-area .sec-catch .gradation {
        font-size: min(7.6cqw,4.8rem);
    }
}


/* -----------------------------
	campaign modal
-------------------------------- */
#pack .modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999;
}
#pack .modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100vw;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#pack .modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
	max-width: 1200px;
	max-height: 60%;
	overflow-y: scroll;
}
@media screen and (max-width: 768px){
	#pack .modal__content{
		width: 90%;
		max-height: 80%;
		padding: 30px 15px;
	}
}

/* -----------------------------------------------------------
    詳細（　title-box　）
-------------------------------------------------------------- */
.title-box .title-box-elements {
	align-items: center;
	display: flex;
	gap: 15px;
}

.title-box {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.title-box .date {
	color: #333;
	flex-shrink: 0;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
}

.title-box .cate-wrap {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.title-box .cate {
	align-items: center;
	border: 1px solid var(--green);
	display: flex;
	flex-shrink: 0;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	color: var(--green);
	padding: 6px 14px;
	white-space: nowrap;
    border-radius: 5px;
}

.title-box .title {
	border-bottom: var(--green) solid 4px;
	font-size: 3.5rem;
	letter-spacing: .05em;
	line-height: 1.4;
	font-weight: bold;
	padding: 0 0 10px;
	margin: 20px 0;
	width: 100%;

}

@media screen and (max-width: 768px) {
	
	.title-box {
		margin: 0 0 40px;
	}
	
	.title-box .title {
		font-size: 2.4rem;
		padding: 0 0 10px;
		margin: 20px 0 20px;
		line-height: 1.3;
	}
	
	.title-box .date {
		margin: 0;
		width: auto;
		font-size: 1.5rem;
	}
	
	.title-box .cate {
		font-size: 1.5rem;
	}

}

/* -----------------------------------------------------------
    詳細（　detail-contents　）
-------------------------------------------------------------- */
.news-detail-area {
	margin: 70px 0 0;
	width: 100%;
}

.detail-contents {
	line-height: 1.8;
	padding: 20px 0 50px !important;
}

/* pタグ */
.detail-contents p {
	margin-bottom: 1.5em;
	font-size: 1.6rem;
	letter-spacing: .2rem;
}

.detail-contents p + p {
	margin-top: 20px;
}

.detail-contents p:last-child {
	margin: 0;
}

/* 見出し系 */
.detail-contents h1, .detail-contents h2, .detail-contents h3, .detail-contents h4 {
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: .3rem;
}

.detail-contents h1 {
	background: #333;
	color: #fff;
	font-size: 2.6rem;
	margin: 0 0 20px;
	padding: 10px 20px;
}

.detail-contents h2 {
	border-bottom: 1px #ddd solid;
	font-size: 2.4rem;
	margin: 45px 0 30px 0;
	padding: 0 0 10px;
	position: relative;
}

.detail-contents h2::before {
	background: var(--green);
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 70px;
	height: 1px;
}

.detail-contents h3 {
	margin: 45px 0 30px;
	padding: 0 5px 10px;
	font-size: 2.2rem;
	border-bottom: dotted 1px var(--green);
}

.detail-contents h4 {
	font-size: 2rem;
	margin: 35px 0 20px 0;
	padding: 0 0 0 16px;
	position: relative;
}

.detail-contents h4::before {
	background: var(--green);
	content: "";
	display: block;
	height: calc(100% - 10px);
	left: 0;
	position: absolute;
	top: 6px;
	width: 4px;
}

.detail-contents img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 790px;
}

.detail-contents a:link {
	color: red;
	display: inline-block;
}

.detail-contents a {
	color: #aaa!important;
	text-decoration: underline;
}

.detail-contents a:hover {
	text-decoration: none;
}

.detail-contents a:focus {
	outline: none;
}

@media screen and (max-width: 768px) {
	
	.news-detail-area {
		margin: 0;
	}
	
	.detail-contents {
		padding: 0 0 30px !important;
	}
	
	.detail-contents h1 {
		font-size: 2.2rem;
		margin: 0 0 20px;
		padding: 10px 15px;
	}
	
	.detail-contents h2 {
		margin: 30px 0 20px 0;
		padding: 0 0 8px;
		font-size: 2rem;
	}
	
	.detail-contents h3 {
		margin: 15px 0 25px 0;
		padding: 10px 3px;
		font-size: 1.8rem;
	}
	
	.detail-contents h4 {
		margin: 25px 0 15px 0;
		padding: 0 0 0 15px;
		font-size: 1.7rem;
	}
	
	.detail-contents h4::before {
		top: 3px;
		height: calc(100% - 5px);
	}
	
	.detail-contents img {
		float: none;
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
		text-align: center;
		height: auto;
		display: block;
	}
	
}

/* -----------------------------
	詳細ページタグ
-------------------------------- */
.tag-box {
	border-top: 1px #ddd solid;
	border-bottom: 1px #ddd solid;
	margin: 0 0 50px 0;
	padding: 20px 0;
	display: flex;
	width: 100%;
	align-items: center;
}

.tag-box .tag-title {
	float: left;
	font-size: 1.4rem;
	padding: 1px 0 0 0;
	width: 80px;
}

.tag-box .tag-list {
	overflow: hidden;
}

.tag-box ul {
	width: 710px;
}

.tag-box ul li {
	float: left;
	line-height: 1.2;
	margin: 0 10px 0 0;
	text-align: center;
}

.tag-box ul li a {
	background: #fff;
	border: #ddd solid 1px;
	color: #0f0f0f;
	display: block;
	font-size: 1.4rem;
	padding: 8px 20px 8px;
	border-radius: 30px;
}

.tag-box ul li a:hover {
	background: #333;
	border-color: #333;
	color: #fff;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	
	.tag-box {
		margin: 0 0 20px 0;
		flex-wrap: wrap;
		gap: 10px 0;
		padding: 15px 0;
	}
	
	.tag-box .tag-title {
		padding: 0;
		width: 100%;
		font-size: 1.3rem;
	}
	
	.tag-box ul {
		width: auto;
	}
	
	.tag-box ul li {
		margin: 0 8px 8px 0;
	}
	
	.tag-box ul li a {
		padding: 8px 18px;
	}
	
}

/* -----------------------------
	reccomend-area
-------------------------------- */
.reccomend-area {
    padding: 100px 0;
    position: relative;
}

/*.reccomend-area::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 80px solid transparent;
    border-left: 80px solid transparent;
    border-top: 60px solid #fff;
    border-bottom: 0;
}*/

.reccomend-area .inner {
    /*min-width: 1200px;
    width: 80%;
    max-width: 1400px;*/
}

.reccomend-area .sec-catch {
    text-align: center;
    font-size: 3.2rem;
}

.reccomend-area .sec-catch .accent {
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    line-height: 1.5;
    background: var(--green);
    margin-right: 10px;
    font-size: 4.2rem;
}

.reccomend-area .reccomend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin: 40px 0 0;
}

/*.reccomend-area .reccomend-list.col4 li {
    width: calc( ( 100% - 90px ) / 4 );
}*/

.reccomend-area .reccomend-list li {
    text-align: center;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    position: relative;
    width: calc( ( 100% - 60px ) / 4 );
    background: #f6f6f6;
    padding: 20px;
    border-radius: 10px;
}

.reccomend-area .reccomend-list li .list-txt {
    font-size: 1.6rem;
    margin: 15px 0 0;
    font-weight: bold;
}

.reccomend-area .reccomend-list img {
    width: 50px;
}

/*.reccomend-area .reccomend-list .bg01 {
    background: url("../img/fukidashi01-gray.svg") no-repeat center/ 100% 100%;
    aspect-ratio: 272 / 219;
    margin-top: -150px;
}

.reccomend-area .reccomend-list .bg02 {
    background: url("../img/fukidashi02-gray.svg") no-repeat center/ 80% 100%;
    aspect-ratio: 270 / 211;
}

.reccomend-area .reccomend-list .bg03 {
    background: url("../img/fukidashi03-gray.svg") no-repeat center/ 100% 100%;
    aspect-ratio: 324 / 204;
}

.reccomend-area .reccomend-list .bg04 {
    background: url("../img/fukidashi04-gray.svg") no-repeat center/ 100% 100%;
    aspect-ratio: 305 / 240;
    margin-top: -150px;
}*/

/*人間*/
/*.reccomend-area .reccomend-list li::before {
    content: "";
    display: inline-block;
    position: absolute;
    height: initial;
}

.reccomend-area .reccomend-list .bg01::before {
    background: url("../img/mobing-comment-deco-img01.png") center/cover, no-repeat;
    width: 46px;
    aspect-ratio: 46 / 105;
    bottom: 100px;
    right: -10px;
}

.reccomend-area .reccomend-list .bg02::before {
    background: url("../img/mobing-comment-deco-img04.png") center/cover, no-repeat;
    width: 36px;
    aspect-ratio: 36 / 120;
    bottom: 20px;
    right: 50px;
}

.reccomend-area .reccomend-list .bg03::before {
    background: url("../img/ill-single.png") center/cover, no-repeat;
    width: 50px;
    aspect-ratio: 67 / 133;
    top: -20px;
    right: 10px;
}

.reccomend-area .reccomend-list .bg04::before {
    background: url("../img/ill-office-man01.png") center/cover, no-repeat;
    width: 60px;
    aspect-ratio: 67 / 133;
    bottom: 60px;
    right: -10px;
}*/


@media screen and (max-width: 768px){
	.reccomend-area {
        padding: 20px 0 40px;
    }
    
    .reccomend-area .inner {
        min-width: 100%;
        width: 100%;
        max-width: initial;
    }
    
    .reccomend-area .sec-catch {
        text-align: center;
        font-size: min(6.4cqw,3.2rem);
    }
    
    .reccomend-area .sec-catch .accent {
        margin-right: 0;
        font-size: 2.4rem;
    }
    
    .reccomend-area .reccomend-list {
        gap: 10px;
        margin: 20px 0 0;
    }
    
    .reccomend-area .reccomend-list.col4 li {
        width: 100%;
        display: flex;
        gap: 20px;
        align-items: center;
    }
    
    .reccomend-area .reccomend-list li .list-txt {
        font-size: 1.6rem;
        margin: 0;
        text-align: left;
    }
    
    .reccomend-area .reccomend-list img {
        margin: 0;
    }
}

/* -----------------------------
	merit-area
-------------------------------- */
.merit-area {
    padding: 80px 0;
    background: #f6f6f6;
}

/*.merit-area .sec-ttl {
    text-align: center;
}*/

.merit-area .merit-block {
    margin: 100px auto 0;
    display: flex;
    gap: 3%;
    width: 80%;
    max-width: 1600px;
    min-width: 1200px;
}

.merit-area .merit-box {
    width: calc( ( 100% - 3% ) / 2 );
    /*display: flex;
    flex-wrap: wrap;*/
    position: relative;
    z-index: 1;
}

.merit-area .merit-box::before {
    content: "";
    display: block;
    position: absolute;
    top: 150px;
    height: calc( 100% - 150px );
    width: 100%;
    background: #fff;
    z-index: -1;
    border-radius: 20px;
}

.merit-area .merit-box .img-wrap {
    border-radius: 20px;
    width: 84%;
    margin: 0 auto;
    position: relative;
}

.merit-area .merit-box .merit-num {
    position: absolute;
    font-size: 2.0rem;
    font-weight: 500;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    line-height: 1;
    text-align: center;
}

.merit-area .merit-box .merit-num .num {
    font-size: 6.0rem;
}

.merit-area .merit-box .txt-wrap {
    /*background: #fff;*/
    padding: 40px 8% 8%;
    /*display: flex;
    flex-wrap: wrap;*/
}

.merit-area .merit-box .merit-catch {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 0 30px;
    text-align: center;
}

@media screen and (max-width: 768px){
	.merit-area {
        padding: 40px 0;
    }
    
    .merit-area .merit-block {
        margin: 0;
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    
    .merit-area .merit-box {
        width: 100%;
    }
    
    .merit-area .merit-box::before {
        top: 20vw;
        height: calc( 100% - 20vw );
        border-radius: 10px;
    }
    
    .merit-area .merit-box .img-wrap {
        border-radius: 10px;
        width: 90%;
        height: 40vw;
    }
    
    .merit-area .merit-box .txt-wrap {
        padding: 30px 5%;
    }
    
    .merit-area .merit-box .merit-catch {
        font-size: min(6.5cqw,3.0rem);
        margin: 0 0 20px;
    }
    
    .merit-area .merit-box .merit-num {
        font-size: 1.8rem;
    }
    
    .merit-area .merit-box .merit-num .num {
        font-size: 5.0rem;
    }
}

/* -----------------------------
	pack-plan-area
-------------------------------- */
.pack-plan-area {
    padding: 80px 0;
}

.pack-plan-area .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.pack-plan-area .sec-ttl {
    width: 100%;
}

.pack-plan-area .pack-plan-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    position: relative;
    padding: 40px;
    border: 1px solid #ccc;
    border-radius: 20px;
    width: calc( ( 100% - 40px ) / 2 );
}

.pack-plan-area .pack-plan-ttl {
    font-size: 3.6rem;
    font-weight: bold;
    letter-spacing: .3rem;
    margin: 0 0 20px;
    line-height: 1.8;
    text-align: center;
    width: 100%;
}

.pack-plan-area .pack-plan-ttl .en {
    color: var(--green);
    font-size: 1.6rem;
    font-weight: 500;
}

.pack-plan-area .pack-plan-sub {
    font-size: 1.8rem;
    background: var(--green);
    color: #fff;
    font-weight: 500;
    padding: 10px 20px!important;
    border-radius: 40px;
    position: absolute;
    display: inline-block;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding-left: calc( ( 100% - 1200px ) / 2 );
    margin-bottom: 20px;
}

/*.pack-plan-area .pack-plan-sub::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: initial;
    aspect-ratio: 379/14;
    background: url("../img/fukidashi-under.svg") center/cover,no-repeat;
}*/

.pack-plan-area .pack-plan-block .ill-wrap {
    margin: 0 auto 20px;
}

.pack-plan-area .pack-plan-block .ill-wrap img {
    height: 150px;
	object-fit: contain;
}

.pack-plan-area .service-wrap {
   /* width: 1200px;*/
    /*margin: 60px 0 0;*/
}

.pack-plan-area .service-ttl {
    font-size: 2.0rem;
    font-weight: bold;
    position: relative;
    /*padding-left: 45px;*/
    margin: 20px 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    color: var(--green);
}

.pack-plan-area .service-ttl::after {
    content: "";
    display: inline-block;
    height: 1px;
    background: var(--green);
    flex-grow: 1;
    margin-left: 15px;
}

/*.pack-plan-area .service-ttl::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: initial;
    background: url("../img/logo-mark.svg") center/cover, no-repeat;
    aspect-ratio: 36 / 41;
}*/

.pack-plan-area .icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pack-plan-area .icon-list li {
    width: calc( ( 100% - 10px) / 2 );
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.pack-plan-area .icon-list li .icon-wrap img {
    width: 30px;
    text-align: center;
}

.pack-plan-area .icon-list li .list-txt {
    width: calc( 100% - 75px );
}


@media screen and (min-width: 769px) and (max-width: 1600px) {
	.pack-plan-area .pack-plan-block .bg-wrap {
        min-height: 500px;
    }
}

@media screen and (max-width: 768px){
	.pack-plan-area {
        padding: 40px 0 0;
    }
    
    .pack-plan-area .inner {
        gap: 20px;
    }
    
    .pack-plan-area .pack-plan-block {
        width: 100%;
        padding: 20px;
    }
    
    .pack-plan-area .pack-plan-block::before {
        top: 25vw;
        left: 0;
        width: 100%;
        min-width: initial;
        height: calc( 100% - 25vw );
        border-radius: 0;
    }

    .pack-plan-area .pack-plan-block .txt-wrap {
        width: 100%;
        padding: 0 20px;
        order:2;
    }
    
    .pack-plan-area .pack-plan-block .bg-wrap {
        width: calc( 100% - 20px );
        border-radius: 15px 0 0 15px;
        order: 1;
        height: 50vw;
        margin: 0 0 20px auto;
    }
    
    .pack-plan-area .pack-plan-ttl {
        font-size: 3.0rem;
        letter-spacing: .1rem;
        margin: 0 0 20px;
    }
    
    .pack-plan-area .pack-plan-ttl .en {
        font-size: 1.5rem;
    }
    
    .pack-plan-area .pack-plan-sub {
        font-size: 1.4rem;
        padding: 0 0 20px;
        position: relative;
        top: initial;
        padding-left: 0;
        letter-spacing: 0;
        font-weight: bold;
        margin-top: -20px;
        border-radius: 15px 15px 0 0;
    }
    
    .pack-plan-area .service-wrap {
        width: 100%;
        order: 3;
        /*padding: 0 20px;*/
        margin: 20px 0 0;
    }
    
    .pack-plan-area .service-ttl {
        font-size: 1.8rem;
        /*padding-left: 32px;*/
        margin: 0 0 20px;
    }
    
    .pack-plan-area .service-ttl::before {
        width: 24px;
        top: 3px;
    }
    
    .pack-plan-area .icon-list li {
        width: 100%;
        padding: 15px;
        border-radius: 8px;
        text-align: left;
    }
    
    .pack-plan-area .icon-list li .icon-wrap img {
        width: 40px;
        margin: 0;
    }
}

/* -----------------------------
	feature-area
-------------------------------- */
.feature-area {
    padding-top: 0!important;
}

.feature-area .intro-block {
    background: #f6f6f6;
    position: relative;
}

.feature-area .intro-block::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 80px solid transparent;
    border-left: 80px solid transparent;
    border-top: 60px solid #f6f6f6;
    border-bottom: 0;
}

.feature-area .intro-block .inner {
    display: flex;
    /*padding: 50px 0 0;*/
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.feature-area .intro-block .txt-wrap {
    width: 55%;
    padding-left: calc( ( 100% - 1200px ) / 2 );
}

.feature-area .intro-block .feature-catch {
    font-size: 3.0rem;
    /*color: #fff;*/
    font-weight: bold;
    letter-spacing: .2rem;
    /*padding-bottom: 60px;*/
    line-height: 2.4;
    /*padding: 30px 0;*/
}

.feature-area .intro-block .feature-catch .min {
    font-size: 2.4rem;
    background: var(--green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 40px;
}

.feature-area .intro-block .feature-catch .txt-bg {
    background: #fff;
    color: var(--green);
    padding: 5px 10px;
    margin-right: 10px;
    font-size: 5.0rem;
    line-height: 1;
}

.feature-area .intro-block .feature-catch .txt-bg img {
    margin-bottom: 10px;
}

.feature-area .intro-block .ill-wrap {
    width: 35%;
}

.feature-area .intro-block .ill-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-area .intro-block .bg-wrap {
    width: 45%;
    height: 25vw;
    min-height: 400px;
    position: relative;
}

.feature-area .intro-block .bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*object-position: top;*/
}

.feature-area .feature-block {
    padding: 100px 0;
    /*background: #f8f8f8;*/
}

.feature-area .feature-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*justify-content: center;*/
    gap: 0 5%;
}

.feature-area .feature-box + .feature-box {
    margin-top: 80px;
}

.feature-area .feature-box .sec-wrap {
    /*text-align: center;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*margin: 0 0 40px;*/
}


.feature-area .feature-box .reason-num {
    font-size: 1.8rem;
    color: var(--green);
    font-weight: bold;
    position: relative;
}

/*.feature-area .feature-box .reason-num::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    background: var(--green);
    transform: rotate(-30deg);
}

.feature-area .feature-box .reason-num::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background: var(--green);
    transform: rotate(30deg);
}*/

/*.feature-area .feature-box .reason-num::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: url("../img/fukidashi-under02.svg") center/cover, no-repeat;
    width: 150%;
    height: initial;
    aspect-ratio: 300 / 25;
}*/

.feature-area .feature-box .reason-num .large-txt {
    font-size: 2.8rem;
}

.feature-area .feature-box .catch {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.7;
    margin: 10px auto 30px;
    position: relative;
    display: inline-block;
    /*text-align: center;*/
}

/*.feature-area .feature-box .catch::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: -50px;
    width: 1px;
    height: 100%;
    background: var(--base);
    transform: rotate(-30deg);
}

.feature-area .feature-box .catch::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: -50px;
    width: 1px;
    height: 100%;
    background: var(--base);
    transform: rotate(30deg);
}*/

.feature-area .feature-box .catch .gradation {
    font-size: 120%;
}

.feature-area .feature-box .catch .gradation.large {
    font-size: 6.0rem;
    line-height: 1;
}

.feature-area .feature-box .catch .min {
    font-size: 2.4rem;
}

.feature-area .feature-box .icon-box {
    background: #fff;
    padding: 60px;
    position: relative;
    margin: 30px 0 0;
    border-radius: 30px;
    width: 100%;
}

.feature-area .feature-box .fukidashi {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--green);
    padding: 10px 30px;
    font-size: 2.0rem;
    font-weight: bold;
    color: #fff;
    border-radius: 40px;
}

.feature-area .feature-box .icon-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.feature-area .feature-box .icon-list li {
    text-align: center;
}

.feature-area .feature-box .icon-list img {
    width: 60px;
    height: 60px;
}

.feature-area .feature-box .icon-list .basic-txt {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 15px 0 0;
}

.feature-area .feature-box .icon-list .min {
    font-size: 1.2rem;
}


.feature-area .feature-box .icon-list + .kome {
    margin-top: 50px;
}

.feature-area .feature-box .txt-wrap {
    width: 55%;
}

.feature-area .feature-box .img-wrap {
    width: 40%;
    border-radius: 30px;
}

.feature-area .feature-box .cmn-option-wrap {
    margin: 0;
}

.feature-area .feature-box .cmn-option-wrap.service {
    margin-top: 40px;
}

.feature-area .feature-box .point-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
    width: 100%;
}

.feature-area .feature-box .point-list li {
    width: calc( ( 100%  - 40px ) / 5 );
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.feature-area .feature-box .point-list img {
    width: 50px;
    height: 50px;
}

.feature-area .feature-box .point-list .list-txt {
    line-height: 1.5;
    font-size: 1.5rem;
    margin: 20px 0 0;
}

.feature-area .feature-box .bought-items {
    margin: 60px 0 0;
    width: 100%;
}

.feature-area .feature-box .bought-items .s-ttl {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 0 30px;
}

.feature-area .feature-box .bought-items .icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.feature-area .feature-box .bought-items .icon-list li {
    width: calc( ( 100% - 60px ) / 7 );
    background: #f6f6f6;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.feature-area .feature-box .bought-items .icon-list img {
    width: 60px;
}

.feature-area .feature-box .bought-items .icon-list .basic-txt {
    font-size: 1.5rem;
    margin-top: 15px;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (max-width: 768px){
    .feature-area .intro-block::before {
        bottom: -30px;
        border-right: 40px solid transparent;
        border-left: 40px solid transparent;
        border-top: 30px solid #f6f6f6;

    }
    
	.feature-area .intro-block .inner {
        padding: 30px 10px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .feature-area .intro-block .txt-wrap {
        width: 100%;
        text-align: center;
    }
    
    .feature-area .intro-block .ill-wrap {
        width: 40vw;
    }
    
    .feature-area .intro-block .feature-catch {
        font-size: min(5.5cqw,3.4rem);
        letter-spacing: .1rem;
        padding-bottom: 0;
    }
    
    .feature-area .intro-block .feature-catch .min {
        font-size: 1.6rem;
    }
    
    .feature-area .intro-block .feature-catch .txt-bg {
        padding: 5px 10px;
        margin-right: 0;
        font-size: min(5.8cqw,3.4rem);
        letter-spacing: 0;
        width: 100%;
        display: block;
    }
    
    .feature-area .intro-block .feature-catch .txt-bg img {
        width: 100%;
        margin: 0;
    }
    
    .feature-area .intro-block .bg-wrap {
        width: 100%;
        height: 50vw;
        min-height: initial;
        margin: 0 0 20px;
    }
    
    .feature-area .feature-block {
        padding: 40px 0;
    }
    
    .feature-area .feature-box {
        gap: 0;
    }
    
    .feature-area .feature-box + .feature-box {
        margin-top: 40px;
    }
    
    .feature-area .feature-box .sec-wrap {
        margin: 0 0 20px;
    }
    
    .feature-area .feature-box .reason-num {
        font-size: 1.5rem;
    }
    
    .feature-area .feature-box .reason-num .large-txt {
        font-size: 2.4rem;
    }
    
    .feature-area .feature-box .reason-num::after {
        bottom: -15px;
        width: 130%;
    }
    
    .feature-area .feature-box .catch {
        font-size: min(6cqw,4.0rem);
        letter-spacing: 0;
        font-feature-settings: "palt";
        margin: 10px auto 0;
    }
    
    .feature-area .feature-box .catch::before {
        left: -15px;
        height: 30px;
        transform: rotate(-20deg);
        display: none;
    }
    
    .feature-area .feature-box .catch::after {
        right: -15px;
        height: 30px;
        transform: rotate(20deg);
        display: none;
    }
    
    .feature-area .feature-box .catch .gradation {
        font-size: 100%;
    }
    
    .feature-area .feature-box .catch .gradation.large {
        font-size: min(12cqw,5.0rem);
        line-height: 1;
    }
    
    .feature-area .feature-box .catch .min {
        font-size: min(4.0cqw,2.6rem);
    }
    
    .feature-area .feature-box .icon-box {
        padding: 50px 20px 20px;
        position: relative;
        border-radius: 20px;
    }
    
    .feature-area .feature-box .fukidashi {
        top: -25px;
        padding: 8px 25px;
        font-size: 1.7rem;
        letter-spacing: 0;
        font-feature-settings: "palt";
    }
    
    .feature-area .feature-box .icon-list {
        gap: 40px 10px;
        justify-content: flex-start;
    }
    
    .feature-area .feature-box .icon-list li {
        width: calc( ( 100% - 10px ) / 2 );
    }
    
    /*3カラム*/
    .feature-area .feature-box .icon-list.sp-col3 {
        gap: 30px 10px;
    }
    
    .feature-area .feature-box .icon-list.sp-col3 li {
        width: calc( ( 100% - 20px ) / 3 );
    }
    
    .feature-area .feature-box .icon-list img {
        width: 40px;
        height: 40px;
    }
    
    .feature-area .feature-box .icon-list .basic-txt {
        margin: 10px 0 0;
    }
    
    .feature-area .feature-box .img-wrap {
        width: 100%;
        border-radius: 20px;
        height: 50vw;
        margin: 0 0 20px;
    }
    
    .feature-area .feature-box .txt-wrap {
        width: 100%;
    }
    
    .feature-area .feature-box .point-list {
        margin: 20px 0;
    }
    
    .feature-area .feature-box .point-list li {
        width: 100%;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        border-radius: 8px;
    }
    
    .feature-area .feature-box .point-list img {
        width: 40px;
        height: 40px;
    }
    
    .feature-area .feature-box .point-list .list-txt {
        margin: 0;
        text-align: left;
        width: calc( 100% - 60px );
    }
    
    .feature-area .feature-box .bought-items {
        margin: 30px 0 0;
        order: 6;
    }
    
    .feature-area .feature-box .bought-items .s-ttl {
        font-size: 2.0rem;
        margin: 0 0 20px;
        text-align: center;
        transform: skewX(-10deg);
    }
    
    .feature-area .feature-box .bought-items .icon-list img {
        margin: 0;
        width: 40px;
    }
    
    .feature-area .feature-box .bought-items .icon-list li {
        width: calc( ( 100% - 20px ) / 3 );
        padding: 15px 10px;
        border-radius: 5px;
    }
    
    .feature-area .feature-box .bought-items .icon-list .basic-txt {
        margin-top: 10px;
        line-height: 1.3;
    }
    
    .feature-area .feature-box .cmn-option-wrap.service {
        margin-top: 20px;
    }
}


/* -----------------------------
	pack-reason-area
-------------------------------- */
.pack-reason-area {
    /*padding: 0 0 120px;*/
    padding: 120px 0;
    /*background: var(--green);*/
}

.pack-reason-area .pack-reason-mv {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background-image: url("../img/pack-reason-mv.jpg");
    padding: 300px 0;
}

.pack-reason-area .pack-reason-txt-wrap {
    position: relative;
}

/*.pack-reason-area .pack-reason-txt-wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: min(-7cqw,-120px);
    left: 0;
    width: 100%;
    height: initial;
    aspect-ratio: 1600 / 172;
    background: url("../img/bg-contents-shape-green.svg") center/cover, no-repeat;
}*/

.pack-reason-area .pack-reason-block {
    display: flex;
    flex-wrap: wrap;
    gap: 8%;
    width: 90%;
    min-width: 1200px;
    max-width: 1600px;
    margin: 0 auto;
}

.pack-reason-area .pack-reason-block + .pack-reason-block {
    margin-top: 100px;
}

.pack-reason-area .img-wrap {
    width: 47%;
    border-radius: 30px;
}

.pack-reason-area .txt-wrap {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*color: #fff;*/
}

.pack-reason-area .pack-reason-catch {
    font-size: min(5.5cqw,3.4rem);
    font-weight: bold;
    margin: 0 0 30px;
    line-height: 1.6;
    container-type: inline-size;
}

.pack-reason-area .pack-reason-num {
    font-size: 1.6rem;
    margin: 0 0 10px;
    color: var(--green);
}

.pack-reason-area .pack-reason-num .num {
    font-size: 3.0rem;
    vertical-align: -.2rem;
}

/*.pack-reason-area .ani-line {
    background-image: linear-gradient(to right, #FF7C3E 0%, #FF7C3E 50%, transparent 50%);
}*/

@media screen and (min-width: 769px){
    .pack-reason-area .pack-reason-block:nth-child(odd) {
        flex-direction: row-reverse;
    }
}

@media screen and (max-width: 768px){
	.pack-reason-area {
        padding: 0 0 40px;
    }
    
    .pack-reason-area .pack-reason-mv {
        padding: 100px 0;
    }
    
    .pack-reason-area .pack-reason-txt-wrap::before {
        top: -30px;
    }
    
    .pack-reason-area .pack-reason-block {
        gap: 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .pack-reason-area .pack-reason-block + .pack-reason-block {
        margin-top: 40px;
    }
    
    .pack-reason-area .img-wrap {
        width: 100%;
        border-radius: 15px;
        height: 50vw;
    }
    
    .pack-reason-area .txt-wrap {
        width: 100%;
        margin: 20px 0 0;
    }
    
    .pack-reason-area .pack-reason-num {
        font-size: 1.4rem;
        margin: 0 0 10px;
    }
    
    .pack-reason-area .pack-reason-catch {
        font-size: min(5.5cqw,3.2rem);
        margin: 0 0 20px;
        letter-spacing: 0;
    }
}

/* -----------------------------
	pack-comparison-area
-------------------------------- */
.pack-comparison-area {
    padding: 120px 0;
    background: #f6f6f6;
}

.pack-comparison-area .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0 0;
    border: 1px solid #ccc;
    background: #fff;
}

/*thead th*/
.pack-comparison-area .comparison-table thead th:nth-child(2) {
    width:15%;
    background: var(--green);
    border-left: 5px solid var(--green);
    border-right: 5px solid var(--green);
    border-top: 5px solid var(--green);
    padding: 20px;
}

.pack-comparison-area .comparison-table thead th:nth-child(2) {
    width: 35%;
}

.pack-comparison-area .comparison-table thead th:nth-child(3),
.pack-comparison-area .comparison-table thead th:nth-child(4) {
    width: 25%; 
}


/*tbody th*/
.pack-comparison-area .comparison-table tbody th {
    background: #eee;
    padding: 20px 10px;
    text-align: left;
}

/*tbody td*/
.pack-comparison-area .comparison-table tbody td {
    text-align: center;
    padding: 20px 10px;
    line-height: 1.3;
    font-size: 2.4rem;
}

.pack-comparison-area .comparison-table tbody td .min {
    font-size: 1.5rem;
    font-weight: bold;
}

.pack-comparison-area .comparison-table tbody td:first-of-type{
    border-right: 5px solid var(--green);
    border-left: 5px solid var(--green);
}

.pack-comparison-area .comparison-table tbody tr:last-child td:first-of-type {
    border-bottom: 5px solid var(--green);
}

/*border*/
.pack-comparison-area .comparison-table thead th:nth-of-type(3) {
    border-right: 1px solid #ccc;
}

.pack-comparison-area .comparison-table tbody th {
    border-top: 1px solid #ccc;
}

.pack-comparison-area .comparison-table tbody td{
    border-top: 1px solid #ccc;
}

.pack-comparison-area .comparison-table tbody td:nth-of-type(2) {
    border-right: 1px solid #ccc;
}


@media screen and (max-width: 768px){
	.pack-comparison-area {
        padding: 40px 0;
    }
    
    .pack-comparison-area .table-wrap {
        width: 100%;
        overflow-x: scroll;
    }
    
    .pack-comparison-area .comparison-table {
        width: 1000px;
        margin: 20px 0 0;
    }
    
    .pack-comparison-area .comparison-table img {
        width: 200px;
    }
    
    .pack-comparison-area .comparison-table thead th:nth-child(2) {
        padding: 10px;
    }
    
    .pack-comparison-area .comparison-table tbody th {
        line-height: 1.6;
        padding: 10px;
    }
    
    .pack-comparison-area .comparison-table tbody td {
        padding: 10px;
    }
    
}

/* -----------------------------
	plan-area
-------------------------------- */
.plan-area {
    padding: 100px 0;
}

@media screen and (min-width: 769px){
    .plan-area .cmn-plan-block.col2 .cmn-plan-btn {
        width: calc( ( 100% - 30px ) / 2 );
    }

    .plan-area .cmn-plan-block.col2 .plan-catch {
        text-align: center;
    }
}

@media screen and (max-width: 768px){
    .plan-area {
        padding: 40px 0;
    }
}


/* -----------------------------
	example-area
-------------------------------- */
.example-area {
	background-color: #f6f6f6;
	padding: 100px 0;
}

.example-area .example-list {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.example-area .example-list .example-block {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	width: 380px;
}

.example-area .example-list .example-block .icon-txt {
	display: flex;
	align-items: center;
	gap: 20px;
}

.example-area .example-list .example-block .icon-txt .txt {
	font-size: 1.8rem;
}

.example-area .example-list .example-block .icon-txt img {
    width: 80px;
    height: 80px;
}

.example-area .example-list .example-block .price {
	font-size: 2.8rem;
	line-height: 1.5;
	font-family: var(--en);
}

.example-area .example-list .example-block .s-ttl {
	background: var(--green);
	color: #fff;
	font-weight: 700;
	padding: 5px;
	text-align: center;
	margin: 15px 0 15px;
}

.example-area .schedule-list {
	list-style: none;
	position: relative;
}

.example-area .schedule-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	position: relative;
	padding-left: 20px;
}
.example-area .schedule-list li:last-child {
	margin-bottom: 0px;
}

.example-area .schedule-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 8px;
	height: 8px;
	background-color: var(--green);
	border-radius: 50%;
}
.example-area .schedule-list::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 6px;
	width: 1px;
	height: 90%;
	background-color: var(--green);
}

.example-area .time {
	width: 60px;
	color: #333;
	font-weight: bold;
	flex-shrink: 0;
}

.example-area .desc {
	color: #333;
	line-height: 1.4;
}

.example-area .basic-txt.kome {
	margin-top: 0px;
}

@media screen and (max-width: 768px){
	.example-area {
		padding: 40px 20px;
	}

	.example-area .example-list {
		justify-content: space-between;
		margin-bottom: 20px;
		flex-wrap: wrap;
		gap: 20px;
	}

	.example-area .example-list .example-block {
		width: 100%;
		max-width: 380px;
		margin: 0 auto;
	}
	
	.example-area .example-list .example-block .icon-txt img {
		margin: 0;
	}

	.example-area .example-list .example-block .icon-txt .txt {
		font-size: 1.6rem;
	}

	.example-area .example-list .example-block .price {
		font-size: 2.5rem;
	}
}

/* -----------------------------
	決済方法・保険について 
-------------------------------- */
.payment-insurance-area {
	padding: 100px 0;
    background: #f8f8f8;
}

.payment-insurance-area .sec-ttl .en span.s-txt {
	font-size: 4rem;
}

.payment-insurance-area .payment-insurance-list {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 60px;
}

.payment-insurance-area .payment-insurance-list li {
	border: solid 1px var(--khaki02);
	border-radius: 20px;
	padding: 60px;
	display: flex;
	justify-content: space-between;
    background: #fff;
}

.payment-insurance-area .payment-insurance-list .s-ttl {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--khaki02);
	margin-bottom: 10px;
}

.payment-insurance-area .payment-insurance-list .basic-txt span {
	font-weight: 700;
}

.payment-insurance-area .payment-insurance-list li .img-wrap img {
	width: 400px;
	height: auto;
}

@media screen and (max-width: 768px){
	.payment-insurance-area {
		padding: 40px 0;
	}
    
    .payment-insurance-area .sec-ttl .en {
        font-size: min(7.2cqw,4.0rem);
    }

	.payment-insurance-area .sec-ttl .en span {
		font-size: min(5cqw,3.0rem);
	}

	.payment-insurance-area .payment-insurance-list {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-top: 0px;
	}

	.payment-insurance-area .payment-insurance-list li {
		padding: 20px;
		flex-direction: column;
		gap: 20px;
        border-radius: 10px;
	}

	.payment-insurance-area .payment-insurance-list .s-ttl {
		font-size: 2rem;
		margin-bottom: 10px;
	}

	.payment-insurance-area .payment-insurance-list li .img-wrap img {
		width: 100%;
		height: auto;
	}
}





/* -----------------------------
	〇〇〇
-------------------------------- */

@media screen and (max-width: 768px){
	
}
