@charset "UTF-8";
/*---------------------------------
  Basic
---------------------------------*/
body {
	color: #052b36;
  font-family: "Roboto", "Noto Sans JP", 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 500;
	line-height: 2em;
	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 {
  width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

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

::selection {
	background: #dfe1e5;
}

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

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

/*---------------------------------
  ScrollTrigger
---------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

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

.btn {
	color: #fff !important;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 0.5em 1.5em;
	display: block;
	position: relative;
}

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

.btn_forward:after {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
  font-size: clamp(12px, 2.5vw, 14px);
	position: absolute;
	right: 1.3em;
}

.btn_forward:hover:after {
	right: 1em;
	transition: 0.3s;
}

.btn_back:after {
	content: "\f104";
	font-family: 'Font Awesome 5 Free';
  font-size: clamp(12px, 2.5vw, 14px);
	position: absolute;
	left: 1.3em;
}

.btn_back:hover:after {
	left: 1em;
	transition: 0.3s;
}

/*---------------------------------
  Common
---------------------------------*/
.contents_wrap {
  margin-top: 7em;
}

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

.contents_title {
  width: fit-content;
  font-size: clamp(21px, 2.5vw, 42px);
  border-bottom: solid 3px #052b36;
  margin-bottom: 2em;
  padding: 0 0.3em 0.8em 0.3em;
  position: relative;
}

.contents_title:before {
  content: '';
  width: 25px;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.contents_title:after {
  content: '';
  width: 30px;
  height: 3px;
  background: #052b36;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -14px;
  left: 5px;
  right: 0;
  margin: 0 auto;
}

.contents_title span {
  font-size: clamp(14px, 2.5vw, 21px);
  background: linear-gradient(90deg, #f8c600, #f89b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 1em;
}

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

@media print, screen and (max-width: 896px) {
  .contents_wrap {
    margin-top: 5em;
  }
  
  .wrapper {
    padding: 0 4%;
  }
  
  .contents_title {
    text-align: center;
    margin: 0 auto 3em auto;
  }
}

/*---------------------------------
  Hero
---------------------------------*/
.hero_wrap {
  height: 91vh;
	position: relative;
  overflow: hidden;
}

.hero_wrap:after {
  content: '';
  width: 85%;
  height: 100%;
  background-image: -webkit-linear-gradient(-3deg, #f8c600 0%, #f89b00 100%);
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  z-index: -1;
}

.hero_content {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 8%;
  z-index: 1;
}

.hero_content h1 {
  width: 20%;
  min-width: 100px;
  max-width: 135px;
  margin-bottom: 3em;
  position: absolute;
  top: 5%;
}

.hero_content h2 {
  font-size: clamp(18px, 5.5vw, 56px);
  line-height: 1.5em;
  padding-bottom: 1em;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
}

.hero_content h2 span {
  background: #fff;
  margin: 5px;
  padding: 0.2em 0.5em;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.curtain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #052b36;
  transition: 0.8s;
  transform: translateX(0%);
}

.curtain.show::before {
  transform: translateX(101%);
}

/* slide */
.slide_content {
  width: calc(100% - 80px);
	height: 80vh;
  background: #fff;
  position: relative;
  padding-bottom: 3em;
}

.slide_box img {
  height: 80vh;
	object-fit: cover;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/* contact */
.hero_contact_box {
  text-align: center;
  border-radius: 3px 3px 0 0;
  background: #fff;
  position: absolute;
  right: 8%;
  bottom: 0;
  padding: 3em 3%;
}

.hero_contact_box h4 {
  color: #ff8900;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero_contact_box h4:before,
.hero_contact_box h4:after {
  content: "";
  width: 1px;
  height: 28px;
  background-color: #ff8900;
  display: block;
}

.hero_contact_box h4:before {
  margin-right: 1em;
  transform: rotate(-20deg);
}

.hero_contact_box h4:after {
  margin-left: 1em;
  transform: rotate(20deg);
}

.hero_contact_box h3 {
  font-size: clamp(14px, 2.5vw, 18px);
  margin: 0.5em 0;
}

.hero_contact_box h3 span {
  color: #666;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 500;
  display: block;
}

.hero_contact_phone p:first-of-type {
  font-size: clamp(21px, 2.5vw, 24px);
}

.hero_contact_phone p:first-of-type:before {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #052b36;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  vertical-align: baseline;
  content: "\e0cd";
  font-family: 'Material Icons';
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
}

.hero_contact_phone p:last-of-type {
  color: #9aa0a6;
  font-weight: 500;
  font-size: 12px;
}

.hero_contact_box .btn_forward {
	color: #fff !important;
  font-size: clamp(14px, 2.5vw, 16px);
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
	border-radius: 3px;
  background: #052b36;
	padding: 0.5em 1.5em;
	display: block;
	position: relative;
  margin-top: 0.5em;
}

.hero_contact_box .btn_forward:hover {
  opacity: 0.8;
  transition: 0.3s;
}

/* scrolldown */
.scrolldown {
  position: absolute;
  top: 35%;
  right: 25px;
}

.scrolldown a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.scroll-line {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 2px;
  height: 80px;
  overflow: hidden;
}

.scroll-line:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 80px;
  background-color: #fff;
  animation: scrolldown 1.4s ease-in-out infinite;
}

@keyframes scrolldown {
  0% {
    transform: translateY(-100%);
  }
  
  100% {
    transform: translateY(100%);
  }
}

@media print, screen and (max-width: 896px) {
  .hero_content {
    height: 70%;
    left: 4%;
  }
  
  .slide_content {
    width: calc(100% - 50px);
  }
  
  .scrolldown {
    top: 3em;
    right: 10px;
  }
  
  .hero_contact_box {
    right: 4%;
    padding: 2em 5%;
  }
}

/*---------------------------------
  Service
---------------------------------*/
.service_wrap {
  width: 100%;
  position: relative;
  padding-bottom: 1em;
  overflow: hidden;
}

.service_wrap:before {
  content: '';
  width: 30%;
  height: 100%;
  background: url("images/bg_service_left_top.jpg") no-repeat;
  background-position: top right;
  position: absolute;
  top: 10em;
  left: -10%;
  z-index: -1;
}

.service_wrap:after {
  content: '';
  width: 30%;
  height: 100%;
  background: url("images/bg_service_right_bottom.jpg") no-repeat;
  background-position: bottom left;
  position: absolute;
  bottom: 0;
  right: -5%;
  z-index: -2;
}

.service_content:after {
  content: '';
  clear: both;
  display: block;
}

.service_head {
  width: 45%;
  float: left;
}

.point_box {
  width: 45%;
  border-radius: 3px;
  background: #fff;
  margin-top: 5em;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.point_box:nth-of-type(even) {
  float: right;
}

.point_box:nth-of-type(odd) {
  float: left;
}

.point_number {
  color: #fff;
  font-size: clamp(18px, 4vw, 28px);
  background-image: -webkit-linear-gradient(-3deg, #f8c600 0%, #f89b00 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0.5em;
}

.point_box img {
  height: 250px;
  object-fit: cover;
}

.point_inner {
  padding: 2em;
}

.point_inner h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 1.5em;
  padding-bottom: 0.8em;
  position: relative;
}

.point_inner h3 span {
  color: #ff8900;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  display: block;
}

.point_inner h3:after {
  content: '';
  width: 50px;
  height: 2px;
  background: #ff8900;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
}

.point_caution {
  color: #9aa0a6;
  font-size: clamp(12px, 2.5vw, 14px);
  line-height: 1.8em;
  text-indent: -1em;
  margin-top: 0.5em;
  padding-left: 1em;
}

.point_caution:before {
  content: '※';
}

@media print, screen and (max-width: 896px) {
  .service_head {
    width: 100%;
    float: none;
  }
  
  .point_box {
    width: 100%;
    margin-top: 3em;
  }
  
  .point_box:nth-of-type(even) {
    float: none;
  }
  
  .point_box:nth-of-type(odd) {
    float: none;
  }
}

/*---------------------------------
  Gallery
---------------------------------*/
.gallery_wrap {
  width: 100%;
  position: relative;
  padding: 5em 0;
  overflow: hidden;
}

.gallery_wrap:before{
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f2f4f5;
  display: block;
  transition: 1s;
  z-index: -2;
}

.fade:before {
  width: 85%;
}

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

.gallery_content  .contents_title:before {
  background: #f2f4f5;
}

.gallery_box {
	width: 30%;
  margin-right: 4em;
  padding: 1em 0;
}

.gallery_slide_content {
	width: 60%;
	flex: 1;
	margin-right: calc(50% - 50vw);
}

.gallery_slide_inner {
  padding: 1em 4%;
  cursor: pointer;
}

.gallery_slide_inner img {
  margin-bottom: 2.5em;
}

.gallery_slide_inner a {
  position: relative;
  display: block;
}

.gallery_slide_inner a:after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, #052b36 0px, #052b36 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
	background-size: 10px 10px;
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0.8em;
  z-index: -1;
}

.gallery_slide_inner dl dt {
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 600;
  line-height: 1.5em;
}

.gallery_slide_inner dl dt:after {
  content: '様';
  padding-left: 5px;
}

.gallery_slide_inner dl dd {
  color: #9aa0a6;
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.gallery_slide_content .slick-list {
  padding-right: 10%;
}

.slick-dots {
  bottom: -4em !important;
  text-align: right !important;
  padding: 0 4% !important;
}

.slick-dots li button:before {
  content: '\f111' !important;
	font-family: 'Font Awesome 5 Free' !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  color: #dfe1e5 !important;
  opacity: 1 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.slick-dots li button:hover:before {
  color: #999 !important;
  opacity: 0.8 !important;
}

.slick-dots li.slick-active button:before {
  opacity: 1 !important;
  color: #ff8900 !important;
}

@media print, screen and (max-width: 896px) {
  .gallery_content {
    flex-direction: column;
  }
  
  .gallery_box {
    width: 100%;
    margin-right: 0;
  }
  
  .gallery_slide_content {
    width: 100%;
  }
  
  .gallery_slide_content .slick-list {
    padding-right: 0;
  }
  
  .slick-dots {
    text-align: center !important;
  }
}

/*---------------------------------
  Price
---------------------------------*/
.price_content .contents_title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.price_box table tr th {
  color: #fff;
  padding: 1.5em 2%;
}

.price_box table tr th p:first-of-type {
  font-size: clamp(14px, 2vw, 21px);
  letter-spacing: 0.1em;
}

.price_box table tr th p:last-of-type {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 500;
  line-height: 1.8em;
  margin-top: 1em;
}

.price_box table tr th:first-of-type {
  width: 35%;
}

.price_box table tr th:nth-of-type(n+2) {
  border-left: solid 2px #fff;
  border-radius: 1em 1em 0 0;
  background: #f2f4f5;
}

.price_box table tr th:nth-of-type(2) {
  background: #f8c600;
}

.price_box table tr th:nth-of-type(3) {
  background: #f89b00;
}

.price_box table tr th:last-of-type {
  background: #052b36;
}

.price_box table tr td {
  border: solid 1px #dfe1e5;
  padding: 1em 2%;
}

.price_box table tr td .fa-circle-check {
  color: #ff8900;
}

.price_box table tr td:first-of-type {
  background: #f2f4f5;
}

.price_box table tr td p:first-of-type {
  font-size: clamp(12px, 2.5vw, 16px);
}

.price_box table tr td p:last-of-type {
  color: #9aa0a6;
  font-size: 12px;
  line-height: 1.8em;
}

.price_box table tr td:nth-of-type(n+2) {
  text-align: center;
}

.price_box table tr:nth-of-type(2) td:nth-of-type(n+2) {
  font-size: clamp(12px, 2.5vw, 24px);
}

.price_caution {
  margin-top: 2em;
}

.price_caution li {
  color: #666;
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.8em;
  text-indent: -1em;
  padding-left: 1em;
}

.price_caution li:before {
  content: '※';
}

@media print, screen and (max-width: 1111px) {
  .price_box table tr th p:last-of-type {
    text-align: left;
  }
  
  .price_box table tr th p:last-of-type br {
    display: none;
  }
}

@media print, screen and (max-width: 896px) {
  .price_box table tr th:nth-of-type(n+2) {
    min-width: 116px;
  }
  
  .price_box table tr th p:last-of-type {
    display: none;
  }
  
  .price_box table tr td p:last-of-type {
    display: none;
  }
  
  .price_box table tr td p span {
    display: inline-block;
  }
}

@media print, screen and (max-width: 480px) {
  .price_box table tr th,
  .price_box table tr th p,
  .price_box table tr td,
  .price_box table tr td p {
    font-size: 11px !important;
    line-height: 1.8em;
  }
  
  .price_box table tr:nth-of-type(2) td:nth-of-type(n+2) {
    font-size: 16px !important;
  }
  
  .price_box table tr th:nth-of-type(n+2) {
    min-width: 92px;
  }
}

/*---------------------------------
  Flow
---------------------------------*/
.flow_content,
.flow_box {
  display: flex;
  flex-wrap: wrap;
}

.flow_content h2 {
  width: 15%;
  min-width: 150px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.8em;
  margin-right: auto;
}

.flow_content h2 span {
  font-size: clamp(12px, 2.5vw, 16px);
  background: linear-gradient(90deg, #f8c600, #f89b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.flow_box {
  width: calc(100% - 18%);
  position: relative;
}

.flow_box:after {
  content: '';
  width: 80%;
  height: 3px;
  background-image: -webkit-linear-gradient(-3deg, #f8c600 0%, #f89b00 100%);
  display: block;
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.flow_inner {
  width: calc(100% / 5 - 4%);
  margin: 1em 2%;
  position: relative;
}

.flow_inner p {
  color: #ff8900;
  font-size: clamp(18px, 4vw, 36px);
  position: absolute;
  top: 0;
  left: 0;
}

.flow_thumb {
  max-width: 100px;
  margin: 0 auto 1em auto;
}

.flow_inner h3 {
  font-size: clamp(14px, 2vw, 16px);
  text-align: center;
}

.flow_inner h3 span {
  display: block;
}

@media print, screen and (max-width: 901px) {
  .flow_box {
    width: calc(100% - 150px);
  }
  
  .flow_box:after {
    display: none;
  }
  
  .flow_inner {
    width: calc(100% / 2 - 2em);
  }
}

@media print, screen and (max-width: 480px) {
  .flow_box:after {
    content: '';
    width: 3px;
    height: 80%;
    background-image: -webkit-linear-gradient(-90deg, #f8c600 0%, #f89b00 100%);
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 39px;
    z-index: -1;
    margin: auto 0;
  }
  
  .flow_inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .flow_inner p {
    top: -0.3em;
    left: -0.3em;
  }
  
  .flow_thumb {
    width: 70px;
    margin: 0 1em 0 0;
  }
  
  .flow_inner h3 {
    text-align: left;
  }
}

/*---------------------------------
  Contact
---------------------------------*/
.contact_wrap {
  padding-top: 7em;
  position: relative;
}

.contact_wrap:after {
  content: '';
  width: 100%;
  height: 700px;
  background: url("images/bg_contact.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0.5;
}

.contact_content {
  text-align: center;
}

.contact_content .contents_title {
  margin-left: auto;
  margin-right: auto;
}

.contact_content  .contents_title:before {
  background: #f9f9fb;
}

.contact_phone {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2em 0;
}

.contact_phone p:first-of-type {
  position: relative;
	display: inline-block;
	padding: 0 1em;
	width: auto;
	height: 40px;
	color: #fff;
	line-height: 40px;
  font-size: clamp(12px, 2.5vw, 14px);
	background: #ff8900;
	z-index: 0;
}

.contact_phone p:first-of-type:after {
	content: "";
	position: absolute;
	top: 50%;
  right: -8px;
	margin-top: -8px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 8px 0 8px 8px;
	border-color: transparent transparent transparent #ff8900;
}

.contact_phone p:nth-of-type(2) {
  font-size: clamp(21px, 3vw, 28px);
  margin: 0 0.5em 0 1.5em;
}

.contact_phone p:nth-of-type(2) span {
  font-weight: 500;
  letter-spacing: 0.1em;
}

.contact_phone p:nth-of-type(2):before {
  color: #052b36;
  vertical-align: sub;
  content: "\e0cd";
	font-family: 'Material Icons';
  font-weight: 600;
  margin-right: 10px;
}

.contact_phone p:last-child {
  color: #9aa0a6;
  font-size: clamp(10px, 3vw, 12px);
}

.form_content {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  margin-top: 4em;
  padding: 5em 4%;
}

@media print, screen and (max-width: 896px) {
  .contact_content {
    text-align: left;
  }
  
  .contact_phone {
    flex-direction: column;
  }
  
  .contact_phone p:first-of-type {
    margin-bottom: 2em;
  }
  
  .contact_phone p:first-of-type:after {
    content: "";
    position: absolute;
    top: inherit;
    right: inherit;
    margin-top: -8px;
	  bottom: -8px;
    left: 50%;
	  margin-left: -8px;
	  display: block;
	  width: 0px;
	  height: 0px;
	  border-style: solid;
	  border-width: 8px 8px 0 8px;
	  border-color: #ff8900 transparent transparent transparent;
  }
  
  .contact_phone p:nth-of-type(2) {
    margin: 0;
  }
  
  .form_content {
    padding: 2em 4% 3em 4%;
  }
}

/*---------------------------------
  Thanks
---------------------------------*/
.thanks_content .contents_title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.thanks_content .btn {
  max-width: 300px;
  background: #000;
  margin: 3em auto 0 auto;
}

/*---------------------------------
  Footer
---------------------------------*/
footer {
  color: #9aa0a6;
  background: #222c39;
  margin-top: 7em;
  padding: 5em 0;
}

.footer_head_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer_head_thumb {
  width: 100px;
  margin-right: 1em;
}

.footer_head_inner h3 {
  font-size: clamp(10px, 1.5vw, 12px);
  line-height: 1.8em;
}

.footer_head_inner h2 {
  font-size: clamp(18px, 2.5vw, 21px);
}

.footer_box {
  text-align: center;
  margin: 2em 0 3em 0;
}

.footer_link_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5em;
}

.footer_link_inner li {
  font-size: clamp(12px, 2.5vw, 14px);
  margin: 0.5em;
}

.footer_link_inner li a {
  min-width: 200px;
  color: #9aa0a6 !important;
  border: solid 1px #9aa0a6;
  border-radius: 3px;
  padding: 0.5em 1.5em;
  display: block;
  position: relative;
}

.footer_link_inner li a:after {
  content: '\f08e';
	font-family: 'Font Awesome 5 Free';
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  right: 5%;
}

.footer_link_inner li a:hover {
  color: #fff !important;
  border: solid 1px #fff;
  transition: 0.3s;
}

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

@media print, screen and (max-width: 896px) {
  .footer_head_thumb {
    width: 70px;
  }
}

/*---------------------------------
  PageTop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 55px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 18px;
	text-align: center;
	background: rgba(255, 137, 0, 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: 45px;
		font-size: 14px;
		right: 10px;
		bottom: 10px;
	}
}

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