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

.global-menu-right {
  display: none !important;
}

.container {
  padding-left: 0px;
  padding-right: 0px;
}

.header {
  margin-top: 20px;
}

/* header logo */

.header .logo {
  margin-bottom: 20px;
}

.header .logo ul {
  list-style: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

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

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

.header .logo li img {
  height: 88px; 
}

.header .logo li:nth-of-type(2) img {
  height: 111px; 
}

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

/* main visual */
.visual {
  margin-top: 20px;
  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: 35px;
  opacity: 0.4;
}

.visual .arrow-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
  z-index: 10;
  width: 35px;
  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;
}

@media screen and (max-width:350px) {
  .visual .navigator {
    position: relative;
    margin: auto;
    margin-top: 60px;
    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: -220px;
  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: 600;
  font-size: 30pt;
  line-height: 1.5em;
  letter-spacing: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 25px;
  position: absolute;
  right: 0px;
  top: -210px;
}

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

.visual .heading  p {
  margin-right: 20px;
  font-size: 10pt;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 4px;
  padding-bottom: 0px;
}

@media screen and (max-width:350px) {
  .visual .heading  h2 {
    font-weight: 600;
    font-size: 26pt;
    line-height: 1.5em;
    letter-spacing: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 25px;
    position: absolute;
    right: 0px;
    top: -165px;
  }

  .visual .heading  p {
    margin-right: 20px;
    font-size: 8pt;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 4px;
    padding-bottom: 0px;
  }
}

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

.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: 1px solid #9fb3a3;
  overflow: hidden;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 95%; 
  max-width: 700px;
}

#service-description {
  display: block;
  margin: auto;
  max-width: 700px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

#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: 15pt;
  letter-spacing: 5px;
}

#service-description > .logo {
  width: 120px;
  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: 11pt;
  font-weight: 700;
  letter-spacing: 5px;
}

#service-description > .menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: auto;
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
}

#service-description > .menu > .miraifu {
  width: 33.333334%;
  max-width: 180px;
  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: 100%;
  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: 9pt;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5em;
}

#service-description > .menu > .mi-life {
  width: 66.666667%;
  max-width: 360px;
  position: relative;
}

#service-description > .menu > .mi-life .logo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  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: 50%;
  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: 9pt;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5em;
}

/* miraifu */

#service-miraifu {
  display: block;
  margin: auto;
  margin-top: 30px;
  max-width: 700px;
  width: 100%;
}

#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: 220px;
  margin: auto;
  margin-top: 30px;
}

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

#service-miraifu > .images {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  margin: auto;
  margin-top: 30px;
  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 .image1 {
  width: 100vw;
  max-width: 400px;
}

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

#service-miraifu > .images .image2 {
  width: 100vw;
  max-width: 400px;
}

#service-miraifu > .images .image2 .text {
  color: #8E9B90;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 1.6em;
  font-size: 14pt;
  margin-top: 20px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 10;
  position: relative;
}

#service-miraifu > .images > .image2 > .images {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 98%;
  margin-top: -45px;
  z-index: -1;
}

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

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

#service-miraifu > .more {
  max-width: 420px;
  width: 100%;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
}

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

#service-miraifu > .more .see-more h3 {
  display: block;
  width: 40%;
  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%;
  max-width: 600px;
  margin: auto;
  margin-top: 0px;
}

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

#service-miraifu > .more .links li {
  margin-top: 20px;
}

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

/* mi-life1 */
#service-mi-life-1 {
  display: block;
  margin: auto;
  margin-top: 70px;
  max-width: 700px;
  width: 100%;
}

#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: center;
  max-width: 700px;
  margin: auto;
}

#service-mi-life-1 > .logo-wrap > .logo {
  width: 45vw;
  max-width: 220px;
  margin-top: 30px;
}

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

#service-mi-life-1 > .images {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  margin: auto;
  margin-top: 30px;
  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 .image1 {
  max-width: 400px;
  width: 100vw;
}

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

#service-mi-life-1 > .images .image2 {
  max-width: 400px;
  width: 100vw;
}

#service-mi-life-1 > .images .image2 .text {
  color: #8E9B90;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 1.6em;
  font-size: 14pt;
  margin-top: 20px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 10;
  position: relative;
}

#service-mi-life-1 > .images > .image2 > .images {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 98%;
  margin-top: -45px;
  z-index: -1;
}

#service-mi-life-1 > .images > .image2 > .images img {
  width: 68px;
  display: block;
}

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

#service-mi-life-1 > .more {
  max-width: 420px;
  width: 100%;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
}

#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: 40%;
  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;
  max-width: 600px;
  margin-top: 0px;
}

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

#service-mi-life-1 > .more .links li {
  margin-top: 20px;
}

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

/* 問い合わせボタン */
#contact-button {
  position: fixed;
  cursor: pointer;
  right: 6%;
  bottom: 30px;
  padding-left: 0px;
  padding-top: 0px;
}

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