@charset "UTF-8";
/*========================================
 00. ResetAndUtility		....................プロジェクトのノーマライズ
 01. tabNavigation	　.........................モバイルのメニュー
 02. fullNavigation  .........................PCのメニュー
 03. Header	....................................プロジェクト共通のヘッダー
 04. MainContents　.........................メインコンテンツブロック
 05. BottomContents		....................メインコンテンツのボトムブロック
 07. Footer	....................................プロジェクト共通のフッター

 20.ProductUtilitys	  ..........................クラス別スタイル
=========================================*/
@import url("https://fonts.googleapis.com/css?family=M+PLUS+1p:100,300,400,500,700,800,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Mincho&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:100,300,400,500,700,800,900&display=swap&subset=japanese");
:link, :visited {
  text-decoration: none;
}

html, body, div, ul, ol, li, dl, dt, dd, form, fieldset, input, form textarea, textarea,
h1, h2, h3, h4, h5, h6, pre, code, p, blockquote, hr, th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

table {
  border-spacing: 0;
}

fieldset, img, abbr, acronym {
  border: 0;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

a {
  text-decoration: underline;
  outline: none;
}

hr {
  border: 0;
  height: 1px;
  background-color: #000;
  color: #000;
}

a img, :link img, :visited img {
  border: none;
}

address {
  font-style: normal;
  display: inline;
}

.before-clearfix:before {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}

body {
  color: #000;
}

a:link, a:visited {
  text-decoration: none;
}

blockquote {
  margin-left: 30px;
}

@media print {
  * {
    position: static !important;
    overflow: visible !important;
  }
}
/*==================================================
	Project layout
==================================================*/
body {
  font: 300 13px "M PLUS 1p", sans-serif;
  line-height: 1em;
}

/*==================================================
  01. tabNavigation
==================================================*/
.tabnavwrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 481px) {
  .tabnavwrap {
    display: none;
  }
}

.tabnavhead {
  display: flex;
  justify-content: space-between;
}

.tabnavlogo {
  width: 130px;
  margin-left: 15px;
}

.tabnavbtn {
  width: 10%;
  min-width: 50px;
  line-height: 1em;
  text-align: center;
  font-size: 25px;
}

.tabnavbtn::after {
  content: "\f0c9";
  font-family: "Font Awesome 5 Free";
  color: #349dd1;
}

.close::after {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
}

.tabmenu {
  display: none;
}
.tabmenu a {
  display: block;
  padding: 20px 0;
  text-align: center;
  color: #777;
}

/*==================================================
  02. fullNavigation
==================================================*/
.fullnavwrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (max-width: 800px) {
  .fullnavwrap {
    max-width: 96%;
  }
}
@media screen and (max-width: 480px) {
  .fullnavwrap {
    display: none;
  }
}

.companylogo {
  width: 20%;
  max-width: 230px;
}
.companylogo a:hover {
  transition: all 0.3s;
  filter: grayscale(100%);
}

nav.fullmenu {
  display: flex;
  background: #fff;
}
@media screen and (max-width: 480px) {
  nav.fullmenu {
    display: none;
  }
}
nav.fullmenu a {
  display: block;
  padding: 1em 2em;
  border-right: 1px solid #777;
  color: #777;
}
nav.fullmenu a:last-child {
  border-right: none;
}
@media screen and (min-width: 801px) {
  nav.fullmenu a:hover {
    background: #eee;
    color: #000;
    transition: all 0.3s;
  }
}

/*==================================================
  03. Header
==================================================*/
header {
  position: relative;
}
@media screen and (max-width: 480px) {
  header {
    margin-top: 13%;
  }
}

