@charset "UTF-8";
._en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media print, screen and (min-width: 768px) {
  ._sp {
    display: none;
  }
}

._pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  ._pc {
    display: block;
  }
}

body {
  width: 100%;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #313131;
  font-family: "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media print, screen and (min-width: 768px) {
  body {
    min-width: 1024px;
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: #313131;
}

.header {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
}
.header .header_logo {
  padding-left: 20px;
}
.header .header_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header .header_logo a:hover {
  opacity: 0.5;
}
.header .header_logo img {
  width: 120px;
}
@media print, screen and (min-width: 768px) {
  .header .header_logo {
    padding-left: 25px;
  }
  .header .header_logo img {
    width: 154px;
  }
}
.header .btn_area {
  display: flex;
  justify-content: end;
}
@media print, screen and (min-width: 768px) {
  .header .btn_area {
    display: none;
  }
}
.header .contact_area a {
  width: 60px;
  height: 60px;
  background-color: #313131;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  transition: all 0.2s;
}
.header .contact_area a .icon_image {
  width: 25px;
  height: 25px;
  margin-bottom: 2px;
}
.header .contact_area a .icon_image img {
  width: 100%;
  height: auto;
}
.header .contact_area a p {
  font-size: 9px;
  margin-bottom: 6px;
  text-transform: uppercase;
  color: #fff;
}
.header .open_area {
  width: 60px;
  height: 60px;
  background-color: #91C9A7;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  transition: all 0.2s;
  cursor: pointer;
}
.header .open_area p {
  font-size: 9px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.header .open_area .open_btn {
  position: relative;
  width: 25px;
  height: 18px;
  cursor: pointer;
  appearance: none;
  background-color: transparent;
  padding: 0;
  margin-bottom: 5px;
  border: none;
  outline: none;
  font: inherit;
}
.header .open_area .open_btn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #313131;
  transition: all 0.3s;
}
.header .open_area .open_btn span:first-child {
  top: 0;
}
.header .open_area .open_btn span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header .open_area .open_btn span:last-child {
  bottom: 0;
}
.header .open_area .open_btn._active span {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header .open_area .open_btn._active span:first-child {
  transform: rotate(135deg);
}
.header .open_area .open_btn._active span:nth-child(2) {
  opacity: 0;
}
.header .open_area .open_btn._active span:last-child {
  transform: rotate(-135deg);
}
.header .global_nav {
  position: absolute;
  top: 60px;
  width: 100%;
  background-color: #313131;
  z-index: 4;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.header .global_nav._active {
  opacity: 1;
  visibility: visible;
}
.header .global_nav .global_list {
  display: block;
  margin-top: 30px;
}
.header .global_nav .global_list li a {
  display: block;
  width: 100%;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
.header .global_nav .global_list li a:hover {
  opacity: 0.5;
}
@media print, screen and (min-width: 768px) {
  .header .global_nav {
    opacity: 1;
    visibility: visible;
    position: initial;
    width: initial;
    background-color: #fff;
  }
  .header .global_nav .global_list {
    display: flex;
    margin-top: 0px;
  }
  .header .global_nav .global_list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 80px;
    position: relative;
    color: #313131;
    font-size: 16px;
  }
  .header .global_nav .global_list li a::before, .header .global_nav .global_list li a::after {
    position: absolute;
    border-bottom: solid 3px #707070;
    bottom: 0;
    content: "";
    display: block;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    width: 0;
  }
  .header .global_nav .global_list li a::before {
    right: 50%;
  }
  .header .global_nav .global_list li a::after {
    left: 50%;
  }
  .header .global_nav .global_list li a:hover::before, .header .global_nav .global_list li a:hover::after {
    width: 27.5px;
  }
  .header .global_nav .global_list li:last-child a {
    color: #fff;
    background-color: #313131;
    transition: all 0.2s ease;
  }
  .header .global_nav .global_list li:last-child a:hover::before, .header .global_nav .global_list li:last-child a:hover::after {
    width: 0;
  }
}

.header_blog {
  padding-left: 20px;
  padding-right: 20px;
}
@media print, screen and (min-width: 768px) {
  .header_blog {
    padding: 0;
  }
}
.header_blog .header_top {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .header_blog .header_top {
    height: 100%;
  }
}
.header_blog .open_area {
  height: 100%;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .header_blog .open_area {
    display: none;
  }
}
.header_blog .open_btn {
  position: relative;
  width: 25px;
  height: 18px;
  cursor: pointer;
  appearance: none;
  background-color: transparent;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
}
.header_blog .open_btn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #313131;
  transition: all 0.3s;
}
.header_blog .open_btn span:first-child {
  top: 0;
}
.header_blog .open_btn span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header_blog .open_btn span:last-child {
  bottom: 0;
}
.header_blog .open_btn._active span {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header_blog .open_btn._active span:first-child {
  transform: rotate(135deg);
}
.header_blog .open_btn._active span:nth-child(2) {
  opacity: 0;
}
.header_blog .open_btn._active span:last-child {
  transform: rotate(-135deg);
}
.header_blog .header_logo a {
  display: block;
}
.header_blog .header_logo a:hover {
  opacity: 0.5;
}
.header_blog .header_logo a .catch_phrase {
  font-size: 14px;
  font-weight: 500;
}
.header_blog .header_logo a img {
  width: 183px;
  height: 19px;
  vertical-align: middle;
  height: 100%;
}
@media print, screen and (min-width: 768px) {
  .header_blog .header_logo {
    margin-left: calc((100% - 1000px) / 2);
  }
  .header_blog .header_logo a img {
    width: initial;
    height: initial;
  }
}
.header_blog .btn_area .inner {
  display: flex;
  justify-content: flex-end;
}
.header_blog .btn_area .contact_btn {
  background: rgb(130, 201, 208);
  background: linear-gradient(45deg, rgb(130, 201, 208) 0%, rgb(129, 204, 212) 20%, rgb(44, 215, 229) 100%);
}
.header_blog .btn_area .contact_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 100px;
  color: #fff;
}
.header_blog .btn_area .contact_btn a:hover {
  opacity: 0.5;
}
.header_blog .btn_area .line_btn {
  background-color: #00B900;
}
.header_blog .btn_area .line_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 100px;
  color: #fff;
}
.header_blog .btn_area .line_btn a:hover {
  opacity: 0.5;
}
.header_blog .search_open {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .header_blog .search_open {
    display: none;
  }
}
.header_blog .header_middle {
  display: none;
  height: 60px;
}
@media print, screen and (min-width: 768px) {
  .header_blog .header_middle {
    display: block;
    height: 120px;
  }
}
.header_blog .search_area {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 18px;
}
@media print, screen and (min-width: 768px) {
  .header_blog .search_area {
    padding-top: 34px;
  }
}
.header_blog .search_area .inner {
  display: flex;
  justify-content: start;
  width: 100%;
  height: 37px;
}
.header_blog .search_area .search_box {
  width: 72.2%;
}
.header_blog .search_area .search_box input {
  box-sizing: border-box;
  border: 3px solid #67C983;
  width: 100%;
  height: 37px;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 0 7px;
  outline: none;
}
@media print, screen and (min-width: 768px) {
  .header_blog .search_area .search_box {
    width: initial;
  }
  .header_blog .search_area .search_box input {
    width: 420px;
    height: 48px;
    font-size: 16px;
    padding: 0 14px;
  }
}
.header_blog .search_area .search_btn {
  width: 25.6%;
  margin-left: 20px;
  height: 48px;
}
.header_blog .search_area .search_btn input {
  border: none;
  border-radius: 4px;
  background-color: #67C983;
  color: #fff;
  width: 100%;
  height: 37px;
  font-size: 16px;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .header_blog .search_area .search_btn input {
    width: 156px;
    height: 48px;
  }
}
.header_blog .header_bottom {
  position: absolute;
  top: 60px;
  left: -375px;
  width: 50%;
  height: 100%;
  min-width: 200px;
  opacity: 0.95;
  z-index: 5;
  background-color: #67C983;
  transition: 0.3s;
}
.header_blog .header_bottom._active {
  left: 0;
}
@media print, screen and (min-width: 768px) {
  .header_blog .header_bottom {
    position: static;
    width: initial;
    height: initial;
    opacity: 1;
  }
}
.header_blog .blog_list {
  padding-left: 25px;
}
@media print, screen and (min-width: 768px) {
  .header_blog .blog_list {
    width: 1000px;
    display: flex;
    margin: 0 auto;
    padding-left: 0;
  }
}
.header_blog .blog_list > li > a {
  display: block;
  width: 167px;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}
.header_blog .blog_list > li > a:hover {
  opacity: 0.5;
}
@media print, screen and (min-width: 768px) {
  .header_blog .blog_list > li {
    border-left: 1px solid #fff;
  }
  .header_blog .blog_list > li a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header_blog .blog_list > li:last-child {
    border-right: 1px solid #fff;
  }
}

.bread_list {
  margin: 9px auto 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 2.5;
  padding: 0 20px;
}
@media print, screen and (min-width: 768px) {
  .bread_list {
    margin: 27px auto 0;
    padding: 0;
    width: 1000px;
  }
}

#page_top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#page_top:hover {
  opacity: 0.5;
}
#page_top .arrow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  border-top: 2px solid #707070;
  border-left: 2px solid #707070;
  transform: rotate(45deg);
}
#page_top p {
  position: absolute;
  top: 20px;
  width: 40px;
  text-align: center;
  font-size: 10px;
  line-height: 1.25;
  color: #707070;
}
@media print, screen and (min-width: 768px) {
  #page_top {
    right: calc(50% - 560px);
    bottom: 50px;
    width: 50px;
    height: 50px;
  }
  #page_top .arrow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-top: 2px solid #707070;
    border-left: 2px solid #707070;
    transform: rotate(45deg);
  }
  #page_top p {
    position: absolute;
    top: 28px;
    width: 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.25;
    color: #707070;
  }
}

