@charset 'UTF-8';

#hero>div h2 img{
  width: 2.8rem;
}
@media screen and (min-width: 768px){
  #hero>div h2 img{
    width: 4.1rem;
  }
}

/*  display  */
#display{
  padding: 2.7rem 0;
  margin-top: 5.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-top: solid 1px rgb(0, 104, 61);
  border-bottom: solid 1px rgb(0, 104, 61);
}
#display .text{
  -webkit-box-ordinal-group: 2;
  order: 1;
}
#display h3{
  padding: 0;
  margin: 0 0 1.8rem 0;
  margin: 2.0rem 0 1.5rem 0;
  font-size: 2.0rem;
  line-height: 1.46;
  text-align: left;
}
#display .image img{
  border-radius: 16px;
}
@media screen and (min-width: 768px){
  #display{
    padding: 3.8rem 0;
    margin-top: 15.0rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  #display .text{
    width: calc(494 / 1100 * 100%);
  }
  #display h3{
    font-size: 2.8rem;
  }
  #display .text p{
    max-width: 40.0rem;
  }
  #display .photo{
    width: calc(556 / 1100 * 100%);
  }
  #display .image img{
    border-radius: 20px;
  }
}

/*  photos  */
#photos{
  padding-top:5.8rem;
  margin-bottom: 1.3rem;
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#photos ul{
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
}
#photos .image{
  text-align: center;
}
#photos .image .vertical{
  display: inline-block;
  vertical-align: middle;
  width: calc(230 / 350 * 100%);
}
#photos p{
  padding: 1.3rem 0;
  margin: 0;
  letter-spacing: calc(0.9 / 18 * 1em);
  font-size: 1.4rem;
  line-height: 2.14;
  text-align: center;
}
#photos .swiper-button-prev,
#photos .swiper-button-next{
  position: absolute;
  top: auto;
  bottom: 0;
  margin: 0;
  width: 4.6rem;
  height: 4.6rem;
  background: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
}
#photos .swiper-button-prev{
  left: 0;
  right: auto;
}
#photos .swiper-button-next{
  left: auto;
  right: 0;
}
#photos .swiper-button-prev:hover,
#photos .swiper-button-next:hover{
  opacity: 0.75;
}
#photos .swiper-button-prev:focus,
#photos .swiper-button-next:focus{
  outline: none;
}
#photos .swiper-button-prev::before,
#photos .swiper-button-next::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: '';
  display: block;
  padding-top: 100%;
}
#photos .swiper-button-prev::before{
  background-image: url(../images/ico_prev.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#photos .swiper-button-next::before{
  background-image: url(../images/ico_next.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#photos .swiper-button-prev::after,
#photos .swiper-button-next::after{
  content: none;
}
@media screen and (min-width: 768px){
  #photos{
    padding: 2.4rem 0 5.8rem 0;
    margin-bottom: 0;
    position: static;
    left: auto;
    width: auto;
    -webkit-transform: none;
    transform: none;
  }
  #photos ul{
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #photos li{
    padding: 1.0rem 0;
    width: calc(350 / 1100 * 100%);
  }
  #photos p{
    font-size: 1.8rem;
    line-height: 1.67;
    text-align: left;
  }
  #photos li:nth-of-type(3) p{
    margin: 0 auto;
    max-width: calc(230 / 350 * 100%);
  }
  #photos p::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-bottom: .3rem;
    margin-right: .8rem;
    width: 1.5rem;
    height: 1.5rem;
    background: url(../images/bg_caption.png) no-repeat 50% 50%;
    border-radius: 50%;
  }
  #photos .image img{
    border-radius: 20px;
  }
  #photos .swiper-button-prev,
  #photos .swiper-button-next{
    display: none;
  }
}

