@charset "UTF-8";
/* CSS Document */
//ブレイクポイントを指定------ここから
$xl: 1399px;
$lg: 1199px;
$md: 991px;
$sm: 767px;
$xs: 575px;

@mixin xl {
  @media screen and (max-width: ($xl)) {
    @content;
  }
}
@mixin lg {
  @media screen and (max-width: ($lg)) {
    @content;
  }
}
@mixin md {
  @media screen and (max-width: ($md)) {
    @content;
  }
}
@mixin sm {
  @media screen and (max-width: ($sm)) {
    @content;
  }
}
@mixin xs {
  @media screen and (max-width: ($xs)) {
    @content;
  }
}
//ブレイクポイントを指定------ここまで

//カラー指定
$color-main: #50beff;



//.anchor {
//    padding-top: 80px;
//    margin-top: -80px;
//}


main {
	padding-top: 0px;
}



//---------- heroimg --------------------------------/
#heroimg {
    position: relative;
//    margin-bottom: 12.6rem;
    .visual {
        img {
            border-radius: 0 0 50px 50px;
            width: 100%;
            height: 90vh;
            object-fit: cover;
            @include lg {
                height: 70vh;
            }
            @include md {
                height: 55vh;
            }
            @include sm {
                height: 80vh;
            }
            @include xs {
                height: 72vh;
            }
        }
    }
    .catchcopy {
        position: absolute;
        bottom: 6.5rem;
        right: 7%;
        @include sm {
            right: revert;
            left: 6%;
			bottom: 12rem;
        }
		@include xs {
			bottom: 8.5rem;
		}
        p {
            font-family: "M PLUS Rounded 1c", sans-serif;
            font-weight: 600;
            font-size: 40px;
            font-size: 4rem;
            color: #fff;
            font-style: italic;
            line-height: 1.4;
            letter-spacing: 0.5rem;
            text-align: right;
            text-shadow: $color-main 1px 1px 15px, $color-main -1px 1px 15px;
            text-shadow: $color-main 1px -1px 15px, $color-main -1px -1px 15px;
            @include sm {
                text-align: left;
            }
            @include xs {
				font-size: 28px;
				font-size: 2.8rem;
            }
        }
    }
	.column_btn {
		position: absolute;
		bottom: 6rem;
		left: 7%;
		@include xs {
			bottom: 4rem;
		}
		a {
			background-color: #fff;
			border: 2px solid #00aaee;
			border-radius: 10px;
			color: #00aaee;
			padding: 1.5rem 2.5rem;
			font-family: "Kiwi Maru", serif;
			font-weight: 500;
			font-size: 21px;
			font-size: 2.1rem;
			letter-spacing: 0.1rem;
			transition: 0.3s;
			@include md {
				font-size: 18px;
				font-size: 1.8rem;
			}
			@include xs {
				padding: 1.2rem 2rem;
			}
			i {
				padding-right: 0.3em;
				font-size: 23px;
				font-size: 2.3rem;
			}
		}
		&:hover {
			a {
				background-color: #00aaee;
				color: #fff;
			}
		}
	}
}

//---------- intro --------------------------------/
#intro {
    padding-top: 12.6rem;
    padding-bottom: 13rem;
    background-image: url("../img/intro-bg.jpg");
    width: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    @include xl {
       background-size: contain;
    }
    @include md {
        padding-bottom: 10rem;
    }
    @include sm {
        padding-top: 22.6rem;
    }
    @include xs {
		padding-top: 17.6rem;
		padding-bottom: 7rem;
    }
    .intro-flex {
        margin: auto;
        text-align: center;
        .catch {
            position: relative;
            font-size: 23px;
            font-size: 2.3rem;
            margin-bottom: 8.6rem;
            display: inline-block;
            @include lg {
                line-height: 1.7;
                margin-bottom: 7rem;
            }
            @include md {
                line-height: 1.7;
                margin-bottom: 6rem;
            }
            @include sm {
                margin-bottom: 4rem;
            }
            @include xs {
				font-size: 20px;
				font-size: 2rem;
				line-height: 1.5;
				margin-bottom: 2rem;
            }
            span {
                font-size: 28px;
                font-size: 2.8rem;
                font-weight: 600;
                @include sm {
                    font-size: 33px;
                    font-size: 3.3rem;
                }
                @include xs {
                    font-size: 22px;
                    font-size: 2.2rem;
                }
            }
            &::before {
                content: '';
                position: absolute;
                background-image: url("../img/intro-deco1.svg");
                background-size: cover;
                background-repeat: no-repeat;
                height: 180px;
                width: 189px;
                top: -4rem;
                bottom: 0;
                margin: auto;
                left: -22rem;
                @include md {
                    height: 150px;
                    width: 157px;
                }
                @include sm {
                    top: -13em;
                    left: 0;
                }
                @include xs {
                    top: -12em;
					left: 2rem;
					height: 120px;
					width: 127px;
				}
            }
            &::after {
                content: '';
                position: absolute;
                background-image: url("../img/intro-deco2.svg");
                background-size: cover;
                background-repeat: no-repeat;
                height: 180px;
                width: 189px;
                top: -4rem;
                bottom: 0;
                margin: auto;
                right: -22rem;
                @include md {
                    height: 150px;
                    width: 157px;
                }
                @include sm {
                    top: -13em;
                    right: 0;
                }
                @include xs {
                    top: -12em;
					right: 2rem;
					height: 120px;
					width: 127px;
				}
            }
        }
    }
    h3 {
        position: relative;
        font-size: 29px;
        font-size: 2.9rem;
        color: $color-main;
        text-align: center;
        z-index: 3;
        font-weight: 700;
        @include sm {
            line-height: 1.5;
        }
        @include xs {
			font-size: 25px;
			font-size: 2.5rem;
        }
        &::before {
            content: '';
            position: absolute;
            background-image: url("../img/intro-deco3.svg");
            background-size: cover;
            background-repeat: no-repeat;
            height: 21.5px;
            width: 868px;
            bottom: -1.5rem;
            right: 0;
            left: 0;
            margin: auto;
            z-index: -1;
            @include md {
                height: 16.5px;
                width: 682px;
                bottom: -1.5rem;
            }
            @include sm {
                height: 12px;
                width: 20em;
                bottom: -0.5rem;
            }
			@include xs {
				height: 8px;
				width: 15em;
			}
        }
    }
}

