@charset "utf-8";


/*
 Share Style
----------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
}

body {
	background: #fff;
	color: #333;
	font-family: Verdana, "游ゴシック", sans-serif;
	font-size: 0.9em;
	line-height:1.4;
}

html {
	overflow-y: scroll;
}

h1,h2,h3,h4,h5,h6 {
}

p,li,dt,dl {
	line-height: 1.6;
}
p {
	margin: 0 0 1em 0;
}
li {
	list-style-type: none;
}

img {
	border: 0;
}

address {
	font-style: normal;
}

.clear {
	clear: both;
}


/*
 Button
----------------------------------------------------------- */
.button {
	padding: 10px 0;
}
.button a {
	display: block;
	color: #fff;
	border-radius: 10px;
	box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
	padding: 0.5em;
	transition: .3s;
}
@media screen and (min-width: 769px) {
	.button a {
		padding: 1em;
	}
}
.button a:hover {
	text-decoration: none;
	box-shadow: none;
	transform: translate3d(0, 5px, 0);
}
.button a:visited {
	color: #fff;
}
.button a:link {
	color: #fff;
}
.button a::after {
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	vertical-align: middle;
	margin: 0 0.5rem 0.3rem;
}

.button .pink {
	background: #ff4d70;
}
.button .pink:hover {
	background: #cc2949;
}

.button .yellow {
	background: #e6a400;
}
.button .yellow:hover {
	background: #cc9200;
}


/*
 Link Color
----------------------------------------------------------- */
a:link {
	color:#078D00;
	text-decoration:none;
}
a:visited {
	color:#189B12;
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}
a:active {
	color:#666;
}


/*
 Head
----------------------------------------------------------- */
#head {
	position: fixed;
	width: 100%;
	background: #fff;
	top: 0;
	left: 0;
	border-bottom: solid 1px #48A641;
	z-index:9999;
}
#head .header-box {
	display:flex;
	justify-content: space-between;
}
@media screen and (min-width: 769px) {
	#head .header-box {
		width: 900px;
		margin: auto;
	}
}
#head .logo {
	width: 35%;
	margin: 5px;
}
@media screen and (min-width: 420px) {
	#head .logo {
		width: 150px;
	}
}


/*
 global navi
----------------------------------------------------------- */

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 20px;
	height: 15px;
	margin: 10px 10px 20px 10px;
}
@media screen and (min-width: 769px) {
	.menu-trigger {
		width: 25px;
		height: 20px;
	}
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #333;
	border-radius: 4px;
}
@media screen and (min-width: 769px) {
	.menu-trigger span {
		height: 4px;
	}
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 6.5px;
}
@media screen and (min-width: 769px) {
	.menu-trigger span:nth-of-type(2) {
		top: 8px;
	}
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger::after {
	position: absolute;
	left: -3px;
	bottom: -17px;
	content: 'MENU';
	display: block;
	width: 100%;
	color: #333;
	font-size: 0.5em;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	transition: all .4s;
}
@media screen and (min-width: 769px) {
	.menu-trigger::after {
		bottom: -20px;
		font-size: 0.8em;
	}
}
.menu-trigger.active::after {
	content: 'CLOSE';
	left: -5px;
	bottom: -18px;
}
@media screen and (min-width: 769px) {
	.menu-trigger.active::after) {
		bottom: -25px;
	}
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(7px) rotate(-45deg);
	transform: translateY(7px) rotate(-45deg);
}
@media screen and (min-width: 769px) {
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(10px) rotate(-45deg);
		transform: translateY(10px) rotate(-45deg);
	}
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}


.menu-container {
	position: relative;
	margin: 0;
}
.menu-container .menu {
	position: absolute;
	display: none;
	top: 5px;
	right: 0%;
}
.menu-container .menu .menu-item {
	width: 300px;
	background: #48A641;
	border-bottom: solid 1px #fff;
	padding: 10px;
	pointer-events: none;
}
.menu-container .menu .menu-item:hover {
	background: #ffb700;
}
.menu-container .menu .menu-item a {
	display: block;
	color: #fff;
	pointer-events: auto;
}
.menu-container .menu .menu-item:last-child a {
	border-bottom: none;
}


