@charset "utf-8";

/*------------------------------------------------------------
  web fonts
------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap');

:root {
  --main-color: #1E7BE7;
  --sub-color: #FFDB11;
  --sub2-color: #FFE311;
  --bg-color: #FAF8F4;
}

/*------------------------------------------------------------
  basic layout
------------------------------------------------------------*/
html,
body {
  font-family:"Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  line-height:1.8;
  color:#000;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
html {
  -webkit-font-smoothing: antialiased;
}
body {
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

body * {
  box-sizing: border-box;
}

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

a {
  border: none;
  text-decoration: none;
  transition: 0.3s;
  color: #000;
}
@media only screen and (min-width: 799px) {
  a:hover {
  }
}

.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 798px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/********** ¥Õ¥§©`¥É¥¤¥ó ************/
.show-cnt{
  transform: translateY(15px);
  transition: 0.3s ease-out;
  opacity: 0;
}
.show-cnt.run{
  transform:translateY(0);
  opacity: 1;
}

/********** ¹²Í¨ ************/
.bln-txt{
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  color: var(--color-main);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.bln-txt:before, .bln-txt:after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--main-color);
}
.bln-txt:before {
  margin-right: .15em;
  transform: rotate(60deg);
}
.bln-txt:after {
  margin-left: .15em;
  transform: rotate(-60deg);
}
.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 3px #D9D9D9;
  border-radius: 50px;
  padding: 5px;
  height: 70px;
  background-color: #fff;
  color: #000;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 80px;
  font-weight: 700;
  margin-bottom: 15px;
}
.btn:hover{
  background-color: #D9D9D9;
}
.btn.tel{
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  pointer-events: none;
}
.btn.tel span{
  display: flex;
  margin-right: 5px;
  width: 28px;
}
.btn:last-of-type{
  margin-bottom: 0;
}
.inner{
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.border-tit {
  margin-bottom: 60px;
}
.border-tit .tit{
  position: relative;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 20px;
}
.border-tit .tit:before{
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--main-color);
  border-radius: 10px;
}
.border-tit .txt{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.8;
  position: relative;
}
.border-tit .txt.check{
  padding-left: 2.5%;
}
.border-tit .txt.check:before{
  content: '';
  position: absolute;
  top: 28%;
  left: 0;
  width: 1.5%;
  height: 0;
  padding-top: 1.5%;
  background: url(../img/icon-check01.svg) no-repeat left top / contain;
}
.sec-tit{
  text-align: center;
  font-size: clamp(3rem, 4.2vw, 5.4rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 60px;
}
@media (max-width: 798px) {
  .btn{
    border: solid 2px #D9D9D9;
    margin-bottom: 10px;
    height: 50px;
    line-height: 50px;
  }
  .btn.tel{
    pointer-events: inherit;
  }
  .border-tit {
    margin-bottom: 30px;
  }
  .border-tit .tit{
    margin-bottom: 10px;
    padding-left: 10px;
  }
  .border-tit .tit:before{
    width: 3px;
  }
  .border-tit .txt.check{
    padding-left: 15px;
  }
  .border-tit .txt.check:before{
    top: 8px;
    width: 10px;
    height: 10px;
    padding-top: 0;
  }
  .sec-tit{
    margin-bottom: 30px;
  }
}

/********** contact-bn ************/
.contact-bn{
  padding: 80px 0;
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.contact-bn .bn{
  background: url(../img/contact-bn.jpg) no-repeat top center / cover;
  border-radius: 10px;
  padding: 60px 10px 10px;
}
.contact-bn .bn .midashi{
  font-size: clamp(1.8rem, 2.2vw, 3rem);
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: var(--sub2-color);
  margin: 0 0 50px;
}
.contact-bn .bn ul{
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-bn .bn ul li{
  width: 49%;
}
.contact-bn .bn ul li .bln-txt{
  color: #fff;
}
.contact-bn .bn ul li .bln-txt:before,
.contact-bn .bn ul li .bln-txt:after{
  background-color: var(--sub2-color);
}
.contact-bn .bn ul li .btn{
  color: var(--main-color);
}
.contact-bn .bn ul li .btn.tel{
  font-size: clamp(2rem, 2.6vw, 3.4rem);
  color: var(--main-color);
}
.contact-bn .bn ul li .btn.tel span{
  width: 34px;
}
.contact-bn .bn .time{
  margin: 30px auto 0;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.contact-bn .txt{
  margin: 10px auto 0;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.contact-bn .txt strong{
  color: var(--main-color);
}
@media (max-width: 798px) {
  .contact-bn{
    padding: 30px 0;
  }
  .contact-bn .bn{
    background: url(../img/contact-bn.jpg) no-repeat top center / cover #34a9ee;
    padding: 20px 10px 10px;
  }
  .contact-bn .bn .midashi{
    margin: 0 0 20px;
  }
  .contact-bn .bn ul{
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .contact-bn .bn ul li{
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-bn .bn ul li .btn.tel span{
    width: 28px;
  }
  .contact-bn .bn .time{
    margin: 0 auto;
  }
  .contact-bn .txt{
    margin: 10px 0 0 1.5rem;
    text-indent: -1.5rem;
    text-align: left;
  }
  .contact-bn .txt strong{
    color: var(--main-color);
  }
}

/********** header ************/
header{
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
}
header .logo{
  max-width: 320px;
}
@media (max-width: 1450px) {
  header .logo{
    max-width: 240px;
  }
}
@media (max-width: 798px) {
  header{
    top: 10px;
    left: 10px;
  }
  header .logo{
    max-width: 170px;
  }
}

/********** #mv ************/
#mv{
  position: relative;
  width: 100%;
}
#mv .txt-box{
  max-width: 1340px;
  width: 90%;
  top: 55%;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
}
#mv .txt-box .txt1{
  width: 60%;
  margin: 0 0 4%;
}
#mv .txt-box .txt2{
  font-size: clamp(1.6rem, 2.4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1%;
}
#mv .txt-box .txt2 strong{
  color: var(--main-color);
  font-size: clamp(2rem, 3vw, 4rem);
}
#mv .txt-box .txt3{
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 1.5%;
  background: url(../img/main-line.svg) no-repeat bottom left / contain;
  display: inline-block;
}
#mv .txt-box .txt3 strong{
  font-size: clamp(2.6rem, 3.8vw, 5rem);
  color: var(--main-color);
}
#mv .img .large{
  display: none;
}
@media (min-width: 1451px) {
  #mv .txt-box .txt1{
    max-width: 810px;
    width: 80%;
    margin: 0 0 4%;
  }
  #mv .img .large{
    display: block;
  }
  #mv .img .pc{
    display: none;
  }
}
@media (max-width: 798px) {
  #mv .txt-box{
    max-width: 1340px;
    width: 94%;
    top: initial;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
  }
  #mv .txt-box .txt1{
    width: 55%;
    margin: 0 0 8%;
  }
  #mv .txt-box .txt2{
    font-size: 4.4vw;
    margin: 0 0 1%;
    text-align: center;
  }
  #mv .txt-box .txt2 strong{
    font-size: 5.4vw;
  }
  #mv .txt-box .txt3{
    display: block;
    font-size: 5.8vw;
    text-align: center;
  }
  #mv .txt-box .txt3 strong{
    font-size: 6.8vw;
  }
}