//---------- greeting --------------------------------/
#greeting {
    padding-top: 10rem;
    margin-top: -10rem;
    padding-bottom: 10rem;
    background-image: linear-gradient(0deg, rgba(255, 255, 222, 1), rgba(255, 255, 255, 0));
    @include lg {
        padding-bottom: 8rem;
    }
    @include xs {
        padding-bottom: 4rem;
		position: relative;
		z-index: 3;
    }
    .greeting-img {
        @include sm {
            text-align: center;
            margin-bottom: 2rem;
        }
		@include xs {
			width: 60%;
			margin: auto;
            margin-bottom: 2rem;
		}
    }
    .text-box {
        p {
            padding-left: 1.6rem;
            line-height: 1.8;
            @include lg {
                line-height: 1.7;
            }
            @include md {
                font-size: 1.5rem;
                line-height: 1.5;
            }
            @include sm {
                padding-left: 0;
            }
        }
        .leader-name {
            text-align: right;
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 1.5;
            span {
                font-size: 20px;
                font-size: 2rem;
            }
        }
    }
}

//---------- about --------------------------------/
#about {
    position: relative;
    background-color: #fefaab;
    padding-top: 9.5rem;
    padding-bottom: 10rem;
	@include xs {
		padding-top: 10rem;
		padding-bottom: 5rem;
		margin-top: -5rem;
	}
    &::before {
        position: absolute;
        content: "";
        background-image: url("../img/deco-white-left-s.svg");
        background-repeat: no-repeat;
        height: 200px;
        width: 200px;
        top: 0;
        left: 0;
        @include xl {
            height: 150px;
            width: 150px;
        }
    }
    &::after {
        position: absolute;
        content: "";
        background-image: url("../img/deco-white-right.svg");
        background-repeat: no-repeat;
        height: 220px;
        width: 100px;
        bottom: 20%;
        right: 0;
        @include md {
            bottom: 6%;
        }
        @include xs {
            bottom: 13%;
			width: 75px;
        }
    }
	.relative {
		position: relative;
		z-index: 30;
		.about-up {
			display: flex;
			align-items: center;
			flex-direction: row;
			justify-content: space-between;
			margin-bottom: 5.7rem;
			@include md {
				width: 100%;
				margin-bottom: 3.7rem;
			}
			@include sm {
				flex-direction: column;
				align-items: center;
			}
			@include xs {
				margin-bottom: 2.5rem;
			}
			.about-text {
				width: 50%;
				@include lg {
					width: 55%;
				}
				@include sm {
					width: 100%;
				}
				h3 {
					color: #fff;
					font-size: 30px;
					font-size: 3rem;
					font-weight: 700;
					background-color: $color-main;
					display: inline-block;
					letter-spacing: 0.5rem;
					padding: 0.7rem 0.8rem 0.9rem 1.5rem;
					margin-bottom: 3rem;
					@include sm {
						margin-bottom: 1rem;
					}
					@include xs {
						display: block;
						text-align: center;
						font-size: 25px;
						font-size: 2.5rem;
					}
				}
				dl {
					dt {
						font-size: 20px;
						font-size: 2rem;
						color: $color-main;
						font-weight: 600;
						@include xs {
							text-align: center;
							line-height: 1.3;
							margin-bottom: 1rem;
						}
						span {
							font-size: 25px;
							font-size: 2.5rem;
						}
					}
					dd {
						line-height: 1.7;
						@include sm {
							margin-bottom: 2rem;
						}
					}
				}
			}
			.about-img {
				width: 40%;
				text-align: right;
				display: inline-block;
				@include sm {
					width: 70%;
					text-align: center;
				}
			}
		}
		.about-down {
			.white-box {
				background-color: #fff;
				padding-top: 3rem;
				padding-bottom: 4rem;
				display: flex;
				justify-content: center;
				align-items: center;
				@include sm {
					flex-direction: column;
					gap: 2rem;
				}
				@include xs {
					padding: 2rem 1rem;
				}
				img {
					width: 285px;
					margin-right: 9rem;
					@include md {
						width: 200px;
					}
					@include sm {
						width: 250px;
						margin: auto;
					}
					@include sm {
						width: 220px;
					}
				}
				p {
					width: 45%;
					display: inline-block;
					margin-bottom: 0;
					@include sm {
						width: 90%;
					}
					span {
						font-weight: 600;
					}
				}
			}
		}
	}
}


