@charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  letter-spacing: .07em;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* IE */
@media all and (-ms-high-contrast:none) {
  body {
    font-family: "メイリオ", Meiryo, "Noto Sans Japanese", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}

/* PC */
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }

  #wrap {
    min-width: 1000px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

/*------------------------------
  ボタン・リンク
------------------------------*/
a {
  color: inherit;
}

.btn {
  align-items: center;
  border: none;
  border-radius: 10px;
  display: flex;
  font-family: inherit;
  font-weight: bold;
  outline: none;
  overflow: hidden;
  padding: 11px 47px 11px 20px;
  position: relative;
  text-decoration: none;
}

.btn.back {
  padding: 11px 20px 11px 47px;
}

.btn.jcc {
  justify-content: center;
}

.btn.light {
  background: #fff;
  color: #e94a23;
}

.btn.dark {
  background: #262626;
  color: #fff;
}

.btn.hot {
  background: #e94a23;
  color: #fff;
}

.btn:after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px 10px;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 27px;
}

.btn.back:after {
  left: 0;
  right: auto;
}

.btn.light:after {
  background-color: #eaeaea;
  background-image: url(/ihinavi/common/img/ico_btn_light.png);
}

.btn.dark:after {
  background-color: #000;
  background-image: url(/ihinavi/common/img/ico_btn_dark.png);
}

.btn.hot:after {
  background-color: #cf421f;
  background-image: url(/ihinavi/common/img/ico_btn_dark.png);
}

.btn.light.back:after {
  background-image: url(/ihinavi/common/img/ico_btn_light_back.png);
}

.btn.dark.back:after {
  background-image: url(/ihinavi/common/img/ico_btn_dark_back.png);
}

.btn.hot.back:after {
  background-image: url(/ihinavi/common/img/ico_btn_dark_back.png);
}

/* PC */
@media screen and (min-width: 769px) {
  a {
    transition: .2s;
  }

  a:hover {
    opacity: .7;
    text-decoration: none;
  }

  .btn {
    cursor: pointer;
    transition: .2s;
  }

  .btn:hover {
    opacity: .7;
  }
}

/*------------------------------
  ヘッダー
------------------------------*/
#header {
  background: #000;
  color: #fff;
}

.logo {
  font-size: 2.4rem;
  font-weight: bold;
}

.logo__link {
  color: #fff;
  text-decoration: none;
}

/* PC */
@media screen and (min-width: 769px) {
  .header__inn {
    margin: 0 auto;
    width: 1100px;
  }

  .header__top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 8px 0 6px;
  }

  .utility {
    align-items: center;
    display: flex;
    justify-content: flex-end;
  }

  .utility__item {
    margin-left: 12px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .header__top {
    align-items: center;
    display: flex;
    height: 66px;
    padding: 0 66px 0 15px;
  }

  .logo {
    font-size: 2rem;
  }
}

/* グローバルナビ */
.gnav__link {
  align-items: center;
  color: #fff;
  display: flex;
  font-weight: bold;
  height: 100%;
  justify-content: center;
  line-height: 1.8rem;
  position: relative;
  text-align: center;
  text-decoration: none;
}