/********** #worries ************/
#worries{
  padding: 130px 0 60px;
  background-color: var(--bg-color);
  position: relative;
  z-index: 1;
}
#worries:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 100px 0 100px;
  border-color: var(--bg-color) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
#worries .midashi{
  font-size: clamp(1.8rem, 2.8vw, 3.6rem);
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 30px;
}
#worries .midashi strong{
  display: inline-block;
  background: url(../img/cloud-g.svg) no-repeat center center / contain;
  padding: 40px 60px;
  font-size: clamp(3rem, 5vw, 6rem);
}
#worries ul{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  align-items: flex-start;
}
#worries ul li{
  width: calc(100% / 3 - 10px);
  position: relative;
}
#worries ul li:before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/balloon01.svg) no-repeat top center / contain;
}
#worries ul li .txt{
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  padding-top: 35px;
  position: relative;
  z-index: 1;
}
#worries ul li .txt strong{
  color: var(--main-color);
}
#worries ul li .ill{
  width: 30%;
  margin: 20px 0 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 798px) {
  #worries{
    padding: 30px 0 40px;
  }
  #worries:after {
    border-width: 20px 50px 0 50px;
  }
  #worries .midashi{
    margin-bottom: 20px;
  }
  #worries .midashi strong{
    padding: 15px 20px;
  }
  #worries ul{
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
  #worries ul li{
    width: 100%;
    margin-bottom: 10px;
  }
  #worries ul li:before{
    width: 88%;
    background: url(../img/balloon01_sp.svg) no-repeat top center / contain;
  }
  #worries ul li:nth-child(even):before{
    transform: scale(-1,1);
    left: inherit;
    right: 0;
  }
  #worries ul li .txt{
    font-size: 1.8;
    padding-top: 9%;
    width: 77%;
  }
  #worries ul li:nth-child(even) .txt{
    margin-left: auto;
  }
  #worries ul li .ill{
    width: 26%;
    margin: -8% 0 0 auto;
  }
  #worries ul li:nth-child(even) .ill{
    margin: -8% auto 0 0;
  }
}
@media (max-width: 410px) {
  #worries ul li .txt{
    padding-top: 6%;
  }
}