//---------- merit --------------------------------/
#merit {
    position: relative;
    background-color: #e5f5ff;
    padding-bottom: 8.4rem;
    @include lg {
        padding-bottom: 4rem;
    }
    @include xs {
        z-index: 3;
    }
    .arrow {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 700px solid transparent;
        border-left: 700px solid transparent;
        border-top: 87px solid #fefaab;
        border-bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        top: 0;
        @include xl {
            border-right: 600px solid transparent;
            border-left: 600px solid transparent;
        }
        @include lg {
            border-right: 495.5px solid transparent;
            border-left: 495.5px solid transparent;
        }
        @include md {
            border-right: 383.5px solid transparent;
            border-left: 383.5px solid transparent;
            border-top: 60px solid #fefaab;
        }
        @include md {
            border-right: 250px solid transparent;
            border-left: 250px solid transparent;
            border-top: 60px solid #fefaab;
        }
		@include xs {
			border-right: 180px solid transparent;
			border-left: 180px solid transparent;
		}
        
    }
    &::before {
        position: absolute;
        content: "";
        background-image: url("../img/deco-white-right.svg");
        background-repeat: no-repeat;
        height: 470px;
        width: 200px;
        top: 35%;
        right: 0;
        @include sm {
            height: 415px;
            width: 130px;
            top: 20%;
        }
    }
    &::after {
        position: absolute;
        content: "";
        background-image: url("../img/deco-white-left.svg");
        background-repeat: no-repeat;
        height: 330px;
        width: 150px;
        bottom: 7.5rem;
        left: 0;
        @include sm {
            height: 240px;
            width: 150px;
            bottom: 40.5rem;
        }
    }
    h4 {
        padding-top: 19rem;
        @include sm {
            padding-top: 15rem;
        }
        @include xs {
            padding-top: 11rem;
        }
    }
	.relative {
		position: relative;
		z-index: 10;
		.merit-environment {
			margin-bottom: 7.5rem;
//			position: relative;
//			z-index: 10;
			@include lg {
				margin-bottom: 5.5rem;
			}
			@include xs {
				margin-bottom: 3rem;
			}
			h5 {
				font-size: 25px;
				font-size: 2.5rem;
				font-weight: 600;
				text-align: center;
				padding-bottom: 3rem;
				line-height: 1.5;
				@include xs {
					font-size: 20px;
					font-size: 2rem;
					padding-bottom: 1.5rem;
				}
			}
			ul {
				display: grid;
				grid-template-columns: 1fr 1fr 1fr;
				gap: 1.5rem;
				@include sm {
					display: block;
				}
				li {
					background-color: #fff;
					border: 1px solid #d5d5d5;
					border-radius: 10px;
					text-align: center;
					padding: 3.5rem 0;
					@include sm {
						width: 80%;
						margin: auto;
						margin-bottom: 2rem;
						padding: 2.5rem 0;
					}
					@include xs {
						width: 90%;
						padding: 1.5rem 0;
					}
					img {
						width: 221px;
						margin-bottom: 2rem;
						@include xs {
							width: 165px;
							margin-bottom: 0.5rem;
						}
					}
					dl {
						dt {
							font-size: 20px;
							font-size: 2rem;
							font-weight: 600;
							color: $color-main;
							margin-bottom: 0.8rem;
							@include lg {
								font-size: 18px;
								font-size: 1.8rem;
							}
							@include md {
								line-height: 1.4;
							}
							@include sm {
								font-size: 2rem;
							}
						}
						dd {
							font-size: 15px;
							font-size: 1.5rem;
							line-height: 1.8;
							font-weight: 500;
							@include lg {
								line-height: 1.7;
							}
							@include md {
								text-align: justify;
								padding-left: 2rem;
								padding-right: 2rem;
							}
							@include xs {
								line-height: 1.5;
							}
						}
					}
				}
			}
		}
		.merit-target,.merit-fees {
			display: flex;
			justify-content: center;
			padding-bottom: 3.5rem;
			h5 {
				color: #fff;
				font-size: 20px;
				font-size: 2rem;
				background-color: $color-main;
				width: 9em;
				text-align: center;
				margin: auto;
				padding: 0.5rem;
				margin-bottom: 2.5rem;
				@include xs {
					margin-bottom: 1.5rem;
				}
			}
			ul {
				margin-bottom: 0.5rem;
				li {
					font-size: 18px;
					font-size: 1.8rem;
					line-height: 1.6;
					@include xs {
						font-size: 16px;
						font-size: 1.6rem;
						line-height: 1.5;
						text-indent: -1.5em;
						margin-left: 1.5em;
					}
					&::before {
						font-family: "Font Awesome 5 Free";
						content: "\f058";
						font-weight: 400;
						color: $color-main;
						padding-right: 0.5rem;
					}
				}
			}
			p {
				margin-bottom: 0;
				padding-left: 1.5em;
				line-height: 1.5;
				text-indent: -1.2em;
				margin-left: 1.2em;
			}
		}
		.merit-fees {
			@include xs {
				padding-bottom: 0;
			}
			p {
				font-size: 18px;
				font-size: 1.8rem;
				text-align: center;
				padding-left: 0;
				@include xs {
					font-size: 16px;
					font-size: 1.6rem;
					line-height: 1.5;
				}
			}
		}
	}
}



