@charset "UTF-8";
/*---------------------------------
  Basic
---------------------------------*/
body {
	color: #333;
  font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 500;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
  position: relative;
}

h1,h2,h3,h4,h5 {
  letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
  display: block;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #fee5eb;
}

::-moz-selection {
	background: #fee5eb;
}

@media screen and (max-width: 896px) {	
	body {
		font-size: 14px;
		min-width: 300px;
	}
}

/*---------------------------------
  Link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #333;
	text-decoration: none;
}

/* icon forward */
.hvr-icon-forward {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-right: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.1s;
}

.hvr-icon-forward:before {
	content: "\f105";
	position: absolute;
	right: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-forward:hover:before,
.hvr-icon-forward:focus:before,
.hvr-icon-forward:active:before {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
}

.hvr-icon-forward:hover {
	opacity: 0.8;
	transition: 0.3s;
}

/* icon back */
.hvr-icon-back {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.hvr-icon-back:before {
	content: "\f104";
	position: absolute;
	left: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-back:hover:before,
.hvr-icon-back:focus:before,
.hvr-icon-back:active:before {
	-webkit-transform: translateX(-4px);
	transform: translateX(-4px);
}

/*---------------------------------
  Common
---------------------------------*/
.contents_wrap {
  margin-top: 5em;
  position: relative;
}

.background_wrap {
  padding: 5em 0;
}

.wrapper {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1em;
}

.text_box p:nth-child(n+2) {
  margin-top: 1em;
}

.btn {
  color: #fff !important;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  display: block;
}

.title_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 2em;
  padding: 2em 0;
}

.title_wrap:before {
  content: "";
  width: 70%;
  height: 100%;
  border-radius: 0 1em 1em 0;
  background: #fff5f8;
  position: absolute;
  left: 0;
  z-index: -1;
}

.title_wrap h2 {
  color: #fb93ac;
  font-size: 32px;
  line-height: 1.8em;
  margin-left: 15%;
}

.title_wrap div {
  width: 40%;
  height: 350px;
  margin-right: 3em;
}

.title_wrap div img {
  height: 350px;
  border-radius: 1em;
  object-fit: cover;
}

.page_wrap h3 {
  font-size: 24px;
  border-bottom: solid 1px #dfe1e5;
  margin-bottom: 1.5em;
  padding-bottom: 0.5em;
}

.page_wrap h3:before {
  content: "\f111";
	font-family: 'Font Awesome 5 Free';
  color: #fb93ac;
  margin-right: 5px;
}

@media print, screen and (max-width: 896px) {
  .contents_wrap {
    margin-top: 3em;
  }
  
  .background_wrap {
    padding: 3em 0;
  }
  
  .wrapper {
    padding: 0 4%;
  }
  
  .title_wrap {
    flex-direction: column;
    margin-top: 0;
    padding: 1em 0;
  }
  
  .title_wrap:before {
    width: 80%;
  }

  .title_wrap h2 {
    font-size: 24px;
    margin-left: 4%;
    margin-bottom: 0.5em;
    padding-top: 1em;
  }
  
  .title_wrap div {
    width: 90%;
    height: 250px;
    margin: 0 auto;
  }
  
  .title_wrap div img {
    height: 250px;
  }
  
  .page_wrap h3 {
    font-size: 18px;
    margin-bottom: 1em;
  }
}

@media print, screen and (max-width: 896px) {
  .title_wrap h2 {
    font-size: 21px;
  }
    
  .title_wrap div {
    height: 150px;
  }
  
  .title_wrap div img {
    height: 150px;
  }
}

/*---------------------------------
  Header
---------------------------------*/
header {
  border-top: solid 1px #000;
  padding: 1em;
}

header .header_content {
  display: flex;
  flex-wrap: wrap;
}

header .header_content h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 24px;
  margin-right: auto;
}

header .header_content h1 img {
  width: auto;
  height: 50px;
  margin-right: 0.5em;
}

header .header_content ul {
  display: flex;
  flex-wrap: wrap;
}

header .header_content ul li {
  font-weight: 600;
  text-align: center;
  margin: 0.5em 1em;
}

header .header_content ul li:first-of-type p:first-of-type {
  font-size: 21px;
}

header .header_content ul li:first-of-type p:first-of-type:before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  margin-right: 5px;
}