.header-inner-top {
  position: relative;
  width: 100%;
  padding-bottom: 5%;
  border-top: 5px solid #103381;
  background-size: 100vw;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  animation-name: fadein;
  animation-duration: 4s;
}
@media screen and (max-width: 800px) {
  .header-inner-top {
    border-top: none;
  }
}
.header-inner-top > h2 {
  padding-top: 5%;
  font-family: "Sawarabi Mincho", sans-serif;
  line-height: 1em;
}
@media screen and (min-width: 481px) {
  .header-inner-top > h2 {
    font-size: 30px;
    color: #fff;
    text-shadow: 2px 2px 3px #000, -2px 2px 3px #000, 2px -2px 3px #000, -2px -2px 3px #000;
  }
}
@media screen and (max-width: 480px) {
  .header-inner-top > h2 {
    padding-top: 75%;
    font-size: 2em;
    text-shadow: 2px 2px 3px #fff, -2px 2px 3px #fff, 2px -2px 3px #fff, -2px -2px 3px #fff;
  }
}
.header-inner-top .headlogo {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1%;
  padding-bottom: 1%;
}
@media screen and (max-width: 480px) {
  .header-inner-top .headlogo {
    width: 200px;
    padding-top: 2%;
    padding-top: 2%;
  }
}
.header-inner-top > h1 {
  width: 400px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 2.5em;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
@media screen and (max-width: 480px) {
  .header-inner-top > h1 {
    box-sizing: border-box;
    width: 100%;
    padding-top: 10px;
    padding-right: 5px;
    padding: 10px;
    padding-left: 5px;
    line-height: 2em;
    font-size: 0.8em;
  }
}

.header-inner-cat1 {
  position: relative;
  width: 100%;
  border-top: 5px solid #103381;
  background-size: 100vw;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation-name: fadein;
  animation-duration: 4s;
}
@media screen and (max-width: 800px) {
  .header-inner-cat1 {
    border-top: none;
  }
}
.header-inner-cat1 > h1 {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5%;
  padding-bottom: 0%;
  font-family: "Sawarabi Mincho", sans-serif;
  line-height: 1em;
  font-size: 30px;
  color: #000;
  text-shadow: 2px 2px 3px #fff, -2px 2px 3px #fff, 2px -2px 3px #fff, -2px -2px 3px #fff;
}
@media screen and (max-width: 800px) {
  .header-inner-cat1 > h1 {
    width: 90%;
    font-size: 18px;
    text-align: center;
  }
}
.header-inner-cat1 .bg-grd {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
  height: 70px;
}
@media screen and (min-width: 481px) and (max-width: 800px) {
  .header-inner-cat1 .bg-grd {
    height: 50px;
  }
}
@media screen and (max-width: 480px) {
  .header-inner-cat1 .bg-grd {
    height: 30px;
  }
}

/*==================================================
  04. MainContents
==================================================*/
.ban-col1 {
  box-sizing: border-box;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .ban-col1 {
    max-width: 90%;
  }
}
.ban-col1 a {
  display: block;
  line-height: 0;
}
@media screen and (min-width: 801px) {
  .ban-col1 a:hover {
    transition: all 0.3s;
    box-shadow: 0 0 5px 5px #aaa;
  }
}
.ban-col1.under {
  position: relative;
}
.ban-col1.under::before {
  display: block;
  position: absolute;
  content: '準 備 中';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  line-height: 5em;
  font-size: 2em;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .ban-col1.under::before {
    line-height: 3em;
    font-size: 1.5em;
  }
}

.ban-col2 {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .ban-col2 {
    max-width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .ban-col2 {
    flex-direction: column;
  }
}
.ban-col2 a {
  display: block;
  box-sizing: border-box;
  max-width: 49%;
  line-height: 0;
}
@media screen and (max-width: 480px) {
  .ban-col2 a {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 480px) {
  .ban-col2 a:first-child {
    padding-bottom: 3%;
  }
}
@media screen and (min-width: 801px) {
  .ban-col2 a:hover {
    transition: all 0.3s;
    box-shadow: 0 0 5px 5px #aaa;
  }
}

.outlink-col3 {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 481px) and (max-width: 800px) {
  .outlink-col3 {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .outlink-col3 {
    flex-direction: column;
  }
}
.outlink-col3 li {
  width: 210px;
}
@media screen and (min-width: 481px) and (max-width: 800px) {
  .outlink-col3 li {
    width: 22%;
  }
}
@media screen and (max-width: 480px) {
  .outlink-col3 li {
    width: 100%;
    border-top: 1px solid #ccc;
  }
}
.outlink-col3 li:first-child {
  width: 405px;
}
@media screen and (min-width: 481px) and (max-width: 800px) {
  .outlink-col3 li:first-child {
    width: 42%;
  }
}
@media screen and (max-width: 480px) {
  .outlink-col3 li:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .outlink-col3 li:first-child a {
    width: 240px;
  }
}
@media screen and (max-width: 480px) {
  .outlink-col3 li:last-child {
    border-bottom: 1px solid #ccc;
  }
}
.outlink-col3 li a {
  display: block;
}
@media screen and (max-width: 480px) {
  .outlink-col3 li a {
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2%;
    padding-bottom: 2%;
  }
}
@media screen and (min-width: 801px) {
  .outlink-col3 li a:hover {
    transition: all 0.3s;
    opacity: 0.5;
  }
}

.outlink-col2 {
  display: flex;
  justify-content: space-around;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5%;
  padding-bottom: 5%;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 480px) {
  .outlink-col2 {
    padding-top: 7%;
    padding-bottom: 7%;
    border-top: none;
  }
}
.outlink-col2 li {
  box-sizing: border-box;
  width: 50%;
}
.outlink-col2 li:last-child {
  border-left: 1px solid #ccc;
}
.outlink-col2 a {
  display: block;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 0;
}
@media screen and (max-width: 480px) {
  .outlink-col2 a {
    max-width: 150px;
  }
}
@media screen and (min-width: 801px) {
  .outlink-col2 a:hover {
    transition: all 0.3s;
    box-shadow: 0 0 5px 5px #aaa;
  }
}

.newsarea-top {
  background: #eee;
}

.newsarea-top-newsinner {
  position: relative;
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20vw;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 800px) {
  .newsarea-top-newsinner {
    max-width: 90%;
    padding-top: 60vw;
  }
}
.newsarea-top-newsinner iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.newsarea-top-btnwrap {
  margin-bottom: 3%;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #eee;
}
@media screen and (max-width: 480px) {
  .newsarea-top-btnwrap {
    background: #fff;
  }
}

.newsarea-top-btn {
  width: 20em;
  margin-left: auto;
  margin-right: auto;
  padding-top: 13px;
  padding-bottom: 10px;
  border-radius: 3px;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .newsarea-top-btn {
    border: 1px solid #ccc;
  }
}
.newsarea-top-btn a {
  display: block;
  color: #777;
}
@media screen and (min-width: 801px) {
  .newsarea-top-btn a:hover {
    transition: all 0.3s;
    color: #000;
  }
}

@media screen and (min-width: 801px) {
  .newsarea-top-btn:hover {
    transition: all 0.3s;
    background: #ccc;
  }
}

/*--------------------
  services.html
--------------------*/
.middle-inner {
  width: 960px;
  min-height: 60vh;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .middle-inner {
    width: 96%;
  }
}

.services ul {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .services ul {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 481px) {
  .services ul li {
    width: 48.5%;
  }
}
.services ul li h2 {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  line-height: 1em;
  text-align: center;
  font-size: 1.8em;
  font-family: "Sawarabi Mincho", sans-serif;
  border-bottom: 1px solid #103381;
}
.services ul li p {
  padding-left: 2.5em;
  padding-right: 2.5em;
  line-height: 1.8em;
}
@media screen and (max-width: 480px) {
  .services ul.reverse {
    flex-direction: column;
  }
}

/*--------------------
  company.html
--------------------*/
.company {
  margin-top: 60px;
  margin-bottom: 60px;
}
.company dl {
  display: flex;
  line-height: 1.5em;
  border-bottom: 1px solid #999;
}
.company dl dt {
  width: 30%;
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
  background: #eee;
}
.company dl dd {
  width: 70%;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 3em;
}
@media screen and (max-width: 480px) {
  .company dl dd {
    padding-left: 1em;
  }
}
.company dl:last-child {
  border-bottom: none;
}

/*--------------------
  news-category.php, news-detail.php
--------------------*/
.news-category {
  margin-bottom: 5%;
}

ul#newsList li {
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
  color: #666;
}
ul#newsList li span.up_ymd {
  display: inline-block;
  box-sizing: border-box;
  width: 100px;
  padding-left: 1em;
  padding-right: 1em;
}
@media screen and (max-width: 480px) {
  ul#newsList li span.up_ymd {
    display: block;
    font-size: 0.8em;
  }
}
ul#newsList li span.title {
  display: inline-block;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  ul#newsList li span.title {
    padding-left: 0.7em;
    padding-top: 1em;
    line-height: 1.4em;
  }
}
ul#newsList li span.title > a {
  color: #666;
}
@media screen and (max-width: 800px) {
  ul#newsList li span.title > a {
    text-decoration: underline;
  }
}
@media screen and (min-width: 801px) {
  ul#newsList li span.title > a:hover {
    text-decoration: underline;
  }
}
ul#newsList li span.thumbNailWrap {
  display: none;
}
ul#newsList li span.comment {
  display: block;
  box-sizing: border-box;
  padding-top: 1em;
  padding-left: 103px;
  line-height: 1.4em;
}
@media screen and (max-width: 800px) {
  ul#newsList li span.comment {
    padding-left: 1em;
  }
}
@media screen and (max-width: 480px) {
  ul#newsList li span.comment {
    font-size: 0.8em;
  }
}