/********** #medical ************/
#medical{
  padding: 110px 0;
  background: url(../img/medical-bg.png) no-repeat center center / cover var(--main-color);
  color: #fff;
}
#medical .midashi{
  font-size: clamp(2rem, 3vw, 4rem);
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
#medical .midashi .s1{
  display: inline-block;
  background: url(../img/cloud-w.svg) no-repeat center center / contain;
  padding: 40px 60px;
  font-size: clamp(3.2rem, 5vw, 6.4rem);
  color: var(--main-color);
}
#medical .midashi .s2{
  font-size: clamp(2.6rem, 4vw, 5.4rem);
  color: var(--sub-color);
}
#medical ul{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  align-items: flex-start;
}
#medical ul li{
  width: calc(100% / 2 - 30px);
  position: relative;
}
#medical ul li:nth-child(1):after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(125%,50%);
  width: 40px;
  height: 40px;
  background: url(../img/icon-cross.svg) no-repeat center center / contain;
}
#medical ul li .balloon{
  width: 80%;
  margin: 0 auto 15px;
  background-color: #fff;
  font-size: clamp(1.4rem, 2.2vw, 3rem);
  color: var(--main-color);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  padding: 10px 5px;
  border-radius: 50px;
  position: relative;
}
#medical ul li .balloon:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
#medical ul li .img{
  border-radius: 20px;
  overflow: hidden;
}
#medical .txt{
  text-align: center;
  margin: 40px 0 0;
  font-size: clamp(1.6rem, 2vw, 2.8rem);
  line-height: 1.6;
  font-weight: 700;
  text-shadow: 0 4px 4px rgba(0,0,0,.25);
}
#medical .txt strong{
  color: var(--sub-color);
}
#medical .txt span{
  display: block;
  font-size: clamp(1.2rem, 1.6vw, 2rem);
  font-weight: 500;
}
@media (max-width: 798px) {
  #medical {
    padding: 30px 0 40px;
  }
  #medical .midashi{
    margin-bottom: 20px;
  }
  #medical .midashi .s1{
    padding: 15px 20px;
  }
  #medical ul li{
    width: calc(100% / 2 - 15px);
  }
  #medical ul li:nth-child(1):after{
    transform: translate(125%,70%);
    width: 20px;
    height: 20px;
  }
  #medical ul li .balloon{
    width: 90%;
    margin: 0 auto 5px;
    padding: 5px;
  }
  #medical ul li .balloon:after {
    border-width: 10px 5px 0 5px;
  }
  #medical ul li .img{
    border-radius: 10px;
  }
  #medical .txt{
    margin: 20px 0 0;
    text-shadow: 0 2px 2px rgba(0,0,0,.25);
  }
}

