@charset "utf-8";
/*
Theme Name:株式会社LIH
Theme URl:http://lih.co.jp
Description:株式会社LIH
Author: 株式会社LIH
Version: 1.0
*/
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #272727;
}
.wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
header {
  z-index: 3;
  position: fixed;
  width: 100%;
  background: #003365;
}
main {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
footer {
  position: relative;
  z-index: 2;
  min-width: 100%;
  margin-top: auto;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.inner {
  max-width: 1000px;
  margin: 0 auto;
}
.TB-br,.SP-br {
  display: none;
}
/* header */
.header-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-contents h1 {
  color: #FFF;
  font-size: 20px;
}
.header-contents .btn {
  display: block;
  width: 268px;
  height: 50px;
  padding-left: 12px;
  line-height: 50px;
  background: #FFF100;
  color: #003365;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: .4s;
}
.reflection-img {
  height: 230px;
}
.reflection-img .circle {
  display: none;
}
.header-contents .btn:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  margin: 0 0 4px 12px;
  background: url(./img/header_arrow.png);
  background-size: cover;
  vertical-align: middle;
  transition: .4s;
}
.header-contents .btn:hover {
  background: #fff882;
  color: #829576;
}
.header-contents .btn:hover:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  margin: 0 0 4px 12px;
  background: url(./img/header_arrow-hover.png);
  background-size: cover;
  vertical-align: middle;
}

/* footer */
.footer-contents {
  padding: 35px 0;
  background: #d4d4d4;
}
.footer-logo img {
  max-width: 165px;
  margin: 0 auto 35px;
}
.footer-lists {
  display: flex;
  max-width: 900px;
  width: 100%;
  margin: 0 auto!important;
  font-size: 15px;
  line-height: 1.8;
}
.footer-lists li {
  width: 48%;
}
.footer-lists li:first-child {
  margin-right: 20px;
}
.copy {
  padding: 13px 0;
  background: #003365;
}
.copy a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  font-size: 13px;
}

/* floating */
.floating {
  position: fixed;
  top: 60px;
  right: 0;
}
.floating-img {
  position: relative;
  width: 70px;
  height: 451px;
  overflow: hidden;
  cursor: pointer;
}
/* reflection */
.reflection {
  height: 100%;
  width: 30px;
  position :absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 3.2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 3.2s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 3.2s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 3.2s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 3.2s ease-in-out infinite;
}
@keyframes reflection {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
  0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
  0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
  0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}
/* modal */
.modalArea {
  visibility: hidden; /* displayではなくvisibility */
  opacity : 0;
  position: fixed;
  z-index: 10; /* サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
}
.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 90%;
  height: 90%;
  max-width: 1000px;
  padding: 10px 30px;
  background-color: #FFF;
  overflow: auto;
}
.closeModal {
  position: absolute;
  width: 37px;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}
.is-show { /* モーダル表示用クラス */
  visibility: visible;
  opacity : 1;
}
#openModal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
}
/* modalContents */
.modalContents h2 {
  position: relative;
  margin: 107px 0 35px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.modalContents h2 span {
  color: #5985B2;
  font-size: 25px;
}
.modalContents h2:before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  left: 50%;
  top: -65px;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: url(./img/modal_heading-icon.png);
  background-size: cover;
}
.modal-itms {
  display: flex;
  justify-content: space-between;
  max-width: 885px;
  margin: 0 auto;
}
.modal-itms figcaption {
  max-height: 642px;
}
.modal-itms figcaption p {
  font-size: 18px;
  line-height: 1.8;
}
.modal-itms figcaption p span {
  font-size: 20px;
  color: #d40f12;
  font-weight: bold;
  border-bottom: solid 1px #d40f12;
}
.modalItms-pic {
  position: relative;
  width: 230px;
  height: 230px;
  overflow: hidden;
  border-radius: 50%;
  z-index: 1;
}
.modal-dl {
  position: relative;
  top: -65px;
}
.modal-dl dl {
  display: flex;
  align-items: flex-start;
  max-width: 885px;
  margin: 0 auto 30px;
}
.modal-dl dl dt img {
  width: 100px;
  margin-right: 10px;
}
.modal-dl dl dd {
  flex: 2;
}
.modal-dl dl dd p {
  font-size: 18px;
}
.modal-dl dl dd .flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
}
.modal-dl dl dd .flex .date {
  display: inline-block;
  width: 37px;
  height: 16px;
  margin-right: 5px;
  line-height: 16px;
  background: #e62a5f;
  color: #FFF;
  font-size: 11px;
  text-align: center;
}
.modal-dl dl dd .flex .line {
  text-decoration: line-through;
}
.modal-dl dl dd .flex .m_right {
  margin-right: 17px;
}
.modal-dl dl dd .dd_strong {
  font-weight: bold;
}

/* ----------
  1024px
  ---------- */
@media (max-width: 1024px) {
  .inner {
    padding: 0 20px;
  }
  /* header */
  .header-contents.inner {
    padding: 0 0 0 20px;
  }

  /* modal */
  .modal-dl {
    top: 0;
  }
}

/* ----------
  768px
  ---------- */
@media (max-width: 768px) {
  .TB-br {
    display: block;
  }
  .PC-br {
    display: none;
  }
  /* header */
  .header-contents h1 {
    font-size: 14px;
  }
  .header-contents .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    padding: 0;
  }
  .header-contents .btn span {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
  }
  .header-contents .btn:after {
    content: "";
    display: block;
    width: 25px;
    height: 20px;
    margin: 0;
    background: url(./img/header_mail.png);
    background-size: cover;
  }
  .header-contents .btn:hover:after {
    content: "";
    display: inline-block;
    margin: 0;
    background: url(./img/header_mail.png);
    background-size: cover;
    vertical-align: middle;
    width: 25px;
    height: 20px;
  }

  /* footer */
  .footer-lists {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-lists li:first-child {
    margin: 0 auto 20px;
  }
  .footer-lists li {
    max-width: 290px;
    width: 100%;
    margin: 0 auto;
  }

  /* floating */
  .floating-img {
    width: 60px;
    height: 386px;
  }
  /* modal */
  .modalContents h2 {
    margin-bottom: 25px;
    font-size: 30px;
  }
  .modalContents h2 span {
    font-size: 20px;
  }
  .modal-itms {
    flex-direction: column;
  }
  .modalItms-pic {
    width: 150px;
    height: 150px;
    margin: 20px auto;
  }
  .modal-dl dl {
    flex-direction: column;
  }
  .modal-dl dl dt img {
    margin: 0 auto 10px;
  }
  .modal-itms figcaption p,.modal-dl dl dd p {
    font-size: 16px;
  }
  .modal-itms figcaption p span {
    font-size: 18px;
  }
}

/* ----------
  480px
  ---------- */
@media (max-width: 480px) {
  .SP-br {
    display: block;
  }

  /* floating */
  .floating-img {
    width: 34px;
    height: 220px;
  }
  /* modal */
  .modalContents h2 {
    font-size: 26px;
  }
  .modalContents h2 span {
    font-size: 18px;
  }
}