.footer {
  background-color: #3E3E3E;
}
.footer .inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .footer .inner {
    width: 100%;
    margin: 0 auto;
    max-width: 680px;
    padding: 0;
  }
}
.footer .footer_nav {
  padding-top: 28px;
}
.footer .footer_list li {
  padding-top: 15px;
}
.footer .footer_list li a {
  font-size: 14px;
  color: #fff;
  transition: all 0.2s;
}
.footer .footer_list li a:hover {
  opacity: 0.5;
}
@media print, screen and (min-width: 768px) {
  .footer .footer_list {
    display: flex;
    justify-content: center;
    gap: 76px;
    width: 680px;
    margin: 0 auto;
  }
  .footer .footer_list li {
    padding-top: 0;
  }
}
.footer .image {
  color: #fff;
  text-align: center;
}
.footer .image a:hover {
  opacity: 0.5;
}
.footer .image img {
  width: 181px;
}
@media print, screen and (min-width: 768px) {
  .footer .image img {
    width: 258px;
  }
}
.footer .banner-km {
  margin-top: 60px;
  text-align: center;
  transition: all 0.2s;
}
.footer .banner-km a:hover {
  opacity: 0.5;
}
.footer .banner-km img {
  width: 181px;
}
@media print, screen and (min-width: 768px) {
  .footer .banner-km img {
    width: 258px;
  }
}
.footer .copy {
  margin-top: 60px;
  padding-bottom: 37px;
  font-size: 12px;
}
.footer .copy .privacy a {
  color: #fff;
  transition: all 0.2s;
}
.footer .copy .privacy a:hover {
  opacity: 0.5;
}
.footer .copy .copyright {
  text-transform: initial;
  color: #fff;
}