/*
 breadcrumb list
----------------------------------------------------------- */
.breadcrumb {
	list-style: none;
	font-size: 0.8em;
	padding: 0.2em 0.5em;
	margin: 0;
}
@media screen and (min-width: 769px) {
	.breadcrumb {
		width: 900px;
		margin: auto;
	}
}
.breadcrumb li {
	display: inline;
	float: left;
	list-style: none;
	font-weight: bold;
}
.breadcrumb li:after {
  content: '>';
  padding: 0 0.2em;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #338e2d;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}


/*
 main
----------------------------------------------------------- */
#main {
	width: 90%;
	margin: 20px auto;
}
@media screen and (min-width: 769px) {
	#main {
		width: 900px;
	}
}


/*
 foot
----------------------------------------------------------- */
#foot {
	border-top: solid 1px #48A641;
}

#foot .list{
	text-align: center;
	padding: 10px 0;
}
#foot .list li{
	display: inline-block;
	padding: 0 0.5em;
}

#foot .logo {
	display: block;
	width: 150px;
	margin: 10px auto;
}

#foot .copyright{
	background: #338e2d;
	color: #fff;
	text-align: center;
	padding: 5px 0;
}

// ──────────────────────────────────────────
// add.css
.dt2-main {
    display: flex;
    flex-direction: column;
    min-height: 87vh;
}

.dt2-div {
    margin-bottom: 20px;
}
.dt2-div div {
    margin-bottom: 20px;
}
.dt2-div h1 {
    font-size: 1.5em;
}
.dt2-div span {
    font-weight: bold;
}
.dt2-div th {
    vertical-align: top;
	white-space: nowrap;
}

.dt2-recommend {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fffff0;
    border: 2px solid #e6a400;
}
.dt2-recommend span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

.dt2-txt-sc {
    font-size: 0.8em;
    text-align: center;
}

.dt2-foot {
    width: 100%;
    margin-top: auto;
}




/*
 POP Up
----------------------------------------------------------- */
.ms-logo {
    width: 45%;
    margin: 5px;
}
@media screen and (min-width:420px) {
    .ms-logo {
        width: 200px;
    }
}

.pt-logo {
    width: 45%;
    margin: 5px;
}
@media screen and (min-width:420px) {
    .pt-logo {
        width: 200px;
    }
}

.kn-logo {
    width: 45%;
    margin: 5px;
}
@media screen and (min-width:420px) {
    .kn-logo {
        width: 200px;
    }
}

.mlp-html {
    overflow-y: hidden;
}

.mlp-comp {
    font-weight: bold;
    margin-bottom: 40px;
}
.mlp-comp .thank {
    font-size: 1.5em;
    text-align: center;
    margin: 20px 0;
}
@media screen and (min-width:768px) {
    .mlp-comp {
        text-align: center;
    }
}

.offer-pic {
    width: 100%;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    background: rgba(112,173,71,0.05);
    opacity: 1;
}

.modal-inner {
    position: absolute;
    top: 350px;
    left: 50%;
    width: 90%;
    max-width: 500px;
    background: #fff;
    transform: translate(-50%, -175px);
    overflow: hidden;
}

.modal-flex {
    display: flex;
    width: 300%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: translate(0, 0);
    align-items: flex-start; 
}

.modal-item {
    width: 100%;
    box-sizing: border-box;
    padding: 2em 1em;
}
@media screen and (min-width:768px) {
    .modal-item {
        padding: 2em 3em;
    }
}