/*  safety  */
#safety{
  position: relative;
  padding: 3.0rem 0;
}
#safety::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  z-index: -10;
  width: 100vw;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: rgb(252, 250, 244);
  background-image: url(../images/bg_section.svg), url(../images/bg_section.svg);
  background-repeat: repeat-x;
  background-position: 0 0, 0 100%;
}
#safety h3{
  padding: 1.8rem 0;
}
#safety>p{
  margin: 0 0 2.8rem 0;
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.88;
  letter-spacing: calc(0.8 / 16 * 1em);
}
#safety .image img{
  border-radius: 16px;
}
#safety .container{
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
#safety h4{
  padding: .8rem 0;
  margin: 0;
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1.67;
  letter-spacing: calc(0.9 / 20 * 1em);
  color: rgb(86, 182, 0);
}
#safety h4::before{
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-bottom: .3rem;
  margin-right: .8rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/bg_caption.png) no-repeat 50% 50%;
  border-radius: 50%;
}
#safety .text{
  padding-bottom: 2.0rem;
}
#safety section .text{
  padding-top: .8rem;
}
@media screen and (min-width: 768px){
  #safety{
    padding: 7.3rem 0;
  }
  #safety::before{
    width: calc(100vw - 19.0rem);
  }
  #safety>p{
    font-size: 1.6rem;
    text-align: center;
  }
  #safety .image img{
    border-radius: 20px;
  }
  #safety .text{
    padding-bottom: 3.0rem;
  }
  #safety>.text{
    padding-bottom: 4.8rem;
  }
  #safety section .text{
    padding-top: 1.6rem;
  }
  #safety h4{
    padding: 1.6rem 0;
    font-size: 2.0rem;
  }
  #safety .container{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  #safety>.container.f>section:nth-of-type(1){
    width: calc(342 / 1100 * 100%);
  }
  #safety>.container.f>section:nth-of-type(2){
    width: calc(684 / 1100 * 100%);
  }
  #safety>.container.s>section{
    width: calc(524 / 1100 * 100%);
  }
  #safety>.container.s .container .image{
    width: calc(342 / 524 * 100%);
  }
  #safety>.container.s .container .text{
    width: calc(154 / 524 * 100%);
  }
  #safety>.container.s .container .text{
    padding-top: 0;
  }
  #safety .photo{
    display: -webkit-box;
    display: flex;
  }
}

/*  painless + conservative + geriatric  */
article>.wrapper>.pcg{
  padding: 4.6rem 0 5.6rem 0;
}
article>.wrapper>.pcg h3{
  padding: 0;
}
article>.wrapper>.pcg>p{
  margin: 0;
  padding: 1.6rem 0 0 0;
  line-height: 1.88;
  letter-spacing: calc(0.8 / 16 * 1em);
  font-size: 1.4rem;
  text-align: left;
}
article>.wrapper>.pcg>.text{
  padding: 1.6rem 0 0 0;
}
article>.wrapper>.pcg>.text p{
  margin: 0;
  line-height: 1.88;
  letter-spacing: calc(0.8 / 16 * 1em);
  font-size: 1.4rem;
  text-align: left;
}
article>.wrapper>.pcg .container{
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
article>.wrapper>.pcg .image{
  margin: 2.5rem 0;
}
article>.wrapper>.pcg .image img{
  border-radius: 16px;
}
#conservative{
  position: relative;
}
#conservative::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  z-index: -10;
  width: 100vw;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: rgb(252, 250, 244);
  background-image: url(../images/bg_section.svg), url(../images/bg_section.svg);
  background-repeat: repeat-x;
  background-position: 0 0, 0 100%;
}
#painless h4{
  padding-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.67;
  letter-spacing: calc(0.9 / 18 * 1em);
  text-align: center;
  border-bottom: solid 1px rgb(0, 104, 61);
}
#painless .text ol{
  padding-left: 1.25em;
  font-size: 1.4rem;
  line-height: 1.86;
  letter-spacing: calc(0.7 / 14 * 1em);
}
#geriatric{
  text-align: center;
}
#geriatric ul{
  padding-left: 1.5em;
  padding-bottom: 1em;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.86;
  letter-spacing: calc(0.7 / 14 * 1em);
  text-align: left;
}
#geriatric h3{
  display: inline-block;
  padding-left: 2.8rem;
  padding-right: 2.8rem;
  background-image: url(../images/bg_pmdhd_l.svg), url(../images/bg_pmdhd_r.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: 0 50%, right 0  top 50%;
}
#geriatric h3 span{
  display: none;
}
@media screen and (min-width: 768px){
  article>.wrapper>.pcg{
    padding: 9.1rem 0;
  }
  article>.wrapper>.pcg>p{
    padding: 1.8rem 0;
    font-size: 1.6rem;
    text-align: center;
  }
  article>.wrapper>.pcg>.text{
    padding: 1.8rem 0;
  }
  article>.wrapper>.pcg>.text p{
    font-size: 1.6rem;
    text-align: center;
  }
  article>.wrapper>.pcg .container{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 4.1rem 0 0 0;
  }
  article>.wrapper>.pcg .image{
    margin: 0;
    flex-basis: 50%;
  }
  article>.wrapper>.pcg .image img{
    border-radius: 20px;
  }
  article>.wrapper>.pcg .text{
    flex-basis: calc(506 / 1100 * 100%);
  }
  #conservative::before{
    width: calc(100vw - 19.0rem);
  }
  #painless .image, #geriatric .image{
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  #painless .text ol{
    margin-top: 3.5rem;
  }
  #painless .container{
    padding-top: 7.2rem;
  }
  #painless .container>.image{
    flex-basis: calc(469 / 1100 * 100%);
  }
  #painless .container>section{
    flex-basis: calc(578 / 1100 * 100%);
  }
  #painless h4{
    padding-bottom: 0.9rem;
    margin-top: 0;
    font-size: 2.2rem;
    line-height: 1.36;
    letter-spacing: calc(1.1 / 22 * 1em);
    text-align: left;
  }
  #painless .text ol{
    font-size: 1.6rem;
  }
  #geriatric h3{
    display: block;
    padding-left: 0;
    padding-right: 0;
    background-image: none;
  }
  #geriatric h3 span{
    display: inline;
  }
  #geriatric .container>.image{
    flex-basis: calc(489 / 1100 * 100%);
  }
  #geriatric .container>.text{
    flex-basis: calc(512 / 1100 * 100%);
  }
  #geriatric .container+.text p{
    text-align: justify;
  }
  #geriatric .container+.text p:first-of-type:first-line{
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
  }
  #geriatric ul{
    font-size: 1.6rem;
    line-height: 1.88;
  }
}

