@charset "utf-8";
/*--------------------------
  main photo
--------------------------*/
.main_photo {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0 10%;
  overflow: hidden;
  background: url("../img/home/main_photo.jpg");
  background-position: 100% 100%;
  background-size: cover;
}
.main_photo .logo_eria {
  position: absolute;
  width: 80%;
  margin: 0 0 0 0;
  text-align: left;
  color: #000;
  font-weight: 400;
  left: 10%;
  top: 27%;
  text-shadow: 8px 5px 5px rgba(255, 255, 255, 0.3);
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.main_photo .logo_eria img {
  max-width: 50%;
  height: auto;
  margin-bottom: 2rem;
  animation: loop_animation_right 5s linear infinite;
}
@keyframes loop_animation_right {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.main_photo .logo_eria h2 {
  font-size: 2.5rem;
}
.main_photo .logo_eria p {
  font-size: 1.5rem;
  line-height: 2.6;
}
.main_photo .sub_eria {
  width: 50%;
}
.main_photo .logo_eria h2 span {
  background: rgba(255, 255, 255, .6);
  padding: .4rem 2rem;
}
.main_photo .logo_eria p span {
  background: rgba(255, 255, 255, .6);
  padding: .6rem 2rem;
}
@media screen and (max-width: 480px) {
  .main_photo {
    position: relative;
    width: 100%;
    height: 100vh;
    display: block;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    background: url("../img/home/main_photo.jpg");
    background-position: 100% 50%;
    background-size: cover;
  }
  .main_photo .logo_eria {
    position: relative;
    width: 100%;
    margin: 0 0 0 0;
    text-align: center;
    font-size: 1.3vw;
    color: #000;
    font-weight: 400;
    left: auto;
    top: 35%;
    text-shadow: 20px 10px 10px rgba(255, 255, 255, 1);
  }
  .main_photo .logo_eria img {
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
    animation: loop_animation_right 5s linear infinite;
  }
  .main_photo .logo_eria h2 {
    font-size: 1.7rem;
    margin: 0 auto 1rem auto;
  }
  .main_photo .logo_eria p {
    font-size: 1rem;
    line-height: 3;
  }
  .main_photo .sub_eria {
    width: 100%;
  }
}
div.bread {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1rem 0;
  background: #fff;
  font-weight: 600;
  border-bottom: 2px solid #ddd;
}
div.bread ul {
  position: relative;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
div.bread ul li:nth-of-type(1) {
  width: 3.5rem;
  background: url("../img/icon/home.png") no-repeat;
  background-position: 0 55%;
  background-size: 100% auto;
}
div.bread ul li:nth-of-type(1) a {
  display: block;
}
div.bread ul li:nth-of-type(1):before {
  content: "　";
}
div.bread ul li:before {
  content: "> "
}
div.bread ul li {
  margin-right: 1rem;
}
div.bread ul {
  color: #333;
  text-decoration: none;
}
div.bread ul li a {
  text-decoration: none;
  color: #006800;
}
div.bread ul li:nth-of-type(1):before {
  content: none;
}
div.bread ul li:before {
  content: ">";
  margin-right: .6rem;
}
div.bread ul li {
  margin: 0 .6rem 0 0;
  padding: 0;
}
/*--------------------------
  greeting
--------------------------*/
.greeting {
  position: relative;
  width: 100%;
  height: auto;
  margin: 6rem auto 10rem auto;
  padding: 4rem 0 0 0;
}
.greeting .inr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.greeting .inr .photo {
  position: relative;
  width: 40%;
  margin: 0 auto 0 0;
}
.greeting .inr .photo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -1.5rem;
  bottom: -1.5rem;
  background-image: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
  transform: rotate(-10deg);
  z-index: -1;
}
.greeting .inr .photo img {
  max-width: 100%;
  height: auto;
}
.greeting .inr .txt {
  width: 50%;
}
.greeting .inr .txt p {
  margin-bottom: 1.8rem;
}
.greeting .inr .txt p.r {
  margin-top: 1.8rem;
  text-align: right;
}
.greeting .inr .txt .s {
  font-size: 0.5rem;
  color: #09750a;
}
@media screen and (max-width: 480px) {
  .greeting {
    position: relative;
    width: 100%;
    height: auto;
    margin: 3rem auto 5rem auto;
  }
  .greeting .inr {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
  }
  .greeting .inr .photo {
    position: relative;
    width: 70%;
    margin: 0 auto 0 auto;
  }
  .greeting .inr .photo::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -1.5rem;
    bottom: -1.5rem;
    background-image: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
    transform: rotate(-10deg);
    z-index: -1;
  }
  .greeting .inr .photo img {
    max-width: 100%;
    height: auto;
  }
  .greeting .inr .txt {
    width: 90%;
    margin: 3rem auto;
    font-size: 1.2rem;
  }
  .greeting .inr .txt p {
    margin-bottom: 1.8rem;
  }
  .greeting .inr .txt p.r {
    margin-top: 1.8rem;
    text-align: right;
  }
}
/*--------------------------
  service
--------------------------*/
.service {
  position: relative;
  width: 100%;
  height: auto;
  margin: 6rem auto 6rem auto;
  padding: 4rem 0 1rem 0;
  background: url("../img/home/service_bg.webp");
}
.service .title {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: 3rem auto 5rem auto;
  text-align: center;
}
.service .if {
  position: relative;
  width: 90%;
  text-align: center;
  margin: 0 auto 5rem auto;
  font-size: 1.2rem;
}
.service .if p {
  margin-bottom: 2rem;
}
.service .base__service {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
  margin: 0 auto 10rem auto;
}
.service .base__service .item {
  width: 33.33%;
  margin: 0 auto 0 auto;
  padding: 3% 3%;
}
.service .base__service .item:nth-last-child(2) {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.service .base__service .item h3 {
  color: #b72c64;
  font-weight: 600;
  font-size: 1.3vw;
  text-align: center;
  padding: 0 0 1rem 0;
}
.service .base__service .item .photo {
  position: relative;
  width: 60%;
  margin: 0 auto 2rem auto;
}
.service .base__service .item .photo img {
  max-width: 100%;
  height: auto;
  border-radius: 50px;
}
.service .inr {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
.service .inr .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 15rem auto;
}
.service .inr .item .odr__l {
  order: 1;
  text-align: right;
}
.service .inr .item .odr__r {
  order: 2;
  text-align: left;
}
.service .inr .item .photo {
  position: relative;
  width: 48%;
  margin: 0 0 0 0;
}
.service .inr .item .photo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -1.5rem;
  bottom: -1.5rem;
  background-image: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
  transform: rotate(5deg);
  z-index: -1;
}
.service .inr .item .photo img {
  max-width: 100%;
  height: auto;
}
.service .inr .item .i {
  position: relative;
  width: 48%;
  margin: 0 0 0 auto;
  padding: 0 5vw 0 0;
}
.service .inr .item .i h2 {
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
  margin: 0 0 2rem 0;
  color: #b72c64;
  font-size: 1.7vw;
  font-weight: 600;
  line-height: 1;
}
.service .inr .item .i h2:after {
  display: inline-block;
  content: '';
  width: 3.3vw;
  height: 2px;
  margin-left: 1.5vw;
  background: #b72c64;
}
.service .inr .item .i h3 {
  position: relative;
  width: auto;
  margin: 0 0 1.5rem 0;
  font-size: 1vw;
}
.service .inr .item .i .features {
  margin: 0 auto 1rem auto;
}
.service .inr .item .i .features h4 {
  margin: 0 auto 1rem auto;
  color: #b72c64;
  font-weight: 600;
  font-size: 1.4vw;
}
.service .inr .item .i .features ol {}
.service .inr .item .i .features ol li {
  display: inline-block;
  margin: 0 .5rem 0.5rem .5rem;
  padding: 0.2rem 1rem;
  background: #b72c64;
  color: #fff;
  border-radius: 20px;
}
.service .inr .item .i dl.price {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 60%;
  margin: 0 0 0 40%;
}
.service .inr .item .i dl.price dt, .service .inr .item .i dl.price dd {
  padding: .5rem .7rem;
  white-space: nowrap;
  border: 1px solid #333;
  text-align: center;
}
.service .inr .item .i dl.price dt {
  width: 40%;
}
.service .inr .item .i dl.price dd {
  width: 60%;
}
.service .inr .item .i dl.price .price__t {
  background: #333;
  color: #fff;
  text-align: center;
}
.service .inr .item .i dl.price dt.price__t {
  border-right: 1px solid #fff;
}
.service .inr .item .i .ans {
  position: relative;
  text-align: right;
  padding: .5rem 0 0 0;
}
.service .inr .item .i .btn {
  margin: 2.5rem auto 0 auto;
  text-align: right;
}
.service .inr .item .i .btn a {
  position: relative;
  display: inline-block;
  padding: 0.3rem 3rem .5rem 3rem;
  background: #e2d06e;
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
}
.service .inr .item .i .btn a:after {
  position: absolute;
  content: ">";
  right: 1rem;
}
.service .inr .item .i .btn a {
  transition: .5s;
}
.service .inr .item .i .btn a:hover {
  transform: scale(1.1, 1.1);
  background: rgba(110, 82, 0, 1.00);
  color: #fff;
}
@media screen and (max-width: 480px) {
  .service {
    position: relative;
    width: 100%;
    height: auto;
    margin: 3rem auto 3rem auto;
    padding: 2rem 0 3rem 0;
    background: url("../img/home/service_bg.webp");
  }
  .service .title {
    position: relative;
    max-width: 90%;
    width: 90%;
    margin: 1.5rem auto 2.5rem auto;
    text-align: center;
  }
  .service .if {
    position: relative;
    width: 90%;
    text-align: center;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
  }
  .service .if p {
    margin-bottom: 1rem;
  }
  .service .base__service {
    position: relative;
    width: 90%;
    display: block;
    align-items: stretch;
    justify-content: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
    margin: 0 auto 5rem auto;
  }
  .service .base__service .item {
    display: block;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    margin: 0 auto 0 auto;
    padding: 5% 5%;
  }
  .service .base__service .item:nth-last-child(2) {
    border-right: none;
    border-left: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .service .base__service .item h3 {
    color: #b72c64;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
    padding: 0 0 1rem 0;
  }
  .service .base__service .item .photo {
    position: relative;
    width: 50%;
    margin: 0 auto 2rem auto;
  }
  .service .base__service .item .photo img {
    max-width: 100%;
    height: auto;
    border-radius: 50px;
  }
  .service .base__service .item p {
    font-size: 1.2rem;
  }
  .service .inr {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .service .inr .item {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 5rem auto;
  }
  .service .inr .item .odr__l {
    order: 1;
  }
  .service .inr .item .odr__r {
    order: 2;
  }
  .service .inr .item .photo {
    position: relative;
    width: 80%;
    margin: 0 auto 4rem auto;
  }
  .service .inr .item .photo::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -1.5rem;
    bottom: -1.5rem;
    background-image: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
    transform: rotate(5deg);
    z-index: -1;
  }
  .service .inr .item .photo img {
    max-width: 100%;
    height: auto;
  }
  .service .inr .item .i {
    position: relative;
    width: 90%;
    margin: 0 auto 2rem auto;
    padding: 0 0 0 0;
  }
  .service .inr .item .i h2 {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    margin: 0 0 2rem 0;
    color: #b72c64;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
  }
  .service .inr .item .i h2:after {
    display: inline-block;
    content: '';
    width: 3.3vw;
    height: 2px;
    margin-left: 0.5rem;
    background: #b72c64;
  }
  .service .inr .item .i h3 {
    position: relative;
    width: auto;
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
  }
  .service .inr .item .i .features {
    margin: 0 auto 1rem auto;
    text-align: left;
  }
  .service .inr .item .i .features h4 {
    margin: 0 auto 1rem auto;
    color: #b72c64;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: left;
  }
  .service .inr .item .i .features ol {}
  .service .inr .item .i .features ol li {
    display: inline-block;
    margin: 0 1.5rem .5rem 0;
    padding: 0.2rem 1rem;
    background: #b72c64;
    color: #fff;
    border-radius: 5px;
    font-size: 1.1rem;
  }
  .service .inr .item .i dl.price {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 0 0;
  }
  .service .inr .item .i dl.price dt, .service .inr .item .i dl.price dd {
    padding: .3rem .3rem;
    white-space: nowrap;
    border: 1px solid #333;
    text-align: center;
  }
  .service .inr .item .i dl.price dt {
    width: 35%;
  }
  .service .inr .item .i dl.price dd {
    width: 65%;
  }
  .service .inr .item .i dl.price .price__t {
    background: #333;
    color: #fff;
    text-align: center;
  }
  .service .inr .item .i dl.price dt.price__t {
    border-right: 1px solid #fff;
  }
  .service .inr .item .i .ans {
    position: relative;
    text-align: right;
    padding: .5rem 0 0 0;
    font-size: 1rem;
  }
  .service .inr .item .i .btn {
    margin: 2.5rem auto 0 auto;
    text-align: right;
  }
  .service .inr .item .i .btn a {
    position: relative;
    display: inline-block;
    padding: 0.3rem 3rem .5rem 3rem;
    background: #e2d06e;
    color: #111111;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
  }
  .service .inr .item .i .btn a:after {
    position: absolute;
    content: ">";
    right: 1rem;
  }
}
/*--------------------------
  Equipment
--------------------------*/
.equipment {
  position: relative;
  width: 100%;
  height: auto;
  margin: 6rem auto 0 auto;
  padding: 2rem 0 0 0;
}
.equipment .title {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: 3rem auto 5rem auto;
  text-align: center;
}
.equipment .base__equipment {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
  margin: 0 auto 0 auto;
}
.equipment .base__equipment .item {
  width: 50%;
  margin: 0 auto 0 auto;
  padding: 0;
}
.equipment .base__equipment .item:nth-last-child(2) {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.equipment .base__equipment .item h3 {
  color: #b72c64;
  font-weight: 600;
  font-size: 1.3vw;
  text-align: center;
  padding: 0 0 1rem 0;
}
.equipment .base__equipment .item .photo {
  position: relative;
  width: 100%;
  margin: 0 auto 2rem auto;
}
.equipment .base__equipment .item .photo img {
  width: 100%;
  height: auto;
}
.equipment .base__equipment .item .if {
  position: relative;
  width: 100%;
  padding: 3% 5%;
}
.equipment .base__equipment .item p {
  margin-bottom: .7rem;
}
.equipment .base__equipment .item ol {
  margin-bottom: .7rem;
}
.equipment .base__equipment .item ol li {
  list-style-position: outside;
  margin: 0 0 0 1.5rem;
}
.equipment .base__equipment .item ol ol li {
  list-style-position: outside;
  margin: 0 0 0 2.5rem;
}
.equipment .base__equipment .item .no li {
  list-style: decimal;
}
.equipment .base__equipment .item .disc li {
  list-style: disc;
}
.equipment .base__equipment .item .btn {
  margin: 1rem auto 2.5rem auto;
  text-align: center;
}
.equipment .base__equipment .item .btn a {
  position: relative;
  display: inline-block;
  padding: 0.3rem 3rem .5rem 3rem;
  background: #e2d06e;
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
}
.equipment .base__equipment .item .btn a:after {
  position: absolute;
  content: ">";
  right: 1rem;
}
.equipment .base__equipment .item .btn a {
  transition: .5s;
}
.equipment .base__equipment .item .btn a:hover {
  transform: scale(1.1, 1.1);
  background: rgba(110, 82, 0, 1.00);
  color: #fff;
}
@media screen and (max-width: 480px) {
  .equipment {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0rem auto 0 auto;
    padding: 1rem 0 0 0;
  }
  .equipment .title {
    position: relative;
    max-width: 90%;
    width: 90%;
    margin: 0 auto 2.5rem auto;
    text-align: center;
  }
  .equipment .base__equipment {
    position: relative;
    width: 100%;
    display: block;
    align-items: stretch;
    justify-content: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
    margin: 0 auto 0 auto;
  }
  .equipment .base__equipment .item {
    width: 100%;
    margin: 0 auto 3rem auto;
    padding: 0;
  }
  .equipment .base__equipment .item:nth-last-child(2) {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
  }
  .equipment .base__equipment .item h3 {
    color: #b72c64;
    width: 95%;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
    padding: 0 0 1rem 0;
  }
  .equipment .base__equipment .item .photo {
    position: relative;
    width: 100%;
    margin: 0 auto 2rem auto;
  }
  .equipment .base__equipment .item .photo img {
    width: 100%;
    height: auto;
  }
  .equipment .base__equipment .item .if {
    position: relative;
    width: 100%;
    padding: 3% 5%;
    font-size: 1.2rem;
  }
  .equipment .base__equipment .item p {
    margin-bottom: .5rem;
  }
  .equipment .base__equipment .item ol {
    margin-bottom: .5rem;
  }
  .equipment .base__equipment .item ol li {
    list-style-position: outside;
    margin: 0 0 0 1.5rem;
  }
  .equipment .base__equipment .item ol ol li {
    list-style-position: outside;
    margin: 0 0 0 2.5rem;
  }
  .equipment .base__equipment .item .no li {
    list-style: decimal;
  }
  .equipment .base__equipment .item .disc li {
    list-style: disc;
  }
}
/*--------------------------
  sub photo
--------------------------*/
.sub_photo {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  overflow: hidden;
  background: url("../img/an_bg.png") no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.sub_photo .mt {
  width: 100%;
  margin: 0 auto 0 0;
  text-align: center;
  font-size: 1.8rem;
  color: #007300;
  font-weight: 600;
}
.sub_photo .mt span {
  background: rgba(255, 255, 255, 0.68);
  padding: .4rem .8rem .6rem .8rem;
}
@media screen and (max-width: 480px) {
  .sub_photo {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    overflow: hidden;
    background: url("../img/an_bg.png") no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }
  .sub_photo .mt {
    width: 100%;
    margin: 0 auto 0 0;
    text-align: center;
    font-size: 1.3rem;
    color: #007300;
    font-weight: 600;
  }
  .sub_photo .mt span {
    background: rgba(255, 255, 255, 0.68);
    padding: .4rem .8rem .6rem .8rem;
  }
}
/*--------------------------
  service_detail
--------------------------*/
.service_detail {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 4rem 0 0 0;
}
.service_detail .inr {
  position: relative;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
}
.service_detail .inr .item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 5rem auto;
}
.service_detail .inr .item .odr__l {
  order: 1;
}
.service_detail .inr .item .w40 {
  width: 40%;
}
.service_detail .inr .item .w55 {
  width: 55%;
}
.service_detail .inr .item .odr__r {
  order: 2;
}
.service_detail .inr .item .photo, .service_detail .inr .item .photos {
  position: relative;
  width: 100%;
  margin: 0 0 15% 0;
}
.service_detail .inr .item .photo iframe, .service_detail .inr .item .photos {
  position: relative;
  width: 100%;
  margin: 0 0 15% 0;
}
.service_detail .inr .item .ifrm {
  width: 100%;
  position: relative;
  padding-top: 46.25%;
}
.service_detail .inr .item .ifrm iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service_detail .inr .item .photo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -1.5rem;
  bottom: -1.5rem;
  background-image: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
  transform: rotate(5deg);
  z-index: -1;
}
.service_detail .inr .item .photos::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -1.5rem;
  bottom: -1.5rem;
  background-image: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
  transform: rotate(-5deg);
  z-index: -1;
}
.service_detail .inr .item .photo img, .service_detail .inr .item .photos img {
  max-width: 100%;
  height: auto;
}
.service_detail .inr .item .i {
  position: relative;
  width: 55%;
  margin: 0 0 0 auto;
  padding: 0 0 0 5%;
}
.service_detail .inr .item .i h2 {
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
  margin: 0 0 2rem 0;
  color: #b72c64;
  font-size: 1.7vw;
  font-weight: 600;
  line-height: 1;
}
.service_detail .inr .item .i h2:after {
  display: inline-block;
  content: '';
  width: 3.3vw;
  height: 2px;
  margin-left: 1.5vw;
  background: #b72c64;
}
.service_detail .inr .item .i h3 {
  position: relative;
  width: auto;
  margin: 0 0 1.5rem 0;
  font-size: 1vw;
}
.service_detail .inr .item .i .features {
  margin: 0 auto 1rem auto;
}
.service_detail .inr .item .i .features h4 {
  margin: 0 auto 1rem auto;
  color: #b72c64;
  font-weight: 600;
  font-size: 1vw;
}
.service_detail .inr .item .i .features ol {}
.service_detail .inr .item .i .features ol li {
  display: inline-block;
  margin: 0 1.5rem .5rem 0;
  padding: 0.2rem 1rem;
  background: #b72c64;
  color: #fff;
  border-radius: 20px;
}
.service_detail  .inr .item .i .Eq {
  margin: 0 auto 1rem auto;
}
.service_detail  .inr .item .i .Eq h4 {
  margin: 0 auto 1rem auto;
  color: #b72c64;
  font-weight: 600;
  font-size: 1.2rem;
}
.service_detail  .inr .item .i .Eq ol {}
.service_detail .inr .item .i .Eq ol li {
	list-style: disc;
	list-style-position: outside;
	margin: 0 0 .1rem 2rem;
}
.service_detail .inr .item .i dl.price {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 60%;
  margin: 0 0 0 40%;
}
.service_detail .inr .item .i dl.price dt, .service_detail .inr .item .i dl.price dd {
  padding: .5rem .7rem;
  white-space: nowrap;
  border: 1px solid #333;
  text-align: center;
}
.service_detail .inr .item .i dl.price dt {
  width: 30%;
}
.service_detail .inr .item .i dl.price dd {
  width: 70%;
}
.service_detail .inr .item .i dl.price .price__t {
  background: #333;
  color: #fff;
  text-align: center;
}
.service_detail .inr .item .i dl.price dt.price__t {
  border-right: 1px solid #fff;
}
.service_detail .inr .item .i .ans {
  position: relative;
  text-align: right;
  padding: .5rem 0 0 0;
}
.service_detail .inr .item .i .btn {
  margin: 2.5rem auto 0 auto;
  text-align: right;
}
.service_detail .inr .item .i .btn a {
  position: relative;
  display: inline-block;
  padding: 0.3rem 3rem .5rem 3rem;
  background: #b72c64;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
}
.service_detail .inr .item .i .btn a:after {
  position: absolute;
  content: ">";
  right: 1rem;
}
.service_detail .inr .item .i .cont h4 {
  position: relative;
  width: 100%;
  margin: 2rem 0 2rem 0;
  padding: 0 0 .3rem 0;
  border-bottom: solid 3px #efefef;
  font-size: 1.4rem;
  color: #007300;
  font-weight: 600;
}
.service_detail .inr .item .i .cont h4:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #007300;
  bottom: -3px;
  width: 20%;
}
.service_detail .inr .item .i .cont .flowarp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 5%;
}
.service_detail .inr .item .i .cont .flowarp .flow {
  padding-left: 0;
}
.service_detail .inr .item .i .cont .flowarp .flow > li {
  list-style-type: none;
  position: relative;
  padding-left: 3.5rem;
}
.service_detail .inr .item .i .cont .flowarp .flow > li:not(:last-child) {
  padding-bottom: 2rem;
}
.service_detail .inr .item .i .cont .flowarp .flow > li .icon {
  width: 2em;
  height: 2em;
  line-height: 1.8rem;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #007300;
  color: #fff;
  position: absolute;
  left: 0;
}
.service_detail .inr .item .i .cont .flowarp .flow > li:not(:last-child)::before {
  content: '';
  background: #c3c3c3;
  width: 6px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 0.9rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.service_detail .inr .item .i .cont .flowarp .flow > li dl dt {
  font-size: 1rem;
  font-weight: 600;
  color: #007300;
}
.service_detail .inr .item .i .cont .flowarp .flow > li dl dd {
  margin-left: 0;
}
.service_detail .inr .item .i .cont .flowarp .flow dd ol.n li {
  list-style: decimal;
  list-style-position: outside;
  margin: 0 0 .5rem 1rem;
}
@media screen and (max-width: 480px) {
  .service_detail {
    position: relative;
    width: 100%;
    height: auto;
    margin: 3rem auto 3rem auto;
    padding: 2rem 0 3rem 0;
  }
  .service_detail .inr {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .service_detail .inr .item {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 3rem auto;
  }
  .service_detail .inr .item .odr__l {
    order: 1;
  }
  .service_detail .inr .item .odr__r {
    order: 2;
  }
  .service_detail .inr .item .w40 {
    width: 100%;
  }
  .service_detail .inr .item .w55 {
    width: 100%;
  }
  .service_detail .inr .item .odr__r {
    order: 2;
  }
  .service_detail .inr .item .photo, .service_detail .inr .item .photos {
    position: relative;
    width: 80%;
    margin: 0 auto 4rem auto;
  }
  .service_detail .inr .item .photo::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -1.5rem;
    bottom: -1.5rem;
    background-image: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
    transform: rotate(5deg);
    z-index: -1;
  }
  .service_detail .inr .item .photos::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -1.5rem;
    bottom: -1.5rem;
    background-image: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
    transform: rotate(-5deg);
    z-index: -1;
  }
  .service_detail .inr .item .photo img, .service_detail .inr .item .photos img {
    max-width: 100%;
    height: auto;
  }
  .service_detail .inr .item .photo {
    position: relative;
    width: 80%;
    margin: 0 auto 4rem auto;
  }
  .service_detail .inr .item .photo::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -1.5rem;
    bottom: -1.5rem;
    background-image: linear-gradient(90deg, rgba(29, 163, 137, 1), rgba(247, 209, 55, 1) 90%);
    transform: rotate(5deg);
    z-index: -1;
  }
  .service_detail .inr .item .photo img {
    max-width: 100%;
    height: auto;
  }
  .service_detail .inr .item .i {
    position: relative;
    width: 90%;
    margin: 0 auto 2rem auto;
    padding: 0 0 0 0;
  }
  .service_detail .inr .item .i h2 {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    margin: 0 0 2rem 0;
    color: #b72c64;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
  }
  .service_detail .inr .item .i h2:after {
    display: inline-block;
    content: '';
    width: 3.3vw;
    height: 2px;
    margin-left: 0.5rem;
    background: #b72c64;
  }
  .service_detail .inr .item .i h3 {
    position: relative;
    width: auto;
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
  }
  .service_detail .inr .item .i .features {
    margin: 0 auto 1rem auto;
    text-align: left;
  }
  .service_detail .inr .item .i .features h4 {
    margin: 0 auto 1rem auto;
    color: #b72c64;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: left;
  }
  .service_detail .inr .item .i .features ol {}
  .service_detail .inr .item .i .features ol li {
    display: inline-block;
    margin: 0 1.5rem .5rem 0;
    padding: 0.2rem 1rem;
    background: #b72c64;
    color: #fff;
    border-radius: 5px;
    font-size: 1.1rem;
  }
  .service_detail .inr .item .i dl.price {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 0 0;
  }
  .service_detail .inr .item .i dl.price dt, .service_detail .inr .item .i dl.price dd {
    padding: .3rem .3rem;
    white-space: nowrap;
    border: 1px solid #333;
    text-align: center;
  }
  .service_detail .inr .item .i dl.price dt {
    width: 35%;
  }
  .service_detail .inr .item .i dl.price dd {
    width: 65%;
  }
  .service_detail .inr .item .i dl.price .price__t {
    background: #333;
    color: #fff;
    text-align: center;
  }
  .service_detail .inr .item .i dl.price dt.price__t {
    border-right: 1px solid #fff;
  }
  .service_detail .inr .item .i .ans {
    position: relative;
    text-align: right;
    padding: .5rem 0 0 0;
    font-size: 1rem;
  }
  .service_detail .inr .item .i .btn {
    margin: 2.5rem auto 0 auto;
    text-align: right;
  }
  .service_detail .inr .item .i .btn a {
    position: relative;
    display: inline-block;
    padding: 0.3rem 3rem .5rem 3rem;
    background: #e2d06e;
    color: #111111;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
  }
  .service_detail .inr .item .i .btn a:after {
    position: absolute;
    content: ">";
    right: 1rem;
  }
}
/*--------------------------
  blog
--------------------------*/
#blog {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: var(--max-width);
  height: auto;
  margin: 0 auto;
  padding: 4rem 0 0 0;
}
#blog .blog_menu {
  position: relative;
  width: 25%;
}
#blog .blog_menu h3.acd{
	display: none;
}
#blog .blog_menu .block {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto 2rem auto;
  font-size: .9rem;
}
#blog .blog_menu .block h4 {
  font-weight: 600;
  border-bottom: 1px solid #333;
  margin: 0 auto 1rem auto;
  font-size: 1.1rem;
}
@media screen and (max-width: 480px) {
#blog {
  position: relative;
  display: block;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: var(--max-width);
  height: auto;
  margin: 0 auto;
  padding: 4rem 5% 0 5%;
}
#blog .blog_menu {
  position: relative;
  width: 100%;
  margin: 0 0 0 0;
}
#blog .blog_menu .block {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto 2rem auto;
  font-size: .9rem;
}
#blog .blog_menu .block h4 {
  font-weight: 600;
  border-bottom: 1px solid #333;
  margin: 0 auto 1rem auto;
  font-size: 1.1rem;
}
}
/*----------*/
.wp-calendar caption {
  position: relative;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
  vertical-align: middle;
  padding: 0 0 .5rem 0;
}
.wp-calendar caption span.ct {
  display: inline-flex;
  white-space: nowrap;
  margin: 0 .5rem;
  line-height: 0;
}
.wp-calendar caption a {
  display: inline-flex;
  background: #006b00;
  color: #fff;
  text-decoration: none;
  border-radius: 1rem;
  padding: 0 .3rem .15rem .3rem;
  line-height: 1;
}
table.wp-calendar th, table.wp-calendar td {
	display:table-cell;
  width: auto;
  text-align: center;
}
.wp-calendar td a {
  background: rgba(210, 228, 219, 1.00);
  background: #006b00;
  color: #fff;
  border-radius: 2rem;
  padding: .1rem .5rem .3rem .5rem;
  text-decoration: none;
}
/*----------*/
ul.cc li {
  position: relative;
  list-style: disc;
  list-style-position: outside;
  margin: 0 0 .1rem 1.5rem;
}
ul.cc li a {
  color: #222;
}
/*----------*/
#blog .blog {
  position: relative;
  width: 70%;
  margin: 0 0 0 auto;
}
#blog .blog .item {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 3rem 0;
  padding: 0 0 3rem 0;
}
#blog .blog .item .bt {
  position: relative;
  width: 100%;
  margin: 0 0 .5rem 0;
  padding: 0 0 .5rem 0;
  border-bottom: 2px solid #222;
  font-size: 1.3rem;
}
#blog .blog .item .ymd {
  position: relative;
  width: 100%;
  margin: 0 0 .5rem 0;
  font-size: 0.9rem;
}
#blog .blog .item .cate {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 2rem 0;
  font-size: 0.8rem;
}
#blog .blog .item .cate a {
  position: relative;
  display: inline-block;
  background: #006b00;
  border-radius: 1rem;
  margin-bottom: .56rem;
  padding: .2rem .5rem;
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
}
#blog .blog .item .bx {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 1rem;
}
#blog .blog .item .bx img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
#blog .blog .item .bx:after {
  position: relative;
  content: '';
  display: clear;
  width: 100%;
  height: 0;
  line-height: 0;
}
#blog .blog .item .bx .more-link {
  display: inline-block;
  float: right;
  margin-top: 1.5rem;
}
#blog .blog .item .more-link {
  display: inline-block;
  float: right;
  background: #efefef;
  border: 1px solid #222;
  padding: .1rem 1rem .2rem 1rem;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