.form-heading {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.form-heading .green {
    color: #1c9219;
}

.radio-mlp{
    height: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
.radio-mlp input{
    display: none;
}
.radio-mlp label{
    width: 47%;
    font-weight: bold;
    text-align: center;
    border: solid 2px #2ccf1b;
    border-radius: 1.5em;
    padding: 0.5em 0;
    margin: 10px 0;
}
.radio-mlp .long{
    width: 100%;
}
.radio-mlp input:checked+label {
    background: #0d5d10;
    color: #fff;
    border: solid 2px #0d5d10;
}

input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

[id^=step_btn_],
[id^=step_next],
input[type="submit"] {
    width: 100%;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #01d53a;
    border: none;
    border-radius: 1.5em;
    padding: 0.5em 0;
    margin: 20px 0;
}

.error_message {
    color: red;
}

.mgn-t20 {
    margin-top: 20px;
}

/*
 追加CSS(2022/06/26～)
----------------------------------------------------------- */
.flex-4 {
    width: 400%;
}

.radio-mlp2{
    height: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.radio-mlp2 input{
    display: none;
}
.radio-mlp2 label{
    position: relative;
    width: 47%;
    font-weight: bold;
    text-align: center;
    border: solid 2px #2ccf1b;
    border-radius: 1.5em;
    padding: 0.5em 0;
    margin: 10px 0;
}
.radio-mlp2 div{
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
.radio-mlp2 input:checked+label {
    border: solid 2px #0d5d10;
}



/*
 追加CSS(2023/02/18～)
----------------------------------------------------------- */
.top-h3 {
	color: #2db324;
	font-size: 1.3em;
	padding: 15px;
}

.area-tab-box {
	margin-bottom: 40px;
}

.area-tab {
	display: flex;
	align-items: flex-end;
	overflow: auto;
	border-bottom: solid #2db324;
}

.area-button {
	position: relative;
	background: #f8f9f8;
	color: #2db324;
	font-weight: bold;
	border: none;
	border-radius: 10px 10px 0 0;
	white-space: nowrap;
	padding: 10px 20px;
}

.area-button[aria-selected=true] {
	background: #2db324;
	color: #fff;
}

.area-button[aria-selected=false] + [aria-selected=false]:before {
	position: absolute;
	top: 2%;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 60%;
	margin: auto;
	background: #bdbdbd;
	content: "";
}

.area-panel {
	display: none;
}

.area-panel[aria-hidden=false] {
	display: block;
}

.area-panel .recommend-box {
	flex-direction: row;
	flex-wrap: nowrap;
	overflow: auto;
}

.area-panel .recommend-item {
	width: 60%;
	padding: 10px 5px;
	margin: 10px 5px;
}

.slick-prev, .slick-next {
	display: none;
}

.dt-h2-recommend {
	font-size: 1.3em;
	border-bottom: solid 3px #48A641;
	padding-bottom: 10px;
	margin: 60px 0 30px;
}

.dt-h2-recommend span {
	position: relative;
	padding: 0 1.5em;
}

.dt-h2-recommend span:before,.dt-h2-recommend span:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 1.3em;
	height: 2px;
	background-color: #333;
}

.dt-h2-recommend span:before {
	-webkit-transform: rotate(60deg);
	transform: rotate(60deg);
	left:0;
}

.dt-h2-recommend span:after {
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
	right: 0;
}

.recommend-box {
	display:flex;
	flex-direction: column;
	flex-wrap:wrap;
}

.recommend-item {
	width: 95%;
	border: solid 1px #d3d3d3;
	border-radius: 10px;
	padding: 20px 10px;
	margin: 10px auto;
}

.recommend-brief {
	display:flex;
	margin-bottom: 10px;
}

.recommend-brief-img {
	margin-right: 10px;
}

.recommend-brief-img img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}

.recommend-brief-txt .licentiate {
	color: #48A641;
	font-weight: bold;
	margin: 0;
}

.recommend-brief-txt .name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	font-weight: bold;
	min-height: 5em;
	word-break: break-all;
}

.recommend-detail {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-weight: bold;
	margin: 0;
}

.recommend-detail i {
	margin-right: 0.5em;
}

.recommend-detail span {
	color: #48A641;
}

.recommend-button {
	padding-top: 10px;
}

.recommend-button a {
	display: block;
	color: #333;
	background: #d3d3d3;
	border-radius: 10px;
	font-weight: bold;
	text-align: center;
	padding: 1em 0;
	text-decoration: none;
}

.recommend-button a:before {
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-left: 8px solid #333;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	vertical-align: middle;
	margin: 0 0.4em 0.3em;
}

@media screen and (min-width: 769px) {
	.area-panel{
		position: relative;
	}
	
	.area-panel .recommend-box{
		overflow: hidden;
	}
	
	.area-panel .recommend-item{
		width: 22%;
	}
	
	.recommend-box {
		flex-direction: row;
		flex-wrap:nowrap;
	}
	
	.recommend-item{
		width: 30%;
		margin: 0 5px 0 0;
	}
	
	.slick-prev, .slick-next {
		display: block;
		position: absolute;
		width: 22px;
		height: 73px;
		border-radius: 5px;
		background-color: #909090ad;
		color: #fff;
		top: calc(45% - 45px);
	}
	
	.slick-prev {
		left: -2%;
	}
	
	.slick-prev i {
		position: absolute;
		top: 30px;
		left: 5px;
	}
	
	.slick-next {
		right: -2.5%;
	}
	
	.slick-next i {
		position: absolute;
		top: 30px;
		right: 5px;
	}
}