/********** #benefits ************/
#benefits{
  padding: 80px 0;
}
#benefits .midashi{
  font-size: clamp(2rem, 3vw, 4rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
#benefits .midashi strong{
  font-size: clamp(4rem, 6vw, 8rem);
  color: var(--main-color);
}
#benefits .list{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  align-items: flex-start;
  margin-bottom: 80px;
}
#benefits .list li{
  width: calc(100% / 3 - 30px);
  position: relative;
}
#benefits .list li .num{
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--sub-color);
  color: var(--main-color);
  font-size: clamp(2.2rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  border-radius: 30px 30px 0 30px;
  color: var(--main-color);
  width: 60px;
  height: 60px;
  transform: translate(-50%,-50%);
}
#benefits .list li .img{
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
#benefits .list li .txt{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.8;
}
#benefits .list li .txt strong{
  display: block;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 1.4;
  color: var(--main-color);
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 798px) {
  #benefits{
    padding: 40px 0 10px;
  }
  #benefits .midashi{
    margin-bottom: 30px;
  }
  #benefits .list{
    max-width: 450px;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  #benefits .list li{
    width: 100%;
    margin: 0 0 30px;
  }
  #benefits .list li .num{
    line-height: 40px;
    width: 40px;
    height: 40px;
    transform: translate(-30%,-50%);
  }
  #benefits .list li .img{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  #benefits .list li .txt strong{
    margin-bottom: 10px;
  }
}

/********** #greeting ************/
#greeting{
  padding: 110px 0;
  background: url(../img/greeting-bg.jpg) no-repeat center center / cover;
  position: relative;
}
#greeting .img{
  border-radius: 0 30px 30px 0;
  width: 42%;
  max-height: 520px;
  overflow: hidden;
}
#greeting .inner{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#greeting .box{
  width: 57%;
  margin-left: auto;
}
#greeting .box .txt{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.6;
}
#greeting .box .txt strong{
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  color: var(--main-color);
}
#greeting .box .name{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
  margin-top: 20px;
}
#greeting .box .name strong{
  font-size: clamp(2.2rem, 2.6vw, 3.2rem);
}
@media (max-width: 1180px) {
  #greeting .img{
    width: 50%;
  }
  #greeting .box{
    width: 47%;
  }
}
@media (max-width: 798px) {
  #greeting{
    padding: 40px 0;
  }
  #greeting .img{
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: none;
    margin: 0 auto 20px;
  }
  #greeting .inner{
    position: relative;
    left: initial;
    top: initial;
    transform: none;
  }
  #greeting .box{
    width: 100%;
  }
  #greeting .box .name{
    margin-top: 10px;
  }
}

/********** #achievement ************/
#achievement{
  padding: 110px 0;
  position: relative;
}
#achievement .flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 0 60px;
}
#achievement .flex .graph{
  min-width: 400px;
  width: 400px;
}
#achievement .flex .txt-box{
  width: calc(100% - 440px);
}
#achievement .flex .txt-box .midashi{
  font-size: clamp(2.2rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: solid 1px var(--main-color);
}
#achievement .flex .txt-box .count p{
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.6;
  margin-bottom: 5px;
}
#achievement .flex .txt-box .count p:nth-of-type(1):first-letter{
  color: var(--main-color);
}
#achievement .flex .txt-box .count p:nth-of-type(2):first-letter{
  color: #34A9EE;
}
#achievement .flex .txt-box .count p:nth-of-type(3):first-letter{
  color: #55D9E2;
}
#achievement .flex .txt-box .count p strong{
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1;
}
#achievement .flex .txt-box .count p span{
  font-weight: 700;
}
#achievement .flex .txt-box .notes{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.6;
}
#achievement .border-tit .tit strong{
  color: var(--main-color);
}
#achievement .border-tit .tit strong strong{
  font-size: clamp(3rem, 4.2vw, 5.4rem);
}
#achievement .border-tit .tit:before{
  top: 20px;
  height: calc(100% - 20px);
}
#achievement .full-order .tit{
  font-size: clamp(2.2rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--main-color);
}
#achievement .full-order .tit strong{
  display: inline-block;
  position: relative;
  padding: 0 20px;
}
#achievement .full-order .tit strong:before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) skewX(-15deg);
  z-index: -1;
  width: 96%;
  height: 120%;
  background-color: var(--sub2-color);
}
#achievement .full-order .txt{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.8;
}
@media (max-width: 798px) {
  #achievement{
    padding: 40px 0;
  }
  #achievement .flex{
    display: block;
    margin: 0 0 30px;
  }
  #achievement .flex .graph{
    min-width: auto;
    max-width: 350px;
    width: 100%;
    margin: 0 auto 20px;
  }
  #achievement .flex .txt-box{
    width: 100%;
  }
  #achievement .flex .txt-box .midashi{
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  #achievement .border-tit .tit:before{
    top: 10px;
    height: calc(100% - 10px);
  }
  #achievement .full-order .tit{
    margin-bottom: 10px;
  }
  #achievement .full-order .tit strong{
    display: inline-block;
    position: relative;
    padding: 10px 10px 10px 0;
  }
  #achievement .full-order .tit strong:before{
    left: 48%;
    width: 100%;
    height: 80%;
  }
}