.pager {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 10px;
  text-align: right;
  clear: both;
}
.pager > a {
  margin-left: 1px;
  margin-right: 1px;
  padding: 3px 7px 2px;
  font-size: 12px;
  color: #103381;
  border: 1px solid #103381;
  border-radius: 5px;
}
.pager > a.current {
  color: #fff;
  background: #103381;
}
@media screen and (min-width: 801px) {
  .pager > a:hover {
    background: #103381;
    color: #fff;
    transition: all 0.3s;
  }
}

.overPagerPattern {
  padding-left: 2px;
  padding-right: 2px;
}

.news-detail {
  margin-bottom: 5%;
}
.news-detail .pNav {
  font-size: 0.8em;
}
@media screen and (max-width: 480px) {
  .news-detail .pNav {
    font-size: 0.6em;
  }
}
.news-detail .pNav > a {
  color: #999;
}
@media screen and (max-width: 800px) {
  .news-detail .pNav > a {
    text-decoration: underline;
  }
}
@media screen and (min-width: 801px) {
  .news-detail .pNav > a:hover {
    text-decoration: underline;
  }
}
.news-detail > h2 {
  margin-top: 2%;
  margin-bottom: 2%;
  padding: 1.5% 1%;
  border-bottom: 3px solid #103381;
  line-height: 1.2em;
  font-size: 1.2em;
  color: #103381;
  text-shadow: 1px 1px 0px #fff;
  background: linear-gradient(to bottom, white 0%, #f3f3f3 50%, #ededed 51%, white 100%);
}
@media screen and (max-width: 480px) {
  .news-detail > h2 {
    font-size: 1em;
  }
}
.news-detail #up_ymd {
  margin: 2% 1%;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .news-detail #up_ymd {
    font-size: 0.8em;
  }
}
.news-detail .detailText {
  line-height: 1.8em;
}
.news-detail .detailUpfile {
  margin-top: 5px;
  margin-bottom: 35px;
  text-align: center;
}
.news-detail .detailUpfile img {
  max-width: 100%;
}
.news-detail .backORcloseBtn {
  margin-top: 30px;
  text-align: center;
}
.news-detail .backORcloseBtn > a {
  display: inline-block;
  padding: 7px 15px 4px;
  border-radius: 5px;
  color: #fff;
  background: #103381;
}
@media screen and (min-width: 801px) {
  .news-detail .backORcloseBtn > a:hover {
    transition: all 0.3s;
    color: #666;
    background: #eee;
  }
}

