@charset "utf-8";
/* CSS Document */

@import url("txt.css");
@import url("btn.css");
@import url("icon.css");
@import url("label.css");

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;@400;900&family=Nanum+Myeongjo:wght@700&family=Sawarabi+Gothic&family=Shippori+Mincho:wght@700&family=Archivo+Narrow:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@800&display=swap');

body{
	background: #f6f8fc;
	margin-top: -3rem;
	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

section{
    position: relative;
    z-index: 1;
}

.box1{
	width: 80%;
	margin: auto;
	font-family: 'Shippori Mincho', serif;
	line-height: 2rem;
}

.flex{
	display: flex;
}

.cd{
	justify-content: center;
	margin-bottom: 2rem;
}
.cd_img{
	width: 40%;
}
.cd_img img{
	width: 100%;
}
.cd_txt{
	width: 55%;
	margin-left: 3rem;
	margin-botxttom: 2rem;
}

.cm_flex{
	display: flex;
	justify-content: space-between;
}

.txt_right{
	text-align: right;
	margin-right: 1rem;
}

.margin_t{
	margin-top: 3rem;
}
.margin_b{
	margin-bottom: 2rem;
}
.margin_b1{
	margin-bottom: 1rem;
}
.padding_l{
	padding-left: 1rem;
}

small{
	background:#333;
	color:#fff;
	display: block;
	text-align: center;
	padding:20px;
}

/* pc */
.pc { display: block !important; }
/* sp */
.sp { display: none !important; }

/*--------------------------- */

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

/* pc */
.pc { display: none !important; }
/* sp */
.sp { display: block !important; }

	
.cd{
	flex-direction: column;
	justify-content: center;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.cd_img{
	width: 100%;
}
.cd_txt{
	width: 100%;
	margin-left: auto;
	margin-top: 1rem;
}
	
.cm_flex{
	flex-direction: column;
}
	
}