/********** #case ************/
#case{
  padding: 110px 0;
  background-color: var(--bg-color);
}
#case .list li{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 50px;
}
#case .list li:nth-child(even){
  flex-flow: row-reverse;
}
#case .list li .ill{
  min-width: 200px;
  width: 200px;
}
#case .list li .balloon{
  width: calc(100% - 230px);
  border: solid 3px #D9D9D9;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
}
#case .list li .balloon:after{
  content: '';
  position: absolute;
  bottom: -18px;
  width: 31px;
  height: 18px;
  background: url(../img/balloon02.svg) no-repeat top -1px center / contain;
  right: 50px;
}
#case .list li:nth-child(even) .balloon:after{
  right: inherit;
  left: 50px;
  transform: scale(-1,1);
}
#case .list li .balloon .midashi{
  font-size: clamp(1.6rem, 2.2vw, 2.6rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 10px;
}
#case .list li .balloon .txt{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.8;
}
#case .list li .balloon .txt .name{
  display: block;
  text-align: right;
  margin-top: 5px;
}
@media (max-width: 798px) {
  #case{
    padding: 40px 0;
  }
  #case .list li{
    display: block;
    margin-bottom: 20px;
  }
  #case .list li:nth-child(even){
    flex-flow: row-reverse;
  }
  #case .list li .ill{
    min-width: auto;
    width: 120px;
    margin: -15px 0 0 auto;
    position: relative;
    z-index: 1;
  }
  #case .list li:nth-child(even) .ill{
    margin: -15px auto 0 0;
  }
  #case .list li .balloon{
    width: 100%;
    border: solid 2px #D9D9D9;
    border-radius: 10px;
    padding: 15px;
  }
  #case .list li .balloon:after{
    bottom: -14px;
    width: 25px;
    height: 14px;
    right: 110px;
  }
  #case .list li:nth-child(even) .balloon:after{
    left: 110px;
  }
  #case .list li .balloon .midashi{
    margin-bottom: 5px;
  }
}

/********** #suitable ************/
#suitable{
  background: url(../img/suitable-bg.jpg) no-repeat center center / cover;
  position: relative;
}
#suitable .inner{
  position: relative;
  padding: 60px 0;
}
#suitable .inner .txt-box{
  width: 70%;
  margin-left: auto;
}
#suitable .inner .txt-box .midashi{
  margin-bottom: 10px;
}
#suitable .inner .txt-box .midashi span{
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--main-color);
  padding: 5px;
  background: linear-gradient(transparent 0%, var(--sub-color) 0%);
}
#suitable .inner .txt-box .midashi span:nth-of-type(2){
  padding-left: 0;
}
#suitable .inner .txt-box .txt{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.8;
}
#suitable .inner .img{
  position: absolute;
  bottom: 0;
  width: 30%;
  left: -5%;
}
@media (max-width: 798px) {
  #suitable .inner{
    position: relative;
    padding: 30px 0 0;
  }
  #suitable .inner .txt-box{
    width: 100%;
  }
  #suitable .inner .txt-box .midashi span{
    display: inline-block;
    margin-bottom: 5px;
  }
  #suitable .inner .txt-box .midashi span:nth-of-type(2){
    padding-left: 5px;
  }
  #suitable .inner .txt-box .txt{
    font-size: clamp(1.4rem, 1.6vw, 2rem);
    line-height: 1.8;
  }
  #suitable .inner .img{
    position: relative;
    bottom: initial;
    width: 50%;
    left: initial;
    margin: 0 auto;
  }
}

