@charset "UTF-8";

/*============================================================================
  Common
============================================================================*/

/*------------------------------------
  Heading
------------------------------------*/
h2 {
  margin: 0 16% 2.4rem;
  text-align: center;
}
  h2 .h2head {
    font-family: din-2014, YakuHanJP, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  	color: #21385b;
  	font-size: 4.0rem;
  	font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0.2rem;
  }
      h2 .h2head.ja {
        font-size: 3.2rem;
      }
  h2 .h2sub {
    margin-top: 1.0rem;
    font-family: din-2014, YakuHanJP, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  	color: #004098;
  	font-size: 1.4rem;
  	font-weight: 600;
  }
  h2 + .lead {
    padding: 1.6rem 0;
    color: #666;
    font-size: 1.6rem;
    text-align: center;
  }

/*------------------------------------
  Container
------------------------------------*/
.inner {
  min-width: 1080px;
  max-width: 1200px;
  margin: 0 auto;
}
.stripe {
  padding: 7.0rem 0;
}

/*------------------------------------
  Element
------------------------------------*/
.c-card {
  background: #fff;
  box-shadow: 0 0 16px rgba(33,56,91,0.15);
  position: relative;
}
  .c-card .btnBox {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
  }
.c-tag-item {
  display: inline-block;
  margin: 0 0.2em 0 0;
  padding: 0.3em 0.9em;
  letter-spacing: 0.05em;
  background: #eeeeee;
  border-radius: 0.3em;
}
  .c-tag-item:last-of-type {
    margin-right: 0;
  }
/*------------------------------------
  Header
------------------------------------*/
header {
  width: 100%;
  height: 60px;
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  background: transparent;
  position: relative;
  z-index: 499;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
}
  header .inner {
    margin: 0 4.5%;
    max-width: 2000px;
    min-width: calc( 100% - 9.0% );
    position: relative;
  }
  header .headLogo {
    width: 76px;
    height: 32px;
    margin: 0;
    padding: 0;
    font-size: 1.0rem;
    position: absolute;
    top: 14px;
  }
    header .headLogo img { width: 100%; }

  header .h-nav ul {
    text-align: right;
    position: absolute;
    top: 20px;
    right: 160px;
  }
    header .h-nav ul li {
      display: inline-block;
      margin-right: 3.0rem;
    }
    header a,
    header a:link,
    header a:visited {
      color: #21385b;
      -webkit-transition: all 0.2s;
         -moz-transition: all 0.2s;
          -ms-transition: all 0.2s;
           -o-transition: all 0.2s;
              transition: all 0.2s;
    }
    header a:hover,
    header a:focus,
    header a:active { color: #2a85e8; text-decoration: none; }

      a.headBtn, a.headBtn:link, a.headBtn:visited {
        display: inline-block;
        width: 140px;
        height: 32px;
        padding: 10px 0 0;
        color: #fff;
        font-size: 14px;
        line-height: 1.0;
        text-align: center;
        background: #21385b;
        border-radius: 18px;
        box-shadow: 1px 1px 0 rgba(37,49,63,0.25);
        position: absolute;
        top: 14px;
        right: 0;
      }
      a.headBtn:hover, a.headBtn:focus, a.headBtn:active {
        color: #fff;
        background: #2a85e8;
      }
/* jQuery用
--------------------------------*/
#header.scrolled {
/*  background: #fff; */
	position: fixed;
  box-shadow: 0 0 4px rgba(33,56,91,0.15);
  top: 0;
  left: 0;
  z-index: 500;
}
		#header.scrolled .headLogo {
			 		background: url(../images/motion_logo.svg) left top no-repeat;
			 		background-size: contain;
		}
    #header.scrolled a.headBtn, #header.scrolled a.headBtn:link,
    #header.scrolled a.headBtn:visited, #header.scrolled a.headBtn:hover,
    #header.scrolled a.headBtn:focus, #header.scrolled a.headBtn:active {
        color: #fff;
    }