/*  informed  */
#informed{
  position: relative;
  padding: 4.6rem 0 5.6rem 0;
}
#informed::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  z-index: -10;
  width: 100vw;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: rgb(252, 250, 244);
  background-image: url(../images/bg_section.svg), url(../images/bg_section.svg);
  background-repeat: repeat-x;
  background-position: 0 0, 0 100%;
}
#informed .image img{
  border-radius: 20px;
}
#informed h3{
  padding: 0 0 1.6rem 0;
}
#informed>.text{
  padding: 0;
}
#informed .container{
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
#informed .container>.photo{
  position: relative;
  padding-top: calc(125 / 375 * 100vw);
  margin-top: 2.0rem;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#informed .container>.photo .image:not(.monitor) img{
  border-radius: 0;
}
#informed .container>.photo .image.monitor{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  box-sizing: border-box;
  width: calc(267 / 375 * 100vw);
}
#informed .container>.photo .image.monitor img{
  border: solid 1px rgb(0, 104, 61);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#informed .container>.photo .image.monitor::before{
  content: '';
  display: block;
  background: url(../images/bg_monitor.svg) no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  bottom: 0;
  z-index: -10;
  padding-top: calc(71 / 267 * 100%);
  width: calc(22 / 267 * 100%);
  left: calc(137 / 267 * 100%);
  -webkit-transform: translateY(78.87%);
  transform: translateY(78.87%);
}
#informed .container>.text .image{
  margin: 4.3rem 0 2.2rem 0;
}
@media screen and (min-width: 768px){
  #informed{
    padding: 8.5rem 0;
  }
  #informed::before{
    width: calc(100vw - 19.0rem);
  }
  #informed h3{
    padding: 0 0 1.2rem 0;
  }
  #informed>.text{
    padding: 3.5rem 0;
  }
  #informed .image img{
    border-radius: 20px;
  }
  #informed>.text{
    width: calc(506 / 1100 * 100%);
  }
  #informed .container{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  #informed .container>.photo{
    width: calc(645 / 1100 * 100%);
    padding-top: 0;
    margin-top: 0;
    left: auto;
    -webkit-transform: none;
    transform: none;
  }
  #informed .container>.photo .image:not(.monitor) img{
    border-radius: 20px;
  }
  #informed .container>.text{
    width: calc(373 / 1100 * 100%);
  }
  #informed .container>.text .image{
    margin: 0 0 2.6rem 0;
  }
  #informed .container>.photo .image:not(.monitor){
    width: calc(582 / 645 * 100%);
  }
  #informed .container>.photo .image.monitor{
    width: calc(343 / 645 * 100%);
    -webkit-transform: translateY(-78.8%);
    transform: translateY(-78.8%);
  }
  #informed .container>.photo .image.monitor::before{
    padding-top: calc(128 / 343 * 100%);
    width: calc(22 / 343 * 100%);
    left: calc(88 / 343 * 100%);
    -webkit-transform: translateY(93.7%);
    transform: translateY(93.7%);
  }
  #informed .container>.photo .image.monitor img{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