header .header_content ul li:first-of-type p:first-of-type,
header .header_content ul li:first-of-type p:first-of-type a {
  color: #fb93ac !important;
}

header .header_content ul li:first-of-type p:last-of-type {
  color: #666;
  font-size: 12px;
  font-weight: 500;
}

header .header_content ul li:last-of-type a {
  min-width: 150px;
  color: #fff;
  border-radius: 25px;
  background: #feb25e;
  display: block;
  padding: 0.5em 1em;
}

header .header_content ul li:last-of-type a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

@media print, screen and (max-width: 895px) {
  header .header_content ul {
    display: none;
  }
}

.glonav_wrap nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-size: 18px;
  font-weight: 600;
}

.glonav_wrap nav li span {  
  font-size: 14px;
  text-align: center;
  display: block;
}

.glonav_wrap nav li a:hover {
  color: #fb93ac;
  transition: 0.3s;
}

@media print, screen and (max-width: 895px) {
  .glonav_wrap {
    display: none;
  }
}

/*---------------------------------
  Burger
---------------------------------*/
.burger_area {
	position: absolute;
	top: 12px;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
  z-index: 20;
  position: relative;
  width: 30px;
  height: 26px;
	display: block;
  cursor: pointer;
	margin: 15px;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
}

.btn_burger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fb93ac;
  border-radius: 4px;
}

.btn_burger a span:nth-of-type(1) {
  top: 0;
}

.btn_burger a span:nth-of-type(2) {
  top: 11px;
}