/* Drawer-Menu
--------------------------------*/
  /* checkbox */
  .drawer-hidden {
    display: none;
  }

  .drawer {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
  }
  /* icon */
  .drawer-open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    right: 0;
    z-index: 100;
    cursor: pointer;
  }
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #004098;
    transition: 0.3s;
    position: absolute;
  }

  /* icon:first-line */
  .drawer-open span:before {
    bottom: 8px;
  }
  /* icon:last-line */
  .drawer-open span:after {
    top: 8px;
  }
  #drawer-check:checked ~ .drawer-open span {
    background: rgba(255, 255, 255, 0);
  }
  #drawer-check:checked ~ .drawer-open span::before {
    background: rgba(255, 255, 255, 1.0);
    bottom: 0;
    transform: rotate(45deg);
  }
  #drawer-check:checked ~ .drawer-open span::after {
    background: rgba(255, 255, 255, 1.0);
    top: 0;
    transform: rotate(-45deg);
  }

  /* menu */
  .drawer-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 99;
    background: #004098;
    transition: .3s;
  }
  #drawer-check:checked ~ .drawer-content {
    left: 0;
  }
  .drawer-list {
    padding-top: 60px;
  }
  .drawer-item {
    border-top: 1px solid #1c4db0;
  }
  .drawer-item > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1.4rem 2.4rem;
    font-size: 2.0rem;
    position: relative;
  }
  .drawer-item > a,
  .drawer-item > a:link,
  .drawer-item > a:visited {
    color: #fff;
  }
  .drawer-item > a:hover,
  .drawer-item > a:focus,
  .drawer-item > a:active {
    color: #fff;
    background: #2a85e8;
  }
  .drawer-item > a::after {
    content: "\f054";
    font-family: FontAwesome;
    font-size: 1.0em;
    position: absolute;
    right: 1.8em;
  }

  .drawer-item-sub {
    padding: 1.2rem 2.0rem;
    border-top: 1px solid #1c4db0;
  }
    .drawer-item-sub li {
      margin: 1.8rem 0;
    }
    .drawer-item-sub li a {
      display: inline-block;
      padding-left: 3.0rem;
      color: #fff;
      position: relative;
    }
      .drawer-item-sub li a::before {
        content: "\f054";
      	font-family: FontAwesome;
      	font-size: 0.8em;
      	position: absolute;
        top: 0.2rem;
      	left: 0.4rem;
      }
  .drawer-item-btn {
    padding: 0 2.4rem;
  }
  .drawer-item-btn a.btn {
    display: block;
    color: #004098;
    font-size: 2.0rem;
    background: #fff;
    border: 1px solid #fff;
  }
    .drawer-item-btn a.btn:hover {
      color: #2a85e8;
    }

/*------------------------------------
  News-List
------------------------------------*/
.newslist .nl-atc {
  display: flex;
  width: 100%;
  padding: 0;
  border-top: 1px solid #e6e6e6;
  justify-content: space-around;
  align-items: flex-start;
  }
  .newslist .nl-atc:last-of-type {
		border-bottom: 1px solid #e6e6e6;
  }
  .newslist .nl-atc a {
    display: flex;
    width: 100%;
    padding: 1.3em 0 1.2em;
    height: 100%;
    color: #111;
    -webkit-transition: all 0.2s;
       -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
         -o-transition: all 0.2s;
            transition: all 0.2s;
  }
    .newslist .nl-atc a:active,
    .newslist .nl-atc a:hover,
    .newslist .nl-atc a:focus {
      text-decoration: none;
      background: #f2f5fa;
    }
.newslist .nl-atc .nl-day,
.newslist .nl-atc .nl-category,
.newslist .nl-atc .nl-heading {

}
.newslist .nl-day {
  min-width: 13.0rem;
  padding: 0 1.0em;
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
}
.newslist .nl-category {
  padding: 0 1.0em;
}
  .newslist .nl-category p {
    width: 11.0em;
    padding: 0.15em 0;
    font-size: 1.2rem;
    text-align: center;
    border: 1px solid #666;
    color: #666;
  }
.newslist .nl-heading {
  padding: 0 1.0em;
  font-size: 1.4rem;
  line-height: 1.8;
  }
  .newslist .nl-heading i.fas {
    margin-left: 0.4em;
  }
/*------------------------------------
  Go-to-Pagetop Nav
------------------------------------*/
.pageTop {
    display: none;
    position: absolute;
    left: 0px;
    z-index: 400;
}
.pageTop a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: rgba(0,190,165,0.8);
    text-align: center;
    color: #fff;
    text-decoration: none;
    line-height: 1.7em;
    position: fixed;
    right:20px;
    bottom: 20px;
    z-index: 400;
}
    .pageTop a img {
        width: 30%;
    }

/*------------------------------------
  Contact [Conversion Area]
------------------------------------*/
.c-cvs-contact {
  padding: 6.0rem 0;
  text-align: center;
  background: url(../images/bg_cvs_contact.png) center top/cover no-repeat #004098;
}
  .c-cvs-contact h2 .h2head {
    color: #fff;
  }
  .c-cvs-contact .btnBox {
    margin: 4.0rem 0 0;
  }
  .c-cvs-contact a.btn {
    color: #004098;
    background: #fff;
    border: 1px solid #fff;
  }
    .c-cvs-contact a.btn:hover {
      color: #2a85e8;
      /*color: #fff;
      background: #2a85e8;
      border: 1px solid #2a85e8;*/
      transform: scale(1.2,1.2);
    }

