@charset "UTF-8";
.sp:not(.pc), .tb:not(.pc) {
  display: none !important;
}

html {
  font-size: 10px;
}

body {
  margin: 0;
  padding: 0;
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, Arial, "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
  box-sizing: border-box;
}

img {
  border: 0;
}

a:link, a:visited {
  color: #5B80B2;
  text-decoration: none;
}

a:hover {
  color: #003366;
}

#container {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

#container.header_fixed {
  padding-top: 152px;
}
#container.header_fixed .fixed_block {
  display: block;
  text-align: left;
}

#header_block {
  top: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.header_fixed #header_block {
  position: fixed;
  top: 0;
  animation: DownAnime 0.5s forwards;
  transform: translateZ(1px);
  border-bottom: 1px solid #eee;
  box-shadow: 0px 3px 3px -1px rgba(0, 0, 0, 0.1);
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-152px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#pc_header {
  width: 100%;
  margin: 0 auto;
  font-size: 1.2rem;
  display: block;
}

#pc_header .flex {
  width: calc(100% - 20px);
  max-width: 1060px;
  height: 98px;
  margin: 0 auto;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
}

#pc_header .logo {
  float: left;
  display: block;
  width: 230px;
  padding-top: 25px;
}

#pc_header .logo img {
  width: 100%;
  display: block;
}

#pc_header .r_box {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-around;
  margin-bottom: 10px;
}

#pc_header p {
  padding: 3px 0 0;
  line-height: 25px;
  text-align: right;
  font-size: 1.5rem;
  margin: 0;
}

.header_fixed #pc_header {
  align-items: center;
  flex-direction: row;
}

.header_fixed #pc_header .flex {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
}

.header_fixed #pc_header .r_box {
  align-items: center;
  flex-direction: row;
  margin: 0;
}

.header_fixed #pc_header .logo {
  margin-right: auto;
  float: none;
  display: block;
  width: 255px;
  padding-top: 3px;
}

.header_fixed #pc_header p.tel, .header_fixed #pc_header p.head_link {
  display: block;
  margin-left: 5px;
}

#pc_header p.tel {
  margin: 0;
  padding: 0;
}

#pc_header p.tel img {
  display: block;
}

#pc_header p.head_link {
  margin: 0;
  padding: 0;
}

#pc_header p.head_link a {
  position: relative;
  font-size: 1.4rem;
  display: inline-block;
  background: #267a5e;
  border: 1px solid #267a5e;
  color: #fff;
  margin: 0px;
  height: 28px;
  line-height: 28px;
  padding: 0 1em;
  border-radius: 20px;
  transition: 0.3s ease-in-out;
}

.header_fixed #pc_header p.head_link a span {
  display: none;
}

#pc_header p.head_link a:hover {
  background: #fff;
  color: #267a5e;
}

#header-nav {
  clear: both;
  border-top: 4px solid #D9D9D9;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 935px) {
  #header-nav {
    font-size: min(1.6rem, 1.5vw);
  }
}
#top_navi {
  max-width: 954px;
  width: 100%;
  margin: 0 auto;
}

#top_navi {
  width: calc(100% - 20px);
  max-width: 1060px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.menu_contents {
  display: block;
}

#top_navi ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#top_navi li.nav-item ul a {
  display: block;
  padding: 0 10px;
  white-space: nowrap;
  line-height: 40px;
}

#top_navi .nav-item {
  position: relative;
  display: block;
}

#top_navi .nav-item:hover::before,
#top_navi .nav-item.slct::before {
  content: "";
  height: 4px;
  width: 100%;
  background: #267a5e;
  position: absolute;
  display: block;
  top: -4px;
  margin: auto;
}

#top_navi .dropdown {
  display: none;
}

#top_navi .nav-item:hover .dropdown {
  display: block;
  position: absolute;
  width: max-content;
  min-width: 200px;
  top: 50px;
  background: #fff;
  border: 1px solid #aaa;
  padding: 0 0;
}

#top_navi .dropdown-item {
  display: block;
  position: relative;
  margin: 5px 0;
  border-bottom: 1px dotted #267a5e;
}

#top_navi .dropdown-child-item {
  display: block;
  position: relative;
  margin: 5px 0;
  border-bottom: 1px dotted #267a5e;
}

#top_navi .dropdown-item a {
  position: relative;
  padding: 5px 10px;
  margin: 5px;
  transition: 0.2s ease-in-out;
}

#top_navi .dropdown-item a:hover {
  background: #5fac9c;
  color: #fff;
  border-radius: 4px;
}

#top_navi .dropdown-item:hover > a {
  background: #5fac9c;
  color: #fff;
}

#top_navi .dropdown-item a i {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  bottom: 0;
  line-height: 40px;
  right: 5px;
}

#top_navi .dropdown-child {
  display: none;
  position: absolute;
}