.btn_burger a span:nth-of-type(3) {
  bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
  background: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.btn_burger a.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_burger a.active span:nth-of-type(3) {
  background: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.burger {
  width: 100%;
  height: 100%;
  background: rgba(250, 114, 147, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
}

.burger.open {
	display: block;
}

.burger.close {
	display: none;
}

.burger_menu {
	height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.burger_menu li {
	font-weight: 600;
  display: block;
  margin: 2em;
}
	
.burger_menu li:before {
	color: #fff;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	vertical-align: middle;
	margin-right: 1em;
}

.burger_menu li a {
  color: #fff !important;
}

@media screen and (min-width: 896px) {
	.burger_area {
		display: none;
	}
}

/*---------------------------------
  Index
---------------------------------*/
/* Hero */
.hero_wrap {
  position: relative;
  margin-bottom: 5em;
}

.hero_content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero_content ul li {
  width: 30%;
}

.hero_content ul li img {
  border-radius: 2em;
  padding: 0.5em;
  display: block;
}

.logo {
  width: 10%;
  max-width: 160px;
  position: absolute;
  top: 10%;
  left: 7%;
}

.hero_wrap h2 {
  font-size: 46px;
  line-height: 1.8em;
  position: absolute;
  top: 50%;
  left: 7%;
}

@media print, screen and (max-width: 896px) {
  .hero_wrap h2 {
    font-size: 28px;
  }
  
  .logo {
    display: none;
  }
}

@media print, screen and (max-width: 480px) {
  .hero_wrap h2 {
    font-size: 24px;
  }
}

/*
.hero_wrap {
  min-height: 70vh;
  border-radius: 2em;
  background: url("images/top/hero.jpg") no-repeat;
  background-size: cover;
  background-position: top right;
  position: relative;
  margin: 2em 3em 7em 3em;
}

.hero_wrap img {
  max-width: 160px;
  position: absolute;
  top: 10%;
  left: 7%;
}

.hero_wrap h2 {
  font-size: 46px;
  line-height: 1.8em;
  position: absolute;
  top: 50%;
  left: 7%;
}
*/

/* サービス */
.t_service_wrap {
  margin-top: 2em;
}

.t_consultation_back:before {
  content: "";
  width: 70%;
  height: 100%;
  border-radius: 0 1em 1em 0;
  background: #fff5f8;
  position: absolute;
  z-index: -1;
}

.t_counseling_back:before {
  content: "";
  width: 70%;
  height: 100%;
  border-radius: 0 1em 1em 0;
  background: #fffaec;
  position: absolute;
  z-index: -1;
}

.t_service_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4em 0;
}

.t_service_content h3 {
  font-size: 32px;
  line-height: 1.5em;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  position: relative;
}

.t_service_content h3:before {
  content: "";
  width: 100px;
  height: 5px;
  background: #fb93ac;
  position: absolute;
  bottom: 0;
}

.t_service_inner {
  width: calc(100% - 550px);
}

.t_service_inner .text_box p {
  font-size: 24px;
  font-weight: 600;
}

.t_service_img {
  width: 500px;
}

.t_service_img img {
  object-fit: cover;
  border-radius: 1em;
}

.t_service_wrap .btn {
  width: 280px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: #fb93ac;
  margin-top: 4em;
}

@media print, screen and (max-width: 896px) {
  .t_service_content {
    flex-direction: column-reverse;
  }
  
  .t_service_wrap:nth-child(even) .t_service_content {
    flex-direction: column;
  }
  
  .t_service_content h3 {
    font-size: 24px;
    margin-top: 2em;
  }
  
  .t_service_inner {
    width: 100%;
    text-align: center;
  }
  
  .t_service_inner .text_box p {
    font-size: 18px;
  }
  
  .t_service_img {
    width: 100%;
  }
  
  .t_service_content h3:before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  .t_service_wrap .btn {
    margin: 4em auto 0 auto;
  }
}

@media print, screen and (max-width: 896px) {
  .t_service_content h3 {
    font-size: 21px;
  }
  
  .t_service_inner .text_box p {
    font-size: 16px;
  }
}

/* お問い合わせ */
.t_contact_content {
  border-radius: 2em;
  background: url("images/top/contact.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 3em 2em;
}

.t_contact_box {
  max-width: 800px;
  border-radius: 1em;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  padding: 4em 10%;
}

.t_contact_box h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 1.5em;
}

.t_contact_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.t_contact_phone p {
  color: #fb93ac;
  font-size: 32px;
  font-weight: 600;
}

.t_contact_phone p a {
  color: #fb93ac !important;
}

.t_contact_phone p:before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  font-size: 80%;
  margin-right: 5px;
}

.t_contact_mail a {
  width: 280px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: #feb25e;
}

@media print, screen and (max-width: 896px) {
  .t_contact_box h2 {
    font-size: 21px;
  }
  
  .t_contact_inner {
    flex-direction: column;
  }
  
  .t_contact_phone p {
    font-size: 28px;
  }
  
  .t_contact_mail a {
    width: 280px;
    margin-top: 1em;
  }
}

@media print, screen and (max-width: 896px) {
  .t_contact_phone p {
    font-size: 21px;
  }
  
  .t_contact_mail a {
    width: 220px;
  }
}

/*---------------------------------
  計画相談支援事業
---------------------------------*/
.handicapped_trouble {
  margin: 2em 0 3em 0;
}

.handicapped_trouble li {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  border-radius: 0.5em;
  background: #fffaec;
  margin-top: 1em;
  padding: 1em;
}

.handicapped_trouble li p:first-of-type {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: #fb93ac;
}

.handicapped_trouble li p:last-of-type {
  width: calc(100% - 30px);
  padding-left: 1em;
}

.handicapped_content .btn {
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: #fb93ac;
  margin-top: 2em;
  padding: 0 3em;
  display: inline-block;
}

@media print, screen and (max-width: 896px) {
  .handicapped_content .btn {
    width: 100%;
    margin: 2em auto 0 auto;
  }
}

/*---------------------------------
  カウンセリング事業
---------------------------------*/
.counseling_catch {
  color: #fa7293;
  font-size: 21px;
  line-height: 1.8em;
  font-weight: 600;
}

.qualification_box ul {
  display: flex;
  flex-wrap: wrap;
}

.qualification_box ul li {
  width: calc(100%  / 2 - 2em);
  color: #fb93ac;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0.5em;
  background: #fff5f8;
  padding: 1em;
  margin: 1em;
}

.qualification_box ul li span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: #fb93ac;
  display: inline-block;
  margin-right: 0.5em;
}

.counseling_price_box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.counseling_price_box dl {
  width: calc(100% / 3);
  padding: 1em;
}

.counseling_price_box dl dt,
.counseling_price_box dl dd {
  font-weight: 600;
  text-align: center;
  padding: 1em;
}

.counseling_price_box dl dd {
  font-size: 21px;
}

.counseling_price_box dl dt {
  color: #fff;
  border-radius: 0.5em 0.5em 0 0;
  background: #feb25e;
}

.counseling_price_box dl dd {
  color: #feb25e;
  border-radius: 0 0 0.5em 0.5em;
  background: #fffaec;
}

@media print, screen and (max-width: 896px) {
  .counseling_catch {
    font-size: 18px;
  }
  
  .qualification_box ul {
    flex-direction: column;
    margin-bottom: 1em;
  }
  
  .qualification_box ul li {
    width: 100%;
    font-size: 16px;
    margin: 0.5em 0;
  }
  
  .counseling_price_box {
    flex-direction: column;
  }
  
  .counseling_price_box dl {
    width: 100%;
  }
  
  .counseling_price_box dl dd {
    font-size: 16px;
  }
}

/*
.qualification_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.qualification_box {
  width: calc(100% - 300px);
}

.qualification_img {
  width: 250px;
}

.qualification_img img {
  border-radius: 1em;
}
*/

/*---------------------------------
  身元保証事業
---------------------------------*/
.identity_list_box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}

