@charset "UTF-8";
.hideOut {
  opacity: 1;
}

@keyframes hideOut {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-20vw, 0, 0);
  }
}
.left_to_right {
  opacity: 0;
  transform: translate3d(-150px, 0, 0) scale(1);
}

.left_to_right.active {
  animation: left_to_right 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes left_to_right {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.right_to_left {
  opacity: 0;
  transform: translate3d(50px, 0, 0) scale(1);
}

.right_to_left.active {
  animation: right_to_left 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes right_to_left {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.top_to_bottom {
  opacity: 0;
  transform: translate3d(0, -50px, 0) scale(1.1);
}

.top_to_bottom.active {
  animation: top_to_bottom 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes top_to_bottom {
  0% {
    opacity: 0;
    transform: translate3d(0, -50px, 0) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.show_text {
  position: relative;
  transition: -webkit-clip-path 1s cubic-bezier(0.05, 0.54, 0.22, 1) 0s;
  transition: clip-path 1s cubic-bezier(0.05, 0.54, 0.22, 1) 0s;
  transition: clip-path 1s cubic-bezier(0.05, 0.54, 0.22, 1) 0s, -webkit-clip-path 1s cubic-bezier(0.05, 0.54, 0.22, 1) 0s;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.show_text.active {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.bg_black_amin {
  overflow: hidden;
  position: relative;
}

.bg_black_amin:before {
  background: rgb(136, 200, 113);
  content: " ";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
  transform: translateX(-100%);
}

.bg_black_amin:after {
  background: #eee;
  content: " ";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 0;
  transform: translateX(0%);
}

.bg_black_amin img {
  opacity: 0;
  transition: all 0.8s 0s ease;
  width: 100%;
  height: auto;
}

.bg_black_amin.active img {
  opacity: 1;
  transition: all 0.5s 0.3s ease;
}

.bg_black_amin.active:before {
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.6s;
}

.bg_black_amin.active:after {
  transform: translateX(100%);
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.5s;
}

.showup.active {
  opacity: 1;
  /*transform: matrix(1,0,0,1,0,0);*/
  transform: translate3d(0, 0px, 0);
}

.showup {
  opacity: 0;
  transition: all 1.5s 0.1s cubic-bezier(0, 0.65, 0.02, 0.98);
  /*transform: matrix(1.2,0,0,1,0,100);*/
  transform: translate3d(0, 100px, 0);
}

.to_big {
  opacity: 0;
}

.to_big.active {
  animation: to_big 0.8s ease-out forwards;
  transform-origin: 50% 50%;
  opacity: 0;
}

@keyframes to_big {
  0% {
    transform: scale(0.4, 0.4);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
.showvis {
  position: relative;
  display: flex;
}

.showvis {
  transform: translate3d(100%, 0, 0);
  transition: all cubic-bezier(0, 0.54, 0, 0.97) 1s;
}

.showvis.active {
  transform: translate3d(0, 0, 0);
}

.showvis > span {
  opacity: 0;
  transform: scaleX(0.1);
  position: relative;
  display: block;
}

.showvis.active > span {
  animation: shows 0.8s ease 20s forwards;
  opacity: 0;
  transform: scaleX(0.1);
}

@keyframes shows {
  0% {
    opacity: 0;
    color: red;
    transform: scale(5) rotate(45deg);
  }
  100% {
    opacity: 1;
    color: white;
    transform: scale(1) rotate(0);
  }
}
.fadein {
  opacity: 0;
  transition: all ease 2s;
}

.fadein.active {
  opacity: 1;
}

.growfadein {
  opacity: 0;
  transition: all ease 1s;
}

.growfadein.active {
  opacity: 0;
  animation: growfade 0.5s ease 0.2s forwards;
}

@keyframes growfade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    filter: brightness(1330%);
  }
  70% {
    opacity: 1;
    filter: brightness(100%);
    transform: translate3d(0, -10px, 0);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
    transform: translate3d(0px, 0, 0);
  }
}
.show_450 {
  display: none;
}

@media screen and (max-width: 900px) {
  .hide_900 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .hide_700 {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .hide_450 {
    display: none;
  }
  .show_450 {
    display: block;
  }
}
.bottom_to_top {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scale(1);
}

.bottom_to_top.active {
  animation: bottom_to_top 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes bottom_to_top {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.bottom_to_tops > * {
  opacity: 0;
}

.bottom_to_tops.active > * {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.bottom_to_tops.active > *:nth-child(2) {
  animation-delay: 0.2s;
}

.bottom_to_tops.active > *:nth-child(3) {
  animation-delay: 0.3s;
}

.bottom_to_tops.active > *:nth-child(4) {
  animation-delay: 0.4s;
}

.bottom_to_tops.active > *:nth-child(5) {
  animation-delay: 0.5s;
}

.bottom_to_tops.active > *:nth-child(6) {
  animation-delay: 0.6s;
}

.bottom_to_tops.active > *:nth-child(7) {
  animation-delay: 0.7s;
}

.bottom_to_tops.active > *:nth-child(8) {
  animation-delay: 0.8s;
}

.bottom_to_tops.active > *:nth-child(9) {
  animation-delay: 0.9s;
}

.photoSlideWrap {
  position: relative;
  margin-bottom: 10vw;
}

.photoSlide {
  position: relative;
  overflow: hidden;
}
.photoSlide > div {
  position: relative;
  width: 142vw;
}
.photoSlide > div:before {
  content: " ";
  display: block;
  width: 100%;
  padding-top: 34%;
}
.photoSlide > div p {
  position: absolute;
  overflow: hidden;
  max-width: 30%;
  top: 0;
  transform: scale(0.6);
}
.photoSlide > div p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.photoSlide > div p:nth-child(1) {
  top: 14vw;
  left: 4vw;
  width: 19vw;
}
.photoSlide > div p:nth-child(2) {
  top: 3vw;
  left: 36vw;
  width: 16vw;
}
.photoSlide > div p:nth-child(3) {
  top: 22vw;
  left: 31vw;
  width: 27vw;
}
.photoSlide > div p:nth-child(4) {
  top: 8vw;
  left: 65vw;
  width: 22vw;
}
.photoSlide > div p:nth-child(5) {
  top: 2vw;
  left: 98vw;
  width: 30vw;
}
.photoSlide > div p:nth-child(6) {
  left: 113vw;
  top: 25vw;
  width: 24vw;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.photoSlide {
  width: 100%;
}
.photoSlide > div {
  animation: infinity-scroll-left 100s infinite linear 0s both;
}
.photoSlide > div:nth-child(2) {
  position: absolute;
  left: 142vw;
  top: 0;
}

.photoSlide2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.photoSlide2 {
  width: 100%;
}
.photoSlide2 > div {
  margin-left: -50%;
  animation: infinity-scroll-left2 80s infinite linear 0s both;
}
.photoSlide2 > div p {
  /*box-shadow:3vw 3vw 3vw rgba(0,0,0,0.1);*/
  transform: scale(1);
}

@keyframes infinity-scroll-left2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
html, body {
  padding: 0;
  margin: 0;
  font-feature-settings: "palt";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 8.3333333333rem;
}

img {
  max-width: 100%;
}

p, figure, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wrap {
  width: 71.1111111111rem;
  padding: 0 5.5555555556rem;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (-webkit-min-device-pixel-ratio: 2) and (min-width: 2560px), (min-resolution: 2dppx) and (min-width: 2560px) {
  html, body {
    font-size: 36px;
  }
}
@media screen and (max-width: 1280px) {
  .wrap {
    width: 100%;
  }
  html, body {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 800px) {
  html, body {
    font-size: 3.9vw;
    scroll-padding-top: 4rem;
  }
  .wrap {
    padding: 0 1.5rem;
  }
}
.rwd_show {
  display: none;
}

@media screen and (max-width: 800px) {
  .rwd_show {
    display: inline;
  }
  .rwd_hide {
    display: none;
  }
}
.sb {
  padding: 3.8888888889rem 0;
}
.sb .sbh {
  text-align: center;
  margin-bottom: 3.5555555556rem;
}
.sb .sbh h2 {
  font-size: 1.9444444444rem;
  margin-bottom: 0.0555555556rem;
}
.sb .sbh .en {
  font-size: 0.8888888889rem;
}
@media screen and (max-width: 800px) {
  .sb .sbh h2 {
    font-size: 150%;
  }
  .sb .sbh {
    margin-bottom: 3rem;
  }
}
.house_sep {
  overflow: hidden;
  background: #fff;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5.5555555556rem;
}
.house_sep img {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .house_sep {
    margin-bottom: 3rem;
    width: 200vw;
  }
  .house_sep img {
    margin-left: -100vw;
  }
}
.more {
  display: block;
  width: 16.6666666667rem;
  margin: 0 auto;
  border: 1px solid #a70004;
  padding: 0.5555555556rem;
  border-radius: 100px;
  text-align: center;
  color: #a70004;
  text-decoration: none;
  font-weight: 600;
  transition: all ease 0.3s;
}
.more.moreRev {
  background-color: #a70004;
  color: #fff;
}
.more:hover {
  background-color: #a70004;
  color: #fff;
}
.more:hover.moreRev {
  background-color: #fff;
  color: #a70004;
}

@media screen and (max-width: 800px) {
  .more {
    font-size: 120%;
  }
}
.site_header {
  position: sticky;
  top: 0;
  left: 0;
  height: 8.3333333333rem;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 0.1666666667rem solid #deb200;
}
.site_header .wrap {
  display: flex;
  justify-content: space-between;
  padding-right: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.site_header h1 {
  margin-top: 2.7777777778rem;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.3;
}
.site_header h1 a {
  display: block;
  display: flex;
  color: #000;
  text-decoration: none;
  gap: 1em;
}
.site_header h1 a > span {
  flex: 0 1 10.8888888889rem;
  display: block;
  width: 10.8888888889rem;
}
.site_header h1 a > b {
  flex: 1;
  font-size: 100%;
  display: block;
  font-weight: 400;
}
.site_header h1 a > b > span {
  font-size: 1.6666666667rem;
  display: block;
  white-space: nowrap;
}
.site_header nav {
  position: fixed;
  background-color: #a70004;
  width: 21.6666666667rem;
  min-height: 18.3333333333rem;
  right: 0;
  top: 0;
  padding: 2.2222222222rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  transform: translate3d(1.6666666667rem, 0, 0);
  transform-origin: top right;
}
.site_header nav ul li {
  margin-bottom: 0.2777777778rem;
}
.site_header nav ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #fff;
  line-height: 1.9;
}
.site_header nav ul li:last-child a {
  border: 0;
}
.site_header nav.open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.site_header .sp_button {
  width: 8.3333333333rem;
  height: 8.3333333333rem;
  background-color: #a70004;
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
  color: #fff;
  font-size: 1.6666666667rem;
  font-weight: 600;
  padding: 1.6666666667rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: all ease 0s;
  transform-origin: right top;
}
.site_header .sp_button > span:nth-child(1) {
  display: block;
  position: relative;
  height: 0.1666666667rem;
  background-color: #fff;
  width: 4.4444444444rem;
  margin: 0 auto;
  margin-bottom: 2.2222222222rem;
  margin-top: 1.1111111111rem;
}
.site_header .sp_button > span:nth-child(1):before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1666666667rem;
  background-color: #fff;
  position: absolute;
  top: -1.1111111111rem;
  left: 0;
}
.site_header .sp_button > span:nth-child(1):after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1666666667rem;
  background-color: #fff;
  position: absolute;
  bottom: -1.1111111111rem;
  left: 0;
}
.site_header .sp_button > span {
  display: block;
  text-align: center;
  transition: all ease 0.3s;
}
.site_header .sp_button.open {
  transform: scale(0.5);
  transition: all ease 0.3s;
  background-color: transparent;
}
.site_header .sp_button.open > span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.site_header .sp_button.open > span:nth-child(1) {
  transform: rotate(45deg);
  margin-top: 2.2222222222rem;
  background-color: transparent;
}
.site_header .sp_button.open > span:nth-child(1):before {
  top: 0;
  transform: rotate(90deg);
}
.site_header .sp_button.open > span:nth-child(1):after {
  bottom: 0;
  transofmr: rotate(45deg);
}

@media screen and (max-width: 800px) {
  .site_header .wrap {
    padding-left: 1.5rem;
  }
  .site_header h1 {
    font-size: 80%;
  }
  .site_header h1 a {
    width: 18rem;
  }
  .site_header h1 a > b > span {
    font-size: 120%;
  }
  .site_header .sp_button {
    width: 4rem;
    height: 4rem;
  }
  .site_header {
    height: auto;
  }
  .site_header .wrap {
    align-items: center;
  }
  .site_header h1 {
    margin-top: 0;
  }
  .site_header h1 a > span {
    flex: 0 1 30%;
  }
  .site_header h1 a {
    gap: 0.5rem;
    align-items: center;
  }
  .site_header .sp_button {
    padding: 0.5rem;
  }
  .site_header .sp_button > span:nth-child(1) {
    width: 3rem;
    margin: auto;
  }
  .site_header .sp_button > span:nth-child(1):before {
    top: -0.7rem;
  }
  .site_header .sp_button > span:nth-child(1):after {
    bottom: -0.7rem;
  }
  .site_header .sp_button > span {
    display: none;
  }
  .site_header .sp_button.open {
    transform: scale(1);
  }
  .site_header .sp_button.open > span:nth-child(1) {
    margin-top: 0;
  }
  .site_header nav ul li a {
    padding: 1rem 0;
    padding-bottom: 0.5rem;
  }
  .site_header nav ul li a {
    font-size: 120%;
  }
}
.mv {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.mv .mv_in {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
}
.mv .mv_in h2 {
  width: 5.0555555556rem;
  text-align: center;
  height: 100%;
  font-size: 2.5rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 1.15;
  font-weight: 400;
}
.mv .mv_in h2 span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1.1111111111rem;
}
.mv .mv_in h2:after {
  content: "";
  display: block;
  opacity: 0.6;
  background-color: #454342;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mv .mv_in p {
  font-size: 3.3333333333rem;
  position: absolute;
  bottom: -1.1111111111rem;
  left: 0;
  text-align: center;
  width: 100%;
  font-weight: bold;
}
.mv .mv_bg {
  overflow: hidden;
  height: calc(100dvh - 8.3333333333rem);
}
.mv .mv_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv.mvUnder .mv_bg {
  height: 18.8888888889rem;
}
.mv.mvUnder .mv_in h2 {
  width: auto;
  height: 8.3333333333rem;
  font-size: 1.9444444444rem;
}

@media screen and (max-width: 800px) {
  .mv .mv_bg {
    height: 60vh;
  }
  .mv .mv_in h2 {
    font-size: 150%;
  }
  .mv .mv_in p {
    font-size: 120%;
    bottom: -0.3rem;
  }
  .mv.mvUnder .mv_bg {
    height: 10rem;
  }
  .mv.mvUnder .mv_in h2 {
    font-size: 150%;
    height: 4.4444444444rem;
  }
}
.company_top .company_top_in {
  display: flex;
  gap: 2.7777777778rem;
  align-items: center;
}
.company_top .company_top_in .sbh {
  margin-bottom: 0;
}
.company_top .company_top_in h2 {
  font-size: 1.3888888889rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: left;
}
.company_top .company_top_in h2 span {
  font-size: 1.6666666667rem;
  font-weight: 600;
  display: block;
}
.company_top .company_top_in .sbc {
  flex: 1;
  position: relative;
}
.company_top .company_top_in .sbc p {
  line-height: 1.9;
}
.company_top .company_top_in .sbc:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: -1.3888888889rem;
  top: 0;
  background-color: #989898;
}

@media screen and (max-width: 800px) {
  .company_top .company_top_in {
    flex-direction: column;
  }
  .company_top .company_top_in .sbc:after {
    width: 100%;
    height: 1px;
    left: 0;
    top: -1.5rem;
    right: 0;
    bottom: auto;
  }
  .company_top .company_top_in h2 span {
    font-size: 120%;
  }
}
.catch {
  padding-bottom: 8.3333333333rem;
}
.catch .koma_list {
  gap: 1.1111111111rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5.5555555556rem;
  max-width: 47.2222222222rem;
  margin-left: auto;
  margin-right: auto;
}
.catch .koma_list > li {
  position: relative;
  min-height: 10.2777777778rem;
  margin-bottom: 4.4444444444rem;
}
.catch .koma_list > li h3 {
  background-color: #deb200;
  color: #fff;
  padding: 0.2777777778rem 1.1111111111rem;
  font-size: 1.3888888889rem;
  border-radius: 100px 0 0 100px;
  margin-bottom: 0.5555555556rem;
  font-weight: 600;
}
.catch .koma_list > li figure {
  position: absolute;
  top: 0;
  right: 0;
  width: 10.2777777778rem;
}
.catch .koma_list > li ul {
  display: flex;
  gap: 0.2777777778rem;
  flex-direction: column;
  margin-left: 1.1111111111rem;
}
.catch .koma_list > li ul li {
  font-size: 1.1111111111rem;
}
.catch .koma_imgList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6666666667rem;
  row-gap: 5.5555555556rem;
}
.catch .koma_imgList li {
  flex: 0 1 calc((100% - 3.3333333333rem) / 3);
}
.catch .koma_imgList li h3 {
  text-align: center;
  font-size: 1.3888888889rem;
  margin: 0.5555555556rem 0;
}
.catch .koma_imgList li p {
  line-height: 1.9;
}
.catch .koma_imgList li.wide {
  flex: 0 1 100%;
}
.catch .koma_imgList li.wide h3 {
  text-align: left;
}
.catch .koma_imgList li.half {
  flex: 0 1 calc((100% - 1.6666666667rem) / 2);
}

@media screen and (max-width: 800px) {
  .catch .koma_list {
    flex-direction: column;
    margin-bottom: 3rem;
  }
  .catch .koma_list li {
    flex: 0 1 100%;
    width: 100%;
  }
  .catch .koma_imgList {
    flex-direction: column;
    gap: 3rem;
  }
  .catch .koma_imgList li.wide h3 {
    text-align: center;
  }
  .catch {
    padding-top: 0;
    padding-bottom: 4rem;
  }
  .catch .koma_list > li figure {
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    margin-bottom: 1rem;
  }
  .catch .koma_list > li h3 {
    border-radius: 100px 100px 100px 100px;
    padding: 0.3888888889rem 1.1111111111rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .catch .koma_list > li ul {
    margin-left: 0;
  }
  .catch .koma_list > li ul li {
    font-size: 1rem;
  }
}
.contact_block {
  background-color: #454342;
  color: #fff;
  padding: 2.7777777778rem 0;
}
.contact_block h2 {
  font-size: 100%;
  margin-bottom: 1.5555555556rem;
  text-align: center;
  font-weight: 400;
}
.contact_block a {
  display: block;
  width: 16.6666666667rem;
  margin: 0 auto;
  color: #fff;
  font-size: 1.1111111111rem;
  text-decoration: none;
  text-align: center;
  padding: 0.8333333333rem;
  border-radius: 100px;
  background-color: #a70004;
  transition: all ease 0.3s;
}
.contact_block a:hover {
  background-color: #fff;
  color: #a70004;
}

.news_img {
  padding-top: 10rem;
}
.news_img .sbh {
  text-align: center;
}
.news_img .news_img_list {
  display: flex;
  gap: 2.7777777778rem;
  flex-direction: column;
  margin-bottom: 2rem;
}
.news_img .news_img_list li a {
  display: flex;
  align-items: flex-start;
  gap: 2.2222222222rem;
  text-decoration: none;
  color: #000;
}
.news_img .news_img_list li a > figure {
  flex: 0 1 25.5555555556rem;
  width: 25.5555555556rem;
  overflow: hidden;
}
.news_img .news_img_list li a > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_img .news_img_list li a > div {
  flex: 1;
}
.news_img .news_img_list li a h3 {
  font-size: 1.6666666667rem;
  border-bottom: 1px solid #deb200;
  padding-bottom: 0.2777777778rem;
  margin-bottom: 0.2777777778rem;
}
.news_img .news_img_list li a .entry_date {
  color: #5a5a5a;
  margin-bottom: 1.1111111111rem;
}
.news_img .news_img_list li a .entry_ex {
  line-height: 1.9;
}

@media screen and (max-width: 800px) {
  .news_img {
    padding-top: 5rem;
  }
  .news_img .news_img_list li a {
    flex-direction: column;
  }
  .news_img .news_img_list li a > figure {
    width: 100%;
  }
  .news_img .news_img_list li a > figure {
    flex: 1;
  }
  .news_img .news_img_list li a h3 {
    font-size: 130%;
  }
}
.business {
  padding-top: 0;
  margin-top: 3.8888888889rem;
  background-color: #fcf8e6;
}
.business .house_sep {
  background-color: #fff;
  margin-bottom: 0;
}
.business .wrap {
  padding-top: 5.5555555556rem;
  padding-right: 3.3333333333rem;
}
.business .sbh {
  text-align: center;
}
.business .business_block {
  margin-bottom: 4.4444444444rem;
  display: flex;
  gap: 4.4444444444rem;
  align-items: flex-start;
}
.business .business_block > figure {
  order: 2;
  padding: 0.5rem;
  background-color: #fff;
  flex: 0 1 26.1111111111rem;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  width: 26.1111111111rem;
}
.business .business_block > div {
  order: 1;
  flex: 1;
}
.business .business_block > div h3 {
  position: relative;
  color: #fff;
  position: relative;
  padding: 0.5555555556rem;
  margin-bottom: 1.3888888889rem;
  font-size: 1.3888888889rem;
  font-weight: 600;
}
.business .business_block > div h3 span {
  position: relative;
  display: block;
  z-index: 2;
}
.business .business_block > div h3:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: skew(30deg);
  background-color: #deb200;
  transform-origin: right bottom;
}
.business .business_block > div p {
  line-height: 1.9;
  margin-bottom: 2.1111111111rem;
  font-size: 1rem;
  letter-spacing: 0.05rem;
}
.business .business_block > div ul {
  display: flex;
  flex-direction: column;
  gap: 0.5555555556rem;
}
.business .business_block > div ul li {
  background-color: #fff;
  border: 1px solid #deb200;
  font-weight: 600;
  padding: 0.2777777778rem 1.3888888889rem;
  border-radius: 100px;
  font-size: 1.1111111111rem;
}

@media screen and (max-width: 800px) {
  .business {
    margin-top: 0;
    padding-top: 0;
  }
  .business .wrap {
    padding-top: 3rem;
    padding-right: 1.5rem;
  }
  .business .business_block {
    flex-direction: column;
    gap: 0;
  }
  .business .business_block > figure {
    order: 1;
  }
  .business .business_block > div {
    order: 2;
    margin-top: -2rem;
  }
  .business .business_block > figure {
    flex: auto;
  }
  .business .business_block:nth-child(1) > div p {
    margin-right: 0;
  }
  .business .business_block > div ul li {
    padding: 0.5rem 1.5rem;
  }
  .business .business_block:last-child {
    margin-bottom: 0;
  }
}
.message_top .sbh {
  text-align: center;
}
.message_top .message_list > div {
  margin-bottom: 5.5555555556rem;
  text-align: center;
}
.message_top .message_list > div:last-child {
  margin-bottom: 2.7777777778rem;
}
.message_top .message_list > div .message_list_icon {
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #deb200;
  height: 8.8888888889rem;
  width: 8.8888888889rem;
  margin: 0 auto;
  flex-direction: column;
  position: relative;
  margin-bottom: 2.2222222222rem;
}
.message_top .message_list > div .message_list_icon:after {
  content: "";
  width: 8.1111111111rem;
  height: 8.1111111111rem;
  position: absolute;
  border: 1px solid #deb200;
  border-radius: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.message_top .message_list > div h3 {
  font-size: 1.6666666667rem;
  color: #989898;
  margin-bottom: 0.8333333333rem;
}
.message_top .message_list > div .message_bd {
  padding: 1em 0;
  border-top: 1px solid #d0d0d0;
}
.message_top .message_list > div .message_bd:last-child {
  border-bottom: 1px solid #d0d0d0;
}
.message_top .message_list > div .message_bd h4 {
  font-size: 1.1111111111rem;
  margin-bottom: 0.8333333333rem;
}
.message_top .message_list > div .message_bd p {
  line-height: 1.9;
  width: 35rem;
  margin: 0 auto;
}
.message_top .message_list > div .message_bd.message_bdB {
  padding: 2em 0;
}

@media screen and (max-width: 800px) {
  .message_top .message_list > div .message_bd p {
    width: auto;
    text-align: left;
  }
  .message_top .message_list > div {
    margin-bottom: 5rem;
  }
}
.about_top {
  margin-top: 3.8888888889rem;
  background-color: #fcf8e6;
  padding-top: 0;
  padding-bottom: 5rem;
}
.about_top .house_sep {
  background-color: #fff;
  margin-bottom: 0;
}
.about_top .wrap {
  padding-top: 5.5555555556rem;
}
.about_top .riji_in {
  margin: 0 auto;
  margin-bottom: 5rem;
}
.about_top .riji_in figure {
  width: 18.3333333333rem;
  margin: 0 auto;
  margin-bottom: 1.1111111111rem;
}
.about_top .riji_in h3 {
  font-size: 1.3888888889rem;
  margin-bottom: 1.3888888889rem;
  text-align: center;
}
.about_top .riji_in > p {
  text-align: center;
}
.about_top .riji_in > div p {
  line-height: 1.9;
  margin-bottom: 1em;
}
.about_top .riji_in > div p:last-child {
  margin-bottom: 0;
}
.about_top .about_map {
  display: flex;
  gap: 3.3333333333rem;
}
.about_top .about_map > div {
  background-color: #fff;
  flex: 1;
}
.about_top .about_map > div:nth-child(2) {
  margin-right: -2.2222222222rem;
}
.about_top .about_map > div h3 {
  text-align: center;
  padding: 1.9444444444rem;
  padding-bottom: 0.8333333333rem;
}
.about_top .about_map > div table {
  width: 100%;
  border-collapse: collapse;
  letter-spacing: 0;
  line-height: 1.7;
}
.about_top .about_map > div table th {
  text-align: left;
  font-weight: normal;
  border-bottom: 1px solid #d0d0d0;
  padding: 0.8333333333rem;
  padding-left: 1.6666666667rem;
  width: 9.7222222222rem;
  box-sizing: border-box;
  vertical-align: top;
}
.about_top .about_map > div table td {
  border-bottom: 1px solid #d0d0d0;
  padding: 0.8333333333rem 0;
  padding-right: 1.6666666667rem;
}
.about_top .about_map > div table tr:last-child td {
  border-bottom: 0;
  padding-bottom: 2.2222222222rem;
}
.about_top .about_map > div table tr:last-child th {
  border-bottom: 0;
  padding-bottom: 2.2222222222rem;
}
.about_top .moreRev {
  margin-top: 5rem;
}

@media screen and (max-width: 800px) {
  .about_top .riji_in figure {
    width: 15rem;
  }
  .about_top .riji_in {
    width: auto;
    margin-bottom: 3rem;
  }
  .about_top .about_map {
    flex-direction: column;
    gap: 2rem;
  }
  .about_top .about_map > div:nth-child(2) {
    margin-right: 0;
  }
}
.member_front {
  padding-top: 5.5555555556rem;
  padding-bottom: 5rem;
}
.member_front .house_sep {
  margin-bottom: 3.8888888889rem;
}
.member_front .member_bd {
  border: 1px solid #454342;
  padding: 1.6666666667rem;
  margin-bottom: 1.6666666667rem;
}
.member_front .member_bd .ye {
  color: #deb200;
}
.member_front .member_bd h3 {
  text-align: center;
  flex: 0 1 13.8888888889rem;
}
.member_front .member_bd:last-child {
  margin-bottom: 0;
}
.member_front .member_bd.member_bdIre1 {
  display: block;
}
.member_front .member_bd.member_bdIre1 > div {
  display: flex;
  gap: 1.1111111111rem;
  align-items: center;
}
.member_front .member_bd.member_bdIre1 > div:first-child {
  flex: 0 1 20.5555555556rem;
  position: relative;
}
.member_front .member_bd.member_bdIre1 > div:first-child h3 {
  text-align: center;
  flex: 0 1 13.8888888889rem;
}
.member_front .member_bd.member_bdIre1 > div:first-child > ul {
  flex: 1;
}
.member_front .member_bd.member_bdIre1 > div:first-child > ul > li {
  line-height: 1.9;
  border-bottom: 1px solid #d0d0d0;
  padding: 0.5555555556rem 0;
}
.member_front .member_bd.member_bdIre1 > div:first-child > ul > li:last-child {
  border-bottom: 0;
}
.member_front .member_bd.member_bdIre1 > div:first-child h4 {
  font-size: 1rem;
  font-weight: 600;
}
.member_front .member_bd.member_bdIre2 {
  display: flex;
  gap: 1.1111111111rem;
  align-items: center;
}
.member_front .member_bd.member_bdIre2 h3 {
  text-align: center;
}
.member_front .member_bd.member_bdIre2 ol {
  counter-reset: number 0;
  margin: 0.5rem 0;
}
.member_front .member_bd.member_bdIre2 ol li {
  font-weight: 600;
  padding: 0.5555555556rem 0;
  counter-increment: number 1;
  border-bottom: 1px solid #d0d0d0;
}
.member_front .member_bd.member_bdIre2 ol li:before {
  content: counter(number) ". ";
}
.member_front .member_bd.member_bdIre2 p {
  line-height: 1.9;
  letter-spacing: 0rem;
}
.member_front .member_bd.member_bdIre3 {
  display: flex;
  gap: 2.7777777778rem;
  align-items: center;
}
.member_front .member_bd.member_bdIre3 h3 {
  text-align: right;
  flex: 0 1 12.2222222222rem;
}
.member_front .member_bd.member_bdIre3 > ol {
  counter-reset: listnum;
}
.member_front .member_bd.member_bdIre3 > ol > li {
  counter-increment: listnum;
  position: relative;
  padding-left: 3.8888888889rem;
  margin-bottom: 1.1111111111rem;
  line-height: 1.9;
}
.member_front .member_bd.member_bdIre3 > ol > li:last-child {
  margin-bottom: 0;
}
.member_front .member_bd.member_bdIre3 > ol > li:before {
  content: "";
  font-weight: bold;
  border-radius: 100%;
  height: 2.2222222222rem;
  width: 2.2222222222rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  top: 0;
  left: 0;
  position: absolute;
}
.member_front .member_bd.member_bdIre3 > ol > li:nth-child(1):before {
  background-image: url(../img/01.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.member_front .member_bd.member_bdIre3 > ol > li:nth-child(2):before {
  background-image: url(../img/02.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.member_front .member_bd.member_bdIre3 > ol > li:nth-child(2) ul {
  margin-top: 0.5555555556rem;
}
.member_front .member_bd.member_bdIre3 > ol > li:nth-child(3):before {
  background-image: url(../img/03.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.member_front .member_bd.member_bdIre3 > ol > li > ul {
  margin-bottom: 1.1111111111rem;
}
.member_front .member_bd.member_bdIre3 > ol > li li {
  display: flex;
  align-items: center;
}
.member_front .member_bd.member_bdIre3 > ol > li li a {
  color: #a70004;
}
.member_front .member_bd.member_bdIre3 > ol > li li:before {
  content: "";
  display: block;
  width: 2.2222222222rem;
  height: 2.2222222222rem;
  background-image: url(../img/pdf.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.member_front .member_bd.member_bdIre3 > ol > li .ye {
  line-height: 1.5;
}
.member_front .member_bd.member_bdIre4 {
  padding: 2.2222222222rem;
}
.member_front .member_bd.member_bdIre4 h3 {
  margin-bottom: 1.6666666667rem;
}
.member_front .member_bd.member_bdIre4 .member_bd_contact {
  margin-top: 1.6666666667rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.6666666667rem;
}
.member_front .member_bd.member_bdIre4 .member_bd_contact a {
  display: block;
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 800px) {
  .member_front .member_bd.member_bdIre1 {
    flex-direction: column;
    gap: 2rem;
  }
  .member_front .member_bd.member_bdIre1 > div:first-child {
    flex: auto;
    flex-direction: column;
    gap: 0;
  }
  .member_front .member_bd.member_bdIre1 > div:first-child h3 {
    flex: auto;
  }
  .member_front .member_bd.member_bdIre1 > div:first-child ul {
    flex: 1;
  }
  .member_front .member_bd.member_bdIre1 > div {
    flex-direction: column;
    gap: 1rem;
  }
  .member_front .member_bd.member_bdIre1 > div:nth-child(2) li {
    margin-bottom: 0.5rem;
    line-height: 1.9;
  }
  .member_front .member_bd.member_bdIre4 {
    padding: 1rem;
  }
  .member_front .member_bd {
    padding: 1rem;
  }
  .member_front .member_bd.member_bdIre1 > div:first-child:after {
    width: 100%;
    height: 1px;
    left: 0;
    top: auto;
    right: 0;
    bottom: -1rem;
  }
  .member_front .member_bd.member_bdIre2 {
    flex-direction: column;
    gap: 1rem;
  }
  .member_front .member_bd.member_bdIre2 {
    padding: 1rem;
  }
  .member_front .member_bd.member_bdIre2 h3 {
    flex: auto;
  }
  .member_front .member_bd.member_bdIre3 {
    flex-direction: column;
    gap: 1rem;
  }
  .member_front .member_bd.member_bdIre3 h3 {
    flex: auto;
  }
  .member_front .member_bd.member_bdIre3 > ol > li {
    padding-left: 3rem;
  }
  .member_front .member_bd.member_bdIre3 > ol > li li {
    margin-left: -0.5rem;
  }
  .member_front .member_bd.member_bdIre3 > ol > li li:before {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.contact_form {
  padding-bottom: 5rem;
}
.contact_form .mw_wp_form_complete {
  text-align: center;
}
.contact_form .contact_form_in {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
  padding: 3.3333333333rem 11.1111111111rem 4.4444444444rem 7rem;
}
.contact_form.contact_formUnder {
  padding-top: 2.7777777778rem;
}
.contact_form .sbh {
  margin-bottom: 3.3333333333rem;
  text-align: center;
}
.contact_form .error {
  display: block;
  margin-top: 0.5rem;
}
.contact_form h2 {
  text-align: center;
  font-size: 1.6666666667rem;
}
.contact_form .ucf_top_text {
  margin-bottom: 2.7777777778rem;
  text-align: center;
}
.contact_form .ucf_line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.1111111111rem;
  gap: 2.7777777778rem;
}
.contact_form .ucf_line select, .contact_form .ucf_line input[type=text], .contact_form .ucf_line input[type=email], .contact_form .ucf_line input[type=tel], .contact_form .ucf_line textarea {
  width: 100%;
  font-size: inherit;
  padding: 0.5555555556rem;
  box-sizing: border-box;
}
.contact_form .ucf_line select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.contact_form .ucf_line .select_wrap {
  position: relative;
}
.contact_form .ucf_line .select_wrap:after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 0.5em;
  line-height: 0;
}
.contact_form .ucf_line textarea {
  height: 12.2222222222rem;
}
.contact_form .ucf_line input[type=checkbox] {
  width: 1.1111111111rem;
  height: 1.1111111111rem;
  margin: 0;
  margin-right: 1.1111111111rem;
}
.contact_form .ucf_line .ucf_line_in_check label {
  display: flex;
  cursor: pointer;
}
.contact_form .ucf_line .ucf_line_in_check span {
  line-height: 1;
}
.contact_form .ucf_line > p {
  width: 11.1111111111rem;
  margin-top: 0.5555555556rem;
}
.contact_form .ucf_line > div {
  flex: 1;
}
.contact_form .ucf_line.ucf_lineEmp {
  padding-left: 13.8888888889rem;
}
.contact_form .ucf_line .poly_wrap {
  padding: 1.3888888889rem 1.1111111111rem;
  border: 1px solid #707070;
  max-height: 13.8888888889rem;
  overflow-y: auto;
  box-sizing: border-box;
}
.contact_form .uc_req {
  position: relative;
}
.contact_form .uc_req:after {
  content: "必須";
  display: inline-block;
  margin-left: 0.5rem;
  color: #fff;
  background-color: rgb(167, 0, 4);
  border-radius: 0.2rem;
  font-size: 80%;
  padding: 0.1em 0.2em;
  padding-top: 0;
}
.contact_form .ucf_buttons {
  display: flex;
  justify-content: center;
  gap: 1.1111111111rem;
  margin-top: 3.3333333333rem;
}
.contact_form .ucf_buttons button, .contact_form .ucf_buttons input {
  border: 0;
  border-radius: 100px;
  background-color: #000;
  color: #fff;
  width: 16.6666666667rem;
  font-size: 1.1111111111rem;
  text-align: center;
  padding: 0.5555555556rem;
  cursor: pointer;
  transition: all ease 0.3s;
}
.contact_form .ucf_buttons button:hover, .contact_form .ucf_buttons input:hover {
  opacity: 0.7;
}
.contact_form .mw_wp_form_confirm .ucf_line > p {
  margin-top: 0;
}
.contact_form .mw_wp_form_confirm .ucf_line .select_wrap:after {
  display: none;
}
.contact_form .mw_wp_form_confirm .ucf_line.ucf_lineEmp {
  display: none;
}

html.mw_wp_form_scroll-fix {
  scroll-padding-top: 0 !important;
  scroll-behavior: auto !important;
}

@media screen and (max-width: 800px) {
  .contact_form .contact_form_in {
    padding: 2rem;
  }
  .contact_form .ucf_line {
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact_form .ucf_line > p {
    width: auto;
    margin-top: 0;
  }
  .contact_form .ucf_line > div {
    width: 100%;
  }
  .contact_form .ucf_line.ucf_lineEmp {
    padding-left: 0;
  }
  .contact_form .ucf_buttons {
    margin-top: 2rem;
  }
  .contact_form h2 {
    margin-bottom: 2rem;
  }
}
.site_bottom_nav ul {
  display: flex;
  flex-wrap: wrap;
}
.site_bottom_nav ul li {
  flex: 0 1 50%;
}
.site_bottom_nav ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-align: center;
}
.site_bottom_nav ul li a:after {
  content: "";
  display: block;
  width: calc(100% - 2.2222222222rem);
  height: calc(100% - 2.2222222222rem);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: 1px solid #fff;
  z-index: 2;
}
.site_bottom_nav ul li a .ja {
  font-size: 1.9444444444rem;
  font-weight: 600;
}
.site_bottom_nav ul li a .en {
  font-size: 0.8888888889rem;
}
.site_bottom_nav ul li a > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3;
}
.site_bottom_nav ul li a figure {
  overflow: hidden;
}
.site_bottom_nav ul li a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.3s;
}
.site_bottom_nav ul li a:hover figure img {
  transform: scale(1.05);
}
.site_bottom_nav ul li a:hover:before {
  background-color: rgba(255, 255, 255, 0.0901960784);
}
.site_bottom_nav ul li a:before {
  z-index: 2;
  transition: all ease 0.3s;
}
.site_bottom_nav ul li:nth-child(1) a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #deb200;
  opacity: 0.6;
}
.site_bottom_nav ul li:nth-child(2) a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #a70004;
  opacity: 0.6;
}
.site_bottom_nav ul li:nth-child(3) a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0b1b60;
  opacity: 0.6;
}
.site_bottom_nav ul li:nth-child(4) a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .site_bottom_nav ul {
    flex-direction: column;
  }
  .site_bottom_nav ul li a .ja {
    font-size: 150%;
  }
}
.site_footer {
  background-color: #454342;
  padding-top: 8.8888888889rem;
  text-align: center;
  color: #fff;
  width: 100%;
  overflow: hidden;
}
.site_footer .footer_logo {
  text-decoration: none;
  color: #fff;
  display: block;
  margin-bottom: 8.3333333333rem;
}
.site_footer .footer_logo figure {
  width: 11.1111111111rem;
  margin: 0 auto;
  margin-bottom: 2.2222222222rem;
}
.site_footer .footer_logo > div h2 {
  font-weight: 400;
  text-align: center;
  font-size: 1.1111111111rem;
}
.site_footer .footer_logo > div h2 span {
  display: block;
  font-size: 1.6666666667rem;
}
.site_footer .copy {
  padding-bottom: 1.1111111111rem;
}

@media screen and (max-width: 800px) {
  .site_footer {
    padding-top: 5rem;
  }
  .site_footer .footer_logo {
    margin-bottom: 5rem;
  }
  .site_footer .footer_logo > div h2 span {
    font-size: 120%;
  }
  .site_footer .copy {
    font-size: 80%;
  }
}
.blog_list .blog_list_in {
  margin-bottom: 2.7777777778rem;
}
.blog_list .blog_list_in li {
  border-bottom: 1px solid #d0d0d0;
}
.blog_list .blog_list_in li a {
  display: flex;
  gap: 1.9444444444rem;
  align-items: center;
  text-decoration: none;
  color: #000;
  transition: all ease 0.3s;
  padding: 1.1111111111rem 0;
}
.blog_list .blog_list_in li a .datetime {
  color: #aaa;
}
.blog_list .blog_list_in li a .categories {
  display: flex;
  align-items: center;
  gap: 0.5555555556rem;
}
.blog_list .blog_list_in li a .categories li {
  width: 6.6666666667rem;
  padding: 0.5555555556rem 0;
  text-align: center;
  color: #fff;
  background-color: #6f6f6f;
}
.blog_list .blog_list_in li a:hover {
  transform: translate3d(0.1111111111rem, 0, 0);
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .blog_list .blog_list_in > li {
    margin-bottom: 1rem;
  }
  .blog_list .blog_list_in li a {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .blog_list .blog_list_in li a .entry_ex {
    flex: 0 1 100%;
  }
  .blog_list .blog_list_in li a .categories li {
    font-size: 90%;
  }
}
/*contact*/
.contact_page {
  text-align: center;
}
.contact_page .contact_page_text {
  font-weight: 600;
  margin-bottom: 1.3888888889rem;
}

.line_button {
  display: flex;
  align-items: center;
  background-color: #00cf2e;
  width: 19.4444444444rem;
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
  margin: 0 auto;
  padding-left: 1.5rem;
  box-sizing: border-box;
  transition: all ease 0.3s;
}
.line_button figure {
  width: 4.4444444444rem;
  height: 4.4444444444rem;
}
.line_button p {
  font-size: 1.3888888889rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0;
  padding-right: 1.5rem;
  flex: 1;
}
.line_button:hover {
  transform: scale(1.05);
}

.sbSingle .sbc p {
  line-height: 1.7;
}
.sbSingle .categories {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-top: 1em;
}
.sbSingle .categories li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.5em 1em;
}
.sbSingle .time {
  color: #aaa;
  margin-top: 0.5em;
}
.sbSingle .sbh figure {
  height: auto;
}
.sbSingle .sbh figure img {
  height: auto;
}

.pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.pagination .nav-links > * {
  text-decoration: none;
  background-color: #eee;
  color: #000;
  display: block;
  padding: 0.5rem 1rem;
}
.pagination .nav-links > *.current {
  background-color: #a70004;
  color: #fff;
}/*# sourceMappingURL=style.css.map */