/*--------------------
  product.html
--------------------*/
.product {
  margin-top: 5%;
  margin-bottom: 5%;
}

.prdct-list {
  display: flex;
}
@media screen and (min-width: 481px) {
  .prdct-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .prdct-list {
    flex-direction: column;
  }
}
.prdct-list > a {
  display: block;
  box-sizing: border-box;
  margin-bottom: 10%;
  border: 1px solid #fff;
}
@media screen and (min-width: 801px) {
  .prdct-list > a {
    width: 30%;
    margin-left: 1.5%;
    margin-right: 1.5%;
  }
}
@media screen and (min-width: 481px) and (max-width: 800px) {
  .prdct-list > a {
    width: 40%;
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media screen and (max-width: 480px) {
  .prdct-list > a {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.prdct-list > a > p {
  line-height: 1.4em;
  text-align: center;
  font-weight: 700;
  color: #103381;
}
.prdct-list > a p.new {
  width: 4em;
  margin: 0 auto 5px;
  padding-top: 3px;
  border-radius: 3px;
  font-size: 0.8em;
  font-weight: normal;
  color: #fff;
  background: #e50011;
}
.prdct-list > a > h6 {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  font-size: 2em;
  color: #aaa;
}
@media screen and (min-width: 801px) {
  .prdct-list > a:hover {
    transition: all 0.3s;
    border: 1px solid #103381;
  }
}
.prdct-list > a.more-view, .prdct-list > a.more-view2, .prdct-list > a.more-view3 {
  padding-top: 1em;
  padding-bottom: 1em;
  line-height: 1em;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #103381;
  color: #103381;
}
@media screen and (min-width: 481px) {
  .prdct-list > a.more-view, .prdct-list > a.more-view2, .prdct-list > a.more-view3 {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .prdct-list > a.hide, .prdct-list > a.hide2, .prdct-list > a.hide3 {
    display: none;
  }
}

/*--------------------
  privacy.html
--------------------*/
.privacy {
  width: 74%;
  margin: 5% auto;
  line-height: 1.8em;
}
@media screen and (max-width: 480px) {
  .privacy {
    width: 90%;
  }
}
.privacy > h5 {
  margin-bottom: 4%;
  padding-bottom: 1%;
  border-bottom: 1px solid #103381;
  line-height: 1em;
  font-size: 1.5em;
  font-family: "Sawarabi Mincho", sans-serif;
}
.privacy > h6 {
  margin-bottom: 3%;
  line-height: 1em;
  font-size: 1.2em;
}
.privacy > ul li::before {
  display: block;
  margin-right: .5em;
  content: '●';
}
.privacy > ul li {
  display: flex;
}

/*--------------------
  contact.html
--------------------*/
form input, form textarea {
  padding: 0.3em 0.2em 0.2em;
  line-height: 1.8em;
  font-size: 16px;
  background: #f3f3f3;
  border: none;
}

form input[type="text"], form textarea[type="text"] {
  width: 100%;
}

form input[type="email"], form input[type="tel"], form textarea[type="tel"], form textarea[type="email"] {
  width: 50%;
}
@media screen and (max-width: 480px) {
  form input[type="email"], form input[type="tel"], form textarea[type="tel"], form textarea[type="email"] {
    width: 100%;
  }
}

form input.zipcode, form textarea.zipcode {
  width: 30%;
}
@media screen and (max-width: 480px) {
  form input.zipcode, form textarea.zipcode {
    width: 50%;
  }
}

form label {
  display: block;
  box-sizing: border-box;
  max-width: 180px;
  margin: 0 5px;
  padding: 1em;
  border-radius: 5px;
  border: 1px solid #103381;
}
@media screen and (max-width: 480px) {
  form label {
    max-width: 100%;
    margin-bottom: 3px;
  }
}

form textarea {
  resize: none;
  width: 100%;
  height: 200px;
}

form button {
  display: block;
  margin: 50px auto;
  padding: 10px 50px;
  border: 1px solid #103381;
  background: #fff;
  font-size: 16px;
  color: #103381;
}
@media screen and (max-width: 480px) {
  form button {
    margin: 30px auto;
  }
}

form button:hover {
  cursor: pointer;
}

.contact > p.clrred {
  color: #e50011;
}

#mailformpro {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 480px) {
  #mailformpro {
    width: 96%;
  }
}
#mailformpro dl {
  margin-top: 3%;
}
#mailformpro dt {
  width: 300px;
  margin-bottom: 5px;
  padding-top: 0.5em;
  padding-bottom: 0.3em;
  padding-left: 0.7em;
  line-height: 1em;
  border-left: 5px solid #103381;
}
#mailformpro dt span {
  color: #e50011;
}
#mailformpro dd.category {
  display: flex;
}
@media screen and (max-width: 480px) {
  #mailformpro dd.category {
    flex-direction: column;
  }
}