#top_navi .dropdown-item:hover .dropdown-child {
  display: block;
  position: absolute;
  top: -5px;
  left: 200px;
  padding: 0 5px;
  background: #fff;
  border: 1px solid #aaa;
}

#top_navi > li > a {
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
  position: relative;
  color: #000;
  cursor: pointer;
}

#top_navi > li.dd.view > a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #B3D0E8 transparent;
  border-width: 8px;
}

#top_navi > li.dd.view > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 8px;
  z-index: 100;
}

#top_navi a.lsf {
  font-size: 2.2rem;
}

#top_navi li .menu_contents {
  position: absolute;
  display: block;
  overflow: visible;
  min-width: max-content;
  margin: 0 auto;
  height: auto;
  top: 50px;
  left: 0;
  background: #fff;
  border: 1px solid #B3D0E8;
  border-radius: 4px;
  opacity: 1;
  z-index: 1;
}

#top_navi li .menu_contents div {
  margin: auto;
  top: 50px;
  left: 0;
  height: 0;
}

#top_navi li .menu_contents {
  position: absolute;
  display: none;
  margin: 0 auto;
  height: auto;
  top: 50px;
  left: 0;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  min-width: max-content;
  padding: 0 10px;
  max-height: calc(100vh - 200px) !important;
  box-sizing: border-box;
}

#top_navi li .menu_contents ul {
  list-style-type: none;
  list-style: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 5px 5px 5px 0;
  overflow: visible;
  height: auto;
  width: max-content;
}

#top_navi li .menu_contents::-webkit-scrollbar {
  width: 5px;
}

#top_navi li .menu_contents::-webkit-scrollbar-thumb {
  background: #267a5e;
  border-radius: 3px;
}

#top_navi li .menu_contents::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.5);
}

#top_navi li .menu_contents ul > li {
  height: 46px;
  line-height: 46px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: 1px dotted #267a5e;
}

#top_navi li .menu_contents ul > li a {
  display: block;
  margin: auto 0 2px;
  background: #fff;
  padding: 0 25px 0 10px;
  position: relative;
}

#top_navi li .menu_contents ul > li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent #267a5e;
  border-width: 8px;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #5fac9c;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}

#top_navi li .menu_contents ul > li a:hover::after {
  border-color: transparent transparent transparent #fff;
}

.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* navi.css */
#header-nav {
  border-top: 4px solid #D9D9D9;
}

#top_navi .nav-item:hover::before,
#top_navi .nav-item.slct::before {
  background: #267a5e;
}

#top_navi .nav-item:hover .dropdown {
  background: #fff;
  border: 1px solid #aaa;
}

#top_navi .dropdown-item {
  border-bottom: 1px dotted #267a5e;
}

#top_navi .dropdown-child-item {
  border-bottom: 1px dotted #267a5e;
}

#top_navi .dropdown-item a:hover {
  background: #5fac9c;
  color: #fff;
}

#top_navi .dropdown-item:hover > a {
  background: #5fac9c;
  color: #fff;
}

#top_navi .dropdown-item:hover .dropdown-child {
  background: #fff;
  border: 1px solid #aaa;
}

#top_navi > li > a {
  color: #000;
}

#top_navi > li.dd.view > a::before {
  border-color: transparent transparent #e9f5ff transparent;
}

#top_navi > li.dd.view > a::after {
  border-color: transparent transparent #fff transparent;
}

#top_navi li .menu_contents {
  background: #fff;
  border: 1px solid #e9f5ff;
}

#top_navi li .menu_contents::-webkit-scrollbar-thumb {
  background: #267a5e;
}

#top_navi li .menu_contents::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.5);
}

#top_navi li .menu_contents ul > li {
  border-bottom: 1px dotted #267a5e;
}

#top_navi li .menu_contents ul > li a {
  background: #fff;
}

#top_navi li .menu_contents ul > li a::after {
  border-color: transparent transparent transparent #267a5e;
}

.hvr-sweep-to-right:before {
  background: #5fac9c;
}

.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}

#top_navi li .menu_contents ul > li a:hover::after {
  border-color: transparent transparent transparent #fff;
}

/*contents*/
#contents {
  padding: 0 0;
  width: 100%;
  margin: 0 auto;
  background: #f1faf7;
  z-index: -1;
}

.contents_inner {
  width: calc(100% - 20px);
  max-width: 1060px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.single .contents_inner {
  margin: 0 auto;
  display: block;
  padding: 0;
}

#pan {
  z-index: 10;
  width: 100%;
  line-height: 25px;
  height: 25px;
  margin: auto;
  padding: 0;
  text-align: left;
  font-size: 1.4rem;
  top: 127px;
  left: 0;
  right: 0;
  background: #267a5e;
}