//---------- operation --------------------------------/
#operation {
    background-color: #fdfddd;
    position: relative;
    padding-top: 11.5rem;
    padding-bottom: 20rem;
    @include lg {
        padding-top: 7.5rem;
		padding-bottom: 18rem;
    }
	@include md {
		padding-top: 9.5rem;
        margin-top: -2rem;
	}
    @include xs {
		padding-top: 10rem;
		margin-top: -4rem;
		z-index: 0;
    }
    &::before {
        position: absolute;
        content: "";
        background-color: #fff;
        height: 315px;
        width: 100%;
        top: 0;
        @include md {
            height: 210px;
        }
    }
	.bg-deco {
		position: relative;
//		display: block;
		&::before {
			position: absolute;
			content: "";
			background-image: url("../img/operation-deco1.svg");
			background-repeat: no-repeat;
			height: 700px;
			width: 670px;
			left: 0;
			top: 37rem;
			z-index: 0;
			@include xs {
				height: 800px;
				width: 670px;
			}
			@include lg {
				height: 623px;
				width: 669px;
				left: -4rem;
			}
			@include md {
				display: none;
			}
		}
		&::after {
			position: absolute;
			content: "";
			background-image: url("../img/operation-deco2.svg");
			background-repeat: no-repeat;
			height: 700px;
			width: 660px;
			right: 0rem;
			top: 152rem;
			z-index: 0;
			@include xl {
//				height: 800px;
//				width: 760px;
			}
			@include lg {
				width: 545px;
//				right: -18rem;
				top: 134rem;
			}
			@include md {
				display: none;
			}
		}
	}
    h4 {
        position: relative;
        z-index: 5;
        @include md {
            margin-bottom: 1rem;
        }
        @include sm {
            margin-bottom: revert;
        }
    }
    .fukidashi {
        position: relative;
        z-index: 5;
        ul {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
            @include sm {
                display: block;
            }
            li {
                background-image: url("../img/operation-fukidashi.svg");
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                height: 179px;
                @include sm {
                    margin-bottom: 2rem;
                }
                @include xs {
					margin-bottom: 1rem;
                    height: 145px;
                }
                p {
                    font-size: 18px;
                    font-size: 1.8rem;
                    font-weight: 600;
                    margin-bottom: 0;
                    text-align: center;
                    line-height: 1.667;
                    padding-top: 3.3rem;
                    @include lg {
                        line-height: 1.5;
                        padding-top: 3.7rem;
                    }
                    @include md {
                        font-size: 16px;
                        font-size: 1.6rem;
                        padding-top: 5.5rem;
                    }
                    @include sm {
                        font-size: 20px;
                        font-size: 2rem;
                        padding-top: 4.5rem;
                    }
                    @include xs {
                        font-size: 18px;
                        font-size: 1.8rem;
						padding-top: 3.2rem;
                    }
                }
            }
        }
    }
    .logo {
        text-align: center;
        padding-top: 3.8rem;
        padding-bottom: 7rem;
        @include lg {
            padding-top: 2rem;
            padding-bottom: 3rem;
        }
        @include md {
            padding-top: 0rem;
            width: 57%;
            margin: auto;
        }
        @include sm {
            width: 80%;
        }
    }
    .operation-box1,.operation-box2 {
        margin-bottom: 16rem;
        @include lg {
            margin-bottom: 8rem;
        }
        @include sm {
            margin-bottom: 6rem;
        }
        @include xs {
            margin-bottom: 3rem;
        }
        .explanation {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 6.8rem;
            @include lg {
                margin-bottom: 4.8rem;
            }
            @include md {
                display: flex;
                flex-direction: column;
                margin-bottom: 2rem;
                gap: 0;
            }
            dl {
                position: relative;
                z-index: 3;
                dt {
                    font-size: 23px;
                    font-size: 2.3rem;
                    font-weight: 600;
                    color: $color-main;
                    line-height: 1.35;
                    display: flex;
                    align-items: center;
                    margin-bottom: 2.7rem;
					@include xs {
						font-size: 20px;
						font-size: 2rem;
						margin-bottom: 1rem;
					}
                    &::before {
                        content: "";
                        background-image: url("../img/operation-1.svg");
                        background-repeat: no-repeat;
                        height: 55px;
                        width: 55px;
                        display: inline-block;
                        margin-right: 2rem;
						@include xs {
							height: 55px;
							width: 55px;
							margin-right: 1.5rem;
						}
                    }
                }
                dd {
                    line-height: 1.75;
                    @include lg {
                        line-height: 1.6;
                    }
                    @include xs {
                        line-height: 1.5;
                    }
                }
//                &::before {
//                    position: absolute;
//                    content: "";
//                    background-image: url("../img/operation-deco1.svg");
//                    background-repeat: no-repeat;
//                    height: 800px;
//                    width: 670px;
//                    left: -15rem;;
//                    bottom: -5rem;
//                    z-index: -1;
//                    @include lg {
//                        height: 623px;
//                        width: 669px;
//                        left: -4rem;
//                    }
//                    @include md {
//                        display: none;
//                    }
//                }
            }
            .explanation-img {
                @include md {
                    width: 50%;
                    margin: auto;
                }
                @include xs {
                    width: 70%;
                }
            }
        }
        .seminar {
            .white-box {
                background-color: #fff;
                padding-top: 6rem;
                padding-bottom: 6rem;
                @include lg {
                    padding-top: 4rem;
                    padding-bottom: 4rem;
                }
                @include md {
                    padding-top: 3rem;
                    padding-bottom: 3rem;
                }
				@include xs {
					padding-top: 2rem;
					padding-bottom: 2rem;
				}
                p {
                    text-align: center;
                    font-size: 18px;
                    font-size: 1.8rem;
                    font-weight: 600;
					margin-bottom: 2rem;
                    @include lg {
                        font-size: 16px;
                        font-size: 1.6rem;
                    }
                    @include xs {
                        line-height: 1.5;
						margin-bottom: 1rem;
                    }
                }
                .example {
                    width: 90%;
                    margin: auto;
                    @include md {
                        width: 95%;
                    }
                    p.theme {
                        background-color: $color-main;
                        color: #fff;
                        font-size: 20px;
                        font-size: 2rem;
                        border-radius: 100vh;
                        text-align: center;
						margin-bottom: 1rem;
                        @include lg {
                            font-size: 18px;
                            font-size: 1.8rem;
                        }
						@include xs {
							padding: 0.3rem 0 0.5rem 0;
							margin-left: 1rem;
							margin-right: 1rem;
						}
                    }
                    ul {
                        display: flex;
                        flex-wrap: wrap;
                        width: 95%;
                        margin: auto;
                        @include md {
                            width: 100%;
                        }
                        @include sm {
                            flex-wrap: nowrap;
                            width: 92%;
                            margin: auto;
                            flex-direction: column;
                        }
                        li {
							text-align: revert;
							font-weight: 400;
							width: 50%;
							display: inline-block;
							padding-right: 2em;
							margin-bottom: 0;
							&::before {
								content: "●";
								color: #a7deff;
								font-size: 18px;
								padding-right: 0.5rem;
								@include xs {
									font-size: 13px;
								}
							}
							&:last-of-type {
								&::before {
									display: none;
								}
							}
							@include lg {
								font-size: 14px;
								font-size: 1.4rem;
							}
							@include md {
								padding-right: 0.5em;
							}
							@include md {
								width: 100%;
							}
							@include xs {
								text-indent: -1.6em;
								margin-left: 1.6em;
								padding-right: 2em;
							}
									
						}
                    }
                }
            }
        }
    }
    .operation-box2 {
        .explanation {
            grid-template-columns: 1fr 1.1fr;
            dl {
                dt {
                    &::before {
                        content: "";
                        background-image: url("../img/operation-2.svg");
                        height: 55px;
                        width: 55px;
                        display: inline-block;
                        margin-right: 2rem;
                    }
                }
//                &::before {
//                    position: absolute;
//                    content: "";
//                    background-image: url("../img/operation-deco2.svg");
//                    background-repeat: no-repeat;
//                    height: 800px;
//                    width: 760px;
//                    left: revert;
//                    right: -16rem;
//                    top: -13rem;
//                    z-index: -1;
//                    @include lg {
//                        height: 524px;
//                        width: 680px;
//                        right: -18rem;
//                        top: -7rem;
//                    }
//                }
            }
        }
    }
    span.color-blue {
        font-weight: 600;
    }
    section.meeting {
//z-indexを使うためのrelative
        position: relative;
        z-index: 5;
        h5 {
            background-color: $color-main;
            font-size: 20px;
            font-size: 2rem;
            color: #fff;
            border-radius: 100vh;
            text-align: center;
            padding: 1rem;
            margin-bottom: 1.8rem;
			@include xs {
				margin-bottom: 1rem;
			}
        }
        article {
            margin-bottom: 3rem;
            .white-box {
                background-color: #fff;
                padding: 4rem 3.5rem;
                @include lg {
                    padding: 3rem 3.5rem;
                }
                @include xs {
                    padding: 2rem 2rem;
                }
                .midashi {
                    margin-bottom: 4.5rem;
                    @include md {
                        margin-bottom: 2.5rem;
                    }
                    p.date {
                        font-size: 16px;
                        font-size: 1.6rem;
                    }
                    .title {
                        color: $color-main;
                        font-weight: 600;
                        font-size: 23px;
                        font-size: 2.3rem;
                        text-align: center;
                        border-top: 1px solid $color-main;
                        border-bottom: 1px solid $color-main;
                        line-height: 1.5;
                        padding-top: 1.7rem;
                        padding-bottom: 1.9rem;
                        @include sm {
                            padding-top: 1.2rem;
                            padding-bottom: 1.4rem;
                        }
                        @include  xs {
							font-size: 20px;
							font-size: 2rem;
							line-height: 1.2;
							margin-bottom: 1rem;
                        }
                        span {
                            font-size: 18px;
                            font-size: 1.8rem;
                            display: block;
							@include xs {
								font-size: 16px;
								font-size: 1.6rem;
							}
                        }
                    }
                    .others {
                        font-size: 16px;
                        font-size: 1.6rem;
                        text-align: right;
                        font-weight: 600;
						@include xs {
							font-size: 14px;
							font-size: 1.4rem;
							text-align: center;
							line-height: 1.3;
						}
                    }
                }
                .main-contents {
                    .meeting-img {
                        @include md {
                            margin: auto;
                        }
                        p {
                            text-align: center;
                            @include lg {
                                font-size: 1.4rem;
                            }
                            @include sm {
                                margin-top: 0.7rem;
                            }
                        }
                    }
                    dl {
                        margin-bottom: 6rem;
                        @include lg {
                            margin-bottom: 2rem;
                        }
                        @include xs {
                            margin-bottom: 1rem;
                        }
                        dt {
                            font-size: 22px;
                            font-size: 2.2rem;
                            color: $color-main;
                            margin-bottom: 1rem;
                            display: flex;
                            align-items: center;
                            @include lg {
                                margin-bottom: 0.5rem;
                                font-size: 18px;
                                font-size: 1.8rem;
                            }
							@include xs {
								line-height: 1.3;
							}
                            span.square-number {
                                color: #fff;
                                background-color: #50beff;
                                padding: 5px;
                                margin-right: 0.5em;
                                text-align: center;
                                font-size: 70%;
                                height: 25px;
                                width: 25px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                            }
                        }
                        dd {
                            line-height: 1.688;
                            @include lg {
                                line-height: 1.5;
                                font-size: 14px;
                                font-size: 1.4rem;
                            }
                            @include md {
                                font-size: 1.6rem;
                            }
                            @include xs {
                                font-size: revert;
                            }
                        }
                    }
                }
                .gallery {
                    margin-bottom: 1.5rem;
                    @include md {
                        margin-top: 2rem;
                    }
                    @include xs {
                        margin-top: 1rem;
						margin-bottom: 0;
                    }
                    .gallery-imgs {
                        display: grid;
                        grid-template-columns: 1fr 1fr 1fr;
                        gap: 1.8rem;
						@include xs {
							display: block;
						}
						img {
							@include xs {
								margin-bottom: 1rem;
								&:last-of-type {
									margin-bottom: 0;
								}
							}
						}
                    }
                }
                .normal-text {
                    line-height: 1.688;
                    padding-right: 15px;
                    padding-left: 15px;
                    margin-bottom: 3rem;
                    @include lg {
                        padding-right: 0;
                        padding-left: 0;
                    }
                    @include xs {
                        margin-bottom: 1rem;
                    }
                }
            }
        }
    }
    .circle-content {
        overflow: hidden;
        position: absolute;
		bottom: revert;
        left: 0;
        right: 0;
		@iclude xl {
        bottom: -20rem;
		}
		.top-circle {
			background-color: #fff;
			border-radius: 2000px 2000px 0 0 / 600px 600px 0 0;
			margin: 16px -200px;
			min-height: 300px;
			margin-top: 6rem;
			@include sm {
				min-height: 270px;
			}
		}
    }
}


