@import url("https://fonts.googleapis.com/css?family=Oswald:400&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,500&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,900&display=swap&subset=japanese");
/*--------------------------------------
header
--------------------------------------*/
header {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  header {
    box-shadow: none;
  }
}

/*--------------------------------------
mv
--------------------------------------*/
#mv {
  height: 720px;
  background: url(../img/mv.jpg) center center;
  background-size: cover;
  display: table;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 1;
  position: relative;
}
#mv::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #fff;
  display: block;
  transition: 1.5s;
}
#mv.on::after {
  opacity: 0;
}
#mv h2 {
  display: table-cell;
  vertical-align: middle;
  padding: 0 calc(50% - 500px);
  width: 100%;
  height: 720px;
  font-size: 37px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: normal;
  font-family: "Noto Sans JP";
  font-weight: 500;
}
#mv h2 strong {
  color: #dd8a95;
  font-weight: 500;
  font-family: "Roboto";
}
@media (max-width: 768px) {
  #mv {
    background: url(../img/mv_sp.jpg) center center;
    background-size: cover;
    height: 86.666667vw;
  }
  #mv h2 {
    height: 86.666667vw;
    margin-top: -17vw;
    font-size: 5.8666666vw;
    padding-left: 25px;
    padding-bottom: 13vw;
  }
}

/*--------------------------------------
#news
--------------------------------------*/
#news {
  width: 1000px;
  margin: -50px auto 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 30px 50px;
  text-align: center;
  position: relative;
  z-index: 10;
}
#news h2 {
  font-size: 0;
  text-align: left;
}
#news h2 .en {
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto";
  font-weight: 300;
  letter-spacing: 0.2em;
  font-size: 24px;
  color: #dd8a95;
  padding-right: 22px;
  margin-right: 22px;
  line-height: 1;
  border-right: 1px solid #dd8a95;
}
#news h2 .ja {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
#news dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  text-align: left;
}
#news dl dt {
  padding: 21px 10px 0 20px;
  width: 120px;
  font-family: "Oswald";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
#news dl dt:not(:first-of-type) {
  border-top: 1px solid #dadada;
}
#news dl dd {
  padding: 15px 10px 15px 0;
  width: calc(100% - 120px);
  line-height: 1.7;
}
#news dl dd span.category {
  font-size: 10px;
  color: #dd8a95;
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  padding: 2px 5px;
  border: 1px solid #dd8a95;
  line-height: 1;
  border-radius: 2px;
  width: 60px;
  text-align: center;
}
#news dl dd a {
  display: inline-block;
  margin-left: 30px;
  width: calc(100% - 90px);
}
#news dl dd a:hover {
  color: #dd8a95;
}
#news dl dd:not(:first-of-type) {
  border-top: 1px solid #dadada;
}
#news a.list {
  margin-top: 10px;
  width: 165px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  position: relative;
  letter-spacing: 0.05em;
  background: #ebebeb;
  padding-right: 10px;
}
#news a.list::before, #news a.list::after {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background: #111;
  position: absolute;
  top: calc(50% - 1px);
  right: calc(50% - 3.5em);
  transform: rotate(45deg) scale(0.8);
  transform-origin: right bottom;
}
#news a.list::after {
  transform: rotate(-45deg) scale(0.8);
  transform-origin: right top;
}
#news a.list:hover {
  color: #dd8a95;
}
#news a.list:hover::before, #news a.list:hover::after {
  background: #dd8a95;
}
@media (max-width: 768px) {
  #news {
    width: auto;
    margin: -40px 15px auto;
    padding: 17px 15px 22px;
    text-align: center;
  }
  #news h2 .ja {
    font-size: 14px;
  }
  #news dl {
    display: block;
    margin-top: -10px;
  }
  #news dl dt {
    padding: 15px 10px 0 0;
    margin-top: 15px;
    width: auto;
  }
  #news dl dt:not(:first-of-type) {
    border-top: 1px solid #dadada;
  }
  #news dl dd {
    padding: 0;
    width: auto;
    margin-top: 10px;
    position: relative;
  }
  #news dl dd span.category {
    position: absolute;
    top: -30px;
    left: 8.1em;
  }
  #news dl dd a {
    display: block;
    margin-left: 0;
    width: auto;
    line-height: 1.5;
    font-size: 16px;
  }
  #news dl dd:not(:first-of-type) {
    border-top: none;
  }
  #news a.list {
    margin-top: 10px;
    width: 165px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 3px;
    position: relative;
    letter-spacing: 0.05em;
    background: #ebebeb;
    padding-right: 10px;
  }
  #news a.list::before, #news a.list::after {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background: #111;
    position: absolute;
    top: calc(50% - 1px);
    right: calc(50% - 3.5em);
    transform: rotate(45deg) scale(0.8);
    transform-origin: right bottom;
  }
  #news a.list::after {
    transform: rotate(-45deg) scale(0.8);
    transform-origin: right top;
  }
  #news a.list:hover {
    color: #dd8a95;
  }
  #news a.list:hover::before, #news a.list:hover::after {
    background: #dd8a95;
  }
}