#pan ul {
  width: auto;
  max-width: 1060px;
  font-size: 1.4rem;
  padding: 0 5px;
  margin: 0 auto;
  line-height: 2;
  white-space: nowrap;
  list-style: none;
  color: #fff;
}

#pan a {
  color: #fff;
}

#pan ul li {
  display: inline-block;
}

#pan ul li + li::before {
  content: "\0bb";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin: 0 .5rem;
}

#main {
  width: calc(100% - 236px);
}

.single #main {
  width: auto;
}

#main .category {
  margin: 0 0 20px;
  clear: both;
}

#main h1 {
  font-size: 2.8rem;
  border-bottom: 1px solid #5fac9c;
  line-height: 5rem;
  position: relative;
  margin: 0;
}

#main h1 span {
  font-size: 1.4rem;
  display: block;
  border-bottom: 3px solid #5fac9c;
  color: #267a5e;
  line-height: 2rem;
}

#main h1 img {
  width: 38px;
  display: inline-block;
  margin: 5px 5px -5px 0;
}

#main .article {
  background: #fff;
  padding: 10px 0 30px;
  margin-bottom: 30px;
}

#side {
  width: 216px;
}

#side .category_link {
  border-left: 6px solid #267a5e;
}

#side .category_link h2 {
  color: #fff;
  font-size: 2.2rem;
  line-height: 90px;
  background: #5fac9c;
  padding: 0 10px;
  margin: 0;
}

#side .category_link ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  border-top: 3px solid #5fac9c;
}

#side .category_link ul li {
  padding: 0;
  margin: 0;
  width: 100%;
}

#side .category_link ul li a {
  padding: 0;
  margin: 0;
  padding-left: 10px;
  background-color: #fff;
  color: #000;
  position: relative;
  height: 57px;
  border-bottom: 1px solid #5fac9c;
  display: flex;
  align-items: center;
}

#side .category_link ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent #267a5e;
  border-width: 8px;
}

#side .category_link {
  border-left: 6px solid #267a5e;
}
#side .category_link h2 {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.5;
  background: #5fac9c;
  padding: 0 10px;
  margin: 0;
}
#side .category_link ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  border-top: 3px solid #5fac9c;
}
#side .category_link ul li {
  padding: 0;
  margin: 0;
}
#side .category_link ul li a {
  padding: 0;
  margin: 0;
  display: block;
  background-color: #fff;
  color: #000;
  position: relative;
  border-bottom: 1px solid #5fac9c;
  text-indent: 10px;
  line-height: 44px;
}
#side .category_link ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent #267a5e;
  border-width: 8px;
}
#side .category_link ul li ul.sub {
  border-bottom: 3px solid #5fac9c;
}
#side .category_link ul li ul.sub > li {
  transition: 0.3s ease-in-out;
  position: relative;
}
#side .category_link ul li ul.sub > li > a, #side .category_link ul li ul.sub > li span {
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: block;
  background-color: #fff;
  color: #000;
  position: relative;
  border-bottom: 1px solid #5fac9c;
  height: 38px;
  line-height: 38px;
  text-indent: 12px;
  font-size: 1.4rem;
}
#side .category_link ul li ul.sub > li ul.sub2 {
  border: 1px solid #bdded7;
  border-bottom: 0px solid #bdded7;
  opacity: 0;
  display: none;
  position: absolute;
  top: -1px;
  left: 180px;
  width: 210px;
}
#side .category_link ul li ul.sub > li:hover::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent #267a5e;
  border-width: 8px;
}
#side .category_link ul li ul.sub > li:hover ul.sub2 {
  display: block;
  animation: listSlide 0.7s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
#side .category_link ul li ul.sub > li:hover ul.sub2 li a {
  height: auto;
  min-height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bdded7;
  text-indent: 0px;
  font-size: 1.4rem;
  padding-left: 10px;
  line-height: 1.4;
}
#side .category_link ul li ul.sub > li:hover ul.sub2 li a::after {
  border: 0 none;
}

@keyframes listSlide {
  0% {
    display: none;
    opacity: 0;
  }
  10% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
    left: 210px;
  }
}
#side .sub_link {
  background: #C0D8EC;
  padding: 3px 6px;
  margin: 15px 0 0;
}

#side .sub_link ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#side .sub_link ul li {
  padding: 0;
  margin: 3px 0;
  border: 1px solid #267a5e;
  background: #fff;
  font-size: 1.3rem;
}

#side .sub_link ul li a {
  padding: 5px 3px;
  margin: 0;
  display: block;
  border-right: 10px solid #267a5e;
  position: relative;
  color: #267a5e;
}

#side .sub_link ul li a::after {
  content: "";
  position: absolute;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -6px;
  height: 0px;
  width: 0px;
}

#footer {
  clear: both;
  position: relative;
}