//---------- members --------------------------------

#members {
    position: relative;
    z-index: 10;
    margin-bottom: 13rem;
    padding-top: 10rem;
    margin-top: -10rem;
    @include md {
        margin-bottom: 10rem;
    }
    @include sm {
        padding-top: 9rem;
        margin-top: -12rem;
        margin-bottom: 5rem;
    }
	@include xs {
		margin-top: -9rem;
	}
    &::before {
        position: absolute;
        content: "";
        background-image: url("../img/deco-yellow-left.svg");
        background-repeat: no-repeat;
        height: 250px;
        width: 122px;
        top: 17rem;
        left: 0;
		z-index: -1;
        @include md {
            width: 81px;
            top: 2rem;
        }
        @include sm {
            top: 6rem;
        }
    }
    &::after {
        position: absolute;
        content: "";
        background-image: url("../img/deco-yellow-right.svg");
        background-repeat: no-repeat;
        height: 170px;
        width: 84px;
        top: 95rem;
        right: 0;
		z-index: -1;
        @include md {
            width: 62px;
            top: 87rem;
        }
    }
    .map {
        p {
            margin-bottom: 6.5rem;
            text-align: center;
            @include md {
                margin-bottom: 3.5rem;
            }
        }
    }
    .company-grid {
        margin-top: 8rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        @include sm {
            display: block;
                margin-top: 3rem;
        }
        .company-box {
            .company-number {
                .manufacturing,.construction,.electricity-gas-water,.carrier,.wholesale,.financial,.real-estate,.medical,.service-others,.professional,.others {
                    p {
                        background-color: #96d967;
                        margin-bottom: 0;
                        color: #fff;
                        font-weight: 600;
						text-align: center;
                    }
                    ul {
                        background-color: #f4fbf0;
                        padding: 1rem 1.7rem;
                        li {
                            margin-bottom: 1.2rem;
                            display: flex;
                            align-items: center;
                            line-height: 1.3;
                            @include lg {
                                font-size: 15px;
                                font-size: 1.5rem;
                            }
                            span.square-number {
                                color: #fff;
                                background-color: #96d967;
                                border-radius: 2px;
                                padding: 5px;
                                margin-right: 0.5em;
                                text-align: center;
                                font-size: 70%;
                                height: 24px;
                                width: 23px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                letter-spacing: 0;
								@include xs {
									font-size: 100%;
								}
                            }
//                            span.graduate {
//								font-size: 12px;
//								font-size: 1.2rem;
//								display: contents;
//							}
                        }
                    }
                }
                .construction {
                    p {
                        background-color: #00aaee;
                    }
                    ul {
                        background-color: #e5f6fd;
                        li {
                            span.square-number {
                                background-color: #00aaee;
                            }
                        }
                    }
                }
                .electricity-gas-water {
                    p {
                        background-color: #9b98e1;
                    }
                    ul {
                        background-color: #f5f5fc;
                        li {
                            span.square-number {
                                background-color: #9b98e1;
                            }
                        }
                    }
                }
                .carrier {
                    p {
                        background-color: #4ec3b4;
                    }
                    ul {
                        background-color: #edf9f7;
                        li {
                            span.square-number {
                                background-color: #4ec3b4;
                            }
                        }
                    }
                }
                .wholesale {
                    p {
                        background-color: #bf93d2;
                    }
                    ul {
                        background-color: #f9f4fa;
                        li {
                            span.square-number {
                                background-color: #bf93d2;
                            }
                        }
                    }
                }
                .financial {
                    p {
                        background-color: #8b95b1;
                    }
                    ul {
                        background-color: #f3f4f7;
                        li {
                            span.square-number {
                                background-color: #8b95b1;
                            }
                        }
                    }
                }
                .real-estate {
                    p {
                        background-color: #b38a84;
                    }
                    ul {
                        background-color: #f7f3f3;
                        li {
                            span.square-number {
                                background-color: #b38a84;
                            }
                        }
                    }
                }
                .medical {
                    p {
                        background-color: #f8afac;
                    }
                    ul {
                        background-color: #fef7f7;
                        li {
                            span.square-number {
                                background-color: #f8afac;
                            }
                        }
                    }
                }
                .service-others {
                    p {
                        background-color: #ffb738;
                    }
                    ul {
                        background-color: #fff8eb;
                        li {
                            span.square-number {
                                background-color: #ffb738;
                            }
                        }
                    }
                }
                .professional {
                    p {
                        background-color: #fba8d4;
                    }
                    ul {
                        background-color: #fff6fb;
                        li {
                            span.square-number {
                                background-color: #fba8d4;
                            }
                        }
                    }
                }
                .others {
                    p {
                        background-color: #45629b;
                    }
                    ul {
                        background-color: #eceff5;
                        li {
                            span.square-number {
                                background-color: #45629b;
                            }
                        }
                    }
                }
            }
        }
    }
}