/*--------------------------------------
main
--------------------------------------*/
main {
  width: 1100px;
  margin: auto;
}
@media (max-width: 768px) {
  main {
    width: auto;
    margin: auto 15px;
  }
}

/*--------------------------------------
lead
--------------------------------------*/
.lead {
  width: 970px;
  margin: 150px auto 0;
}
.lead h2 {
  font-family: "Roboto";
  text-align: center;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: 0.3em;
  line-height: 1;
  padding-bottom: 30px;
  position: relative;
}
.lead h2::after {
  position: absolute;
  width: 50px;
  height: 6px;
  background: #dd8a95;
  line-height: 1;
  content: "";
  display: block;
  bottom: 0;
  left: calc(50% - 25px);
}
.lead p {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .lead {
    width: auto;
    margin: 100px auto 0;
  }
  .lead h2 {
    font-size: 32px;
  }
  .lead p {
    margin-top: 30px;
    font-size: 16px;
  }
}

/*--------------------------------------
core
--------------------------------------*/
#core {
  width: 970px;
  margin: 60px auto;
}
#core h3 {
  background: #dd8a95;
  text-align: center;
  line-height: 1;
  color: #fff;
  padding: 12px 0;
  border-radius: 3px;
  margin-bottom: 30px;
}
#core h3 .en {
  font-family: "Noto Sans JP";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
}
#core h3 .ja {
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto";
  font-size: 14px;
  margin-left: 15px;
  letter-spacing: 0.07em;
}
#core ul {
  display: flex;
  justify-content: space-between;
}
#core ul li {
  width: 450px;
  font-size: 0;
}
#core ul li p.num {
  margin-right: 15px;
  width: 80px;
  height: 80px;
  border: 1px solid #dd8a95;
  display: inline-flex;
  vertical-align: middle;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1;
  font-family: serif;
  font-family: "Roboto";
  color: #dd8a95;
  letter-spacing: 0.05em;
}
#core ul li p.num .tech {
  font-size: 12px;
}
#core ul li p.num .number {
  font-size: 46px;
  font-weight: 300;
  font-style: italic;
}
#core ul li h4 {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 95px);
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 24px;
  color: #dd8a95;
}
#core ul li p.main {
  font-size: 18px;
  line-height: 1.9;
  margin: 8px auto 40px;
}
#core ul li.tech02 figure {
  position: relative;
}
#core ul li.tech02 figure img:first-of-type {
  width: 330px;
}
#core ul li.tech02 figure img:nth-of-type(2) {
  position: absolute;
  top: 120px;
  left: 200px;
  width: 210px;
}
@media (max-width: 768px) {
  #core {
    width: auto;
    margin: 50px auto;
  }
  #core h3 {
    padding: 7px 0;
    margin-bottom: 0;
  }
  #core h3 .en {
    font-size: 23px;
  }
  #core h3 .ja {
    font-size: 12px;
    display: block;
    margin: 5px auto auto;
  }
  #core ul {
    display: block;
    margin: 0;
  }
  #core ul li {
    width: auto;
    margin: 10px auto 0;
    padding: 0;
  }
  #core ul li p.num {
    transform: scale(0.5);
    transform-origin: left center;
    margin-right: -35px;
  }
  #core ul li h4 {
    vertical-align: middle;
    width: calc(100% - 45px);
    font-size: 22px;
    margin: 0 -30px 0 0;
    white-space: nowrap;
  }
}
@media (max-width: 768px) and (max-width: 370px) {
  #core ul li h4 {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  #core ul li p.main {
    font-size: 16px;
    margin: -10px auto 15px;
  }
}
@media (max-width: 768px) {
  #core ul li.tech02 figure {
    position: relative;
  }
  #core ul li.tech02 figure img:first-of-type {
    width: auto;
  }
  #core ul li.tech02 figure img:nth-of-type(2) {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin-top: -40px;
    margin-left: 25vw;
  }
}

