body {
  width: 100%;
/*  font-family: 'Noto Sans JP', sans-serif; */
  font-family: 'Noto Serif JP', serif;
  background-color: #fff;
}

.header {
  margin-top: 10px;
}

/* header logo */

.header .logo {
  /*
  display: block;
  margin: auto;
  width: 605px;
  */
  display: flex;
  justify-content: center;
  margin-bottom: 9px;
}

.header .logo ul {
  list-style: none;
}

.header .logo li {
  display: inline-block;
}

.header .logo li:nth-of-type(1) {
  margin-right: 45px;
}

.header .logo li:nth-of-type(2) {
  margin-right: 45px;
}

.header .logo li img {
/*  height: 146px; */
  height: 110px; 
}

.header .logo li:nth-of-type(2) img {
  /* height: 186px; */
  height: 140px; 
}

/* header global navigation */
/*  => common.css */

/* main visual */
.visual {
  margin-top: 25px;
  position: relative;
}

.visual .slider-wrap {
  position: relative;
}

/* cross fade slider */
.slider-fade {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}

.slider-fade > li {
    position: absolute;
    list-style: none;
    visibility: visible;
    opacity: 0;
    z-index: 1;
    top: 0;
    left: 0;
}

.slider-fade > li:first-of-type {
    position: relative;
}

.slider-fade-in-initial {
    animation-name: anime_slider_fade_in_initial;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    z-index: 2 !important;
}