//---------- list --------------------------------/
#list {
    margin-bottom: 15rem;
    @include md {
        margin-bottom: 10rem;
    }
    @include sm {
        margin-bottom: 6rem;
    }
	#link {
		margin-bottom: 2.5rem;
		@include md {
//			margin-bottom: 3rem;
		}
		ul {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
            gap: 0.7rem;
            @include sm {
                grid-template-columns: 1fr 1fr 1fr;
            }
            @include xs {
                grid-template-columns: 1fr 1fr;
            }
            .eat {
				color: #ffa300;
				&::before {
					font-family: "Font Awesome 5 Free";
					font-weight: 600;
					content: "\f2e7";
					padding-right: 0.8rem;
				}
			}
			li.manufacturing,.construction,.electricity-gas-water,.carrier,.wholesale,.financial,.real-estate,.medical,.service-others,.professional,.others{
                a {
                    font-size: 16px;
                    font-size: 1.6rem;
                    font-weight: 600;
                    text-align: center;
                    color: #fff;
                    background-color: #96d967;
                    padding: 0.3rem 0 0.3rem 0;
                    display: block;
                    transition: 0.2s;
                    cursor: pointer;
                    @include lg {
                    }
                    @include md {
                    }
                    @include sm {
//                        font-size: 16px;
//                        font-size: 1.6rem;
                    }
                    @include xs {
                        padding: 1rem;
//                        margin-right: 0.3rem;
//                        margin-bottom: 0.8rem;
                    }
                    &:hover {
                        background-color: #505050;
                    }
                }
            }
			li.construction {
                a {
                    background-color: #00aaee;
                }
			}
			li.electricity-gas-water {
                a {
                    background-color: #9b98e1;
                }
			}
			li.carrier {
                a {
                    background-color: #4ec3b4;
                }
			}
			li.wholesale {
                a {
                    background-color: #bf93d2;
                }
			}
			li.financial {
                a {
                    background-color: #8b95b1;
                }
			}
			li.real-estate {
                a {
                    background-color: #b38a84;
                }
			}
			li.medical {
                a {
                    background-color: #f8afac;
                }
			}
			li.service-others {
                a {
                    background-color: #ffb738;
                }
			}
			li.professional {
                a {
                    background-color: #fba8d4;
                }
			}
			li.others {
                a {
                    background-color: #45629b;
                }
			}
		}
	}
}


	#members-list {
        .table-wrap {
            @include lg {
                overflow-x: scroll;
            }
        }
		table.graduate {
			margin-top: 5rem;
			tbody {
				tr {
					td {
						span.graduate-text {
							font-size: 12px;
							font-size: 1.2rem;
							display: block;
						}
					}
				}
			}
		}
		table {
			width: 100%;
            line-height: 1.313;
            scroll-padding-top: 100px;
            @include lg {
                width: 1110px;
                border-collapse: collapse;
//                white-space: nowrap;
            }
            thead {
                background-color: #8d8d8d;
                color: #fff;
                text-align: center;
                tr {
                    th {
                        padding: 1.5rem 1rem;
                        border-left: 1px dotted #4d4d4d;
                    }
                    .industry {
                        width: 9%;
                    }
                    .name {
                        width: 10%;
                    }
                    .company {
                        width: 21.5%;
                    }
                    .address {
                        width: 21.5%;
                    }
                    .pr {
                        width: 39%;
                    }
					&:first-child {
						background-color: #505050; 
						font-size: 2rem;

					}
				}
			}
            tbody {
                tr {
                    font-size: 16px;
                    font-size: 1.6rem;
                    th.manufacturing,.construction,.electricity-gas-water,.carrier,.wholesale,.financial,.real-estate,.medical,.service-others,.professional,.others {
                        width: 7em;
                        line-height: 1.313;
                        background-color: #96d967;
                        color: #fff;
                        text-align: center;
                        border-bottom: 1px solid #fff;
                        @include sm {
                        }
                        @include xs {
                        }
                        .anchor {
                            padding-top: 11rem;
                            margin-top: -11rem;
                        }
                    }
//	▼業種の背景色 ------------------------------->
                    th.construction {
                        background-color: #00aaee;
                    }
                    th.electricity-gas-water {
                        background-color: #9b98e1;
                    }
                    th.carrier {
                        background-color: #4ec3b4;
                    }
                    th.wholesale {
                        background-color: #bf93d2;
                    }
                    th.financial {
                        background-color: #8b95b1;
                    }
                    th.real-estate {
                        background-color: #b38a84;
                    }
                    th.medical {
                        background-color: #f8afac;
                    }
                    th.service-others {
                        background-color: #ffb738;
                    }
                    th.professional {
                        background-color: #fba8d4;
                    }
                    th.others {
                        background-color: #45629b;
                    }
//	ここまで ------------------------------->
                    td {
                        background: #fff;
                        border-left: 1px dotted #4d4d4d;
                        padding: 1.5rem 1rem 1.5rem 1rem;
                        letter-spacing: 0;
                        @include xs {
                        }
                        a {
                            color: #000;
                            border-bottom: solid 1px #505050;
                            &:hover {
                                color: $color-main;
                                border-bottom: solid 0.5px $color-main;
                            }
                        }
                    }
                    &:nth-child(even) {
                        td {
                            background: #eceff2;
                        }
                    }
                    .name {
                        text-align:center; 
                    }
					.financial-td{
						letter-spacing: -0.6px;
					}
                }
            }

            
            
//	▼地区名の部分 ------------------------------->
			th.area1, th.area2, th.area3 {
				width: 3em;
				color: #fff;
				background-color: #c1c1c1;
				padding: 0.5rem;
				text-align: center;
				font-weight: 500;
				display: revert;
//				&::before {
//					display: none;
//				}
			}
			th.area2 {
				background-color: #b2b2b2;
//				&::before {
//					display: none;
//				}
			}
		}
	}
	.scroll-hint-icon {
		top: calc(5% - 30px);
		box-sizing: border-box;
		width: 180px;
	}