#footer_link {
  clear: both;
  background: #267a5e;
  color: #fff;
}

#footer_link .contents_inner {
  width: calc(100% - 20px);
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}

#footer_link nav {
  width: 24%;
  margin: 3em 0;
}

#footer_link nav:last-child {
  width: 27%;
  border-left: 1px solid #fff;
}

#footer_link nav:last-child ul {
  margin: 0 0 2em 2em;
}

#footer_link nav a {
  color: #fff;
}

#footer_link nav ul {
  padding: 0;
  margin: 0 0 2em;
}

#footer_link nav p {
  padding: 0;
  margin: 0 0 0;
  font-weight: bold;
  line-height: 30px;
}
#footer_link nav p.line {
  margin-left: 30px;
}

#footer_link nav ul li {
  line-height: 30px;
  list-style-type: none;
  position: relative;
  padding: 0 0 0 1.5em;
  margin: 0;
}

#footer_link nav ul li::before {
  content: '';
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #fff;
  width: 0;
  height: 0;
  position: absolute;
  margin: auto;
  top: .7em;
  left: .5em;
}

#footer .logo {
  clear: both;
  float: left;
  width: 310px;
}

#footer .footer_bottom {
  clear: both;
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
}

#footer .footer_bottom p {
  display: inline-block;
  margin: 0 0 0 15px;
  padding: 0;
  line-height: 1.3;
}

#footer .footer_bottom a {
  margin: 4px 0 0;
  display: block;
}

#footer p.copyright {
  color: #333333;
  text-align: center;
  margin: 0;
  padding: 0;
}

/** pager */
.pager {
  clear: both;
  margin: 10px auto;
  display: block;
  text-align: center;
}

.pager a, .pager span {
  font-size: 1.4rem;
  display: inline-block;
  padding: 0 1px;
  margin: 0 2px 0;
  min-width: 2em;
  height: 2em;
  line-height: 2em;
  background: #eee;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
}

.pager a {
  color: #267a5e;
}

.pager span {
  color: #bbb;
}

.pager span.now, .pager a:hover {
  background: #267a5e !important;
  color: #fff !important;
}

.pager.text {
  position: relative;
  height: 2em;
}

.pager.text a {
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 33rem;
  margin: auto;
  padding: 0 10px;
}

.pager.text a.r {
  right: 0;
}

.pager.text a.c {
  right: 0;
  left: 0;
  width: 6em;
}

.pager.text a.l {
  left: 0;
}

.pager2 {
  clear: both;
  border-top: 1px solid #4d4d4d;
  padding-top: 10px;
  margin: 10px 10px 0;
  position: relative;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.pager2 a {
  font-size: 1.4rem;
  display: block;
  color: #267a5e;
  position: relative;
}
.pager2 a span {
  font-size: 1.4rem;
  width: calc(100% - 2em);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #267a5e;
  display: inline-block;
}
.pager2 a span.name {
  clear: both;
  font-size: .8em;
}
.pager2 a span.title {
  clear: both;
  display: block;
}
.pager2 .next {
  text-align: right;
  padding-right: 1.5em;
  width: calc(50% - 70px);
}
.pager2 .back {
  text-align: left;
  padding-left: 1.5em;
  width: calc(50% - 70px);
}
.pager2 .list {
  position: absolute;
  right: 0;
  left: 0;
  width: 120px;
  margin: auto;
  text-align: center;
}

a.blue_link {
  position: relative;
  font-size: 1.4rem;
  display: inline-block;
  background: #267a5e;
  color: #fff;
  margin-right: 20px;
  height: 28px;
  line-height: 28px;
  padding: 0 5px;
  margin-bottom: 8px;
}

a.blue_link::after {
  content: "";
  width: 0;
  height: 0;
  right: -28px;
  position: absolute;
  border: 14px transparent solid;
  border-left: 14px #267a5e solid;
}

#pagetop {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 1;
  display: block;
  max-width: 1060px;
  margin: 0 auto;
  width: calc(100% - 20px);
  left: 0;
}

#pagetop.absolute {
  position: absolute;
  right: 0;
  z-index: 1;
  display: block;
  max-width: 1060px;
  margin: 0 auto;
  width: calc(100% - 20px);
  left: 0;
  top: -30px;
  height: 0;
}

#pagetop.absolute a {
  background: white;
}

#pagetop a {
  position: absolute;
  right: 0;
  font-size: 3em;
  color: #267a5e;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4em;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #267a5e;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#pagetop a:hover {
  background: #267a5e;
  color: white;
}

#pagetop a i {
  line-height: 60px;
  display: block;
}

#main .imgbox {
  float: right;
  display: flex;
  flex-direction: column;
}
#main .imgbox p {
  margin: 0;
}
#main .imgbox img {
  display: block;
  margin: 0;
  padding: 0 10px 10px;
}