#thanks {
  margin: 5% auto;
}
#thanks > p {
  padding-bottom: 5%;
  line-height: 1.8em;
  text-align: center;
  font-size: 1.2em;
}
@media screen and (max-width: 480px) {
  #thanks > p {
    text-align: left;
    font-size: 1em;
  }
}
#thanks .homebtn {
  width: 10em;
  margin: 3% auto;
  padding: .5em 0;
  background: #103381;
  line-height: 1em;
  text-align: center;
  font-size: 1.5em;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  #thanks .homebtn {
    font-size: 1em;
  }
}
@media screen and (min-width: 801px) {
  #thanks .homebtn:hover {
    transition: all 0.3s;
    background: #aaa;
  }
}
#thanks .homebtn a {
  display: block;
  color: #fff;
}

/*==================================================
  05. BottomContents
==================================================*/
.bottomwrap {
  background: #eee;
}
@media screen and (max-width: 480px) {
  .bottomwrap {
    display: none;
  }
}

.bottomnav {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .bottomnav {
    max-width: 96%;
  }
}
.bottomnav > h3 {
  line-height: 1em;
  font-size: 1.5em;
  color: #103381;
}
.bottomnav > ul {
  display: flex;
}
.bottomnav > ul li {
  box-sizing: border-box;
  width: 12.5%;
  padding-top: 1.5em;
}
@media screen and (max-width: 800px) {
  .bottomnav > ul li {
    min-width: 6em;
  }
}
.bottomnav > ul li a {
  display: block;
  color: #777;
}
@media screen and (min-width: 801px) {
  .bottomnav > ul li a:hover {
    text-decoration: underline;
  }
}