#blog .blog {
  position: relative;
  width: 100%;
  margin: 0 0 0 auto;
}	
#blog .blog_menu h3.acd{
	position: relative;
	display: block;
	background: #007300;
	color: #fff;
	margin: 0 0 2rem 0;
	padding: .5rem 1rem .5rem 1rem;
}
#blog .blog_menu .acdbox{
	display: none;
}
/* 縦線 */
#blog .blog_menu h3.acd::before {
  background: #fff; /* 線の色 */
  content: "";
  height: 2px; /* 線の太さ */
  position: absolute;
  right: 25px;
  top: 50%; /* 線の位置を縦中央に */
  transform: rotate(90deg); /* 線を縦に */
  transition: transform .3s ease-in-out;
  width: 15px; /* 線の幅 */
}
/* 横線 */
#blog .blog_menu h3.acd::after {
  background: #fff; /* 線の色 */
  content: "";
  height: 2px; /* 線の太さ */
  position: absolute;
  right: 25px;
  top: 50%; /* 線の位置を縦中央に */
  transition: opacity .3s ease-in-out;
  width: 15px; /* 線の幅 */
}
/* 縦線(クリック後) */
#blog .blog_menu h3.acd.open::before {
  transform: rotate(180deg);
}
/* 横線(クリック後) */
#blog .blog_menu h3.acd.open::after {
  opacity: 0;
}
}
.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
  font-size: .9rem;
}
.pagination .page-numbers {
  position: relative;
  display: inline-block;
  border: 1px solid #006600;
}
.pagination a.page-numbers, .pagination .current {
  display: block;
  padding: .3rem .7rem;
  text-decoration: none;
  color: #222;
  margin: .5rem;
  transition: 0.5s;
}
.pagination .current {
  background: #006600;
  color: #fff;
  font-weight: 600;
}
.pagination a.page-numbers:hover {
  transition: 0.5s;
  background: #006600;
  color: #fff;
  font-weight: 600;
}