.identity_list_box li {
  width: calc(100% / 3 - 2em);
  color: #feb25e;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  background: #fffaec;
  margin: 1em;
  padding: 1em;
}

/*
.identity_price_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.identity_price_box dl {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1em;
}

.identity_price_box dl dt,
.identity_price_box dl dd {
  font-weight: 600;
  padding: 1em 3em;
}

.identity_price_box dl dt {
  min-width: 200px;
  color: #fff;
  text-align: center;
  border-radius: 50px 0 0 50px;
}

.identity_price_box dl dd {
  width: calc(100% - 200px);
  font-size: 18px;
  text-align: right;
  border-radius: 0 50px 50px 0;
}

.identity_price_box dl:first-of-type dt {
  background: #fb93ac;
}

.identity_price_box dl:first-of-type dd {
  color: #fb93ac;
  background: #fff5f8;
}

.identity_price_box dl:last-of-type dt {
  background: #feb25e;
}

.identity_price_box dl:last-of-type dd {
  color: #feb25e;
  background: #fffaec;
}
*/

/*---------------------------------
  会社概要
---------------------------------*/
.greeeting_img {
  float: right;
  width: 250px;
  margin: 0 0 2em 4em;
}

.greeeting_img img {
  border-radius: 1em;
}

.greeeting_img p {
  margin-top: 1em;
  font-size: 12px;
  text-align: center;
}

.greeeting_img p span {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.certificate_box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3em;
}

.certificate_box li {
  width: calc(100% / 3);
  padding: 1em;
}

.certificate_box li img {
  border-radius: 0.5em;
}

.certificate_box li img:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.about_box dl {
  display: flex;
  flex-wrap: wrap;
}