/*==================================================
  07. Footer
==================================================*/
.footer-inner {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .footer-inner {
    width: 96%;
  }
}
.footer-inner > a {
  display: inline-block;
  padding-bottom: 10px;
  color: #777;
}
@media screen and (min-width: 801px) {
  .footer-inner > a:hover {
    text-decoration: underline;
  }
}
.footer-inner > p {
  margin-left: auto;
  margin-right: 0;
  font-size: 0.8em;
  text-align: right;
}

#totopbtn {
  position: fixed;
  z-index: 2;
  bottom: 5%;
  right: 2%;
}
#totopbtn > a {
  display: block;
  padding: 13px 10px 10px;
  text-decoration: none;
  border-radius: 3px;
  background: rgba(240, 240, 240, 0.8);
  color: #103381;
}
@media screen and (min-width: 801px) {
  #totopbtn > a:hover {
    cursor: pointer;
  }
}

/*==================================================
 	20.ProductUtilitys
==================================================*/
.flexcnt {
  display: flex;
}

.bg-top {
  background-image: url(../../images/bg_ind_header.jpg);
}
@media screen and (max-width: 800px) {
  .bg-top {
    background-image: url(../../images/bg_ind_header-sm.jpg);
  }
}

.bg-srv {
  background-image: url(../../images/bg_srv_header.jpg);
}
@media screen and (max-width: 800px) {
  .bg-srv {
    background-image: url(../../images/bg_srv_header-sm.jpg);
  }
}

.bg-cmpny {
  background-image: url(../../images/bg_cmpny_header.jpg);
}
@media screen and (max-width: 800px) {
  .bg-cmpny {
    background-image: url(../../images/bg_cmpny_header-sm.jpg);
  }
}