//column------------------------------------------------------------------ここから
#column {
	background-color: #e5f5ff;
	padding-top: 10rem;
	padding-bottom: 12rem;
	margin-bottom: 12rem;
	@include sm {
		padding-top: 7rem;
		padding-bottom: 9rem;
		margin-bottom: 8rem;
	}
	@include xs {
		padding-top: 8rem;
	}
	h4 {
		margin-bottom: 6rem;
	}
	article {
		.white-box {
			position: relative;
			background-color: #fff;
			padding: 6rem 6rem;
			border-radius: 10px;
			margin-bottom: 2.5rem;
			@include lg {
				padding: 3rem 3.5rem;
			}
			@include xs {
				padding: 4rem 3rem;
			}

			.item {
				position: absolute;
				top: 0;
				left: 0;
				border-left: 40px solid $color-main;
				border-bottom: 40px solid transparent;
			}
			.midashi {
				border-bottom: 1px solid #505050;
				padding-bottom: 1.6rem;
				margin-bottom: 1.5rem;
				p.date {
					font-size: 14px;
					font-size: 1.4rem;
					span {
						color: #2f4b91;
					}
				}
				.title {
					color: #2f4b91;
					font-size: 23px;
					font-size: 2.3rem;
					font-weight: 600;
					border-left: 3px solid $color-main;
					padding-left: 0.5em;
					line-height: 1.3;
				}
			}
			.category {
				font-size: 14px;
				font-size: 1.4rem;
				color: $color-main;
				background-color: #e5f5ff;
				padding: 0rem 1.5rem;
				display: inline-block;
				font-weight: 500;
				margin-bottom: 2rem;
			}
			.main-contents {
				p {
					margin-bottom: 0;
					line-height: 1.5;
					@include xs {
						line-height: 1.5;
						letter-spacing: 0.1rem;
					}
					span.midashi-mini {
						font-size: 18px;
						font-size: 1.8rem;
						font-weight: 600;
					}
					.column-img {
						display: block;
						text-align: center;
						margin: 1.5rem auto 1.5rem auto;
						width: 500px;
						@include md {
							width: 300px;
						}
						@include sm {
							height: 100%;
							width: 100%;
						}
					}
				}
				p.signature {
					text-align: right;
				}
			}
		}
	}
	article:last-of-type .white-box {
		margin-bottom: 0;
	}
}


//メールフォーム
//contact------------------------------------------------------------------ここから
#contact {
    padding-top: 10rem;
    margin-top: -10rem;
    h4 {
        margin-bottom: 5.5rem;
		@include xs {
			margin-bottom: 3rem;
		}
    }
    #introduction {
        margin-top: 4rem;
        margin-bottom: 2rem;
        text-align: center;
        @include sm {
            margin-top: 2rem;
        }
        @include xs {
            margin-bottom: 0rem;
        }
        p{
            line-height: 1.5;
            span{
                background-color: $color-main;
                padding: 0.2rem 0.5rem 0.5rem;
                color: #fff;
                font-weight: bold;
                border-radius: 0.5rem;
                margin-right: 0.5rem;
				@include xs {
					padding: 0 0.5rem 0.2rem 0.5rem;
				}
            }
            @include xs {
                text-align: justify;
            }
        }
        dl {
            margin-top: 6rem;
            @include xs {
                margin-top: 3rem;
            }
            dt{
                font-size: 20px;
                font-size: 2rem;
                letter-spacing: 2px;
                @include xs {
                    font-size: 16px;
                    font-size: 1.6rem;
                    letter-spacing:0;
                }
            }
            dd{
                background-color: #fff;
                margin-top: 1rem;
                padding: 2rem;
                display: flex;
                align-items: center;
                justify-content: center;
                @include xs {
                    display: block;
                }
                a{
                    font-weight: 600;		
                    color: $color-main;
                    span{
                        font-size: 38px;
                        font-size: 3.8rem;
                        svg{
                            margin-right: 1.5rem;
                        }
                    }
                }
            }
        }
    }

    //privacypolicy-mini------------------------------------------------------------ここから
    .privacy-policy{
        border: 1px solid #c3c3c3;
        padding: 4rem 3rem;
        margin-top: 2rem;
        background-color: #fff;
        h4 {
            font-size: 18px;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: revert;
        }
        p{
            text-align: justify;
            line-height: 1.5;
            font-size: 15px;
            font-size: 1.5rem;
        }
    }
}