.about_box dl dt,
.about_box dl dd {
  border-bottom: dashed 1px #dfe1e5;
  padding: 1.5em 2em;
}

.about_box dl dt {
  width: 30%;
}

.about_box dl dd {
  width: 70%;
}

.about_service_box ul li:before {
	content: "\f138";
  color: #feb25e;
	font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin-right: 0.5em;
}

.about_service_box ul li a:hover {
  color: #feb25e;
  transition: 0.3s;
}

.about_permission_box ul li {
  list-style: disc inside;
}

.about_qualification_box ul li {
  list-style: disc inside;
}

.about_content iframe {
  width: 100%;
  margin-top: 3em;
}

@media print, screen and (max-width: 896px) {
  .greeeting_img {
    width: 150px;
    margin: 0 0 2em 2em;
  }
  
  .certificate_box li {
    width: calc(100% / 2);
    padding: 0.5em;
  }
  
  .about_box dl {
    flex-direction: column;
  }
  
  .about_box dl dt {
    width: 100%;
    font-weight: 600;
    border-bottom: none;
    padding: 1.5em 1em 0 1em;
  }
  
  .about_box dl dd {
    width: 100%;
    padding: 0.5em 1em 1.5em 1em;
  }
}

/*---------------------------------
  Thanks
---------------------------------*/
.thanks_box p {
	padding: 10px 0;
}

.thanks_box p a {
  color: #fb93ac !important;
}

.thanks_box p:nth-last-child(2)	{
  color: #fb93ac;
	font-size: 24px;
	font-weight: 600;
}

.thanks_box p:nth-last-child(2):before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  display: inline-block;
	vertical-align: middle;
	margin-right: 0.5em;
}

.thanks_wrap .btn {
  width: 280px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: #feb25e;
  margin: 3em auto 0 auto;
}

/*---------------------------------
  Sitemap
---------------------------------*/
.sitemap_wrap {
  background: #fff5f8;
}

.sitemap_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 1em 0;
}

.sitemap_wrap ul li {
  font-size: 14px;
}

.sitemap_wrap ul li:before {
  content: "\f138";
	font-family: 'Font Awesome 5 Free';
  color: #fb93ac;
  font-weight: 600;
  margin-right: 5px;
}

.sitemap_wrap ul li a {
  color: #dc84a3;
  padding: 1em 0;
}

.sitemap_wrap ul li a:hover {
  text-decoration: underline;
}

@media print, screen and (max-width: 896px) {
  .sitemap_wrap ul {
    justify-content: flex-start;
  }
  
  .sitemap_wrap ul li {
    width: calc(100% / 2);
    font-size: 12px;
  }
}

/*---------------------------------
  Footer
---------------------------------*/
footer {
  color: #fff;
  background: #fb93ac;
  padding: 3em 0;
}

footer a {
  color: #fff !important;
}

.footer_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.footer_content div {
  padding: 0 1em;
}

.footer_content img {
  max-width: 90px;
}

.footer_content div p:first-of-type {
  font-size: 21px;
  line-height: 1.8em;
}

@media print, screen and (max-width: 896px) {
  .footer_content img {
    max-width: 70px;
  }
  
  .footer_content div p:first-of-type {
    font-size: 14px;
  }
}

@media print, screen and (max-width: 480px) {
  .footer_content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer_content img {
    max-width: 50px;
  }
  
  .footer_content div p:first-of-type {
    margin-top: 1em;
  }
  
  .footer_content div p {
    font-size: 12px;
  }
}

address {
	font-size: 0.7em;
	font-style: normal;
  text-align: center;
  margin-top: 2em;
}

/*---------------------------------
  PageTop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 50px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 36px;
	text-align: center;
	background: rgba(250, 114, 147, 0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 40px;
		font-size: 28px;
		right: 10px;
		bottom: 10px;
	}
}

@media screen and (max-width: 480px) {
  .pagetop {
    display: none;
  }
}
