@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

/* リセット */
body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style: none;
}
img {
  vertical-align: bottom;
	max-width: 100%;
}
body{
	font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}
/* ヘッダーデザイン */
.site-header{
	background: #fff;
	height: 8.4em;
	/* display: flex; */
	position: fixed;
	justify-content: space-between;
	width: 100%;
	z-index: 5;
	transition: .5s;
}
.header-title{
	background: #F4F0DD;
}
.header-title h1{
	font-size: 16px;
	font-weight: normal;
	padding: .6em .6em .6em 2em;
}

.header_wrapper{
	position: relative;
}
.header_left{
	position: absolute;
  left: 0;
	margin-left: 7em;
	float: left;
}
@media (max-width: 1180px){
	.header_left{
		margin-left: 2em;
	}
}
@media (max-width: 1080px){
	header{
		display: none;
	}
}
.header_left img{
	width: 90%;
}
.header_left a:hover{
	opacity: 0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.header_left h1{
	font-weight: normal;
	font-size: 12px;
}
@media (max-width: 1080px){
	.header_wrapper{
		height: 6em;
	}
	.header_left h1{
		font-weight: normal;
		font-size: 10px;
	}
}
@media (max-width: 880px){
	.site-header{
		height: 4em;
	}
	.header_left img{
		width: 60%;
	}
}
/* header_right */
.header_right{
	position: absolute;
  right: 0;
	width: 890px;
	margin: 0 0  0 auto;
}
@media (max-width: 1280px){
	.header_right{
		width: 885px;
	}
}
/* ナビデザイン */
nav{
	float: left;
}
.menu{
	display: block;
	margin-top: .6em;
}
.menu li a{
	text-decoration: none;
	font-size: 16px;
	color: #6DB300;
	margin-left: 1.2em;
	margin-right: 1.2em;
	text-align: center;
}
.menu_text{
	padding-top: 1em;
}
.menu ul{
	width: 500px;
}
.menu li{
	float: left;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: .5em;
}
.menu li a:hover{
	color: #008FCD;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.menu ul:after{
	content: "";
	display: block;
	clear: both;
}
/* 電話設定 */
.tel{
	text-decoration: none;
	border: 1px solid #4C1769;
	border-radius: 26px;
	padding: .8em 0;
	margin-right: 1em;
	width: 176px;
	float: left;
	text-align: center;
	margin-top: 1em;
}
.tel span{
	color: #68B72E;
}
.tel h3{
	color: #000;
	font-weight: bold;
	letter-spacing: 1px;
}
.tel.transform{
	display: none;
}
/* お問い合わせ */
.reseve a{
	text-decoration: none;
	color: #FFF;
	background-image: linear-gradient(90deg, rgba(247, 93, 139, 1), rgba(254, 220, 64, 1));
	border-radius: 26px;
	padding: .8em 0;
	width: 176px;
	float: left;
	text-align: center;
	margin-top: 1em;
	transition: 0.5s;
}
.reseve :hover{
	color: #6DB300;
	transition: 0.5s;
}

/* sns設定 */
/* .insta{
	float: left;
}
.header_right_text{
	margin-top: 1em;
	float: left;
} */

/*  ハンバーガーメニュー */
.hamburger {
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
	z-index: 9999;
	border: 2px solid #000;
	background: #FFF;
	border-radius: 6px;
}
.hamburger{
	display: none;
}
@media (max-width: 1080px){
	.hamburger{
		display: block;
	}
}
@media (max-width: 880px){
	.hamburger{
		top   : 16px;
	}
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 21px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform   : rotate(315deg);
  transform        : rotate(315deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 21px;
  -webkit-transform: rotate(-315deg);
  -moz-transform   : rotate(-315deg);
  transform        : rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 10;
  top  : 0;
  left : 0;
  color: #000;
  background: #6DB300;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
	opacity: .9;
}

nav.globalMenuSp ul {
  background: #6DB300;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
	color: #FFF;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}
.nav_tel{
	margin-top: 2em;
	color: #FFF;
}
.nav_phone h3{
	font-size: 28px;
	color: #FFF;
}
.nav_ad{
	font-size: 16px;
	margin-bottom: 4em;
}
/* バナー */
.banner{
	text-align: center;
}
.banner img{
  margin-bottom: 4em;
}
.banner img:hover{
	opacity: 0.7;
	transition: 0.3s;
}
@media (max-width: 680px){
	.banner{
		margin-left: 1.5em;
		margin-right: 1.5em;
	}
}
/* トップ画面デザイン */
.top_photo img {
    width: 100%;
    height: auto;
		margin-top: 7em;
}
@media (max-width: 1080px){
	.top_photo img {
    margin-top: 0em;
}
}
@media (max-width: 770px){
	.top_photo .pc{
		display: none;
	}
}
@media (min-width: 770px){
	.top_photo .sp{
		display: none;
	}
}
/* 「SlideDown」の動作内容 */
@keyframes SlideDown {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);/* Y軸方向に50px */
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateX(0);
  }
}
body .top_photo, .banner, .content01, .content02, .content03, .content04,
 .content05,.contact, .map, footer, .copyright{
  animation-duration: 2s;/* アニメーション時間 */
  animation-name: SlideDown;/* アニメーション名 */
}

/*  コンテンツ01設定 */
.content01{
	text-align: center;
	margin-bottom: 3em;
}
.content01 .tittle_01{
	margin-bottom: 2em;
}
.content01 h2{
	margin-left: auto;
	margin-right: auto;
	color: #492812;
	width: 210px;
	font-size: 28px;
	padding-bottom: .5em;
	margin-top: 2em;
	/* font-weight: normal; */
	/* border-bottom: 1px solid #4C1769; */
}
@media (max-width: 768px){
	.content01{
		margin-bottom: 2em;
	}
	.content01 .tittle_01{
		margin-bottom: 1em;
	}
	.content01 h2{
		margin-top: 1.4em;
	}
}
/*  コンテンツnewsの設定 */
.content_news{
	text-align: center;
	margin-top: 5em;
	margin-bottom: 4em;
}
.content_news h1{
	font-size: 52px;
	font-weight: bold;
}
.content_news h2{
	font-size: 24px;
}
@media (max-width: 768px){
	.content_news br{
		display: block;
	}
	.content_news h1{
		font-size: 42px;
	}
	.content_news h2{
		font-size: 20px;
	}
}
/* newsテキスト */
.news{
	margin: auto;
	width: 1000px;
	padding-bottom: 2em;
}
.news1{
	text-align: left;
	margin: 1.5em 0 1em 0;
	border-bottom: dotted 2px #3D1729;
}
.news-title{
	font-size: 18px;
	font-weight: normal;
	color: #3D1729;
	text-decoration: none;
}
.news-title:hover{
	opacity: 0.6;
}
.date{
	font-size: 16px;
	color: #4D4D4D;
	text-decoration: none;
}
@media (max-width: 1000px){
	.news{
	  margin: auto;
		padding-left: 2em;
		padding-right: 2em;
		width: auto;}
	}
	.news-title{
		font-size: 16px;
	}
/* 運営規定設定 */
.pdf{
  margin-top: .5em;

}
.pdf_button{
	margin-top: 1em;
	text-align: center;
  float: left;
  margin: .5em;
}
.pdf_button a{
	padding: 10px 30px;
	color: #FFF;
	font-size: 14px;
	background: #492812;
	text-decoration: none;
	border-radius: 6px;
}
.pdf_button a:hover{
	opacity: 0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

/* ボタン設定 */
.serves_button{
	margin-top: 1em;
	padding-bottom: 3em;
	text-align: center;
}
.serves_button a{
	padding: 14px 120px;
	color: #FFF;
	font-size: 18px;
	background: #93C743;
	text-decoration: none;
	border-radius: 6px;
}
.serves_button a:hover{
	opacity: 0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
@media screen and (max-width: 600px){
	.serves_button a{
		padding: 14px 80px;
		font-size: 16px;
	}
}

/* コンテンツ02設定 */
.content02{
	background: #F2F6CC;
	padding: 1em 0 4em 0;
}
.content02 .tittle_01{
	margin-bottom: 2em;
	text-align: center;
}
.content02 h2{
	margin-left: auto;
	margin-right: auto;
	color: #492812;
	width: 210px;
	font-size: 28px;
	margin-top: 1em;
}
.aisatsu-wrapper{
	margin-left: auto;
	margin-right: auto;
	width: 1000px;
}
.aisatsu-wrapper img{
	float: left;
}
.content02_text{
	float: left;
}
.content02_text h4{
	width: 628px;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.8em;
	margin-left: 2em;
}
.content02_text span{
	font-weight: bold;
}
@media (max-width: 1000px){
	.aisatsu-wrapper{
		margin-left: auto;
		margin-right: auto;
		width: 740px;
	}
	.content02_text h4{
		width: 382px;
		font-size: 16px;
		margin-left: 1em;
		text-align: justify;
	}
	.content02 h4 br{
		display: none;
	}
}
.content02:after{
	content: "";
	display: block;
	clear: both;
}
@media (max-width: 750px){
	.content02 .tittle_01{
		margin-bottom: 1em;
	}
	.content02 h2{
		margin-top: 1em;
	}
	.aisatsu-wrapper{
		margin-left: 1.5em;
		margin-right: 1.5em;
		width: auto;
		text-align: center;
	}
	.aisatsu-wrapper img{
		float: none;
		text-align: center;
	}
	.content02_text{
		float: none;
    margin-top: 1.2em;
	}
	.content02_text h4{
		width: auto;
		font-size: 16px;
		margin-left: 0em;
		text-align: justify;
	}
}
/* コンテンツ03設定 */
.content03{
	padding: 3em 0;
	position: relative;
}
.illu_kaeru01 {
    position: absolute;
    top: -4em;
    right: 5em;
}
.content03 .tittle_01{
	margin-bottom: 3em;
	text-align: center;
}
.content03_wrapper{
	width: 1000px;
	margin-left: auto;
	margin-right: auto
}
.content03 h2{
	margin-left: auto;
	margin-right: auto;
	width: 210px;
	font-size: 28px;
	padding-bottom: .5em;
	margin-top: 1em;
	font-weight: normal;
}
@media (max-width: 1000px){
	.content03_wrapper{
		width: 772px;
	}
}
@media (max-width: 810px){
	.content03_wrapper{
		width: 652px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media (max-width: 810px){
	.content03_wrapper{
		margin-left: auto;
		margin-right: auto;
	}
}
@media (max-width: 670px){
	.content03_wrapper{
		width: 320px;
	}
	.illu_kaeru01 {
		display: none;
	}
	.content03 .tittle_01 {
    margin-bottom: 1.5em;
}
}
.content03_wrapper:after{
	content: "";
	display: block;
	clear: both;
}
.choice_01, .choice_02, .choice_03, .choice_04{
	width: 300px;
	float: left;
	margin-bottom: 3em;
	margin-left: 1em;
	margin-right: 1em;
}
@media (max-width: 1000px){
	.choice_01, .choice_02, .choice_03, .choice_04{
		width: 225px;
    height: 328px;
	}
}
@media (max-width: 810px){
	.choice_01, .choice_02, .choice_03, .choice_04{
		width: 300px;
		margin-left: .8em;
		margin-right: .8em;
    height: auto;
	}
	.content03 h2{
		margin-top: 1em;
	}
}
@media (max-width: 670px){
	.choice_01, .choice_02, .choice_03, .choice_04{
		width: 320px;
		float: none;
		margin-left: 0em;
		margin-right: 0em;
	}
}
.choice_text h3{
	font-size: 20px;
	font-weight: normal;
	line-height: 2em;
	color: #3D1729;
	margin-top: .6em;
	text-align: center;
}
.choice_text p{
	font-size: 15px;
	line-height: 2em;
	color: #3D1729;
}
/* コンテンツ04設定 */
.content04{
	padding: 1.5em 0;
	background: #F4F0DD;
	position: relative;
  margin-bottom: 4em;
}
.illu_kaeru02 {
  position: absolute;
	top: -4em;
  left: 20em;
}
.content04 .tittle_01{
	margin-bottom: 3em;
	text-align: center;
}
.content04_wrapper{
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3em;
}
.content04_wrapper:after{
	content: "";
	display: block;
	clear: both;
}
.content04 h2{
	margin-left: auto;
	margin-right: auto;
	color: #492812;
	width: 250px;
	font-size: 28px;
	margin-top: 1em;
	position: relative;
}

.serv_01{
	width: 250px;
	float: left;
	margin-bottom: 1.2em;
	text-align: center;
}
@media (max-width: 1000px){
	.content04_wrapper{
		width: 744px;
		margin-bottom: 2em;
	}
	.serv_01{
		width: 170px;
		float: left;
		margin-bottom: 1.2em;
		text-align: center;
		margin-left: .5em;
		margin-right: .5em;
	}
}
@media (max-width: 750px){
	.content04_wrapper{
		width: 630px;
		margin-left: auto;
		margin-right: auto;
	}
	.content04 h2{
		margin-top: 1.5em;
	}
	.serv_01{
		width: 210px;
		float: left;
		margin-bottom: 1.2em;
		text-align: center;
		margin-left: 0;
		margin-right: 0;
	}
}
@media (max-width: 650px){
	.content04_wrapper{
		width: 354px;
		margin-left: auto;
		margin-right: auto;
	}
	.serv_01{
		width: 170px;
		text-align: center;
		padding: .2em;
		margin-left: 0;
		margin-right: 0;
	}
	.illu_kaeru02{
		display: none;
	}
	.content04 .tittle_01 {
    margin-bottom: 1em;
	}
}
/* コンテンツ04設定 */
.content05{
	padding: 2em 0;
	margin-bottom: 2em;
}
.content05 .tittle_01{
	margin-bottom: 3em;
	text-align: center;
}
.content05_wrapper{
	width: 1023px;
	margin-left: auto;
	margin-right: auto
}
.content05_wrapper:after{
	content: "";
	display: block;
	clear: both;
}
.content05 h2{
	margin-left: auto;
	margin-right: auto;
	color: #492812;
	width: 210px;
	font-size: 26px;
	padding-bottom: .5em;
	margin-top: 1em;
}

@media (max-width: 824px){
	.content05_wrapper{
		width: auto;
	}
  .content05 .tittle_01{
  	margin-bottom: 1.5em;
  	text-align: center;
  }
  .content05 h2{
  	margin-top: .2em;
    padding-bottom: 0em;
  }
}
/* 受け入れ状況設定 */
.table_wrapper{
	width: 1036px;
	margin-left: auto;
	margin-right: auto;
}
.table_wrapper:after{
	content: "";
	display: block;
	clear: both;
}
.rihabiri_text{
  text-align: right;
}
.table_nurse{
	float: left;
	margin-left: 1.5em;
	margin-right: 1.5em;
}
.table_rihabiri{
	float: left;
  margin-left: 1.5em;
	margin-right: 1.5em;
  margin-bottom: 1.5em;
}
.table_nurse h3{
	text-align: center;
	font-size: 20px;
	margin-bottom: 1.5em;
	font-weight: normal;
}
@media (max-width: 1080px){
	.table_wrapper{
		width: 520px;
		margin-left: auto;
		margin-right: auto;
	}
  .rihabiri_text{
    float: none;
  }
}
@media (max-width: 1080px){
	.table_nurse{
		float: left;
		margin-left: 2em;
		margin-right: 2em;
		margin-bottom: 3em;
	}
  .table_rihabiri{
  	float: left;
  	margin-left: 2em;
  	margin-right: 2em;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 450px){
  .table_wrapper{
		width: auto;
		margin-left: .5em;
		margin-right: .5em;
	}
  .table_nurse{
  	float: left;
    margin-left: .4em;
		margin-right: .4em;
  }
  .table_rihabiri{
  	float: left;
    margin-left: .4em;
		margin-right: .4em;
  }
  .rihabiri_text{
    font-size: 14px;
  }
}
.table_nurse h3 span{
	color: #ea7c97;
}
.table_rihabiri h3 span{
	color: #ea7c97;
}
.table_rihabiri h3{
	text-align: center;
	font-size: 20px;
	margin-bottom: 1.5em;
	font-weight: normal;
}
table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 470px;
  height: 290px;
  table-layout: fixed;
  color: #000;
}
@media (max-width: 460px){
	table {
	  border-collapse: collapse;
	  margin: 0 auto;
	  padding: 0;
	  width: auto;
	  table-layout: fixed;
	  color: #000;
	}
}

table tr {
  background-color: #fff;
  padding: 20px;
  border-bottom: 1px solid #bbb;
}
table thead{
  border-bottom: 5px solid #ff9900;
}
table tr:last-child{
   border-bottom: none
}
table th,
table td {
	padding: 1em;
  border-right: 1px solid #bbb;
}
table th:last-child,
table td:last-child{
    border: none;
}
tbody th {
    color: #ff9901;
}
.maru{
   text-align: center;
   font-size: 18px;
	 color: gray;
}
.maru span{
   font-size: 11px;
}
.batsu span{
   font-size: 11px;
}
.batsu{
   text-align: center;
   font-size: 18px;
	 color: pink;
}
@media (max-width: 400px){
  able th, table td {
    padding: 0.4em;
}
}
/* お問い合わせ設定 */
.contact{
	width: 800px;
	background: #FBE7EC;
	padding:3em 2em 1em 2em;
	border-radius: 16px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4em;
	position: relative;
}
.illu_kaeru03 {
  position: absolute;
  right: 3em;
  bottom: -3em;
}
@media (max-width: 1000px){
	.contact{
		width :660px;
		background: #FBE7EC;
		padding:3em 2em 1em 2em;
		border-radius: 16px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 3em;
	}
}
@media (max-width: 800px){
	.contact{
		width :auto;
		background: #FBE7EC;
		padding:3em 2em 1em 2em;
		border-radius: 0px;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0em;
	}
}
.contact_wrapper{
	text-align: center;
	margin-bottom: 2em;
}
.contact h2 {
    color: #492812;
    font-size: 28px;
    padding-bottom: 0.5em;
}
.contact-tel {
	margin-bottom: 1em;
}
.contact-tel h5 {
	  width:420px;
    color: #492812;
    font-size: 42px;
		padding-top: 0.2em;
    padding-bottom: 0.2em;
		margin-left: auto;
		margin-right: auto;
		border-top: 1px solid #4C1769;
		border-bottom: 1px solid #4C1769;
}

.contact_wrapper p{
	font-size: 18px;
	margin-bottom: .6em;
}
@media screen and (max-width: 600px) {
	.contact-tel h5 {
		  width:320px;
	    color: #492812;
	    font-size: 32px;
			padding-top: 0.2em;
	    padding-bottom: 0.2em;
	}
	.contact_wrapper p{
		font-size: 16px;
	}
	.illu_kaeru03{
		display: none;
	}
}
.contact-time p{
	margin-top: 1em;
}
.contact_button{
	text-align: center;
}
.contact_button a {
	text-decoration: none;
    padding: 14px 50px;
    color: #FFF;
    font-size: 18px;
    background: #93C743;
    text-decoration: none;
    border-radius: 6px;
}
.contact_button:hover{
	opacity: 0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

/* map設定 */
.map {
background: #F4F0DD;
}
.map:after{
	content: "";
	display: block;
	clear: both;
}
.map-wrapper{
	width: 1012px;
	margin-left: auto;
	margin-right: auto;
}
.map-date{
	float: left;
	width: 400px;
	padding: 3em 2em 1em 2em;
	margin-left: auto;
	margin-right: auto;
}
.map-date h4{
	font-size: 22px;
	padding-bottom: .5em;
	border-bottom: 1px solid #000;
	color: #ff9901;
}
.map-date p{
	font-size: 16px;
	border-bottom: 1px solid #000;
	padding: 1em;
}
.date-table th,.date-table td{
    padding: 10px;
}
iframe {
  width: 400px;
	height: 340px;
	padding: 2em;
  /* aspect-ratio: 16/9; //アスペクト比（縦横比）を指定 */
}
@media (max-width: 1000px){
	.map-wrapper{
		width: 780px;
		margin-left: auto;
		margin-right: auto;
	}
	.map-date{
		float: left;
		width: auto;
		padding: 2em;
		margin-left: auto;
		margin-right: auto;
	}
	.map-date h4{
		font-size: 18px;
		padding-bottom: .5em;
		border-bottom: 1px solid #000;
		color: #ff9901;
	}
	.map-date p{
		font-size: 14px;
		border-bottom: 1px solid #000;
		padding: 1em;
	}
	iframe {
	  width: 320px;
		height: 240px;
		padding: 2em;
	}
}
@media (max-width: 780px){
	.map-wrapper{
		width: auto;
		margin-left: 1.5em;
		margin-right: 1.5em;
	}
	.map-date{
		float: none;
		width: auto;
		padding: 3em 1em 1em 1em;
		margin-left: auto;
		margin-right: auto;
	}
	iframe {
	  width: 90%;
		height: 240px;
		padding: 1em 1em 1em 1em;
	}
}

/* コピーライト設定 */
.copyright{
	background-color: #FFF;
}
.copyright p{
	font-size: 15px;
	padding-top: 1.2em;
	padding-bottom: 1.8em;
	color:#000;
	text-align: center;
}
@media (max-width: 780px){
	.copyright p{
		font-size: 14px;
		margin-left: 1.5em;
		margin-right: 1.5em;
	}
}
/*pagetop*/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 10px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
.pagetop {
    box-shadow: 0 4px 6px rgb(0 0 0 / 30%);
}