/********** #flow ************/
#flow{
  padding: 110px 0 50px;
}
#flow .list{
  padding-bottom: 50px;
}
#flow .list > li{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  border-radius: 20px;
  background-color: var(--bg-color);
  padding: 30px;
  position: relative;
  margin-bottom: 25px;
}
#flow .list > li:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 50px 0 50px;
  border-color: var(--main-color) transparent transparent transparent;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#flow .list > li:first-child:before{
  display: none;
}
#flow .list > li .txt-box{
  width: calc(100% - 310px);
}
#flow .list > li .txt-box .midashi{
  position: relative;
  font-size: clamp(2.2rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--main-color);
  padding: 0 0 0 12%;
}
#flow .list > li .txt-box .midashi .op{
  display: inline-block;
  border: solid 1px var(--main-color);
  border-radius: 3px;
  padding: 3px 10px;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
}
#flow .list > li .txt-box .midashi .num{
  position: absolute;
  top: -25%;
  left: 0;
  width: 10%;
  line-height: 60px;
  text-align: center;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  background: url(../img/balloon03.svg) no-repeat center center / contain;
}
#flow .list > li .txt-box .txt{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.8;
}
#flow .list > li .txt-box .info{
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
#flow .list > li .txt-box .info span{
  display: block;
  min-width: 60px;
  width: 60px;
  padding: 5px;
  color: #fff;
  text-align: center;
  background-color: var(--main-color);
  line-height: 1.3;
}
#flow .list > li .txt-box .info strong{
  display: block;
  width: calc(100% - 70px);
}
#flow .list > li .txt-box .btn-box{
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding-top: 10px;
}
#flow .list > li .txt-box .btn-box li{
  margin-top: 20px;
}
#flow .list > li .txt-box .btn-box li a{
  color: var(--main-color);
}
#flow .list > li .img{
  min-width: 280px;
  width: 280px;
  border-radius: 10px;
  overflow: hidden;
}
#flow .table table{
  width:100%;
  border-collapse: separate;
  border-radius: 10px;
  border-left: solid 1px #D9D9D9;
  border-top: solid 1px #D9D9D9;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.6;
}
#flow .table table tr:nth-child(odd){
  background-color: var(--bg-color);
}
#flow .table table tr:first-child th{
  border-radius: 10px 0 0 0;
}
#flow .table table tr:first-child td{
  border-radius: 0 10px 0 0;
}
#flow .table table tr:last-child th{
  border-radius: 0 0 0 10px;
}
#flow .table table tr:last-child td{
  border-radius: 0 0 10px 0;
}
#flow .table table th{
  border-bottom: solid 1px #D9D9D9;
  border-right: solid 1px #D9D9D9;
  color: var(--main-color);
  text-align: left;
  padding: 20px;
  width: 300px;
}
#flow .table table td{
  border-bottom: solid 1px #D9D9D9;
  border-right: solid 1px #D9D9D9;
  padding: 20px;
  font-weight: 700;
}
#flow .table table td span{
  display: block;
  margin-top: 10px;
  font-weight: 400;
}
#flow .table .notes{
  margin-top: 10px;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.6;
}
@media (max-width: 1000px) {
  #flow .list > li .txt-box .midashi .num{
    line-height: 6vw
  }
}
@media (max-width: 798px) {
  #flow{
    padding: 40px 0;
  }
  #flow .list > li{
    display: block;
    border-radius: 10px;
    padding: 20px 15px;
    margin-bottom: 15px;
  }
  #flow .list > li:before {
    top: -15px;
    border-width: 25px 25px 0 25px;
  }
  #flow .list > li .txt-box{
    width: 100%;
  }
  #flow .list > li .txt-box .midashi{
    margin-bottom: 20px;
    padding: 0 0 0 50px;
  }
  #flow .list > li .txt-box .midashi .num{
    position: absolute;
    top: -5px;
    left: 0;
    width: 40px;
    line-height: 40px;
    font-size: 1.6rem;
  }
  #flow .list > li .txt-box .info span{
    min-width: 40px;
    width: 40px;
    padding: 3px;
  }
  #flow .list > li .txt-box .info strong{
    width: calc(100% - 50px);
  }
  #flow .list > li .txt-box .btn-box{
    padding-top: 10px;
  }
  #flow .list > li .txt-box .btn-box li{
    margin-top: 15px;
  }
  #flow .list > li .img{
    min-width: auto;
    width: 100%;
    margin-top: 20px;
  }
  #flow .table table th{
    padding: 10px;
    width: 120px;
  }
  #flow .table table td{
    padding: 10px;
    vertical-align: middle;
  }
  #flow .table table td span{
    margin-top: 5px;
  }
  #flow .table .notes{
    margin-top: 5px;
  }
}