/* PC */
@media screen and (min-width: 769px) {
  .gnav__list {
    display: flex !important;
    justify-content: space-between;
    padding: 7px 0;
  }

  .gnav__item {
    height: 46px;
  }

  .gnav__link:hover,
  .gnav__link.current {
    color: #e94a23;
    opacity: 1;
  }

  .gnav__link:after {
    bottom: 0;
    background: #e94a23;
    content: "";
    display: block;
    height: 0;
    left: 0;
    position: absolute;
    transition: .1s;
    width: 100%;
  }

  .gnav__link:hover:after,
  .gnav__link.current:after {
    height: 3px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .gnav-btn {
    background: #fff;
    display: block;
    height: 44px;
    right: 10px;
    top: 10px;
    position: absolute;
    width: 44px;
  }

  .gnav-btn__line {
    background: #000;
    display: block;
    height: 4px;
    left: 8px;
    position: absolute;
    transition: .4s;
    width: 28px;
  }

  .gnav-btn__line:nth-of-type(1) {
    top: 12px;
  }

  .gnav-btn__line:nth-of-type(2) {
    background: #e94a23;
    top: 20px;
  }

  .gnav-btn__line:nth-of-type(3) {
    top: 28px;
  }

  .gnav-btn.open .gnav-btn__line:nth-of-type(1) {
    transform: translateY(8px)rotate(135deg);
  }

  .gnav-btn.open .gnav-btn__line:nth-of-type(2) {
    opacity: 0;
  }

  .gnav-btn.open .gnav-btn__line:nth-of-type(3) {
    transform: translateY(-8px)rotate(-135deg);
  }

  .gnav__list {
    background: rgba(0, 0, 0, .86);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    display: none;
    left: 0;
    position: absolute;
    top: 66px;
    width: 100%;
    z-index: 22;
  }

  .gnav__item {
    border-top: 1px solid #444;
  }

  .gnav__link {
    background: url(/ihinavi/common/img/ico_gnav_link_sp.png) right 20px center no-repeat;
    background-size: 6px 10px;
    font-size: 1.4rem;
    justify-content: flex-start;
    padding: 20px 40px 20px 20px;
    text-align: left;
  }

  .gnav__link.type__utility {
    background-color: #e94a23;
  }
}

/*------------------------------
  ニュース
------------------------------*/
/* 一覧 */
.news__header {
  align-items: center;
  display: flex;
}

.news__index--img {
  display: block;
}

.news__index--link {
  background: url(/ihinavi/common/img/icon_more.png) left center no-repeat;
  background-size: 16px;
  color: #e94a23;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 10px;
  padding-left: 20px;
}

*+.news-list {
  margin-top: 10px;
}

.news-list__item {
  border-top: 1px dotted #939393;
}

.news-list__item:last-child {
  border-bottom: 1px dotted #939393;
}

.news-list__link {
  padding: 10px;
  text-decoration: none;
}

.news-list__category {
  background: #ddd;
  color: #666;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: .025em;
  padding: 2px 0;
  text-align: center;
  width: 80px;
}

.news-list__index {
  color: #181818;
  font-size: 1.4rem;
}

.news-list__date,
.news-list__title {
  display: block;
}

.news-list+.btn,
.news-detail__txt+.btn {
  margin: 50px auto 0;
  width: 292px;
}

/* PC */
@media screen and (min-width: 769px) {
  .news-list__link {
    align-items: flex-start;
    display: flex;
  }

  .news-list__link:hover {
    background: #f4f4f4;
    opacity: 1;
  }

  .news-list__index {
    flex: 1;
    padding-left: 10px;
  }

  .news-list+.btn,
  .news-detail__txt+.btn {
    font-size: 2rem;
    height: 80px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .news__header {
    justify-content: space-between;
    padding: 0 14px;
  }

  .news-list__item:first-child {
    border-top: none;
  }

  .news-list__link {
    display: block;
    padding: 15px 14px;
  }

  .news-list__index {
    font-size: 1.6rem;
    margin-top: 5px;
  }
}

/* 詳細 */
.news-detail__header {
  align-items: center;
  display: flex;
}

.news-detail__category {
  background: #ddd;
  color: #666;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: .025em;
  margin-right: 20px;
  padding: 2px 0;
  text-align: center;
  width: 80px;
}

.news-detail__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 30px;
}

.news-detail__txt {
  margin-top: 40px;
}

.news-detail__txt p+p {
  margin-top: 1em;
}

.news-detail__txt img {
  height: auto;
  max-width: 100%;
}

/*------------------------------
  安心・信頼
------------------------------*/
.trust {
  margin-top: 60px;
  position: relative;
}

.trust.head:before {
  border: 3px solid #e94a23;
  border-bottom: none;
  content: "";
  display: block;
  height: 40px;
  margin: 0 20px;
}

.trust.bottom:after {
  border: 3px solid #e94a23;
  border-top: none;
  content: "";
  display: block;
  height: 40px;
  margin: 0 20px;
}

.trust__index {
  margin: 0 20px;
  padding-bottom: 55px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.trust__index:before {
  border: 3px solid #e94a23;
  border-bottom: none;
  bottom: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 70px;
  left: 0;
  position: absolute;
  width: 100%;
}

.trust__index--img {
  position: relative;
}

.trust-list {
  position: relative;
}

.trust-list:before,
.trust-list:after {
  background: #e94a23;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 3px;
}

.trust-list:before {
  left: 20px;
}

.trust-list:after {
  right: 20px;
}

.trust-list__img {
  display: block;
  height: auto;
  width: 100%;
}

.trust-list__item:nth-of-type(2n+1) .trust-list__detail {
  order: 1;
}

.trust-list__item.color .trust-list__detail {
  background: #ff5f38;
}

.trust-list__detail-inn {
  width: 100%;
}

.trust-list__title {
  align-items: center;
  display: flex;
}

.trust-list__title--num {
  display: block;
	width:auto;
  height: auto;
  margin-right: 15px;
}

.trust-list__title--txt {
  display: block;
  font-size: 2.6rem;
  font-weight: bold;
}

.trust-list__item.color .trust-list__title--txt {
  color: #fff;
}

.trust-list__title--small {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
}

.trust-list__txt {
  margin-top: 30px;
}

.trust-list__detail .btn {
  margin-top: 20px;
}

.trust.no-border:before,
.trust.no-border:after,
.trust.no-border .trust-list:before,
.trust.no-border .trust-list:after {
  display: none;
}

/* PC */
@media screen and (min-width: 769px) {
  .trust {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    min-width: 1000px;
  }

  .trust-list__item {
    display: flex;
  }

  .trust-list__img-area {
    width: 50%;
  }

  .trust-list__item:nth-of-type(2n+1) .trust-list__img-area {
    order: 2;
  }

  .trust-list__detail {
    align-items: center;
    display: flex;
    width: 50%;
    padding: 0 70px;
  }
}

/* SP */
@media screen and (max-width: 768px) {

  .trust.head:before,
  .trust.bottom:after {
    height: 28px;
    margin: 0 11px;
  }

  .trust__index {
    margin: 0 11px;
    padding-bottom: 25px;
  }

  .trust__index:before {
    height: 35px;
  }

  .trust__index--img {
    height: auto;
    max-width: 90%;
  }

  .trust-list:before {
    left: 11px;
  }

  .trust-list:after {
    right: 11px;
  }

  .trust-list__detail {
    padding: 20px 26px;
  }

  .trust-list__title {
    justify-content: center;
  }

  .trust-list__title--num {
    margin-right: 8px;
  }

  .trust-list__item:nth-of-type(1) .trust-list__title--num {
    width: 35px;
  }

  .trust-list__item:nth-of-type(2) .trust-list__title--num,
  .trust-list__item:nth-of-type(3) .trust-list__title--num,
  .trust-list__item:nth-of-type(4) .trust-list__title--num{
    width: 38px;
  }

  .trust-list__title--txt {
    font-size: 2rem;
  }

  .trust-list__title--small {
    font-size: 1.5rem;
  }

  .trust-list__txt {
    margin-top: 20px;
  }

  .trust-list__detail .btn {
    letter-spacing: normal;
    padding: 10px 37px 10px 10px;
  }
}

/*------------------------------
  CV
------------------------------*/
.cv {
  padding: 60px 0;
}

.cv-list__link,
.cv-list__img {
  display: block;
}

.cv-list__link {
  background: #000;
}

/* PC */
@media screen and (min-width: 769px) {
  .cv-list {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 1000px;
  }

  .cv-list__item {
    width: 486px;
  }

  .cv-list__link {
    box-shadow: 0 1px 5px rgba(43, 43, 43, .67);
    height: 80px;
    position: relative;
    width: 100%;
  }

  .cv-list__link:hover {
    box-shadow: none;
  }

  .cv-list__img {
    bottom: 0;
    left: 30px;
    position: absolute;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .cv {
    padding: 16px 14px 22px;
  }

  .cv-list__item+.cv-list__item {
    margin-top: 12px;
  }

  .cv-list__link {
    border-radius: 5px;
    padding: 0 10px;
  }

  .cv-list__img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 286px;
  }
}
/*------------------------------
  SHH
------------------------------*/
.shh {
	text-align: center;
  margin-bottom:60px;
}
/* SP */
@media screen and (max-width: 768px) {
	.shh {
		padding:0 14px;
		margin-bottom:22px;
	}
	.shh .shh__img{max-width: 100%;}
}


/*------------------------------
  フッター
------------------------------*/
#footer {
  padding: 20px 0;
}

.footer__logo--img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.footer-list__item {
  color: #666;
  font-size: 1.4rem;
}

.footer-list__item:after,
.footer-list__item:first-child:before {
  content: "｜";
}

.footer-list__link {
  color: #666;
}

.footer__copy {
  color: #666;
  font-size: 1.4rem;
  margin-top: 20px;
  text-align: center;
}

.pagetop {
  bottom: 8px;
  position: fixed;
  right: 14px;
  z-index: 12;
}

.pagetop__btn,
.pagetop__img {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .footer__logo--img {
    width: 202px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  #footer {
    padding: 20px 14px 60px;
  }

  .footer-list {
    margin-top: 10px;
  }

  .footer-list__item {
    font-size: 1.2rem;
  }

  .footer__copy {
    font-size: 1rem;
    margin-top: 10px;
  }

  .pagetop {
    right: 8px;
  }

  .pagetop__img {
    height: 40px;
    width: 40px;
  }
}

/*------------------------------
  下層ページ
------------------------------*/

/*------------------------------
  ページタイトル
------------------------------*/
.page-title {
  background: #e94a23;
}

.page-title__inn {
  background: right center no-repeat;
}

.page-title__img {
  display: block;
  height: auto;
  max-width: 100%;
}

.page-title__sub-index {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 10px;
}

/* PC */
@media screen and (min-width: 769px) {
  .page-title {
    height: 137px;
  }

  .page-title__inn {
    background-image: url(/ihinavi/common/img/bg_page-title.png);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    width: 1000px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .page-title {
    padding: 20px;
  }

  .page-title__img {
    margin: 0 auto;
  }

  .page-title__sub-index {
    font-size: 1.4rem;
    text-align: center;
  }
}

/*------------------------------
  パンくず
------------------------------*/
/* PC */
@media screen and (min-width: 769px) {
  .breadcrumb {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto 60px;
    width: 1000px;
  }

  .breadcrumb__item {
    color: #333;
    font-size: 1.4rem;
  }

  .breadcrumb__item+.breadcrumb__item:before {
    content: "　>　";
  }

  .breadcrumb__link {
    color: #333;
  }
}

/*------------------------------
  メインコンテンツ
------------------------------*/
.main__lead {
  font-weight: bold;
  line-height: 1.9;
}

.main__lead--sub {
  line-height: 1.8;
}

.main__lead+.main__lead--sub {
  margin-top: 10px;
}

/* PC */
@media screen and (min-width: 769px) {
  .main__inn {
    margin: 0 auto;
    width: 1000px;
  }

  .main__lead {
    margin: 0 auto;
    text-align: center;
  }

  .main__lead--sub {
    text-align: center;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .main {
    padding: 20px 14px;
  }

  .main.type__news {
    padding: 0 0 20px;
  }
}

/*------------------------------
  見出し
------------------------------*/
.plane-index__h3 {
  border-bottom: 2px solid #d5d5d5;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

/*------------------------------
  カラム
------------------------------*/
/* PC */
@media screen and (min-width: 769px) {
  .column2 {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }

  .column2.w800 {
    width: 800px;
  }

  .column2__box {
    width: 48%;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .column2__box+.column2__box {
    margin-top: 40px;
  }
}

/*------------------------------
  リスト
------------------------------*/
.plane-list__item {
  padding-left: 16px;
  position: relative;
}

.plane-list__item+.plane-list__item {
  margin-top: 10px;
}

.plane-list__item:before {
  background: #262626;
  content: "";
  display: block;
  height: 6px;
  left: 2px;
  position: absolute;
  top: 8px;
  width: 6px;
}

/*------------------------------
  事例
------------------------------*/
.case-slider__tag-list {
  display: flex;
  flex-wrap: wrap;
}

*+.case-slider__tag-list {
  margin-top: 15px;
}

.case-slider__tag-item {
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  margin: 0 7px 5px 0;
  padding: 4px 15px;
  text-align: center;
}

.case-slider__tag-item.type1 {
  border: 2px solid #e94a23;
  color: #e94a23;
}

.case-slider__tag-item.type2 {
  border: 2px solid #32bf1d;
  color: #32bf1d;
}

/* SP */
@media screen and (max-width: 768px) {
  .case-slider__tag-item {
    font-size: 1.2rem;
  }
}

/*------------------------------
  お問い合わせ動線
------------------------------*/
.contact {
  background: #f3f3f3;
}

*+.contact {
  margin-top: 30px;
}

.contact__index {
  font-size: 2rem;
  font-weight: bold;
}

.contact__txt {
  margin-top: 5px;
}

/* PC */
@media screen and (min-width: 769px) {
  .contact {
    padding: 60px 0;
    text-align: center;
  }

  .contact__inn {
    margin: 0 auto;
    width: 1000px;
  }

  .contact .btn {
    font-size: 2rem;
    height: 80px;
    margin: 20px auto 0;
    width: 360px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .contact {
    padding: 30px 14px;
  }

  .contact__index {
    font-size: 1.6rem;
  }

  .contact__txt {
    font-size: 1.2rem;
  }

  .contact .btn {
    margin-top: 20px;
  }
}

/*------------------------------
  アラートポップアップ
------------------------------*/
.alert {
  margin: 0 auto;
  max-width: 1100px;
  padding: 30px 0;
  position: relative;
}

.alert__inn {
  background: #fff;
  padding: 36px;
}

.alert__index {
  color: #3e3e3e;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.alert__index:before {
  background: url(/ihinavi/common/img/ico_alert_index.png) no-repeat;
  content: "";
  display: inline-block;
  height: 60px;
  margin: 0 10px 8px 0;
  vertical-align: middle;
  width: 60px;
}

.alert__img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.btn+.alert__txt {
  margin-top: 40px;
}

.alert .btn {
  margin: 20px auto 0;
  max-width: 366px;
}

/* PC */
@media screen and (min-width: 769px) {

  .mfp-bg,
  .mfp-wrap {
    min-width: 1000px;
  }

  .mfp-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .alert__contents {
    align-items: flex-start;
    display: flex;
  }

  .alert__contents {
    margin-top: 20px;
  }

  .alert__detail {
    flex: 1;
    padding-left: 40px;
  }

  .alert .btn {
    font-size: 2rem;
    height: 80px;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .alert__inn {
    padding: 20px;
  }

  .alert__index {
    font-size: 2rem;
  }

  .alert__index:before {
    background-size: 30px;
    height: 30px;
    margin: 0 5px 5px 0;
    width: 30px;
  }

  .alert__contents {
    margin-top: 15px;
  }

  .alert__detail {
    margin-top: 20px;
  }

  .alert__txt {
    font-size: 1.4rem;
  }

  .btn+.alert__txt {
    margin-top: 20px;
  }

  .alert .btn {
    margin-top: 10px;
  }
}

/* 閉じるボタン */
img.mfp-img {
  padding: 30px 0;
}

button.mfp-close,
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  background: url(/ihinavi/common/img/btn_mfp_close.png) no-repeat;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
  cursor: pointer;
  height: 80px;
  opacity: 1;
  right: -24px;
  padding: 0;
  text-align: left;
  text-indent: -9999px;
  top: 6px;
  width: 80px;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}

button.mfp-close:active {
  top: 6px;
}

/* PC */
@media screen and (min-width: 769px) {
  button.mfp-close {
    transition: .2s;
  }

  button.mfp-close:hover {
    opacity: .7;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .mfp-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  img.mfp-img {
    padding: 26px 0;
  }

  button.mfp-close,
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close {
    background-size: 40px;
    height: 40px;
    right: -8px;
    width: 40px;
  }
}