/*  ct  */
#ct h3{
  padding: 0 0 1.6rem 0;
}
#ct>div.container>.image{
  padding: 2.5rem 0 0 0;
}
#ct>div.container>.container{
  padding: 4.0rem 0;
}
#ct>div.container>.container section{
  padding: 2.5rem 0;
  border-bottom: solid 1px rgb(0, 104, 61);
}
#ct>div.container>.container section:first-of-type{
  border-top: solid 1px rgb(0, 104, 61);
}
#ct>div.container>.container section h4{
  padding-bottom: 1.5rem;
  margin: 0;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: calc(1.1 / 22 * 1em);
}
#ct>div.container .image{
  max-width: 22.6rem;
  margin: 0 auto;
}
#ct>div.container .image img{
  border-radius: 16px;
}
#ct ul.container{
  padding: 0;
  margin: 0;
  list-style: none;
}
#ct ul.container li{
  padding: 1.5rem 0;
}
#ct ul.container h4{
  padding-bottom: 1.5rem;
  margin: 0;
  font-weight: normal;
  line-height: 1.36;
  letter-spacing: calc(1.1 / 22 * 1em);
  font-size: 1.7rem;
  color: rgb(86, 182, 0);
}
#ct ul.container h4::before{
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-bottom: .3rem;
  margin-right: .8rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/bg_caption.png) no-repeat 50% 50%;
  border-radius: 50%;
}
#ct ul.container .image{
  max-width: 23.2rem;
  margin: 2.5rem auto;
}

/*  pmd  */
#pmd{
  position: relative;
  text-align: center;
}
#pmd::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  z-index: -10;
  width: 100vw;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: rgb(252, 250, 244);
  background-image: url(../images/bg_section.svg);
  background-repeat: repeat-x;
  background-position: 0 0;
}
#pmd h3{
  display: inline-block;
  padding-left: 2.8rem;
  padding-right: 2.8rem;
  background-image: url(../images/bg_pmdhd_l.svg), url(../images/bg_pmdhd_r.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: 0 50%, 100% 50%;
}
#pmd h3 span{
  display: none;
}
#pmd p{
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.86;
  letter-spacing: calc(0.7 / 14 * 1em);
}
#pmd .button{
  margin: 3.2rem auto;
  max-width: 30.6rem;
}

@media screen and (min-width: 768px){
  #ct{
    padding: 8.8rem 0;
  }
  #ct h3{
    padding: 0 0 2.6rem 0;
  }
  #ct>div.container{
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto;
    -ms-grid-columns: 730fr calc(88 / 1100 * 100%) 282fr;
    grid-template-columns: 730fr 282fr;
    grid-gap: 0 calc(88 / 1100 * 100%);
  }
  #ct>div.container>.text{
    padding-bottom: 1em;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  #ct>div.container>.image{
    padding: 0;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  #ct>div.container>.container{
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    align-self: flex-end;
    padding: 2.8rem 0;
    border-top: solid 1px rgb(112, 112, 112);
    border-bottom: solid 1px rgb(112, 112, 112);
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  #ct>div.container .image{
    max-width: none;
    margin: 0;
  }
  #ct>div.container .image img{
    border-radius: 20px;
  }
  #ct>div.container>.container section{
    flex-basis: calc(340 / 730 * 100%);
    padding: 0;
    border-bottom: none;
  }
  #ct>div.container>.container section:first-of-type{
    border-top: none;
  }
  #ct>div.container>.container section h4{
    font-size: 2.2rem;
  }
  #ct ul.container{
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 3.6rem 0;
  }
  #ct ul.container li{
    flex-basis: calc(527 / 1100 * 100%);
    padding: calc(32 / 1100 * 100%) 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  #ct ul.container li .text{
    flex-basis: calc(235 / 527 * 100%);
  }
  #ct ul.container li .image{
    flex-basis: calc(260 / 527 * 100%);
  }
  #ct ul.container h4{
    font-size: 2.0rem;
    padding-bottom: 2.3rem;
  }
  #ct ul.container .image{
    max-width: none;
    margin: 0;
  }
  #pmd{
    padding: 8.5rem 0;
  }
  #pmd h3{
    display: block;
    padding-top: .6rem;
    padding-left: 0;
    padding-right: 0;
    background-image: none;
  }
  #pmd h3 span{
    display: inline;
  }
  #pmd p{
    font-size: 1.6rem;
    line-height: 1.88;
    text-align: center;
  }
  #pmd .button{
    margin-bottom: 0;
  }
}
