@charset "UTF-8";


/*---intro---*/
.intro{
	margin-bottom: 5em;
    text-align: left;
    background: var(--light-gray);
    padding: 4em 0;
}

.intro .flex{
	flex-direction: row-reverse;
	gap:2em;
	align-items:center;
}

.intro .img{
	width: calc(50% - 2em);
}
.intro .txt{
	width: 50%;
}

.intro .txt p{
	font-weight: bold;
	line-height: 2;
}

.intro .cta-btn{
	margin-bottom: 0;
}

.intro .links{
	margin-top: 20px;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	#contents .intro .img,
	#contents .intro .txt{
		width: 100%;
		padding: 0;
	}
	#contents .intro .logo{
		width: 70px;
		height: 70px;
		margin: 15px auto;
	}
}


/*---movie---*/
#contents .movie{
	width: 100%;
    padding-bottom: 56.25%;
    height: 0px;
    position: relative;
    margin: 50px auto;
}
#contents .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    #contents .movie{
        margin: 20px auto 30px;
    }
}


/*---point---*/
.point{
	text-align: left;
}
.point li{
	gap:2em;
	align-items: start;
}

.point li:not(:last-child){
		border-bottom: solid 1px var(--gray);
	margin-bottom: 3.5em;
	padding-bottom: 3.5em;
}
.point  .txt{
	width: 60%;
}
.point  .img{
	width: calc(40% - 2em);
	margin: 0;
}

.catchcopy{
	background: var(--green-grad);
    text-align: center;
    color: #fff;
    font-size: 130%;
    font-weight: bold;
    line-height: 1.8rem;
    padding: 0.8em 0.8em 1.3em;
    margin-bottom: 20px;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.5em), calc(50% + 0.5em) calc(100% - 0.5em), 50% 100%, calc(50% - 0.5em) calc(100% - 0.5em), 0 calc(100% - 0.5em));
}

.cta-btn{
	margin:4em 0;
}

.cta-btn:last-child{
	margin-bottom: 0;
}

.cms-post h2:first-child{
	margin-top:0;
}

.cms-post h2{
	margin:3em 0 1em;
    border: none;
}

.cms-post h3{
	font-weight: bold;
    color: var(--black);
    font-size: 150%;
    text-align: left;
    border-left: 6px solid var(--green);
    padding-left: 10px;
    margin: 3em 0 1em;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 720px){
	.point .txt{
		width: 100%;
	}
	.point .img{
		width: 100%;
	}
}

/*---contents---*/
.contents{
	text-align: left;
	max-width: 650px;
    margin: 0 auto;
}

/*---case---*/
section.case{
	text-align: left;
	margin: 100px auto;
}
section.case .block{
	margin-bottom: 150px;
}
section.case .txt,
section.case .img{
	float: left;
}
section.case .txt{
	width: 60%;
	padding-left: 40px;
}
section.case .txt h4{
	font-size: 180%;
	color: #009944;
}
section.case .txt h4 .num{
	display: block;
	margin: -32px 0 20px;
	color: #e5e5e5;
    font-weight: bold;
    font-size: 300%;
    line-height: .8;
}
section.case .txt h4 .num small{
	font-size: 42%;
}
section.case .txt dl{
	margin: 30px 0;
}
section.case .txt .list{
    flex-wrap: nowrap;
	border-bottom: dashed 1px #eee;
    padding: 10px 3px;
	font-size: 110%;
}
section.case .txt .list dt{
    width: 18%;
    position: relative;
    padding-right: 30px;
}
section.case .txt .list dt:after{
    content: ":";
    position: absolute;
    right: 10px;
}
section.case .txt .list dd{
    width: 82%;
}
.ico-gry{
    display: inline-block;
    margin: 0 5px 8px 0;
    padding: 2px 8px;
    background: #e5e5e5;
    border-radius: 5px;
    transition: all 300ms 0s ease;
}
section.case .img{
	width: 40%;
	padding: 0 30px;
}
section.case .trimming-img:before {
    padding-top: 70%;
}

.slick-arrow{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 3px;
    width: 22px;
    height: 22px;
    text-align: center;
    border-radius: 50%;
    background: #f0f0f0;
    cursor: pointer;
    transition: all 300ms 0s ease;
}
.slick-prev{
    left: 0;
}
.slick-next{
    right: 0;
}
.slick-prev:before,
.slick-next:before{
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    margin: auto;
}
.slick-prev:before{
    border-width: 5px 8px 5px 0;
    border-color: transparent #b4b4b4 transparent transparent;
}
.slick-next:before{
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #b4b4b4;
}
.slick-arrow:hover{
    background: #32a138;
}
.slick-prev:hover:before{
    border-color: transparent #fff transparent transparent;
}
.slick-next:hover:before{
    border-color: transparent transparent transparent #fff;
}


.dots-gry {
    text-align: center;
    margin: 20px auto 0;
}
.dots-gry li {
    display: inline-block;
    margin: 0 8px;
}
.slick-slider button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    text-indent: -9999px;
    cursor: pointer;
}
.dots-gry button:before {
    content: '●';
    font-size: 16px;
    text-indent: 0px;
    position: absolute;
    top: 0;
    left: 0;
    color: #c8c8c8;
}
.dots-gry li.slick-active button:before {
    color: #000;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	section.case .block {
		margin-bottom: 80px;
	}
	section.case .img,
	section.case .txt{
		width: 100%;
		float: none;
	}
	section.case .img{
		margin-bottom: 20px;
	}
	section.case .txt{
		padding: 0 30px;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	section.case .block {
		margin-bottom: 50px;
	}
	section.case .txt h4 .num {
		font-size: 200%;
	}
	section.case .txt dl {
		margin: 10px 0;
	}
	section.case .txt .list dt {
		width: 30%;
	}
	section.case .txt .list dd {
		width: 70%;
	}
}






.tinymce  {
}
.tinymce h1 {
	font-size: 200%;
}
.tinymce h2 {
	font-size: 170%;
}
.tinymce h3 {
	font-size: 150%;
}
.tinymce h4 {
	font-size: 120%;
}