.bogo-language-switcher {
  display: flex;
  flex-wrap: wrap;
  flex-flow: row-reverse;
  justify-content: center;
}
.bogo-language-switcher li {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
.bogo-language-switcher li a {
  color: #fff;
}
.bogo-language-switcher li a:hover {
  opacity: 0.7;
}
.bogo-language-switcher li.current a {
  color: #91C9A7;
}
.bogo_menu_blog .bogo-language-switcher li.current a {
  color: #000;
}
.bogo-language-switcher li:before {
  content: "/";
  display: block;
  float: left;
  margin: 0 5px;
  color: #fff;
}
.bogo-language-switcher li:last-child::before {
  display: none;
}

.footer_blog {
  background-color: #67C983;
  padding: 0 20px 27px;
}
@media print, screen and (min-width: 768px) {
  .footer_blog {
    height: 138px;
  }
}
.footer_blog .inner {
  padding-top: 26px;
}
@media print, screen and (min-width: 768px) {
  .footer_blog .footer_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
    margin: 0 auto;
  }
}
.footer_blog .footer_top .footer_logo {
  text-align: center;
}
.footer_blog .footer_top .footer_logo > a:hover {
  opacity: 0.5;
}
.footer_blog .footer_top .footer_logo > a img {
  vertical-align: middle;
}
.footer_blog .footer_nav {
  margin-top: 76px;
}
@media print, screen and (min-width: 768px) {
  .footer_blog .footer_nav {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .footer_blog .footer_list {
    display: flex;
    justify-content: flex-end;
  }
}
.footer_blog .footer_list > li {
  margin: 10px 0;
}
.footer_blog .footer_list > li > a {
  color: #fff;
}
.footer_blog .footer_list > li > a:hover {
  opacity: 0.5;
}
@media print, screen and (min-width: 768px) {
  .footer_blog .footer_list > li + li {
    margin-left: 38px;
  }
}
.footer_blog .copy {
  padding-top: 20px;
  margin: 0 auto;
  font-size: 12px;
  text-align: center;
}
.footer_blog .copy .privacy a {
  color: #fff;
}
.footer_blog .copy .copyright {
  color: #fff;
}

.cmn_title .main {
  display: block;
  font-size: 25.2px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media print, screen and (min-width: 768px) {
  .cmn_title .main {
    font-size: 36px;
  }
}
.cmn_title .sub {
  display: block;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #91C9A7;
  font-size: 11.2px;
}
@media print, screen and (min-width: 768px) {
  .cmn_title .sub {
    font-size: 16px;
  }
}

.line_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 246px;
  height: 60px;
  font-size: 14px;
  background-color: #00B900;
  color: #fff;
  transition: all 0.2s;
}
.line_btn a:hover {
  opacity: 0.5;
}
@media print, screen and (min-width: 768px) {
  .line_btn a {
    width: 260px;
    font-size: 16px;
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9000;
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  top: 45%;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.main_visual {
  background-image: url(../image/main_visual2.jpeg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 60vw;
  overflow: hidden;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .main_visual {
    height: 49vw;
  }
}
.main_visual .video_area {
  z-index: -1;
}
.main_visual .video_area video {
  width: 100%;
  height: 100%;
}
.main_visual .typed_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #313131;
}
@media print, screen and (min-width: 768px) {
  .main_visual .typed_wrap {
    font-size: 40px;
  }
}
.main_visual .main_line a {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .main_visual .main_line a {
    position: absolute;
    right: 0;
    bottom: 232px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    width: initial;
    height: 76px;
    padding: 0 12px;
    background: rgba(197, 209, 140, 0.83);
    background: linear-gradient(90deg, rgba(197, 209, 140, 0.83) 0%, rgba(157, 199, 169, 0.83) 100%);
    border-radius: 38px 0 0 38px;
  }
  .main_visual .main_line a p {
    color: #fff;
  }
  .main_visual .main_line a img {
    width: 35px;
    height: 35px;
    padding-right: 10px;
  }
}
.main_visual .main_contact a {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .main_visual .main_contact a {
    position: absolute;
    right: 0;
    bottom: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 140px;
    height: 151px;
    background: rgb(197, 209, 140);
    background: linear-gradient(45deg, rgba(197, 209, 140, 0.83) 0%, rgba(157, 199, 169, 0.83) 100%);
  }
  .main_visual .main_contact a p {
    color: #fff;
  }
  .main_visual .main_contact a img {
    width: 57px;
    height: 57px;
  }
}

.scroll_area {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .scroll_area {
    display: block;
    margin-top: 50px;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: initial;
  }
  .scroll_area::after {
    display: block;
    content: "";
    width: 1px;
    margin: 10px auto 0;
    height: 30px;
    background-color: #313131;
  }
}

.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: relative;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  width: 50px;
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -30px;
  /*テキストの形状*/
  color: #313131;
  letter-spacing: 0.03em;
  text-transform: initial;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #313131;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.about {
  margin-top: 76px;
}
@media print, screen and (min-width: 768px) {
  .about {
    margin-top: 120px;
  }
}
.about .about_upper {
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .about .about_upper {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.about .about_text {
  margin-top: 36px;
}
.about .about_text .title {
  font-size: 22px;
  letter-spacing: 0.15em;
}
.about .about_text .title .spot {
  letter-spacing: 0;
}
.about .about_text .title ._en {
  text-transform: initial;
}
.about .about_text .desc {
  margin-top: 39px;
}
@media print, screen and (min-width: 768px) {
  .about .about_text {
    margin-top: 100px;
  }
  .about .about_text .title {
    font-size: 46px;
  }
  .about .about_text .desc {
    margin-top: 12px;
  }
}
.about .info_area {
  background-image: url(../image/information_sp.png);
  background-position: center;
  background-size: cover;
  height: 220px;
  margin-top: 80px;
}
@media print, screen and (min-width: 768px) {
  .about .info_area {
    background-image: url(../image/information.png);
    height: 315px;
    margin-top: 100px;
  }
  .about .info_area .cover {
    height: 315px;
  }
}
.about .cover {
  background-color: rgba(0, 0, 0, 0.49);
  height: 220px;
  position: relative;
}
.about .info_list {
  padding: 20px;
  overflow: scroll;
  height: 215px;
}
@media print, screen and (min-width: 768px) {
  .about .info_list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
  }
}
.about .info_list a {
  display: flex;
  margin-top: 15px;
  color: #fff;
  transition: all 0.2s;
}
.about .info_list a dt {
  width: 85px;
}
.about .info_list a dd {
  flex: 1;
}
@media print, screen and (min-width: 768px) {
  .about .info_list a dt {
    width: 120px;
  }
}
.about .link_btn {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 130px);
}
@media print, screen and (min-width: 768px) {
  .about .link_btn {
    bottom: 50px;
    left: calc(50% - 150px);
  }
}
.about .link_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 246px;
  height: 50px;
  border: 2px solid #fff;
  text-align: center;
  margin: 20px auto 0;
  color: #fff;
  transition: all 0.2s;
}
.about .link_btn a::after {
  content: "";
  bottom: 23px;
  width: 45px;
  height: 2px;
  position: absolute;
  background-color: #fff;
  transition: all 0.2s;
  right: calc(50% - 150px);
}
.about .link_btn a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.about .link_btn a:hover::after {
  right: calc(50% - 160px);
}
@media print, screen and (min-width: 768px) {
  .about .link_btn a {
    width: 300px;
    height: 60px;
  }
  .about .link_btn a::after {
    bottom: 30px;
    width: 54px;
    right: calc(50% - 176px);
  }
  .about .link_btn a:hover::after {
    right: calc(50% - 186px);
  }
}

.service {
  margin: 80px auto 0;
}
@media print, screen and (min-width: 768px) {
  .service {
    max-width: 1000px;
    margin: 260px auto 0;
  }
}
.service .cmn_title {
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .service .cmn_title {
    padding: 0;
  }
}
.service .service_area {
  margin-top: 36px;
}
@media print, screen and (min-width: 768px) {
  .service .service_area {
    margin-top: 100px;
  }
}
.service .service_item {
  display: flex;
  flex-direction: column-reverse;
}
.service .service_item + .service_item {
  margin-top: 80px;
}
@media print, screen and (min-width: 768px) {
  .service .service_item + .service_item {
    margin-top: 160px;
  }
}
@media print, screen and (min-width: 768px) {
  .service .service_item:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
@media print, screen and (min-width: 768px) {
  .service .service_item:nth-child(even) {
    flex-direction: row;
    padding-left: 64px;
  }
}
.service .service_item .text {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
}
.service .service_item .text.second {
  margin-left: 0;
  margin-right: auto;
  padding-left: 63px;
}
@media print, screen and (min-width: 768px) {
  .service .service_item .text {
    width: 50%;
    padding: 0;
  }
  .service .service_item .text.second {
    padding: 0;
  }
}
.service .service_item .text .title .main {
  display: block;
  max-width: 500px;
  font-size: 26px;
  color: #91C9A7;
  letter-spacing: 0.02em;
  line-height: 1.1;
  padding-top: 22px;
}
.service .service_item .text .title .main.first {
  padding-top: 37px;
}
.service .service_item .text .title .sub {
  display: block;
  font-size: 8px;
  color: #91C9A7;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
@media print, screen and (min-width: 768px) {
  .service .service_item .text .title .main {
    font-size: 40px;
  }
  .service .service_item .text .title .sub {
    font-size: 14px;
  }
}
.service .service_item .text .desc {
  margin-top: 8px;
  max-width: 360px;
}
@media print, screen and (min-width: 768px) {
  .service .service_item .text .desc {
    max-width: 436px;
  }
}
.service .service_item .text .number {
  position: absolute;
  top: 0;
  right: 20px;
  z-index: -1;
}
.service .service_item .text .number.second {
  left: 20px;
}
.service .service_item .text .number img {
  width: 124px;
  height: 104px;
}
@media print, screen and (min-width: 768px) {
  .service .service_item .text .number {
    right: 0;
  }
  .service .service_item .text .number.second {
    left: -64px;
  }
  .service .service_item .text .number img {
    width: 190px;
    height: 160px;
  }
}
.service .service_item .image.second {
  margin-left: auto;
}
.service .service_item .image img {
  width: 268px;
  height: 152px;
}
@media print, screen and (min-width: 768px) {
  .service .service_item .image {
    width: 50%;
  }
  .service .service_item .image img {
    width: 460px;
    height: 260px;
  }
}

.company {
  margin: 80px auto 0;
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .company {
    max-width: 1000px;
    margin: 260px auto 0;
    padding: 0;
  }
}
.company .company_area {
  margin-top: 27px;
}
@media print, screen and (min-width: 768px) {
  .company .company_area {
    display: flex;
    margin-top: 75px;
  }
}
.company .company_area .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.company .company_area .image img {
  width: 112px;
}
@media print, screen and (min-width: 768px) {
  .company .company_area .image {
    width: 50%;
  }
  .company .company_area .image img {
    width: 208px;
  }
}
.company .company_area table {
  width: 100%;
  margin-top: 45px;
}
@media print, screen and (min-width: 768px) {
  .company .company_area table {
    width: 50%;
    margin-top: 0;
  }
}
.company .company_area table tr {
  border-bottom: 1px dashed #E3E3E3;
}
.company .company_area table th {
  padding: 24.5px 10px 20.5px;
  line-height: 1;
  text-align: left;
  width: 134px;
}
@media print, screen and (min-width: 768px) {
  .company .company_area table th {
    width: 140px;
  }
}
.company .company_area table td {
  font-weight: 500;
  vertical-align: middle;
}
@media screen and (min-width: 500px) {
  .company .company_area table ._br {
    display: none;
  }
}

.contact {
  margin: 68px auto 140px;
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .contact {
    max-width: 1000px;
    margin: 260px auto 300px;
    padding: 0;
  }
}
.contact .contact_area .message {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
}
@media print, screen and (min-width: 768px) {
  .contact .contact_area .message {
    margin-top: 100px;
    font-size: 16px;
  }
}
.contact .contact_area .line_btn a {
  margin: 20px auto 0;
}
.contact .contact_area .form_area {
  margin-top: 87px;
}
.contact .contact_area form .row {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.contact .contact_area form .row + .row {
  margin-top: 20px;
}
.contact .contact_area form .form_index {
  margin-right: 50px;
  line-height: 2.5;
  vertical-align: middle;
  font-size: 13px;
}
.contact .contact_area form span.required {
  display: inline-block;
  width: 25px;
  height: 14px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  border-radius: 2px;
  font-size: 10px;
  background-color: #91C9A7;
  color: #fff;
  margin-left: 11px;
}
.contact .contact_area form span.required.none {
  background-color: transparent;
}
.contact .contact_area form input[type=text], .contact .contact_area form input[type=email], .contact .contact_area form input[type=tel] {
  background-color: #EFEFEF;
  width: calc(100% - 20px);
  height: 40px;
  border: none;
  border-radius: 4px;
  padding: 0 10px;
}
.contact .contact_area form input[type=text]:focus, .contact .contact_area form input[type=email]:focus, .contact .contact_area form input[type=tel]:focus {
  outline: none;
  box-shadow: 0 0 0 2px #67C983;
  cursor: text;
}
.contact .contact_area form textarea {
  background-color: #EFEFEF;
  height: 162px;
  width: calc(100% - 20px);
  border: none;
  border-radius: 4px;
  padding: 10px;
}
.contact .contact_area form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #67C983;
  cursor: text;
}
@media print, screen and (min-width: 768px) {
  .contact .contact_area form .row {
    flex-direction: row;
    justify-content: flex-end;
  }
  .contact .contact_area form .row + .row {
    margin-top: 47px;
  }
  .contact .contact_area form .form_index {
    font-size: 16px;
  }
  .contact .contact_area form .form_type_area {
    width: 580px;
    height: 40px;
  }
  .contact .contact_area form input[type=text], .contact .contact_area form input[type=email], .contact .contact_area form input[type=tel] {
    width: 580px;
    height: 40px;
  }
  .contact .contact_area form textarea {
    width: 580px;
    height: 148px;
  }
}
.contact .contact_area .form_message {
  margin-top: 44px;
  text-align: center;
  font-size: 12px;
}
.contact .contact_area .form_message a {
  text-decoration: underline;
}
.contact .contact_area .form_message a:hover {
  opacity: 0.5;
}
@media print, screen and (min-width: 768px) {
  .contact .contact_area .form_message {
    margin-top: 109px;
    text-align: center;
    font-size: 16px;
  }
}
.contact .contact_area input[type=submit] {
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 246px;
  height: 50px;
  border: 2px solid #313131;
  text-align: center;
  margin: 32px auto 0;
  color: #313131;
  transition: all 0.2s;
  font-size: 14px;
  background-color: #fff;
  cursor: pointer;
  font-family: initial;
  font-size: 600;
}
.contact .contact_area input[type=submit]::after {
  position: absolute;
  content: "_";
  top: 0;
  bottom: 23px;
  width: 45px;
  height: 2px;
  background-color: #313131;
  transition: all 0.2s;
  right: calc(50% - 150px);
}
.contact .contact_area input[type=submit]:hover {
  opacity: 0.5;
}
.contact .contact_area input[type=submit]:hover::after {
  right: calc(50% - 160px);
}
@media print, screen and (min-width: 768px) {
  .contact .contact_area input[type=submit] {
    width: 294px;
    height: 60px;
    font-size: 16px;
    margin: 47px auto 0;
  }
  .contact .contact_area input[type=submit]::after {
    bottom: 30px;
    width: 54px;
    right: calc(50% - 176px);
  }
  .contact .contact_area input[type=submit]:hover::after {
    right: calc(50% - 186px);
  }
}

.contact_blog {
  padding-right: 20px;
  padding-left: 20px;
  margin: 40px auto 65px;
  max-width: 1000px;
}
@media print, screen and (min-width: 768px) {
  .contact_blog {
    margin: 70px auto 130px;
    padding: 0;
  }
}
.contact_blog .contact_area {
  max-width: 600px;
  width: 100%;
}
.contact_blog .contact_area .contact_heading {
  font-size: 20px;
}
@media print, screen and (min-width: 768px) {
  .contact_blog .contact_area .contact_heading {
    font-size: 30px;
  }
}
.contact_blog .contact_area .message {
  font-size: 14px;
  margin-top: 16px;
}
@media print, screen and (min-width: 768px) {
  .contact_blog .contact_area .message {
    font-size: 16px;
  }
}
.contact_blog .contact_area .form_area {
  margin-top: 45px;
}
.contact_blog .contact_area form .row + .row {
  margin-top: 16px;
}
.contact_blog .contact_area form .form_index {
  margin-right: 50px;
  line-height: 2.2;
  vertical-align: middle;
  font-size: 14px;
}
@media print, screen and (min-width: 768px) {
  .contact_blog .contact_area form .form_index {
    font-size: 18px;
  }
}
.contact_blog .contact_area form span.required {
  display: inline-block;
  width: 25px;
  height: 14px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  border-radius: 2px;
  font-size: 10px;
  background-color: #91C9A7;
  color: #fff;
  margin-left: 11px;
}
.contact_blog .contact_area form span.required.none {
  background-color: transparent;
}
.contact_blog .contact_area form input[type=text], .contact_blog .contact_area form input[type=email], .contact_blog .contact_area form input[type=tel] {
  background-color: #EFEFEF;
  width: calc(100% - 20px);
  height: 40px;
  border: none;
  border-radius: 4px;
  padding: 0 10px;
  box-shadow: 0 1px 1px inset #707070;
}
.contact_blog .contact_area form input[type=text]:focus, .contact_blog .contact_area form input[type=email]:focus, .contact_blog .contact_area form input[type=tel]:focus {
  outline: none;
  box-shadow: 0 0 0 2px #67C983;
  cursor: text;
}
.contact_blog .contact_area form textarea {
  background-color: #EFEFEF;
  width: calc(100% - 20px);
  height: 160px;
  box-shadow: 0 1px 1px inset #707070;
  border: none;
  border-radius: 4px;
  padding: 10px;
}
.contact_blog .contact_area form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #67C983;
  cursor: text;
}
@media print, screen and (min-width: 768px) {
  .contact_blog .contact_area form textarea {
    height: 300px;
  }
}
.contact_blog .contact_area form .form_message {
  margin-top: 30px;
  font-size: 12px;
}
.contact_blog .contact_area form .form_message a {
  text-decoration: underline;
}
.contact_blog .contact_area form .form_message a:hover {
  opacity: 0.5;
}
@media print, screen and (min-width: 768px) {
  .contact_blog .contact_area form .form_message {
    margin-top: 50px;
    font-size: 16px;
  }
}
.contact_blog .contact_area form input[type=submit] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
  width: 300px;
  height: 60px;
  padding: 0;
  background-color: #67C983;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.contact_blog .contact_area form input[type=submit]:hover {
  opacity: 0.5;
}
@media print, screen and (min-width: 768px) {
  .contact_blog .contact_area form input[type=submit] {
    width: 200px;
  }
}

.blog_wrapper {
  width: calc(100% - 40px);
  padding: 0 20px;
  margin: 0 auto;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .blog_wrapper {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 74px auto 0;
  }
}

@media print, screen and (min-width: 768px) {
  .mainbar {
    width: 655px;
  }
}

.first_blog_area .icatch img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .first_blog_area .icatch img {
    width: 655px;
  }
}
.first_blog_area .main_contents {
  width: 100%;
}
.first_blog_area .main_contents > a:hover .title, .first_blog_area .main_contents a:hover .contents, .first_blog_area .main_contents a:hover .detail {
  opacity: 0.5;
}
.first_blog_area .title {
  font-size: 20px;
  letter-spacing: 0.08em;
}
@media print, screen and (min-width: 768px) {
  .first_blog_area .title {
    font-size: 36px;
  }
}
.first_blog_area .info {
  display: flex;
  align-items: center;
  width: 100%;
}
.first_blog_area .info .date {
  font-size: 14px;
}
.first_blog_area .info .date.single {
  margin-bottom: 14px;
}
.first_blog_area .info .category {
  display: flex;
}
.first_blog_area .info .category > a {
  margin-left: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2EC4E;
  font-size: 13px;
  font-weight: 300;
  width: 100%;
  height: 18px;
}
.first_blog_area .info .category > a:hover {
  opacity: 0.5;
}
.first_blog_area .contents {
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
}
@media print, screen and (min-width: 768px) {
  .first_blog_area .contents {
    margin-top: 16px;
    font-size: 24px;
  }
}
.first_blog_area .detail {
  font-size: 13px;
  font-weight: 300;
  text-align: right;
}
.first_blog_area .single_contents .blog_index_area {
  height: 300px;
  border: 3px solid #67C983;
  margin-top: 50px;
  padding: 42px 68px;
}
.first_blog_area .single_contents .blog_index_area .mokuji {
  font-size: 30px;
  color: #67C983;
}
.first_blog_area .single_contents .blog_index_area .mokuji span {
  font-size: 14px;
  color: #313131;
  vertical-align: middle;
  margin-left: 25px;
}
.first_blog_area .single_contents > h2 {
  font-size: 16px;
  background-color: rgba(128, 198, 137, 0.28);
  border-left: 4px solid #80C689;
  padding: 3px 8px;
  margin-top: 35px;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 768px) {
  .first_blog_area .single_contents > h2 {
    font-size: 30px;
    padding: 3px 20px;
    margin-top: 50px;
  }
}
.first_blog_area .single_contents > h3 {
  font-size: 16px;
  border-bottom: 3px solid #80C689;
  margin-top: 35px;
  margin-bottom: 18px;
}
@media print, screen and (min-width: 768px) {
  .first_blog_area .single_contents > h3 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 25px;
  }
}
.first_blog_area .single_contents > p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 18px;
  margin-bottom: 18px;
}
@media print, screen and (min-width: 768px) {
  .first_blog_area .single_contents > p {
    font-size: 18px;
  }
}