/********** #message ************/
#message{
  padding: 110px 0;
  background: url(../img/message-bg.jpg) no-repeat center center / cover;
  position: relative;
}
#message .img{
  border-radius: 30px 0 0 30px;
  width: 42%;
  max-height: 700px;
  overflow: hidden;
  margin-left: auto;
}
#message .inner{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#message .box{
  width: 57%;
}
#message .box .midashi{
  font-size: clamp(2.2rem, 2.6vw, 4rem);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--main-color);
}
#message .box .midashi .dots{
  background-image: radial-gradient(circle at center, var(--sub-color) 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .2em;
}
#message .box .txt{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.6;
}
@media (max-width: 1180px) {
  #message .img{
    width: 50%;
  }
  #message .box{
    width: 47%;
  }
}
@media (max-width: 798px) {
  #message{
    padding: 40px 0;
  }
  #message .img{
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: none;
    margin: 20px auto 0;
  }
  #message .inner{
    position: relative;
    left: initial;
    top: initial;
    transform: none;
  }
  #message .box{
    width: 100%;
  }
  #message .box .midashi{
    margin-bottom: 10px;
  }
}

/********** footer ************/
footer .f-inner{
  background-color: var(--bg-color);
  padding: 80px 0;
}
footer .f-inner .logo{
  max-width: 320px;
  width: 90%;
  margin: 0 auto 30px;
}
footer .f-inner .add{
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.4;
  margin: 0 0 10px;
}
footer .f-inner .map{
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.4;
}
footer .f-inner .map a{
  text-decoration: underline;
}
footer .f-inner .map a:hover{
  text-decoration: none;
}
footer .f-inner .map span{
  display: inline-block;
  width: 15px;
  margin-right: 5px;
  transform: translateY(3px);
}
footer .f-inner .info{
  max-width: 960px;
  width: 90%;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  align-items: flex-start;
}
footer .f-inner .info .btn-box{
  width: 42%;
}
footer .f-inner .info .btn-box .time{
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  line-height: 1.4;
  margin: -10px 0 15px;
}
footer .f-inner .info .hours{
  width: 50%;
}
footer .f-inner .info .hours .table{
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 10px;
}
footer .f-inner .info .hours .table table{
  width: 100%;
}
footer .f-inner .info .hours .table th{
  text-align: center;
  font-size: clamp(1.2rem, 1.6vw, 2rem);
  line-height: 1.4;
  font-weight: 700;
  padding: 5px;
  text-align: center;
}
footer .f-inner .info .hours .table tr:first-of-type th{
  border-bottom: solid 1px var(--main-color);
}
footer .f-inner .info .hours .table tr:first-of-type th:nth-child(1){
}
footer .f-inner .info .hours .table td{
  text-align: center;
  font-size: clamp(1.2rem, 1.6vw, 2rem);
  line-height: 1.4;
  font-weight: 700;
  padding: 5px;
  text-align: center;
  color: var(--main-color);
}
footer .f-inner .info .hours .table td.none{
  color: #333;
}
footer .f-inner .info .hours .notes{
  margin: 0 0 5px;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--main-color);
  padding-left: 28px;
  position: relative;
}
footer .f-inner .info .hours .notes:before{
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 25px;
  height: 25px;
  background: url(../img/icon-exclamation.svg) no-repeat top left / 25px;
}
footer address{
  padding: 10px 0 20px;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1120px) {
  footer .f-inner .info .hours .notes{
    padding-left: 23px;
  }
  footer .f-inner .info .hours .notes:before{
    top: 0;
    background: url(../img/icon-exclamation.svg) no-repeat top left / 20px;
  }
}
@media (max-width: 798px) {
  footer .f-inner{
    padding: 40px 0;
  }
  footer .f-inner .logo{
    max-width: 160px;
    width: 90%;
    margin: 0 auto 20px;
  }
  footer .f-inner .add{
    margin: 0 0 5px;
  }
  footer .f-inner .map span{
    width: 10px;
    transform: translateY(3px);
  }
  footer .f-inner .info{
    margin: 30px auto 0;
    display: block;
  }
  footer .f-inner .info .btn-box{
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
  footer .f-inner .info .btn-box .time{
    margin: -5px 0 15px;
  }
  footer .f-inner .info .hours{
    width: 100%;
    margin: 0 auto;
  }
  footer .f-inner .info .hours .table{
    border-radius: 5px;
    padding: 10px;
    margin: 20px 0 10px;
  }
  footer .f-inner .info .hours .table table{
    width: 100%;
  }
  footer .f-inner .info .hours .table th,
  footer .f-inner .info .hours .table td{
    vertical-align: middle;
  }
  footer .f-inner .info .hours .notes{
    padding-left: 18px;
  }
  footer .f-inner .info .hours .notes:before{
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    background: url(../img/icon-exclamation.svg) no-repeat top left / 15px;
  }
  footer address{
    font-size: 1rem;
  }
}

/********** 25.07.16 ×·Ó› ************/
.online{
  background: url(../img/online-bg.jpg) no-repeat center center / cover;
  padding: 50px 0;
}
.online .inner{
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  flex-flow: row-reverse;
}
.online .inner .ill{
  max-width: 456px;
  width: 46%;
}
.online .inner .txt-box{
  max-width: 480px;
  width: 50%;
  text-align: center;
  font-weight: 700;
  color: #fff;
}
.online .inner .txt-box strong{
  font-weight: 700;
  color: var(--sub2-color);
}
.online .inner .txt-box .balloon1{
  font-size: clamp(1.4rem, 1.7vw, 2rem);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.online .inner .txt-box .balloon1:before,
.online .inner .txt-box .balloon1:after{
  content: '';
  width: 13px;
  height: 21px;
  background: url(../img/online-balloon.svg) no-repeat center center / cover;
  margin: 0 10px;
}
.online .inner .txt-box .balloon1:after{
  transform: scale(-1,1);
}
.online .inner .txt-box .balloon2{
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1;
  color: var(--main-color);
  background-color: #C3F0FF;
  padding: 20px 40px;
  border-radius: 50px;
  position: relative;
  width: fit-content;
  margin: 10px auto 20px;
}
.online .inner .txt-box .balloon2:after{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #C3F0FF transparent transparent transparent;
  border-width: 15px 9px 0px 9px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%);
}
.online .inner .txt-box .txt{
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 1.4;
  margin: 0 0 15px;
}
.online .inner .txt-box .txt span{
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.online .inner .txt-box .notes{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  color: #000;
}
.online .inner .txt-box .btn{
  margin: 20px auto 0;
  width: 100%;
  max-width: 400px;
  color: var(--main-color);
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
}
@media (max-width: 798px) {
  .online{
    padding: 30px 0;
  }
  .online .inner{
    display: block;
  }
  .online .inner .ill{
    max-width: 350px;
    width: 100%;
    margin: 20px auto;
  }
  .online .inner .txt-box{
    max-width: none;
    width: 100%;
  }
  .online .inner .txt-box strong{
    font-weight: 700;
    color: var(--sub2-color);
  }
  .online .inner .txt-box .balloon1{
    font-size: clamp(1.4rem, 1.7vw, 2rem);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .online .inner .txt-box .balloon1:before,
  .online .inner .txt-box .balloon1:after{
    content: '';
    width: 13px;
    height: 21px;
    background: url(../img/online-balloon.svg) no-repeat center center / cover;
    margin: 0 10px;
  }
  .online .inner .txt-box .balloon1:after{
    transform: scale(-1,1);
  }
  .online .inner .txt-box .balloon2{
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    line-height: 1;
    color: var(--main-color);
    background-color: #C3F0FF;
    padding: 20px 40px;
    border-radius: 50px;
    position: relative;
    width: fit-content;
    margin: 10px auto 20px;
  }
  .online .inner .txt-box .balloon2:after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #C3F0FF transparent transparent transparent;
    border-width: 15px 9px 0px 9px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%);
  }
  .online .inner .txt-box .txt{
    font-size: clamp(2rem, 2.4vw, 3rem);
    line-height: 1.4;
    margin: 0 0 15px;
  }
  .online .inner .txt-box .txt span{
    font-size: clamp(1.8rem, 2vw, 2.4rem);
  }
  .online .inner .txt-box .notes{
    font-size: clamp(1.2rem, 1.3vw, 1.4rem);
    line-height: 1.4;
    color: #000;
  }
  .online .inner .txt-box .btn{
    margin: 20px auto 0;
    width: 100%;
    max-width: 400px;
    color: var(--main-color);
    font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  }
}