.slider-fade-out {
    animation-name: anime_slider_fade_out;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

.slider-fade-in {
    animation-name: anime_slider_fade_in;
    animation-duration: 2.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 1s;
    z-index: 2 !important;
}

.slider-fade-out-quick {
    animation-name: anime_slider_fade_out_quick;
    animation-duration: 1.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

.slider-fade-in-quick {
    animation-name: anime_slider_fade_in_quick;
    animation-duration: 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0.3s;
    z-index: 2 !important;
}

.slider-fade > li img {
  max-width: 100%;
}

@keyframes anime_slider_fade_in_initial {
    0% {
        opacity: 0;
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes anime_slider_fade_in {
    0% {
        opacity: 0;
        filter: blur(40px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes anime_slider_fade_out {
    0% {
        opacity: 1;
        filter: blur(0);
    }
    75% {
        opacity: 0.8;
        filter: blur(40px);
    }
    100% {
        opacity: 0;
        filter: blur(60px);
    }
}

@keyframes anime_slider_fade_in_quick {
    0% {
        opacity: 0;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes anime_slider_fade_out_quick {
    0% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 0;
        filter: blur(0);
    }
}

/* for Chrome */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  @keyframes anime_slider_fade_in_initial {
      0% {
          opacity: 0;
          filter: blur(4px);
      }
      100% {
          opacity: 1;
          filter: blur(0.04px);
      }
  }
  
  @keyframes anime_slider_fade_in {
      0% {
          opacity: 0;
          filter: blur(40px);
      }
      100% {
          opacity: 1;
          filter: blur(0.04px);
      }
  }

  @keyframes anime_slider_fade_out {
      0% {
          opacity: 1;
          filter: blur(0.04px);
      }
      75% {
          opacity: 0.8;
          filter: blur(40px);
      }
      100% {
          opacity: 0;
          filter: blur(60px);
      }
  }
  
  @keyframes anime_slider_fade_in_quick {
      0% {
          opacity: 0;
          filter: blur(0.04px);
      }
      100% {
          opacity: 1;
          filter: blur(0.04px);
      }
  }

  @keyframes anime_slider_fade_out_quick {
      0% {
          opacity: 1;
          filter: blur(0.04px);
      }
      100% {
          opacity: 0;
          filter: blur(0.04px);
      }
  }
}

/* slider control */

/* arrow */
.visual .arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  z-index: 10;
  width: 50px;
  opacity: 0.4;
}

.visual .arrow-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
  z-index: 10;
  width: 50px;
  opacity: 0.4;
}

.visual .arrow-right:hover {
  opacity: 0.9;
}

.visual .arrow-left:hover {
  opacity: 0.9;
}

.visual .hide {
  visibility: hidden;
}

.visual .show {
  visibility: visible;
}

.visual .arrow-right svg {
  width: 100%;
  height: 100%;
}

.visual .arrow-line {
  fill: none;
  stroke: rgb(142,155,144);
  stroke-width: 200;
  transition: stroke 1s linear;
}

.visual .arrow-line.white {
  stroke: #fff;
}

/* navigator */
.visual .navigator {
  position: relative;
  margin: auto;
  margin-top: 40px;
  width: 175px;
  font-size: 0;
}

.visual .navigator div {
  display: inline-block;
  margin-right: 10px;
  width: 25px;
  height: 25px;
}

.visual .navigator .active rect {
  fill: #9fb3a3;
  stroke: #9fb3a3;
  stroke-width: 400; 
}

.visual .navigator .clickable {
  cursor: pointer;
}

.visual .navigator .clickable rect {
  fill: none;
  stroke: #9fb3a3;
  stroke-width: 400; 
}

.visual .heading {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  margin-top: -280px;
  padding-right: 6%;
  z-index: 3;
  -ms-writing-mode: horizontal-tb;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: 'Noto Serif JP', serif;
  color: #8E9B90;
  text-align: right;
  width: 100%;
}

.visual .heading  a {
  color: #8E9B90;
  text-decoration:none;
}

.visual .heading  h2 {
  font-weight: 500;
  font-size: 65pt;
  line-height: 1.5em;
  letter-spacing: 20px;
  border-right: solid 2px #8E9B90;
  padding-right: 50px;
  padding-top: 30px;
  padding-bottom: 25px;
}

.visual .heading  p {
  margin-right: 50px;
  font-size: 14pt;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 5px;
  padding-bottom: 25px;
}

.visual .heading  p:nth-of-type(4) {
  margin-right: 80px;
}

.visual .fade-in-up {
  animation-delay: 0s;
  animation-name: fade-in-up-frames;
  animation-duration: 2.5s;
  animation-iteration-count: 1;
}

.visual .heading p.fade-in-up:nth-of-type(1) {
  animation-delay: 0.6s;
}

.visual .heading p.fade-in-up:nth-of-type(2) {
  animation-delay: 0.9s;
}

.visual .heading p.fade-in-up:nth-of-type(3) {
  animation-delay: 1.2s;
}

.visual .heading p.fade-in-up:nth-of-type(4) {
  animation-delay: 1.5s;
}

/* quick */
.visual .fade-in-up-quick {
  animation-delay: 0s;
  animation-name: fade-in-up-frames;
  animation-duration: 1.8s;
  animation-iteration-count: 1;
}

.visual .heading p.fade-in-up-quick:nth-of-type(1) {
  animation-delay: 0.4s;
}

.visual .heading p.fade-in-up-quick:nth-of-type(2) {
  animation-delay: 0.4s;
}

.visual .heading p.fade-in-up-quick:nth-of-type(3) {
  animation-delay: 0.4s;
}

.visual .heading p.fade-in-up-quick:nth-of-type(4) {
  animation-delay: 0.4s;
}

.visual .fade-out-up {
  animation-delay: 0s;
  animation-name: fade-out-up-frames;
  animation-duration: 2.5s;
  animation-iteration-count: 1;
}

@keyframes fade-in-up-frames {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-out-up-frames {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-80px);
    z-index: -1;
  }
}

hr.visual-service-boundary {
  border: none;
  border-top: 2px solid #9fb3a3;
  overflow: hidden;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
/*  width: 63%; */
  max-width: 980px;
}

#service-description {
  display: block;
  margin: auto;
  width: 980px;
}

#service-description > .header-mark {
  display: block;
  width: 36px;
  height: 36px;
  margin: auto;
}

#service-description > .header-mark rect {
  fill: #9fb3a3;
  stroke: #9fb3a3;
  stroke-width: 400; 
}

#service-description > .header-text {
  margin-top: 40px;
  text-align: center;
  color: #8E9B90;
/*  font-family: "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
  font-size: 13pt;
  letter-spacing: 5px;
}

#service-description > .logo {
  width: 180px;
  margin: auto;
  margin-top: 30px;
}

#service-description > .logo img {
  width: 100%;
}

#service-description > .description {
  margin-top: 20px;
  text-align: center;
  color: #A1B5A5;
  font-family: "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 13pt;
  font-weight: 700;
  letter-spacing: 7px;
}

#service-description > .menu {
  display: flex;
  justify-content: center;
  margin: auto;
  margin-top: 120px;
}

#service-description > .menu > .miraifu {
  width: 215px;
  position: relative;
}

#service-description > .menu > .miraifu .logo {
  width: 100%;
  position: relative;
}

#service-description > .menu > .miraifu .logo a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

#service-description > .menu > .miraifu .logo img {
  display: block;
  width: 150px;
  margin: auto;
}

#service-description > .menu > .miraifu .text {
  width: 100%;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px  solid #A1B5A5;
}

#service-description > .menu > .miraifu .text ul {
  list-style: none;
  text-align: center;
  color: #A1B5A5;
  font-family: "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 11pt;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 2em;
}

#service-description > .menu > .mi-life {
  width: 430px;
  position: relative;
}


#service-description > .menu > .mi-life .logo {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

#service-description > .menu > .mi-life .logo a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

#service-description > .menu > .mi-life .logo img {
  display: block;
  width: 150px;
  margin: auto;
}

#service-description > .menu > .mi-life .text {
  width: 75%;
  margin-top: 30px;
  padding-top: 30px;
  margin-left: 60px;
  border-top: 2px  solid #A1B5A5;
}

#service-description > .menu > .mi-life .text ul {
  list-style: none;
  text-align: center;
  color: #A1B5A5;
  font-family: "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 11pt;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 2em;
}

/* miraifu */

#service-miraifu {
  display: block;
  margin: auto;
  margin-top: 180px;
  width: 980px;
}

#service-miraifu > .header-mark {
  display: block;
  width: 36px;
  height: 36px;
  margin: auto;
}

#service-miraifu > .header-mark rect {
  fill: #e76fa1;
  stroke: #e76fa1;
  stroke-width: 400; 
}