.next_blog_wrapper {
  margin-top: 55px;
  display: flex;
  flex-wrap: wrap;
  gap: 23px 2%;
}

.next_cat_wrapper {
  margin-top: 55px;
}

.next_blog_area {
  box-sizing: border-box;
  max-width: 320px;
  width: 48.8%;
  border: none;
}
.next_blog_area.cat {
  width: 100%;
  max-width: 658px;
  margin-bottom: 20px;
}
.next_blog_area.cat .main_contents {
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .next_blog_area {
    border-right: 2px solid #67C983;
    border-bottom: 2px solid #67C983;
    padding: 10px 20px;
  }
}
.next_blog_area .title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  padding-left: 6px;
  border-left: 4px solid #67C983;
}
@media print, screen and (min-width: 768px) {
  .next_blog_area .title {
    font-size: 20px;
  }
}
.next_blog_area .info {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .next_blog_area .info {
    margin-top: 16px;
  }
}
.next_blog_area .info .date {
  font-size: 12px;
}
.next_blog_area .info .category {
  display: flex;
}
.next_blog_area .info .category > a {
  margin-left: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2EC4E;
  font-size: 12px;
  font-weight: 300;
  width: 100%;
  height: 16px;
}
.next_blog_area .info .category > a:hover {
  opacity: 0.5;
}
.next_blog_area > a:hover .title, .next_blog_area a:hover .contents, .next_blog_area a:hover .detail {
  opacity: 0.5;
}
.next_blog_area .main_contents {
  margin-top: 8px;
}
@media print, screen and (min-width: 768px) {
  .next_blog_area .main_contents {
    margin-top: 16px;
    display: flex;
  }
}
.next_blog_area .main_contents .icatch {
  text-align: center;
}
.next_blog_area .main_contents .icatch img {
  width: 92%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .next_blog_area .main_contents .icatch img {
    width: 147px;
    height: 83px;
  }
}
.next_blog_area .main_contents .contents {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: normal;
}
.next_blog_area .main_contents .contents span {
  display: block;
  text-align: end;
}
.next_blog_area .main_contents.cat > .icatch {
  width: 40%;
}
@media print, screen and (min-width: 768px) {
  .next_blog_area .main_contents.cat > .icatch {
    width: 147px;
  }
}
.next_blog_area .main_contents.cat > a {
  width: 60%;
}
@media print, screen and (min-width: 768px) {
  .next_blog_area .main_contents.cat > a {
    width: initial;
  }
}