/*------------------------------------
  Footer
------------------------------------*/
footer {
  padding: 6.0rem 0;
  color: #fff;
	font-size: 1.4rem;
  background: #21385b;
}
  footer .inner {
    margin: 0 4.5%;
    max-width: 2000px;
    min-width: calc( 100% - 9.0% );
    display: flex;
    align-self: flex-end;
  }
  footer .footId {
    width: 42%;
    vertical-align: bottom;
  }
    footer .footId .f-logo-mark {
      display: inline-block;
      width: 92px;
    }
    footer .footId .f-logo-kana {
      display: inline-block;
      width: 128px;
      margin-left: 0.8rem;
    }
      footer .footId .f-logo-mark img,
      footer .footId .f-logo-kana img {
        width: 100%;
      }
    footer .footId .f-address {
      margin-top: 1.8rem;
      font-size: 1.2rem;
    }
      footer .footId .f-address p {
        display: inline-block;
        margin-right: 1.0rem;
      }
      footer .footId .f-address .f-adr-mapBtn {
        font-family: din-2014, sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 1.6rem;
      }
      footer .footId .f-address .f-adr-mapBtn a { color: #f39800; }
      footer .footId .f-address .f-adr-mapBtn a:hover { color: #fff; text-decoration: none; }

  footer .footNav {
    width: 58%;
    color: #fff;
    text-align: right;
    vertical-align: bottom;
  }
    footer .footNav .f-nav-item {
      display: inline-block;
      margin-left: 2.0rem;
    }

    footer .footNav a,
    footer .footNav a:link,
    footer .footNav a:visited {
      color: #fff;
    }
    footer .footNav a:active,
    footer .footNav a:hover {
      color: #2a85e8;
      text-decoration: none;
    }
    footer .footNav small {
      display: block;
      margin-top: 1.6rem;
      font-family: din-2014, sans-serif;
      font-weight: 400;
      font-style: normal;
      vertical-align: middle;
    }
      footer .footNav small span {
        margin-right: 0.2rem;
        font-size: 1.1em;
      }

/* =======================================================

  MediaQueries

======================================================= */

/*------------------------------------
  for max:1279px
------------------------------------*/
@media screen and (max-width: 1279px) {
  .inner {
    margin: 0 4.5%;
    min-width: calc( 100% - 9.0% );
  }
  .stripe {
    padding: 6.0rem 0;
  }
}

/*------------------------------------
  for Mobile [max:979px]
------------------------------------*/
@media screen and (max-width: 979px) {

  /* common
  ------------------------------------*/
  h2 {
    margin: 0 2.0rem 2.4rem;
    text-align: center;
  }
    h2 .h2head {
    	font-size: 3.0rem;
    }
        h2 .h2head.ja {
          font-size: 2.2rem;
        }
    h2 .h2sub {
      margin-top: 0.8rem;
    	font-size: 1.2rem;
    }
    h2 + .lead {
      padding: 1.4rem 0;
    }

  .inner {
    margin: 0 2.0rem;
    min-width: auto;
  }
  .stripe {
    padding: 5.0rem 0;
  }

  /* layout
  ------------------------------------*/
  header .inner {
    margin: 0 1.0rem 0 2.4rem;
  }

  /* News-List
  ------------------------------------*/
  .newslist .nl-atc {
    }
    .newslist .nl-atc a {
      display: block;
      padding: 1.3em 1.2rem 1.2em;
    }
    .newslist .nl-atc:last-of-type {
      border-bottom: none;
    }
  .newslist .nl-day {
    display: inline-block;
    min-width: auto;
    padding: 0 1.0em 0 0;
  }
  .newslist .nl-category {
    display: inline-block;
    padding: 0 0 0.2rem 0;
    vertical-align: middle;
  }
    .newslist .nl-category p {
      width: 11.0em;
      padding: 0.1em 0;
      font-size: 1.0rem;
    }
  .newslist .nl-heading {
    width: 100%;
    margin-top: 1.0rem;
    padding: 0;
    font-size: 1.3rem;
    line-height: 1.8;
    }
    .newslist .nl-heading i.fas {
      margin-left: 0.4em;
    }
    /* Contact [Conversion Area]
    ------------------------------------*/
    .c-cvs-contact {
      padding: 4.0rem 0;
    }
      .c-cvs-contact h2,
      .c-cvs-contact h2 .h2head {
        margin-bottom: 0;
      }
      .c-cvs-contact .btnBox {
        margin: 2.0rem 0 0;
      }

  /* Footer
  ------------------------------------*/
  footer {
    padding: 4.0rem 0;
  	font-size: 1.2rem;
  }
    footer .inner {
      display: block;
      margin: 0 2.0rem;
      max-width: auto;
      min-width: auto;
    }
    footer .footId {
      width: 100%;
      font-size: 1.2rem;
      vertical-align: bottom;
    }
      footer .footId .f-logo-mark {
        display: inline-block;
        width: 72px;
      }
      footer .footId .f-logo-kana {
        display: inline-block;
        width: 108px;
      }
      footer .footId .f-address {
        margin-top: 2.2rem;
      }
        footer .footId .f-address .f-adr-mapBtn {
          font-size: 1.4rem;
        }

    footer .footNav {
      width: 100%;
      margin-top: 4.4rem;
      color: #fff;
      text-align: left;
      vertical-align: bottom;
    }
      footer .footNav .f-nav-item {
        display: block;
        margin: 0.8rem 0;
      }
      footer .footNav small {
        margin-top: 4.4rem;
      }

}