//thanks-box--------------------------------------------------------------------ここから
.thanks-box {
	margin-top: 80px;
	padding-bottom: 10rem;
	height: 60vh;
	display: flex;
	align-items: center;
	h3 {
		font-size: 2.5rem;
		font-size: 25px;
		margin-bottom: 4rem;
		padding: 0;
		border: none;
		margin-top: 4rem;
	}
	p {
		margin-bottom: 5rem;
	}
	a {
		display: inline-block;
		font-weight: bold;
		padding: 1.4rem 6rem;
		vertical-align: middle;
		line-height: 1;
		border: 1px solid $color-main;
		background: $color-main;
		color: #fff;
		-webkit-appearance: none;
		transition: 0.3s;
		&:hover {
			color: $color-main;
			background-color: #fff;
		}
	}
}

// ---------------------- for JavaScript ここから ---------------------- */
//form#mail_form dl dt span.required{
//	display : inline-block;
//	color : #fff;
//	line-height : 1;
//	margin-right: 1rem;
//    padding: 0.4rem 0.5rem;
//    background-color: $color-main;
//    font-size: 90%;
//    border-radius: 3px;
//	font-weight: normal;
//}
form#mail_form dl dt span.optional{
	display: none;
}
form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match{
	display : block;
	color : #ff0000;
	margin-top : 3px;
}
span.loading{
	width : 50px;
	height : 50px;
	border-radius : 50%;
	border-top : 5px solid rgba( 255, 255, 255, 0.2 );
	border-right : 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom : 5px solid rgba( 255, 255, 255, 0.2 );
	border-left : 5px solid #ffffff;
	-webkit-transform : translateZ( 0 );
	-ms-transform : translateZ( 0 );
	transform : translateZ( 0 );
	-webkit-animation : load-circle 1.0s linear infinite;
	animation : load-circle 1.0s linear infinite;
	position : absolute;
	top : 50%;
	left : 50%;
	margin-top : -25px;
	margin-left : -25px;
}
@-webkit-keyframes load-circle{
	0%{
		-webkit-transform : rotate( 0deg );
		transform : rotate( 0deg );
	}
	100%{
		-webkit-transform : rotate( 360deg );
		transform : rotate( 360deg );
	}
}
@keyframes load-circle{
	0%{
		-webkit-transform : rotate( 0deg );
		transform : rotate( 0deg );
	}
	100%{
		-webkit-transform : rotate( 360deg );
		transform : rotate( 360deg );
	}
}
/* ---------------------- for JavaScript ここから ---------------------- */

form#mail_form dt {
    margin-top: 2rem;
    padding-top: 2rem;
	font-weight: 600;
	color: #3e3c37;
	@include xs {
		padding-top: 1rem;
	}
}
form#mail_form dt:first-child{
	border-top: none;
}
form#mail_form dd:last-child{
	padding-bottom: 2rem;
}
form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"],
form#mail_form textarea{
	width : 100%;
	padding : 0.5rem 1rem;
	border : 1px solid #fff;
	border-radius : 3px;
	background : #eeeeee;
	-webkit-appearance : none;
	font-size : 18px;
	margin-top : 5px;
}
form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus{
	border : 1px solid #b2b2b2;
	background-color: #eeeeee;
	outline: none;
}
form#mail_form input[type="radio"],
form#mail_form input[type="checkbox"]{
	margin-right : 5px;
	margin-left: 2em;
	accent-color:#000;
	@include xs {
		margin-left: 0;
	}
}
form#mail_form input:first-child[type="radio"],
form#mail_form input:first-child[type="checkbox"]{
	margin-right : 5px;
	margin-left: 0;
}
form#mail_form select{
	font-size : 100%;
	margin-top : 5px;
}
form#mail_form textarea{
	display : block;
	width : 100%;
	max-width : 100%;
	height : 200px;
	padding : 1rem;
	resize : vertical;
	border : 1px solid #fff;
	border-radius : 3px;
	background : #eeeeee;
	-webkit-appearance : none;
	font-size : 100%;
	font-family : inherit;
}
form#mail_form ul{
	list-style-type : none;
}
form#mail_form ul li label:hover{
	cursor : pointer;
}
form#mail_form input#postal{
	width: 30%;
}
form#mail_form input#postal + a{
	display : inline-block;
	padding : 5px 15px;
	margin-left: 0.5rem;
	background : #FDEFF5;
	border : 1px solid #C7000B;
	border-radius : 3px;
	color : #C7000B;
	font-family : inherit;
	text-decoration : none;
	transition: 0.3s;
}
form#mail_form input#postal + a:hover{
	cursor : pointer;
	background : #C7000B;
	color: #fff;
}
form#mail_form ul.kind-list li{
	display: inline-block;
	min-width: 40%;
}
form#mail_form p#form_submit{
	width : 90%;
	margin : 0 auto;
	padding: 5rem 0 10rem 0;
}
form#mail_form input[type="button"]{
	font-weight: 600;
	font-size: 20px;
	font-size: 2rem;
	letter-spacing: 0.06em;
	padding : 1.4rem 6rem;
	vertical-align : middle;
	line-height : 1;
	border: 2px solid $color-main;
	background : $color-main;
	color: #fff;
	-webkit-appearance : none;
	border-radius: 6px;
	transition: 0.3s;
	@include xs {
		letter-spacing: 0;
		padding : 1.4rem 3.5rem;
	}
}
form#mail_form input[type="button"]:hover{
	cursor : pointer;
	border: 2px solid $color-main;
	background : #fff;
	color: $color-main;
}
form#mail_form dt.optional{
	position: relative;
}
form#mail_form dt.optional::before{
	content: "任意";
	display: inline-block;
    color: $color-main;
	border: 1px solid $color-main;
    line-height: 1;
    margin-right: 1rem;
    padding: 0.5rem;
    background-color: #fff;
    font-size: 90%;
    border-radius: 3px;
    font-weight: normal;
}
form#mail_form dt.required::before{
	content: "必須";
	display : inline-block;
	color : #fff;
	border: 1px solid $color-main;
	line-height : 1;
	margin-right: 1rem;
    padding: 0.4rem 0.5rem;
    background-color: $color-main;
    font-size: 90%;
    border-radius: 3px;
	font-weight: normal;
}

@media (max-width: 767px) {
    #mainarea section p:nth-child(1) {
        text-align: justify!important;
    }
    #mainarea section p:nth-child(1) br {
        display: none;
    }
	h3 br {
		display: inline-block;
    }
}
    