.page_navi {
  margin-top: 46px;
}
.page_navi .page_navi_area {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page_navi {
    margin-top: 80px;
  }
}

.return_area {
  margin-top: 55px;
  margin-bottom: 55px;
}
.return_area .return_btn a {
  color: #fff;
  background-color: #67C983;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 60px;
  margin: 0 auto;
  border-radius: 4px;
  transition: all 0.2s;
}
.return_area .return_btn a:hover {
  opacity: 0.5;
}

.blog_contact_area {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .blog_contact_area {
    margin: 100px auto;
    width: 1000px;
    display: flex;
    justify-content: center;
  }
}
.blog_contact_area .blog_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 334px;
  height: 80px;
  font-size: 18px;
  border-radius: 4px;
  background: rgb(44, 215, 229);
  background: linear-gradient(45deg, rgb(44, 215, 229) 0%, rgb(129, 204, 212) 80%, rgb(130, 201, 208) 100%);
  color: #fff;
  transition: all 0.2s;
}
.blog_contact_area .blog_btn a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.blog_contact_area .line_btn {
  margin-left: 63px;
}
.blog_contact_area .line_btn a {
  width: 334px;
  height: 80px;
  border-radius: 4px;
}

.page_top_blog {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .page_top_blog {
    right: calc(50% - 550px);
  }
}
.page_top_blog .arrow {
  background-color: #67C983;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
}
.page_top_blog .arrow::after {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 11px);
  content: "";
  width: 18px;
  height: 18px;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
  border-radius: 3px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.pagination-container {
  margin-top: 70px;
  font-family: "Montserrat", sans-serif;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination .prev > a, .pagination .next > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  color: #67C983;
}
.pagination .page a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
}
.pagination .page.active a {
  color: #fff;
  background-color: #67C983;
}