#service-miraifu > .logo {
  width: 350px;
  margin: auto;
  margin-top: 30px;
}

#service-miraifu > .logo img {
  width: 100%;
}

#service-miraifu > .images {
  display: flex;
  justify-content: space-between;
  width: 980px;
  margin: auto;
  margin-top: 60px;
  position: relative;
  pointer-events: none;
  transition: all .3s;
}

#service-miraifu > .images > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: auto;
}

#service-miraifu > .images:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

#service-miraifu > .images .image1 {
  width: 480px;
}

#service-miraifu > .images .image1 img {
  width: 100%;
}

#service-miraifu > .images .image2 {
  width: 450px;
}

#service-miraifu > .images .image2 .text {
  color: #8E9B90;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  letter-spacing: 8px;
  line-height: 1.6em;
  font-size: 23pt;
  margin-top: -10px;
  width: 150%;
}

#service-miraifu > .images > .image2 > .images {
  display: flex;
  justify-content: flex-start;
  width: 450px;
  margin-top: 45px;
}

#service-miraifu > .images > .image2 > .images img {
  width: 39%;
  display: block;
}

#service-miraifu > .images > .image2 > .images img:nth-of-type(1) {
  margin-left: -10px;
  margin-right: 47px;
}

#service-miraifu > .more {
  width: 980px;
  margin: auto;
  margin-top: 50px;
}

#service-miraifu > .more .see-more {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

#service-miraifu > .more .see-more h3 {
  display: block;
  width: 15%;
  color: #E870A3;
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  letter-spacing: 3px;
  line-height: 1.6em;
}

#service-miraifu > .more .see-more .under-line {
  display: block;
  content: '';
  height: 1px;
  margin-top: 20px;
  background-color: #E870A3;
  width: 83%;
}

#service-miraifu > .more .links {
  width: 100%;
  margin: auto;
  margin-top: 33px;
}

#service-miraifu > .more .links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: 70px;
}

#service-miraifu > .more .links li a {
  width: 245px;
  display: block;
  color: #E870A3;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.6em;
  transition: all .3s;
}

/* mi-life1 */
#service-mi-life-1 {
  display: block;
  margin: auto;
  margin-top: 180px;
  width: 980px;
}

#service-mi-life-1 > .header-mark {
  display: block;
  width: 36px;
  height: 36px;
  margin: auto;
}

#service-mi-life-1 > .header-mark rect {
  fill: #222f55;
  stroke: #222f55;
  stroke-width: 400; 
}

#service-mi-life-1 > .logo-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  width: 700px;
  margin: auto;
}

#service-mi-life-1 > .logo-wrap > .logo {
  width: 350px;
  margin-top: 30px;
}

#service-mi-life-1 > .logo-wrap > .logo img {
  width: 100%;
}

#service-mi-life-1 > .images {
  display: flex;
  justify-content: space-between;
  width: 980px;
  margin: auto;
  margin-top: 70px;
  position: relative;
  pointer-events: none;
  transition: all .3s;
}

#service-mi-life-1 > .images > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: auto;
}

#service-mi-life-1 > .images:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

#service-mi-life-1 > .images .image1 {
  width: 480px;
}

#service-mi-life-1 > .images .image1 img {
  width: 100%;
}

#service-mi-life-1 > .images .image2 {
  width: 450px;
}

#service-mi-life-1 > .images .image2 .text {
  color: #8E9B90;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  letter-spacing: 8px;
  line-height: 1.6em;
  font-size: 23pt;
  margin-top: -10px;
}

#service-mi-life-1 > .images > .image2 > .images {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 15px;
}

#service-mi-life-1 > .images > .image2 > .images img:nth-of-type(1) {
  margin-left: -5px;
  margin-right: 55px;
  width: 170px;
  height: 230px;
  display: block;
}

#service-mi-life-1 > .images > .image2 > .images img:nth-of-type(2) {
  width: 170px;
  height: auto;
  margin-top: -40px;
}


#service-mi-life-1 > .more {
  width: 980px;
  margin: auto;
  margin-top: 50px;
}

#service-mi-life-1 > .more .see-more {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

#service-mi-life-1 > .more .see-more h3 {
  display: block;
  width: 15%;
  color: #1D2B54;
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  letter-spacing: 3px;
  line-height: 1.6em;
}

#service-mi-life-1 > .more .see-more .under-line {
  display: block;
  content: '';
  height: 1px;
  margin-top: 20px;
  background-color: #1D2B54;
  width: 83%;
}

#service-mi-life-1 > .more .links {
  width: 100%;
  margin: auto;
  margin-top: 33px;
}

#service-mi-life-1 > .more .links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: 70px;
}

#service-mi-life-1 > .more .links li a {
  width: 245px;
  display: block;
  color: #1D2B54;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.6em;
  transition: all .3s;
}

/* 問い合わせボタン */
#contact-button {
  position: fixed;
  cursor: pointer;
  right: 100px;
  bottom: 80px;
  padding-left: 0px;
  padding-top: 0px;
  z-index:999;
}

#contact-button img {
  width: 160px;
}