/*--------------------------------------
items
--------------------------------------*/
#items {
  width: 1100px;
  margin: auto;
}
#items .block {
  height: 540px;
  display: flex;
  border: 8px solid #00a3b2;
  border-radius: 16px;
  margin-top: 80px;
  overflow: hidden;
}
#items .block:nth-child(even) {
  flex-direction: row-reverse;
}
#items .block figure {
  height: 524px;
  width: 50%;
  background: url(../img/syuekiUP.jpg) center center;
  background-size: cover;
}
#items .block .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 0 56px;
  height: 524px;
  vertical-align: middle;
}
#items .block .text h3 {
  width: 100%;
  font-size: 32px;
  font-family: "Noto Sans JP";
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}
#items .block .text h3 span.kakko {
  display: inline-block;
  margin-left: -0.4em;
  margin-right: -1em;
}
#items .block .text h3 span.small {
  font-size: 60%;
}
#items .block .text h3 img {
  max-height: 65px;
}
#items .block .text p.main {
  font-size: 18px;
  line-height: 1.9;
  margin: 40px auto 35px;
  width: 430px;
  max-width: 100%;
  display: block;
}
#items .block .text a {
  display: block;
  width: 100%;
  background: #00a3b2 url(../img/icon_newwin.png) calc(50% + 5em) center no-repeat;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  border-radius: 3px;
}
#items .block .text a:hover {
  opacity: 0.8;
}
#items .block#kaigo figure {
  background-image: url(../img/syuekiUP.jpg);
}
#items .block#medical {
  border-color: #009fde;
}
#items .block#medical figure {
  background-image: url(../img/medical_ph.jpg);
}
#items .block#medical .text a {
  background-color: #009fde;
}
#items .block#zaitaku {
  border-color: #00489e;
}
#items .block#zaitaku figure {
  background-image: url(../img/zaitaku_ph.jpg);
}
#items .block#zaitaku .text h3 {
  color: #00489e;
}
@media (min-width: 769px) {
  #items .block#zaitaku .text h3 img {
    max-height: 1000px;
    height: 120px;
  }
}
#items .block#zaitaku .text a {
  background-color: #00489e;
}
#items .block#api {
  border-color: #a35282;
}
#items .block#api figure {
  background-image: url(../img/api_ph.jpg);
}
#items .block#api .text h3 {
  color: #a35282;
}
#items .block#api .text a {
  background-color: #a35282;
}
@media (min-width: 769px) {
  #items h3 img {
    height: 65px;
  }
}
@media (max-width: 768px) {
  #items {
    width: auto;
  }
  #items .block {
    height: auto;
    display: block;
    border-width: 4px;
    border-radius: 8px;
    margin-top: 50px;
  }
  #items .block figure {
    display: block;
    width: 100%;
    height: 100vw;
  }
  #items .block .text {
    display: block;
    width: 100%;
    height: auto;
    padding: 20px 15px;
  }
  #items .block .text h3 {
    font-size: 22px;
    line-height: 1.1;
  }
  #items .block .text h3 img {
    height: 53px;
    display: block;
    margin: auto;
  }
  #items .block .text p.main {
    font-size: 16px;
    margin: 15px auto;
  }
  #items .block .text a {
    background-position: calc(50% + 4.5em) center;
  }
  #items .block#kaigo figure {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
  }
  #items .block#medical figure {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
  }
  #items .block#zaitaku figure {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
  }
  #items .block#zaitaku .text h3 img {
    max-height: 1000px;
    height: 80px;
  }
  #items .block#api figure {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
  }
}

/*--------------------------------------
exposition
--------------------------------------*/
.exposition {
  display: block;
  width: 66px;
  padding: 0;
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 50px;
}
.exposition a {
  display: block;
  writing-mode: vertical-rl;
  background: #D23E29;
  padding: 20px 10px;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  font-size: 24px;
  border-radius: 8px 0 0 8px;
}
.exposition a .booth {
  display: block;
  font-size: 16px;
}
.exposition a .info {
  display: inline-block;
  font-size: 80%;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .exposition {
    transform: scale(0.8);
    transform-origin: right bottom;
  }
}
/*# sourceMappingURL=index.css.map */