.search_result {
  font-size: 20px;
  font-weight: 700;
}
.search_result span {
  margin-left: 1rem;
}

.privacy_area {
  margin: 100px auto;
  max-width: 1000px;
  padding-right: 10px;
  padding-left: 10px;
}
.privacy_area .privacy-ttl {
  font-size: 32px;
  text-align: center;
  margin-bottom: 2.5rem;
}
.privacy_area dt {
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #f1f1f1;
  text-align: start;
}
.privacy_area dd {
  font-weight: normal;
  margin-bottom: 2.5rem;
}

.sidebar {
  margin-top: 50px;
}
@media print, screen and (min-width: 768px) {
  .sidebar {
    width: 310px;
    margin-top: 0;
  }
}
.sidebar .banner {
  width: 100%;
  max-width: 335px;
  height: auto;
  margin: 0 auto;
  transition: all 0.2s;
}
.sidebar .banner img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .sidebar .banner {
    width: 310px;
    height: 300px;
  }
}
.sidebar .banner:hover {
  opacity: 0.5;
}
.sidebar .index {
  position: relative;
  font-weight: 700;
  font-size: 12px;
}
.sidebar .index span {
  display: inline-block;
  font-size: 18px;
  margin-right: 1rem;
}
.sidebar .index:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 8px;
  background: -webkit-repeating-linear-gradient(-50deg, #80C689, #80C689 4px, #fff 4px, #fff 8px);
  background: repeating-linear-gradient(-50deg, #80C689, #80C689 4px, #fff 4px, #fff 8px);
}
@media print, screen and (min-width: 768px) {
  .sidebar .index {
    width: 310px;
  }
}
.sidebar .ranking {
  margin-top: 67px;
}
@media print, screen and (min-width: 768px) {
  .sidebar .ranking {
    margin-top: 75px;
  }
}
.sidebar .ranking .ranking_area {
  margin-top: 20px;
}
.sidebar .ranking .ranking_item {
  width: 100%;
  padding: 5px 0;
}
.sidebar .ranking .ranking_item .link_title {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding-left: 17px;
}
.sidebar .ranking .ranking_item .link_title span {
  display: block;
  font-size: 30px;
  font-style: italic;
  font-family: "Futura";
}
.sidebar .ranking .ranking_item .link_title span.top3 {
  color: #67C983;
}
.sidebar .ranking .ranking_item .link_title .rank_title {
  width: 64%;
  font-size: 14px;
  font-weight: 300;
  margin-left: 20px;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .sidebar .ranking .ranking_item .link_title .rank_title {
    width: 215px;
  }
}
.sidebar .ranking .ranking_item .link_title::before {
  display: block;
  font-size: 30px;
  font-style: italic;
  font-family: "Futura";
  color: #67C983;
}
.sidebar .ranking .ranking_item .link_title::after {
  position: absolute;
  right: 20px;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 3px solid #67C983;
  border-bottom: 3px solid #67C983;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sidebar .ranking .ranking_item .link_title:hover {
  opacity: 0.5;
}
.sidebar .ranking .ranking_item:nth-child(1) .link_title::before {
  content: "1";
}
.sidebar .ranking .ranking_item:nth-child(2) .link_title::before {
  content: "2";
}
.sidebar .ranking .ranking_item:nth-child(3) .link_title::before {
  content: "3";
}
.sidebar .ranking .ranking_item:nth-child(4) .link_title::before {
  content: "4";
  color: #313131;
}
.sidebar .ranking .ranking_item:nth-child(5) .link_title::before {
  content: "5";
  color: #313131;
}
.sidebar .recent {
  margin-top: 48px;
}
.sidebar .recent .recent_area {
  margin-top: 20px;
}
.sidebar .recent .recent_item {
  width: 100%;
  padding: 12px 0;
}
.sidebar .recent .recent_item a {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding-left: 15px;
}
.sidebar .recent .recent_item a .icatch {
  width: 106px;
  height: 60px;
}
@media print, screen and (min-width: 768px) {
  .sidebar .recent .recent_item a .icatch {
    width: 85px;
    height: 48px;
  }
}
.sidebar .recent .recent_item a .icatch img {
  width: 100%;
  height: 100%;
}
.sidebar .recent .recent_item a .title {
  width: 45%;
  font-size: 14px;
  font-weight: 300;
  margin-left: 20px;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .sidebar .recent .recent_item a .title {
    width: 145px;
  }
}
.sidebar .recent .recent_item a::after {
  position: absolute;
  right: 20px;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 3px solid #67C983;
  border-bottom: 3px solid #67C983;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sidebar .recent .recent_item a:hover {
  opacity: 0.5;
}
.sidebar .line_btn a {
  width: 300px;
  margin: 38px auto;
  border-radius: 4px;
}
@media print, screen and (min-width: 768px) {
  .sidebar .line_btn a {
    margin: 100px auto 0;
  }
}
.sidebar .line_btn._contact a {
  width: 300px;
  background: rgb(44, 215, 229);
  background: linear-gradient(45deg, rgb(44, 215, 229) 0%, rgb(129, 204, 212) 80%, rgb(130, 201, 208) 100%);
  border-radius: 4px;
}/*# sourceMappingURL=style.css.map */