.bg-prdct {
  background-image: url(../../images/bg_prdct_header.jpg);
}
@media screen and (max-width: 800px) {
  .bg-prdct {
    background-image: url(../../images/bg_prdct_header-sm.jpg);
  }
}

.bg-news {
  background-image: url(../../images/bg_news_header.jpg);
}
@media screen and (max-width: 800px) {
  .bg-news {
    background-image: url(../../images/bg_news_header-sm.jpg);
  }
}

.bg-cntct {
  background-image: url(../../images/bg_cntct_header.jpg);
}
@media screen and (max-width: 800px) {
  .bg-cntct {
    background-image: url(../../images/bg_cntct_header-sm.jpg);
  }
}

.fadein {
  opacity: 0;
  transform: translateY(5%);
}

.fadeinactive {
  transition: 1s;
  opacity: 1.0;
  transform: translateY(0);
}

.mg-tp-prcnt-lg {
  margin-top: 3%;
}

.mg-bt-1p {
  margin-bottom: 1%;
}

.mg-bt-2p {
  margin-bottom: 2%;
}

.mg-bt-3p {
  margin-bottom: 3%;
}

.mg-bt-5p {
  margin-bottom: 5%;
}

.mg-bt-txt-sm {
  margin-bottom: 1em;
}

.mg-bt-txt-md {
  margin-bottom: 2em;
}

.mg-bt-txt-lg {
  margin-bottom: 3em;
}

.mg-bt-txt-xlg {
  margin-bottom: 5em;
}

.pd-all-sm {
  padding: 2%;
}

.pd-vr-sm {
  padding-top: 15px;
  padding-bottom: 15px;
}

.pd-vr-md {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pd-vr-lg {
  padding-top: 45px;
  padding-bottom: 45px;
}

.pd-vr-xlg {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pd-tp-txt-sm {
  padding-top: 1em;
}

.pd-tp-txt-md {
  padding-top: 2em;
}

.pd-tp-txt-lg {
  padding-top: 3em;
}

.pd-tp-pcnt-sm {
  padding-top: 1%;
}

.pd-tp-pcnt-md {
  padding-top: 2%;
}

.pd-tp-pcnt-lg {
  padding-top: 3%;
}

.pd-tp-pcnt-xlg {
  padding-top: 5%;
}

.pd-bt-txt-sm {
  padding-bottom: 1em;
}

.pd-bt-txt-md {
  padding-bottom: 2em;
}

.pd-bt-txt-lg {
  padding-bottom: 3em;
}

.pd-bt-pcnt-sm {
  padding-bottom: 1%;
}

.pd-bt-pcnt-md {
  padding-bottom: 2%;
}

.pd-bt-pcnt-lg {
  padding-bottom: 3%;
}

.retina img {
  width: 100%;
}

.imgborder img {
  border: solid 1px #ccc;
}

.imgborder-red img {
  border: solid 1px #c72348;
}

.font-wt {
  font-weight: 100;
}

.font-wl {
  font-weight: 300;
}

.font-wn {
  font-weight: 400;
}

.font-wb {
  font-weight: 700;
}

.font-sz-xsm {
  font-size: 0.6em;
}

.font-sz-sm {
  font-size: 0.8em;
}

.font-sz-md {
  font-size: 1.2em;
}

.font-sz-lg {
  font-size: 1.5em;
}

.font-sz-xlg {
  font-size: 2em;
}

.subtitle-01 {
  padding-top: 3%;
  padding-bottom: 2%;
  line-height: 1em;
  text-align: center;
  font-size: 1.5em;
  color: #777;
  letter-spacing: 0.7em;
}
@media screen and (max-width: 480px) {
  .subtitle-01 {
    font-size: 1.2em;
  }
}

/*==================================================
 sassコンパイルにつき、カスタマイズ、追記は厳禁です。
 追加のスタイルは、htmlにセクション名等を追加の上、
 別でcssファイルを作成し、そちらに記述し、リンクした上でご使用ください。
==================================================*/
