/*
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

@import url(https://fonts.googleapis.com/earlyaccess/sawarabimincho.css);
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
@import url('https://fonts.googleapis.com/css?family=Lora:400,700');
*/

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/NotoSansCJKjp-Regular.woff') format('woff'),
      url('../fonts/NotoSansCJKjp-Regular.eot')  format('eot');
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/NotoSansCJKjp-Medium.woff') format('woff'),
      url('../fonts/NotoSansCJKjp-Medium.eot')  format('eot');
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/NotoSansCJKjp-Bold.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/NotoSansCJKjp-Black.woff') format('woff');
  font-display: swap;
}

html, body {
  position: relative;
  height: 100%;
}
body {
  font-size: 18px;
  color:#000;
  margin: 0;
  padding: 0;
  height: 100%;
}
body::before {
	background-position: 50% 50%;
  background-repeat: repeat;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}
.bg00 {
  height: 100%;
}
.bg00::before {
  background-image: url("../img/2020LM-TOP-BG.png");
	background-position: 50% 50%;
  background-repeat: repeat-y;
  background-size:cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -2;
}
body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
  font-family: Helvetica, 'arial', 'NotoSansCJKjp', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", HiraKakuProN-W3, HiraKakuPro-W3, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.4em;
  letter-spacing: 0.01em;
  font-weight: 400;
}
p {
  font-family: Helvetica, 'arial', 'NotoSansCJKjp', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", HiraKakuProN-W3, HiraKakuPro-W3, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", Helvetica, 'arial', sans-serif;
  line-height: 1.4em;
  letter-spacing: 0.01em;
  font-weight: 400;
}
/*//////////////////////////////// プリローダー ////////////////////////////////*/

.loading {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,1.0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
}
.loading img {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -50px;
	margin-left: -50px;
}

/*//////////////////////////// ハンバーガーメニュー ////////////////////////////*/

/* チェックボックスは非表示に */
.nav-menu-hidden {
  display: none;
}
/* ハンバーガーアイコンの設置スペース */
.nav-menu-open {
  background-color: #ff4081;
  height: 48px;
  width: 48px;
  display: inline-flex;
  align-items: center;
  -ms-flex-align:center;/*IE10*/
  justify-content: center;
  -ms-flex-pack: justify; /*IE10*/
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
  margin-right: 8px;
}
/* ハンバーガーメニューのアイコン */
.nav-menu-open span,
.nav-menu-open span:before,
.nav-menu-open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 24px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;

}
.nav-menu-open span {
  top: 0;
  bottom: 0;
}
/* 三本線のうち一番上の棒の位置調整 */
.nav-menu-open span:before {
  bottom: 8px;
}
/* 三本線のうち一番下の棒の位置調整 */
.nav-menu-open span:after {
  top: 8px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#nav-menu-check:checked ~ .nav-menu-open span {
  background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#nav-menu-check:checked ~ .nav-menu-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#nav-menu-check:checked ~ .nav-menu-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
/* メニューのデザイン*/
.nav-menu-content {
  z-index: 99;
  background: #fff;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#nav-menu-check:checked ~ .nav-menu-content {
  height: 518px;
  opacity: 1;
  visibility: visible;
}

/*//////////////////////////// 各ページタイトル背景 ////////////////////////////*/

.title-bg-privacy, .title-bg-news, .title-bg-partner, .title-bg-document, .title-bg-apply, .title-bg-company, .title-bg-contact, .title-bg-recruit, .title-bg-sitemap, .title-bg-contents, .title-bg-magazine, .title-bg-content, .title-bg-goods, .title-bg-goods12, .title-bg-goods30, .title-bg-goods41, .title-bg-iot, .title-bg-iot-soracom, .title-bg-iot-sakura {
  margin-top: 0px;
	background-position: 50% 60%;
	background-repeat: no-repeat;
  background-size: cover;	
  -webkit-background-size: cover;	
  -moz-background-size: cover;	
  -ms-background-size:  cover;
	background-attachment: scroll;
}
.title-bg-privacy {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-privacy.gif");}
.title-bg-news {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-news.gif");}
.title-bg-partner {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-partner.gif");}
.title-bg-document {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-download.gif");}
.title-bg-apply {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-apply.gif");}
.title-bg-company {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-company.gif");}
.title-bg-contact {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-contact.gif");}
.title-bg-recruit {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-recruit.gif");}
.title-bg-sitemap {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-sitemap.gif");}
.title-bg-contents {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-contents.gif");}
.title-bg-magazine {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-magazine.gif")}
.title-bg-content {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/bg-contents-doc.gif");}
.title-bg-goods {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .0)),url("../img/bg-goods.gif");}
.title-bg-goods12 {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .0)),url("../img/bg-goods12.webp");}
.title-bg-goods30 {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .0)),url("../img/bg-goods30.webp");}
.title-bg-goods41 {background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .0)),url("../img/bg-goods41.webp");}
.title-bg-iot {background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url("../img/bg-iot.gif");background-position: 50% 50%;}
.title-bg-iot-soracom {background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url("../img/bg-iot-soracom.gif");background-position: 50% 50%;}
.title-bg-iot-sakura {background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url("../img/bg-iot-sakura.gif");background-position: 50% 50%;}

/*//////////////////////////// グリッドレイアウト ////////////////////////////*/

.grid-title {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-columns: 1fr 2fr;
  row-gap: 20px;
  width: 100%;
  background-color: #fff;
}
.grid-title > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid-title > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.grid-news {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 100px 1fr 100px;
  -ms-grid-columns: 100px 1fr 100px;
}
.grid-news > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  margin: 5px;
}
.grid-news > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  margin: 5px;
}
.grid-news > .gbox:nth-of-type(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  margin: 5px;
}
.grid-news2 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 100px;
  -ms-grid-columns: 1fr 100px;
}
.grid-news2 > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid-news2 > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.grid-top {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
  row-gap: 20px;
}
.grid-footer {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 4fr 1fr;
  -ms-grid-columns: 4fr 1fr;
  padding: 0 5px;
}
.grid-footer > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid-footer > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.grid2 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
  row-gap: 20px;
}
.grid2 > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid2 > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.grid2-f {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
}
.grid2-f > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid2-f > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.grid2-f > .gbox:nth-of-type(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.grid2-f > .gbox:nth-of-type(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.grid2-f > .gbox:nth-of-type(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.grid2-f > .gbox:nth-of-type(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
.grid2-f > .gbox:nth-of-type(7) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.grid2-f > .gbox:nth-of-type(8) {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
}
.grid2-f > .gbox:nth-of-type(9) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.grid2-f > .gbox:nth-of-type(10) {
  -ms-grid-row: 5;
  -ms-grid-column: 2;
}
.grid2-f > .gbox:nth-of-type(11) {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}
.grid2-f > .gbox:nth-of-type(12) {
  -ms-grid-row: 6;
  -ms-grid-column: 2;
}
.grid2-1 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
  row-gap: 20px;
}
.grid2-1 > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid2-1 > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.grid-magazine {
  display: grid;
  display: -ms-grid;
  row-gap: 20px;
}
.grid-magazine > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid-magazine > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.grid-magazine h2 {
  margin: 10px;
}
.grid-magazine p {
  margin: 10px;
}
.grid3 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
}
.grid3 > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid3 > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.grid3 > .gbox:nth-of-type(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.grid3-1 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
}
.grid3-1 > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid3-1 > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.grid3-1 > .gbox:nth-of-type(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.grid3-1 > .gbox:nth-of-type(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.grid3-1 > .gbox:nth-of-type(5) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.grid3-1 > .gbox:nth-of-type(6) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
.grid3-1 > .gbox:nth-of-type(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.grid3-1 > .gbox:nth-of-type(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
.grid3-1 > .gbox:nth-of-type(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.grid3-1 > .gbox:nth-of-type(10) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.grid3-1 > .gbox:nth-of-type(11) {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
}
.grid3-1 > .gbox:nth-of-type(12) {
  -ms-grid-row: 4;
  -ms-grid-column: 3;
}
.grid3-1 > .gbox:nth-of-type(13) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.grid3-1 > .gbox:nth-of-type(14) {
  -ms-grid-row: 5;
  -ms-grid-column: 2;
}
.grid3-1 > .gbox:nth-of-type(15) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.grid3-1 > .gbox:nth-of-type(16) {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}
.grid3-1 > .gbox:nth-of-type(17) {
  -ms-grid-row: 6;
  -ms-grid-column: 2;
}
.grid3-1 > .gbox:nth-of-type(18) {
  -ms-grid-row: 6;
  -ms-grid-column: 3;
}
.grid4 {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  row-gap: 20px;
}
.grid4 > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  padding: 10px;
}
.grid4 > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  padding: 10px;
}
.grid4 > .gbox:nth-of-type(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  padding: 10px;
}
.grid4 > .gbox:nth-of-type(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  padding: 10px;
}
.gridQA {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 30px 1fr;
  -ms-grid-columns: 30px 1fr;
}
.gridQA > .gbox:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  margin-top: 5px;
}
.gridQA > .gbox:nth-of-type(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  margin-top: 8px;
  margin-bottom: 10px;
}

/*//////////////////////////// CSSアニメーション ////////////////////////////*/

.fadein {
  -webkit-transition: all .5s ease-in;
  -o-transition: all .5s ease-in;
  transition: all .5s ease-in;
  -moz-transition: all .5s ease-in;
  -ms-transition: all .5s ease-in;
  opacity: 0;
}
.fadein.active {
  opacity: 1;
}
.fadein-up {
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  -o-transform: translateY(20%);
  transform: translateY(20%);
  opacity: 0;
}
.fadein-up.active {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}
.fadein-down {
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  -o-transform: translateY(-20%);
  transform: translateY(-20%);
  opacity: 0;
}
.fadein-down.active {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}
.fadein-L {
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateX(-60%);
  -moz-transform: translateX(-60%);
  -ms-transform: translateX(-60%);
  -o-transform: translateX(-60%);
  transform: translateX(-60%);
  opacity: 0;
}
.fadein-L.active {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}
.fadein-R {
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateX(60%);
  -moz-transform: translateX(60%);
  -ms-transform: translateX(60%);
  -o-transform: translateX(60%);
  transform: translateX(60%);
  opacity: 0;
}
.fadein-R.active {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}
.fadein-zoom {
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  opacity: 0;
}
.fadein-zoom.active {
  transform: scale(1) ;
  -webkit-transform: scale(1) ;
  -moz-transform: scale(1) ;
  -ms-transform: scale(1) ;
  -o-transform: scale(1) ;
  opacity: 1;
}
.fadein-zoom1 {
  -webkit-transition: all .5s linear .1s;
  -o-transition: all .5s linear .1s;
  -moz-transition: all .5s linear .1s;
  -ms-transition: all .5s linear .1s;
  transition: all .5s linear .1s;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  opacity: 0;
}
.fadein-zoom1.active {
  transform: scale(1) ;
  -webkit-transform: scale(1) ;
  -moz-transform: scale(1) ;
  -ms-transform: scale(1) ;
  -o-transform: scale(1) ;
  opacity: 1;
}
.fadein-zoom2 {
  -webkit-transition: all .5s linear .2s;
  -o-transition: all .5s linear .2s;
  -moz-transition: all .5s linear .2s;
  -ms-transition: all .5s linear .2s;
  transition: all .5s linear .2s;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  opacity: 0;
}
.fadein-zoom2.active {
  transform: scale(1) ;
  -webkit-transform: scale(1) ;
  -moz-transform: scale(1) ;
  -ms-transform: scale(1) ;
  -o-transform: scale(1) ;
  opacity: 1;
}
.fadein-zoom3 {
  -webkit-transition: all .5s linear .3s;
  -o-transition: all .5s linear .3s;
  -moz-transition: all .5s linear .3s;
  -ms-transition: all .5s linear .3s;
  transition: all .5s linear .3s;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  opacity: 0;
}
.fadein-zoom3.active {
  transform: scale(1) ;
  -webkit-transform: scale(1) ;
  -moz-transform: scale(1) ;
  -ms-transform: scale(1) ;
  -o-transform: scale(1) ;
  opacity: 1;
}
.fadein-zoom4 {
  -webkit-transition: all .5s linear .4s;
  -o-transition: all .5s linear .4s;
  -moz-transition: all .5s linear .4s;
  -ms-transition: all .5s linear .4s;
  transition: all .5s linear .4s;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  opacity: 0;
}
.fadein-zoom4.active {
  transform: scale(1) ;
  -webkit-transform: scale(1) ;
  -moz-transform: scale(1) ;
  -ms-transform: scale(1) ;
  -o-transform: scale(1) ;
  opacity: 1;
}

/*////////////////////////////// ベーススタイル //////////////////////////////*/

.over-img picture{
  opacity: 1;
  transition: .3s;
}
.over-img:hover picture{
  filter: brightness(0.7);
  -webkit-filter: brightness(0.7);
}

.link-box {
  padding: 15px 20px;
  border-radius: 50px;
  border: 2px solid #ff4081;
  color: #ff4081;
}
.link-box:hover {
  border: 2px solid #ff4081;
  color: #fff;
  background: rgba(194,24,91,0.8);
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
.container {
  margin: 0 auto;
}
.container-magazine {
  margin: 0 auto;
}
.container-magazine a {
  color: #1da1f2;
}
.container-magazine h3, .container-magazine h4 {
  margin: 10px 0;
}
.container-magazine ol, .container-magazine ul, .container-magazine p {
  font-size: 15px;
  line-height:1.9em;
  letter-spacing: 0.02em;
}
.container-magazine ol, .container-magazine ul {
  padding-inline-start: 40px;
}
.wide-form {
  width: 66%;
  height: auto;
  margin: 0 auto;
}
input, select, textarea, button {
  font-family: Helvetica, 'arial', 'NotoSansCJKjp', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", HiraKakuProN-W3, HiraKakuPro-W3, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
}
.letter {
  letter-spacing: 0.14em;
}
.letter1 {
  letter-spacing: 0.1em;
}
.letter2 {
  letter-spacing: 0.04em;
}
.line-height {
  line-height: 1.8em;
}
.mincho {
  font-family: 'Lora', "Sawarabi Mincho", "游明朝", "游明朝 Medium", "Yu Mincho Medium",  YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN W3", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.h1, h2, .h2 {
    margin-top: 30px;
    margin-bottom: 30px;
}
h3, .h3 {
    margin-top: 20px;
    margin-bottom: 20px;
}
h1 {
  font-size: 30px;
  margin: 0px;
}
.heading h1 {
  line-height: 1.4em;
}
h2 {
  font-size: 30px;
}
.big {
  font-size: 34px;
}
.bigger {
  font-size: 110%;
}
.border {
  border: 1px solid #666;
}
.title-size {
  height: 60px;
  margin: 20px;
}
.user-title {
  line-height: 1.5em;
  letter-spacing: 0.08em;
  font-size: 24px;
  margin: 0px 0px 10px;
}
.title-box > h2 {
  font-size: 34px;
  color: #fff;
  letter-spacing: 0.15em;
}
.youtubesm {
  width: 400px;
  height: 225px;
  /*box-shadow: 2px 2px 8px #aaa;*/
}
.bg-box > h2 {
  background-color: #333;
  color: #fff;
  padding: 8px 8px;
  letter-spacing: 0.04em;
}
.sub-title h2 {
  margin: 20px auto 30px;
}
.heading h2 {
  font-size: 38px;
  margin: 60px auto 60px;
  letter-spacing: 0.02em;
}
h2 > big {
  font-size: 110%;
  font-weight: bold;
}
ul, menu, dir {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 20px;
  -moz-padding-start: 20px;
  padding-left: 20px;
}
p {
  line-height:1.9em;
  letter-spacing: 0.06em;
  margin: 0 0 0px;
}
p.info-year {
  font-size: 18px;
}
.just { 
  text-align: justify;
}
.break {
  word-break: break-all
}
.indent-2 {
  padding-left:1em;
  text-indent:-1em;
  letter-spacing: 0.06em;
}
p.indent-1 {
    padding-left:1em;
    text-indent:-1em;
    letter-spacing: 0.06em;
}
a {
  color: #1d2087;
  text-decoration: none;
}
a:hover, a:focus, a:invalid, a:active {
  color: #ff4081;
  text-decoration: none;
  outline: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.under-line a {
  color: #1d2087;
  text-decoration: none;
  display: inline-block;
}
.under-line a::after {
  display: block;
  content: "";
  width: 0%;
  height: 1px;
  background-color: #ff4081;
  margin: 0px auto 0;
  transition: .25s ease-out;
  -webkit-transition: .15s ease-out;
  -moz-transition: .15s ease-out;
  -o-transition: .15s ease-out;
  -ms-transition: .15s ease-out;
}
.under-line a:hover {
  color: #ff4081;
  text-decoration: none;
}
.under-line a:hover::after {
	width: 105%;
}
.pointer {
  cursor: pointer;
}
.row {
  margin-right: 0px;
  margin-left: 0px;
}
.cal {
  letter-spacing: 0.10em;
}
.circle {
  height: 220px;
  margin-top: -30px;
  text-align: left;
}
.award {
  height: 220px;
  margin: 0px 20px;
}
.now {
  font-family: 'Century','serif';
  font-size: 40px;
  color: #b69333;
  margin: -150px 0px 0px 32px;
}
.h-heading h2 {
  margin: 10px 0px;
  line-height: 1.2em;
}
.h-heading h3 {
  margin: 10px 0px;
  line-height: 1.2em;
}
.null-height {
  height: 0px;
  display: none;
}
.corner {
  top: 0;
  left: 0;
  position: absolute;
  margin-top: 5px;
  width: 12%;
  height: auto;
}

/*///////////////////////////////スクロールバースタイル////////////////////////////////*/

/* ボックス内スクロール */
.scr-box {
  /*overflow: scroll;    スクロール表示 */ 
  width: 100%;
  /*height: 240px;*/
  padding: 20px 20px;
  background-color: #ddd;
  font-size: 80%;
}
.scr-box h3 {
  margin: 10px 0  20px;
}
.scr-box2 {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  font-size: 80%;
}
.scr-box2 h2 {
  font-weight: bold;
  margin: 30px 0  20px;
  font-size: 160%;
}
.scr-box2 h3 {
  font-weight: bold;
  margin: 30px 0  24px;
  font-size: 130%;
}
.scr-box2 h4 {
  font-weight: bold;
  margin: 30px 0  24px;
  font-size: 120%;
}
/* Let's get this party started */
::-webkit-scrollbar {
    width: 8px;
    height: 0px;
    background:#eee;
} 
/* Track */
::-webkit-scrollbar-track {
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background:#888;
}
::-webkit-scrollbar-thumb:window-inactive {
	background: #ddd; 
}



/*////////////////////////////// MixItUpのスタイル //////////////////////////////*/

/* Controls
------------------------------------------------------------------------------- */
.controls {
  text-align: center;
}
.ctr-box {
  padding: 5px 10px 5px;
}
.filter,.sort {
  width: 105px;
  display: inline-block;
  padding: 7px 0px 6px;
  background-color: currentColor;
  color: #fff;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  margin: 5px 5px;
  font-size: 13px;
}
.filter[data-filter="all"] {
  background: #ccc;
}
.filter[data-filter=".category-1"] {
  background: #1d2087;
}
.filter[data-filter=".category-2"] {
  background: #7ecef4;
}
.filter[data-filter=".category-3"] {
  background: #f6aa00;
}
.filter[data-filter=".category-4"] {
  background: #aacf53;
}
.filter[data-filter=".category-5"] {
  background: #bc64a4;
}
.sort{
  background: #ccc;
}
.filter:hover,.sort:hover {
  color: #ff4081;
}
.mixitup-control-active {
  color: #ff4081;
}
.mixitup-control-active[data-filter]:after {
  background: transparent;
}
/* Container
------------------------------------------------------------------------------- */
.mixcontainer {
  padding: 1rem;
  text-align: justify;
}

.mixcontainer:after {
  content: '';
  display: inline-block;
  width: 100%;
}

/* Target Elements
------------------------------------------------------------------------------- */
.mix,
.gap {
  display: inline-block;
  vertical-align: top;
}
.mix {
  background: #fff;
  border-top: 40px solid currentColor;
  box-shadow: 2px 2px 8px #aaa;
  border-radius: 8px;
  margin-bottom: 30px;
  position: relative;
}
.mix:hover {
  border-top: 40px solid #ff4081;
  background: #ffffe0;
}
.cate {
  color: #fff;
  font-size: 14px;
  margin: -32px 10px 7px;
  text-align: center;
}
.mix-img {
  margin: 0px 0 -6px;
  width: 100%;
}
.mix-img img {
  z-index: 0;
  position: relative;
}
.mix-txt {
  padding: 10px;
  position: relative;
}
.mix-next {
  margin: 10px 0px;
  color: #ff4081;
}
.mix.category-1 {
  color: #1d2087;
}
.mix.category-2 {
  color: #7ecef4;
}
.mix.category-3 {
  color: #f6aa00;
}
.mix.category-4 {
  color: #aacf53;
}
.mix.category-5 {
  color: #bc64a4;
}
.mix h1 {
  letter-spacing: 0.01em;
}
.mix h2 {
  background: #222;
  padding: 12px 10px 10px;
  color: #fff;
  font-size: 0.8em;
  font-weight: normal;
  margin: -20px -10px 10px;
  float: left;
}
.one {
  clear:both;
  font-weight: bold;
  margin: 8px 0px 0px;
  font-size: 0.9em;
}
.mix p {
  font-size: 0.9em;
  text-align: justify;
}
.ctn-alert {
  background: #eee;
  text-align: center;
  padding: 13px 0px 12px;
  letter-spacing: 0.09em;
  border-bottom: 1px solid #aaa;
}
.ctn-alert a {
  text-decoration: underline;
  color: #f00;
}
.ctn-sub {
  color: #fff;
  background: #222;
  text-align: center;
  padding: 13px 0px 12px;
  letter-spacing: 0.09em;
}
.ctn-case {
  color: #fff;
  background: #1d2087;
  text-align: center;
  padding: 13px 0px 12px;
}
.ctn-QA {
  color: #fff;
  background: #7ecef4;
  text-align: center;
  padding: 13px 0px 12px;
}
.ctn-goods {
  color: #fff;
  background: #f6aa00;
  text-align: center;
  padding: 13px 0px 12px;
}
.ctn-life {
  color: #fff;
  background: #aacf53;
  text-align: center;
  padding: 13px 0px 12px;
}
.ctn-trivia {
  color: #fff;
  background: #bc64a4;
  text-align: center;
  padding: 13px 0px 12px;
}
.ctn-area {
  width: 85%;
  margin: 0 auto; 
}
.ctn-area h2 {
  /*text-align:justify;*/
}
.ctn-area h3 {
  font-weight: bold;
  color: #1d2087;
  padding: 24px 0px 20px;
  line-height: 1.6em;
  /*border-top: 1px solid #444; 
  border-bottom: 1px solid #444; */
}
.ctn-area h5 {
  font-size: 1em;
  line-height: 1.8em;
  letter-spacing: 0.01em;
}
.ctn-area p {
  line-height: 1.8em;
}
.ctn-area li {
  text-align:justify;
  line-height: 1.8em;
}
/* Grid Breakpoints
------------------------------------------------------------------------------- */

/* 1 Columns */
.mix,.gap {
    width: calc(100%/1 - (((1 - 1) * 3rem) / 1));
}
/* 2 Columns */

@media screen and (min-width: 619px) {
    .mix,.gap {
        width: calc(100%/2 - (((2 - 1) * 3rem) / 2));
    }
}
/* 3 Columns */

@media screen and (min-width: 768px) {
    .mix,.gap {
        width: calc(100%/3 - (((3 - 1) * 3rem) / 3));
    }
}


/*////////////////////////////// トグル表示のスタイル //////////////////////////////*/

.listAccordion input {
  display: none;
}
.listAccordion label {
  text-align: center;
  font-size: 10px;
  font-weight: normal;
  display: block;
  color: #ff4081;
  border: 1px solid #ff4081;
  background: linear-gradient(-0deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .0));
  padding: 4px 2px;
  border-radius:3px;
  cursor: pointer;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  -ms-border-radius:3px;
  -o-border-radius:3px;
}
.listAccordion input:checked ~ label {
  color: #ff4081;
  border: 1px solid #ff4081;
  background: linear-gradient(-0deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .0));
}
.listAccordion label:hover {
  color: #ff4081;
  border: 1px solid #ff4081;
  background: linear-gradient(-0deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .0));
}
.listAccordion label:after {
  content: 'OPEN';
}
.listAccordion input:checked ~ .toggle > .middle > label {
  color: #ff4081;
  border: 1px solid #ff4081;
  background: linear-gradient(-0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .1));
}
.listAccordion input:checked ~ .toggle > .middle > label:after {
  content: 'CLOSE';
}
.listAccordion .listTips {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.listAccordion input:checked ~ .listTips {
  padding: 20px 0px 10px;
  height: auto;
  opacity: 1;
}
.listAccordion .listNews {
  height: 0;
  padding: 0px 10px;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.listAccordion input:checked ~ .listNews {
  padding: 0px 10px 20px 10px;
  height: auto;
  opacity: 1;
}
.news-year {
  background-color: #6df;
  padding: 0 10px;
}
.news-sub {
  font-family: Helvetica, 'arial', 'Noto Sans Japanese', "游ゴシック体", "Yu Gothic", YuGothic, HiraKakuProN-W3, HiraKakuPro-W3, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.8em;
  padding: 32px 15px 28px;
  letter-spacing: 0.01em;
  line-height: 1.0em;
}
.news-sub-b {
  padding: 30px 5px;
}

/*////////////////////////////// SNSボタンスタイル //////////////////////////////*/

.share-area {
  background: #eee;
}
ul.share {
  text-align: center;
  padding: 0px 0px 10px;
}
ul.share li {
  display: inline-block;
  width: 90px;
  margin: 3px;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
ul.share li a {
  color: #fff;
}
.share-twitter {
  background: #1da1f2;
}
.share-facebook {
  background: #3b579d;
}
.share-line {
  background: #00B900;
}
.share-google {
  background: #db4437;
}
.share-hatena {
  background: #008FDE;
}
.share-poket {
  background: #ee4056;
}

/*////////////////////////////// カスタムのスタイル //////////////////////////////*/

.box {
  padding: 20px;
  margin: 15px 5px;
  border: 4px solid #1d2087;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.boximg-size {
    width: 95%;
    padding: 10px;
}
.curve {
  vertical-align: bottom;
  margin-bottom: -1px;
}
.exp {
  margin-top: -5px;
  padding: 0 15px 8px;
}
.btn-shadow {
  filter: drop-shadow(3px 3px 4px #666);
  -webkit-filter: drop-shadow(3px 3px 4px #666);
}
.contact-w {
  width: 300px;
}
.container2 {
  margin: 0 auto;
}
.black-box {
  padding: 10px;
  color: #fff;
  margin: 5px auto;
  background-color: #1d2087;
}
.black-box h2 {
  font-size: 140%;
}
.black-box h4 {
  margin: -20px 0px 30px 0px;
  font-size: 90%;
}
.iot-box {
  width: 75%;
  height: auto;
  margin: 0 auto;
  padding: 20px 0;
}
.iot-box a img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.iot-box a:hover img {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}
.iot-btn {
  border-radius: 10px;
  border: 3px solid #ff4081;
  /*box-shadow: 2px 2px 8px #aaa;*/
}
.product-img {
  padding: 5px 30px;
}
[class^="thumb-img"] {
  padding: 10px 5px 3px;
  background: #ff4081;
  cursor: pointer;
}
[class^="thumb-img"] img {
  width:19%;
  height: auto;
  margin: 0px;
}
.tel-pc {
  display: block;
}
.tel-mobile {
  display: none;
}
.sns-size {
  width: 100%;
}
.comment { 
  text-align: left;
}
.box-eee {
  padding: 40px;
}
.padding10 {
  padding: 10px;
}
.padding10-20 {
  padding: 10px 20px;
}
.padding20 {
  padding: 20px;
}
.padding-a {
  padding: 30px;
}
.padding40 {
  padding: 40px;
}
.padding60 {
  padding: 40px;
}
.logo-box {
  margin: 5px;
  padding: 10px 12px 10px;
  background-color: rgba(255,255,255,1);
  width: 300px;
  position: relative;
  z-index: 3;
}
.logo-box .logo {
  height: 60px;
  width: auto;
}
/* タイトル帯スタイル */
.bg-line {
  margin: 0px 0px 0px;
  height: 240px;
  background-color: #7ecef4;
  -webkit-transform: skewY(-3deg);
  -ms-transform: skewY(-3deg);
  -o-transform: skewY(-3deg);
  transform: skewY(-3deg);
  z-index: 1;
  border-top: 0px solid #efefef;
  border-bottom: 0px solid #efefef;
}
.bg-line2 {
  margin: -80px 0px 0px;
  height: 240px;
  background-color: #7ecef4;
  -webkit-transform: skewY(3deg);
  -ms-transform: skewY(3deg);
  -o-transform: skewY(3deg);
  transform: skewY(3deg);
  z-index: 1;
  border-top: 0px solid #efefef;
  border-bottom: 0px solid #efefef;
}
.bg-line-dark1 {
  margin: -50px 0px 0px;
  height: 240px;
  background: linear-gradient(-70deg, rgb(13, 0, 131), rgb(13, 0, 131));
  position:relative;
}
.bg-line-dark2 {
  margin: -80px 0px 0px;
  height: 240px;
  background: linear-gradient(70deg, rgb(13, 0, 131), rgb(13, 0, 131));
  position:relative;
}
.part-title {
  margin-top: -300px;
  position:relative;
}
.part-title2 {
  margin-top: -206px;
  position:relative;
}
.title h1 {
  letter-spacing: 0.10em;
  margin: 24px 0px 2px
}
.title h2 {
  font-size: 58px;
  letter-spacing: 0.09em;
  margin: 24px 0px 2px
}
.title h3 {
  margin: 8px;
}
.title-svg {
  margin-top: -40px;
}
.title-svg-size {
  width: 140px;
  height: 140px;
}
.point-svg-size {
  width: 300px;
  height: 150px;
}
.title2 h3 {
  margin: 30px 0 5px;
  letter-spacing: 0.02em;
  font-size: 24px;
}
.title2 h2 {
  font-size: 58px;
  margin: 0;
  letter-spacing: 0.04em;
}
.lm-title {
  padding: 40px 0px;
}
.lm-title h1 {
  margin: 0;
  letter-spacing: 0.04em;
}
.lm-title h2 {
  margin: 0;
  letter-spacing: 0.04em;
}
.lm-title h3 {
  margin: 0;
  letter-spacing: 0.01em;
  font-size: 24px;
}
/* スマホのみ有効電話番号リンク */
.tel-link {
    color: #ff4081;
}
h2 > .glyphicon {
 	vertical-align: -3px;
}
.glyphicon {
 	vertical-align: -1px;
}
.icon-circle {
  width: 220px;
  height: 220px;
  text-align: center;
  background-color: #000;
  padding: 30px 30px;
  border-radius: 50%;
  margin-top: -50px;
  color: #444;
}
.icon-circle-b {
  width: 220px;
  height: 220px;
  text-align: center;
  background-color: #fff;
  padding: 30px 30px;
  border-radius: 50%;
  margin-top: -50px;
}
.h1-middle {
  color: #1d2087;
  text-align: center;
  margin-top: -150px;
}
.h3-middle {
  color: #1d2087;
  text-align: center;
  margin-top: -20px;
}
.h1-middle-only {
  color: #1d2087;
  text-align: center;
  margin-top: 45px;
}
.h1-point {
  text-align: center;
  margin-top: -40px;
}
.h2-point {
  color: #1d2087;
  text-align: center;
  margin-top: 30px;
}
.liner {
  display: inline-block;
  position: relative; 
}
.liner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 2px solid;
}
.text-top {
  vertical-align: top;
}
.dash-line {
  border-bottom: 1px dashed #aaa;
}
.news-line {
  border-bottom: 1px dashed #333;
}
/* カスタム */
ol {
  display: block;
  list-style-type: decimal;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 22px;
  -moz-padding-start: 22px;
  -ms-padding-start: 22px;
}
.gbox ol {
  -webkit-padding-start: 2.2em;
  -moz-padding-start: 2.2em;
  -ms-padding-start: 2.2em;
}
.gbox > ol > li {
  line-height: 1.9em;
}
.xs-small {
  font-size: 70%;
}
.s-small {
  font-size: 60%;
}
small, .small {
  font-size: 84%;
}
.full {
  margin: 0px -15px;
}
.img-size {
  width: 350px;
}
.img-size1 {
  width: 350px;
}
.img-size2 {
  width: 500px;
}
.img-area {
  padding: 0 5px;
}
.inner {
  margin: 0px 30px;
}
.inner2 {
  padding: 0px 15px;
}
.inner3 {
  padding: 0px 30px;
}
.pdf-w {
  width: 62px;
}
.center {
  text-align: center;
}
.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.center-img-80 {
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.middle {
  vertical-align: middle;
}
.end {
  background-color: #ccc;
  padding: 20px 0;
}
.l-r {
  display: flex;
  justify-content: space-between;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.left-center {
  text-align: left;
}
.right-center {
  text-align: right;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: 500;
}
.t-border {
  background-color: #fff;
  border: 1px solid #333;
  color: #000;
}
.color-LINE {
  color: #31ab38;
}
.color-twitter {
  color: #3296d4;
}
.color-facebook {
  color: #335093;
}
.color-ccc {  
  color: #ccc;
}
.color-gray {  
  color: #666;
}
.color-green {  
  color: #029AA5;
}
.color-life {  
  color: #aacf53;
}
.color-trivia {  
  color: #bc64a4;
}
.color-yellow {  
  color: #FFF000;
}
.color-yellow2 {  
  color: #ff4081;
}
.color-orange {  
  color: #f6aa00;
}
.color-crown {  
  color: #ff8c1a;
}
.color-yellow3 {
  color: #000;
}
.color-darkblue {
  color: #1d2087;
}
.color-black {
  color: #000;
}
.color-blue {
  color: #6df
}
.color-blue3 {  
  color: #fff;
  text-shadow: 
  1px 1px 2px rgba(29, 32, 135, 1.0),
  -1px 1px 2px rgba(29, 32, 135, 1.0),
  1px -1px 2px rgba(29, 32, 135, 1.0),
  -1px -1px 2px rgba(29, 32, 135, 1.0);
}
.color-pink {
  color: #ff4081;
}
.color-red {
  color: #ff2800;
}
.svg-blue {
  color: #1d2087;
}
.svg-blue > svg {
  fill: currentColor;
}
.color-white {
  color: #fff;
}
.margin-L {
  margin-right: 20px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top--20 {
  margin-top: -20px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-top--80 {
  margin-top: -80px;
}
.margin-top-60 {
  margin-top: 60px;
}
.margin-top--60 {
  margin-top: 60px;
}
.margin-top-80 {
  margin-top: 80px;
}
.margin-top-100 {
  margin-top: 100px;
}
.margin-bottom-0 {
  margin-bottom: 0px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-60 {
  margin-bottom: 60px;
}
.margin-bottom-80 {
  margin-bottom: 80px;
}
.margin-bottom-100 {
  margin-bottom: 100px;
}
.padding-20 {
  padding: 20px;
}
.padding-top-10 {
  padding-top: 10px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-top-30 {
  padding-top: 30px;
}
.padding-top-40 {
  padding-top: 40px;
}
.padding-top-50 {
  padding-top: 50px;
}
.padding-top-60 {
  padding-top: 60px;
}
.padding-top-60a {
  padding-top: 60px;
}
.padding-top-80 {
  padding-top: 80px;
}
.padding-top-80a {
  padding-top: 80px;
}
.padding-top-100 {
  padding-top: 100px;
}
.padding-top-100a {
  padding-top: 100px;
}
.padding-bottom-10 {
  padding-bottom: 10px;
}
.padding-bottom-20 {
  padding-bottom: 20px;
}
.padding-bottom-30 {
  padding-bottom: 30px;
}
.padding-bottom-40 {
  padding-bottom: 40px;
}
.padding-bottom-60 {
  padding-bottom: 60px;
}
.padding-bottom--60 {
  padding-bottom: 60px;
}
.padding-bottom-70a {
  padding-bottom: 70px;
}
.padding-bottom-80 {
  padding-bottom: 80px;
}
.padding-bottom-80a {
  padding-bottom: 80px;
}
.padding-bottom-100 {
  padding-bottom: 100px;
}
.padding-bottom-90 {
  padding-bottom: 90px;
}
.padding-bottom-100a {
  padding-bottom: 100px;
}
.border-left {
  border-left: 10px solid #1d2087;
}
.border-left::before {
  white-space: pre-wrap;
  content: " ";
}
.border-bottom {
  border-bottom: 1px solid #1d2087;
}
.border-bottom-dark {
  border-bottom: 1px solid #ccc;
}
.border-top-N {
  border-top: 1px solid #1d2087;
}
.border-top-dark {
  border-top: 1px solid #ccc;
}
.border-top-dark-N {
  border-top: 3px solid #1d2087;
}
.border-top-dark-10 {
  border-top: 10px solid #ccc;
}
.border-bottom-dark-10 {
  border-bottom: 10px solid #ccc;
}
.border-bottom-eee-10 {
  border-bottom: 10px solid #eee;
}
.border-bottom-white {
  border-bottom: 1px solid #fff;
}
.border-bottom-gray {
  border-bottom: 1px solid #666;
}
.border-top-gray {
  border-top: 1px solid #666;
}
.border-bottom-gray80 {
  border-bottom: 1px solid #ddd;
  width: 80%;
  margin: 30px auto;
}
.border-top {
  border-top: 1px solid #7ecef4;
}

/* 背景色スタイル */

.bg-white {
  background-color: #fff;
}
.bg-blue {
  background-color: #6df;
}
.bg-blue2 {
  background-color: #7cf;
}
.bg-p-blue {
  background-color: #a7e3ff;
}
.bg-darkblue {
  background-color: #1d2087;
  color: #fff;
}
.bg-yellow {
  background-color: #fff799;
}
.bg-purple {
  background-color: #9F80FF;
}
.bg-green {
  background-color: #95DD69;
}
.bg-lemon {
  background-color: #ffff8b;
}
.bg-aaa {
  background-color: #aaa;
}
.bg-ccc {
  background-color: #ccc;
}
.bg-eee {
  background-color: #eee;
}
.bg-ddd {
  background-color: #ddd;
}
.bg-333 {
  background-color: #333;
}
.bg-v {
  background: linear-gradient(0deg, rgb(248, 246, 233), rgb(223, 223, 192));
  z-index: 1;
}
.bg-darkgray {
  background-color: #333;
  color: #fff;
}
.over-line {
  margin-top: 0px;
  height: 30px;
  width: 100%;
  background-color: #1d2087;
}
/*/////////////////////////////////吹き出し//////////////////////////////////////*/
.balloon-2 {
	position: relative;
	display: inline-block;
	padding: 40px 0px;
	width: 100%;
	height: auto;
	line-height: 34px;
	text-align: center;
	background: #fff;
	border-bottom: 0px solid #666;
}
.balloon-2:before {
	content: "";
	position: absolute;
	bottom: -21px; 
  left: 50%;
	margin-left: -22px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 22px 22px 0 22px;
	border-color: #fff transparent transparent transparent;
}
.balloon-2:after {
	content: "";
	position: absolute;
	bottom: -22px; 
  left: 50%;
	margin-left: -23px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width:23px 23px 0 23px;
	border-color: #fff transparent transparent transparent;
	z-index: 0;
}
.balloon-3 {
	position: relative;
	display: inline-block;
	padding: 100px 0px;
	width: 100%;
	height: auto;
	line-height: 34px;
	text-align: center;
  background: #1d2087
}
.deco {
  text-decoration: underline;
}
.shadow {
  -webkit-box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 5px -2px rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.4);
}
/* ボタン */
.btn {
	position: relative;
	background-color: #ff4081;
	border: 2px solid #ff4081;
  color: #fff;
  margin: 5px 0px;
  padding: 10px;
  border-radius: 0px;
  font-size: 16px;
	outline: none;
}
.btn:hover {
	background-color: #C2185B !important;
	border-color: #ff4081;
	color: #fff !important;
}
.btn:focus, .btn.focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
.btn:hover::before,
.btn:hover::after {
	width: 0;
	background-color: #ff4081;
}
.btn-width {
  width: 250px;
}
.btn-cal {
  width: 160px;
  margin: 10px 0;
}
/*ボタン非選択*/
.inactive {
  pointer-events: none;
  cursor:none;
}
.inactive .btn {   
	background-color: #ccc !important;
  color: #999;
}

/* テーブルカスタム */
table {
  border-spacing: 0;
  border-collapse: collapse;
}
.table {
  margin: 40px 0px 120px;
  vertical-align: middle;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  padding: 20px 5px;
  line-height: 2.0;
  vertical-align: top;
  border-top: 1px solid #ccc;
}
.table > thead, .table > tbody {
  border-bottom: 1px solid #ccc;
}

.table-style {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.space {
  letter-spacing: 0.04em;
}
.t-head {
  padding: 20px 10px;
  margin: 0px;
  background-color: #1d2087;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}
.f-red {
  background-color: #f00;
  color: #fff;
  font-size: 60%;
  padding: 5px 7px;
  border-radius: 3px;
  font-weight: normal;
  margin: 0 5px 0 0;
  vertical-align: 2px;
}
.table-style > tbody > tr {
  border-top: 0px solid #aaa;
  border-bottom: 1px solid #aaa;
}
.table-style > tbody > tr > th {
  background-color: #ddd;
  color: #333;
  font-size: 14px;
}
.table-style > tbody > tr > td {
  background-color: #ffffb4;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
.table-style > tbody > tr > th, .table-style > tbody > tr > td {
  padding: 20px 10px;
}
.table-lp {
  margin: 10px auto;
  width: 95%;
  color: #1d2087;
  font-size: 80%;
}
.table-lp > thead > tr > th, .table-lp > tbody > tr > th, .table-lp > tfoot > tr > th, .table-lp > thead > tr > td, .table-lp > tbody > tr > td, .table-lp > tfoot > tr > td {
  padding: 4px 8px;
  text-align: left;
  line-height: 2.0;
  vertical-align: middle;
  border: 1px solid #aaa;
  background-color: #FFF;
}
.table-sns {
  margin: 0px auto;
  width: 100%;
  table-layout:fixed;
  background-color: #fff;
}
.table-sns > thead > tr > th, .table-sns > tbody > tr > th, .table-sns > tfoot > tr > th, .table-sns > thead > tr > td, .table-sns > tbody > tr > td, .table-sns > tfoot > tr > td {
  padding: 30px;
  text-align: center;
  vertical-align: middle;
  border: 10px solid #1d2087;
}
.table-recruit {
  margin: 0px 0px 0px;
  width: 100%;
}
.table-recruit > thead > tr > th, .table-recruit > tbody > tr > th, .table-recruit > tfoot > tr > th, .table-recruit > thead > tr > td, .table-recruit > tbody > tr > td, .table-recruit > tfoot > tr > td {
  padding: 20px 30px;
  line-height: 2.0;
  vertical-align: top;
}
.table-company {
  width: 100%;
  margin: 30px 10px 80px;
}
.table-company > thead > tr > th, .table-company > tbody > tr > th, .table-company > tfoot > tr > th, .table-company > thead > tr > td, .table-company > tbody > tr > td, .table-company > tfoot > tr > td {
  padding: 20px 30px;
  line-height: 2.0;
  vertical-align: top;
}
.table-company > tbody > tr > th {
  font-weight: bold;
}
.table-history {
  margin: 30px 0px 80px;
}
.table-history > thead > tr > th, .table-history > tbody > tr > th, .table-history > tfoot > tr > th, .table-history > thead > tr > td, .table-history > tbody > tr > td, .table-history > tfoot > tr > td {
  padding: 40px 20px;
  line-height: 2.0;
  vertical-align: top;
  font-size: 85%;
}
.table-history > tbody > tr > th {
  text-align: right;
  font-weight: normal;
}
.date-box {
  color: #fff;
  background-color: #1d2087;
  padding: 5px 20px;
  font-size: 80%;
  border-radius: 0px;
}
.blue-box {
  margin: 0px 0px 20px;
  text-align: center;
  /*background-color: #fff;*/
  border: 0px solid #1d2087;
  padding: 22px 5px 20px;
}
.blue-box h2 {
  margin: 0px;
}
.blue-box-round {
  margin: 50px 0 30px;
  text-align: center;
  background-color: #7ecef4;
  border-radius: 40px;
  padding: 10px 20px 8px;
  color: #1d2087;
}
.table-box {
  margin: 5px;
  text-align: left;
  border: 1px solid #888;
  border-left: 1px solid #888;
  background-color: #eee;
  padding: 8px 0px 8px 10px;
  color: #000;
}
.table-box p {
  font-weight: 400;
  font-size: 80%;
  letter-spacing: 0.01em;
}
.yellow-box {
  margin: 5px;
  text-align: center;
  background-color: #FFF000;
  border: 1px solid #1d2087;
  padding: 20px 5px;
  color: #1d2087;
}
.yellow-box p {
  font-size: 90%;
}
.yellow-box-round {
  margin: 50px 0 30px;
  text-align: center;
  background-color: #fff176;
  border-radius: 20px;
  padding: 30px 20px;
  color: #1d2087;
}
.darkblue-box {
  margin: 20px 0;
  text-align: center;
  color: #fff;
  background-color: #1d2087;
  padding: 20px 5px;
}
.darkblue-box h3 {
  margin: 0px;
}
.comment-box {
  background-color: #7ecef4;
  border-radius: 1px;
  padding: 10px 10px 12px;
}
.comment-box-p {
  background-color: #ff4081;
  border-radius: 1px;
  padding: 10px 10px 12px;
}
.news-date {
  vertical-align: -3px;
  text-align: center;
  font-size: 14px;
  background-color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.news-date2 {
  background-color: #000;
  padding: 5px;
  border-radius: 5px;
  width: 120px;
}
.news-box {
  font-size: 10px;
  background-color: #1d2087;
  border-radius: 20px;
  padding: 10px 12px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.null-space {
  margin: 0px 10px;
}
.null-space-mini {
  margin: 0px 2px;
}
.recruit-box {
  margin: 10px 0;
  border: 1px solid #666;
  padding: 20px 30px;
}
.recruit-title-box {
  background-color: #666;
  padding: 25px;
  margin: -21px -21px 10px -21px;
}
.recruit-title-box h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.10em;
  color: #fff;
}
.recruit-header {
  margin-left: 40px;
}

/* テキストボックス */
.text-box {
  margin: 0 auto;
  padding: 10px;
}
.text-box-lm {
  height: 600px;
  padding: 100px;
  z-index: 0;
}
.box-middle {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-55%); /* Safari用 */
  transform: translateY(-55%);
}
.box-middle h1 {
  letter-spacing: 0.06em;
  font-size: 50px;
}
.left-box {
  width: auto;
  text-align: left;
  margin: 0 auto;
}
.en-left {
  position: absolute;
  left: 40px;
  top: 220px;
  font-size: 80px;
  letter-spacing: 0.1em;
  color: #fff;
}
.en-left1 {
  position: absolute;
  left: 10px;
  top: 362px;
  font-size: 80px;
  line-height: 0.9em;
  letter-spacing: 0.1em;
  color: #fff;
}
.en-right {
  position: absolute;
  right: 40px;
  top: 220px;
  font-size: 70px;
}
.number-size {
  width: 180px;
  height: 100%;
}
.number {
  z-index: 1;
  text-align: right;
  padding: 5px;
  margin-bottom: -120px;
} 
.number2 {
  z-index: 1;
  text-align: left;
  padding: 5px;
  margin-bottom: -120px;
} 
.point {
  position: absolute;
  left: 0px;
  top: -100px;
} 
.point2 {
  position: absolute;
  right: 0px;
  top: -100px;
} 
/* サブボックス */
.sub-box {
  background: linear-gradient(-0deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
  border-radius: 0px;
  border: 3px solid #ff4081;
  padding: 15px 30px 14px;
  margin: 20px 0px;
  color: #ff4081;
}
.sub-box:hover {
	background: linear-gradient(-0deg, rgba(194, 24, 91, .9), rgba(194, 24,91, .7));
  border: 3px solid #fff;
  color: #fff;
}
.sub-box h2 {
  margin: 8px 5px;
}
.sub-box2 {
  border-radius: 0px;
	padding: 20px 20px 18px;
  margin: 0px 0px;
  border: 3px solid #ff4081;
  color: #ff4081;
}
.sub-box2:hover {
	background: linear-gradient(-0deg, rgba(194, 24, 91, .9), rgba(194, 24, 91, .7));
  border: 3px solid #fff;
  color: #fff;
}
.sub-box2 h2 {
  margin: 8px 5px;
}
.sub-box h5 {
  font-size: 22px;
	display: table-cell;
	vertical-align: middle;
  font-weight: normal;
	margin: 0;
}
.sub-box .btn {
  margin-top: 2px;
}
.sub-box2 .btn {
  margin-top: 12px;
}
.sitemap-box {
  text-align: center;
  margin:0px 20px 40px;
  padding: 45px 0px 50px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #444;
  box-shadow: 2px 2px 8px #aaa;
}
.sitemap-box h3 {
  margin:8px 0px 14px;
  font-weight: bold;
}
.contents-box {
  text-align: center;
  margin:0px 20px 40px;
  padding: 45px 0px 50px;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 0px;
  color: #444;
  box-shadow: 2px 2px 8px #ccc;
}
/*////////////////////////////ランディングのスタイル/////////////////////////////*/
.lp-arrow {
  position: relative;
  top: -126px;
}
.lp-arrow1 {
  position: relative;
  top: 0px;
  margin-bottom: -74px;
  z-index: 1;
}
.lp-arrow2 {
  position: relative;
  top:-20px;
  margin-bottom: -82px;
  z-index: 1;
}
.lp-arrow3 {
  position: relative;
  top:30px;
  z-index: 1;
}
.lp-arrow4 {
  position: relative;
  top:-110px;
  margin-bottom: -82px;
  z-index: 1;
}
.lp-arrow-size {
  width: 300px;
  height: auto;
}
.lp-title-arrow {
  position: relative;
  margin-top: -2px;
  margin-bottom: -40px;
  z-index: 1;
}
.lp-title-arrow-size {
  width: 440px;
  height: auto;
}
.btn4p-size {
  width: 300px;
  height: auto;
}
.img-responsive {
  width: 100%;
  height: auto;
}
.img-responsive1 {
  width: 90%;
  height: auto;
  margin: 0 auto;
}
.img-responsive2 {
  width: 70%;
  height: auto;
  margin: 0 auto;
}
.img-responsive3 {
  width: 40%;
  height: auto;
  margin: 0 auto;
}
/*///////////////////////////////背景のスタイル///////////////////////////////*/

.bg0 {
  height: 100%;
  background: #fff;
  z-index: -2;
}
.bg00b {
  background-image: url("../img/bg01.svg");
	background-position: 50% 50%;
  background-repeat: repeat;
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  z-index: -2;
  background-attachment: fixed;
} 
.bg00d {
  background-image: url("../img/bg03.svg");
	background-position: 50% 50%;
  background-repeat: repeat;
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  z-index: -2;
  background-attachment: fixed;
} 
.bg00c {
  background-image: url("../img/bg04.png");
	background-position: 50% 50%;
  background-repeat: repeat;
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  z-index: -2;
  background-attachment: fixed;
} 
.bg01 {
  margin-top: 0px;
  margin-bottom: -40px;
	background-attachment: fixed;
	height: auto;
	background-position: 50% 50%;
  background-image: linear-gradient(-45deg, rgba(0, 30, 60, .1), rgba(0, 0, 30, .1)),url("../img/bg-partner.gif");
	background-repeat: no-repeat;
	background-size: cover;	
} 
.bg03 {
  margin-top: 0px;
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2)),url("../img/home_bg_3.jpg");
	background-repeat: no-repeat;
	background-size: cover;	

	background-attachment: fixed; 
	height: auto;
	background-position: 50% 50%;
}
.LM-COPY-BOX {
  width: auto;
  height: auto;
  border: 7px solid #000;
  background-color: #fff;
  padding: 5px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.back-darkblue {
  background-color: #1d2087;
  border: 8px solid #1d2087;
}
.line-darkblue {
  border: 8px solid #1d2087;
}
.LM-COPY-BOX h2 {
  font-size: 2.4vw;
  font-weight: 700;
  letter-spacing: 0.0em;
  color: #000;
}
.back-darkblue h2 {
  color: #fff;
}
.line-darkblue h2 {
  color: #1d2087;
}
.COPY-ACNT {
  font-size: 2.4vw;
  font-weight: 700;
  color: #B79500;
}
.LM-COPY-BOX-S {
  width: auto;
  height: auto;
  border: 7px solid #000;
  background-color: #fff;
  padding: 5px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.line-darkblue-S {
  border: 8px solid #1d2087;
}

.LM-COPY-BOX-S h3 {
  font-size: 1.6vw;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #000;
}
.line-darkblue-S h3 {
  color: #1d2087;
}
.COPY-ACNT-B {
  font-size: 1.6vw;
  font-weight: 700;
}
.COPY-ACNT-S {
  font-size: 1.6vw;
  font-weight: 700;
  color: #B79500;
}
.img-center-size {
  margin: 0 auto;
  width: 70%;
}


.lifemail-ttl-size {
  height: 100%;
  width: 800px;
}
.bg-lmX {
  background-image: url("../img/worry.png");
  margin-bottom: 0px;
  height: 600px;
  width: auto;
  background-position: center;
  background-size: cover;
} 
.bg-lm0 {
  background-image: url("../img/2020LM-INTRO-1.svg");
  margin-bottom: 0px;
  height: 600px;
  background-position: center;
  background-size: cover;
} 
.bg-lm1  {
  background-image: url("../img/2020LM-INTRO-2.svg");
  margin-bottom: 0px;
  height: 600px;
  background-position: center;
  background-size: cover;
}   
.bg-lm2  {
  background-image: url("../img/2020LM-INTRO-3a.svg");
  margin-bottom: 0px;
  height: 600px;
  background-position: center;
  background-size: cover;
}  
.bg-lm3  {
  background-image: url("../img/2020LM-INTRO-4a.svg");
  margin-bottom: 0px;
  height: 600px;
  background-position: center;
  background-size: cover;
}
.no-title {
  margin-top: 50px;
}
.bg-layer {
  width: 100%;
  margin-top: -18%;
  padding-top: 9.375%;
}
.title-area {
  width: 100%;
  height: 500px;
  background-color: #fff;
  z-index: 1;
}
.title-area h2 {
  font-size: 60px;
  color: #fff;
}
.titlename-box {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 340px;
  z-index: 1;
}
.titlename-box2 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 220px;
}
.titlename-box2 h3 {
  font-size: 30px;
  margin: 10px 0;
  color: #fff;
}
.img-fit {
  width:100%;
  max-width: 100%;
  height: auto;
  margin-bottom: -1px;
}

/*////////////////////////////// ナビゲーションのスタイル //////////////////////////////*/
.navbar {
  border-radius: 0px;
  position: relative;
  min-height: 50px;
  margin-bottom: 0px;
  z-index: 99;
}
.lm-navbar {
  border-radius: 0px;
  position: relative;
  min-height: 50px;
  margin-bottom: 0px;
  z-index: 1;
  background-color: #fff;
  width: 100%;
  position: fixed;
}
.navbar, .navbar.navbar-default {
  background: #fff;
}
.navbar-title {
  background: #fff;
}
.null-nav {
  top: 0;
  background: #fff;
  height: 66px;
}
#globalNavi {
  background-color: #fff;
  z-index: 1000;
}

.table-ul .active {
  color: #ff4081;
  text-decoration: none;
}
.table-ul {
  display: table;
  table-layout: fixed;
  text-align: center;
  width: 100%;
  margin: 9px 0px 0px;
  padding: 0px;
  border-top: 1px solid #ccc;
}
.table-ul a {
  letter-spacing: 0.0em;
  display: table-cell;
  color: #1d2087;
  vertical-align: middle;
  border-left: 0px solid #666;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
  background: #fff;
}
.table-ul a li {
  padding: 10px 0px;
  display: inline-block;
  text-decoration: none;
}
.table-ul>a:hover, .table-ul>a:focus {
  color: #fff !important;
  text-decoration: none;
  background-color: #ff4081;
  z-index: 9999;
}
.navbar-collapse {
  margin: 0 0px 0;
  padding-right: 0px;
  padding-left: 0px;
  background-color: #fff;
}
.text-middle-nav {
  vertical-align: 8px;
  padding: 0 0 0 10px;
}
.logo {
  height: 60px;
  margin: 9px 0px;
  display: inline-block;
}
.logo2 {
  height: 140px;
  margin-top: -10px;
  margin-bottom: -5px;
}
.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
.fixed {
  position: fixed;
  width: 100%;
  background-color: #fff;
  transform: translate3d(0, 0, 0);
  z-index: 10000;
}

.fixed .border-bottom-dark {
	border-bottom: 10px solid #ccc;
}
.no-display {
  display: none;
}
.in-line {
  display: inline;
}
/*///////////////////////////////フォームスタイル///////////////////////////////*/

form p {
  margin: 20px 0px 10px;
}
.form-style {
  background-color: #fff;
  color: #333;
  padding: 10px;
  margin: 5px 0px;
  font-size: 16px;
  border: 2px solid #999;
  border-radius: 4px;
}
.form-control {
  width: 99%;
  height: 100%;
  padding: 18px 10px 18px;
  margin: 0px 0px 10px;
  font-size: 16px;
  color: #333;
  border-radius: 4px;
  border: 0px solid #fff;
  background-color: #fff;
  -webkit-transition: none;
  transition: none;
  /*box-shadow: 1px 1px 2px #666 inset;*/
}
.form-control-pink {
  height: 100%;
  padding: 14px 10px;
  margin: 10px 0px;
  font-size: 16px;
  border-radius: 4px;
  border: 0px solid #333;
  background-color: #ff4081;
  color: #fff;
  width: 80px;
}
.form-group {
  margin-bottom: 0px;
}
input, textarea, select, button { 
  outline: none;
}
button {
	cursor: pointer;
}
textarea {
  resize: none;
}
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc; opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}
/*////////////////////////////ラジオ・チェックボックス/////////////////////////////*/
.radio-style h3 {
  margin: 10px 0;
}
label {
  font-weight: bold;
  margin: 0px;
}
input[type="radio"], input[type="checkbox"] {
  margin: 0px;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 0;
}
:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.check-style input[type="checkbox"]:checked,
.check-style input[type="checkbox"]:not(:checked) {
	display: none;
}
.check-style input[type="checkbox"]:checked + label,
.check-style input[type="checkbox"]:not(:checked) + label {
	position: relative;
	padding-left: 14px;
	cursor: pointer;
	line-height: 16px;
	display: inline-block;
}
.check-style input[type="checkbox"]:checked + label:before,
.check-style input[type="checkbox"]:not(:checked) + label:before {
	content: '';
	position: absolute;
  left: 4px;
	top: -4px;
	width: 20px;
	height: 20px;
	border: 4px solid #ff4081;
	background: #fff;
}
.check-style input[type="checkbox"]:checked + label:after,
.check-style input[type="checkbox"]:not(:checked) + label:after {
	content: '';
	width: 8px;
	height: 8px;
	background: #ff4081;
	position: absolute;
	top: 2px;
	left: 10px;
}
.check-style input[type="checkbox"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}
.check-style input[type="checkbox"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}
.radio-style input[type="radio"]:checked,
.radio-style input[type="radio"]:not(:checked) {
	display: none;
}
.radio-style input[type="radio"]:checked + label,
.radio-style input[type="radio"]:not(:checked) + label {
	position: relative;
	padding-left: 18px;
	cursor: pointer;
	line-height: 16px;
	display: inline-block;
}
.radio-style input[type="radio"]:checked + label:before,
.radio-style input[type="radio"]:not(:checked) + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: -9px;
	width: 30px;
	height: 30px;
	border: 4px solid #ff4081;
	background: #fff;
	border-radius: 100%;
}
.radio-style input[type="radio"]:checked + label:after,
.radio-style input[type="radio"]:not(:checked) + label:after {
	content: '';
	width: 18px;
	height: 18px;
	background: #ff4081;
	position: absolute;
	top: -3px;
	left: 6px;
	border-radius: 100%;
}
.radio-style input[type="radio"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}
.radio-style input[type="radio"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}
.radio-inline, .checkbox-inline {
  margin-top: 0;
  margin-left: 0px;
  padding-left: 10px;
}
/*/////////////////////////////CSSのみで画像拡大//////////////////////////////*/

.padding-box {
  padding: 10px;
}
.img-box {
  box-shadow: 2px 2px 8px #aaa;
  margin: 15px 0;
}

.awd input[type="checkbox"] {
  display: none;
}

.dummy {
  margin:15px auto;
}
/* メインの上の黒 */
.close-menu {
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  visibility: hidden;
  opacity: 0;
}
.awd input[type="checkbox"]:checked ~ .close-menu {
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-delay: .0s;
  transition-delay: .0s;
  background: rgba(0,0,0,.8);
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.awd1, .awd2, .awd3 {
  height: auto;
  width:auto;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  display: table;
}
.check01:checked ~ .awd1, .check02:checked ~ .awd2, .check03:checked ~ .awd3 {
  visibility: visible;
  opacity: 1;
  position: fixed;
  z-index: 9999;
  top: 20%;
  width: 100%;
  max-width: 1050px;
  margin: 0 -8px;
}
.padding-box label {
  cursor: pointer;
}

/*//////////////////////////////フッターのスタイル///////////////////////////////*/
footer {
  /*background-color: #7ecef4;*/
  color: #1d2087;
}
footer p {
  font-size: 12px;
  letter-spacing: 1;
  margin: 0px;
}
footer a {
  color: #1d2087;
  text-decoration: none;
  display: inline-block;
}
.facebook {
  padding: 20px 0px 14px;
}
footer a:hover {
  color: #ff4081;
  text-decoration: none;
}
footer a:hover::after {
	width: 101%;
}
footer a:focus {
  text-decoration: none;
}
.footer-upper {
  border-top: 1px solid #1d2087;
}
.footer-margin {
  margin: 10px 0;
  text-align: center;
}
.footer-middle-nav {
  vertical-align: 5px;
  padding: 0 0 0 24px;
}
ul.lp-footer {
  display:table;
  table-layout:fixed;
  width:100%;
  padding: 0px;
  text-decoration: none;
}
ul.lp-footer li {
  display:table-cell;
  vertical-align:middle;
  text-align: center;
  padding: 24px 0 18px
}
ul.lp-footer li a{
  text-decoration: none;
}
.margin-20 {
  margin: 20px 0;
}
.margin-30 {
  margin: 30px 0;
}
.margin-right {
  margin: 0 20px;
}
.logo3 {
  height: 34px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.logo4 {
  height: 60px;
}
.logo5 {
  width: 100%;
}
.logo6 {
  width: 570px;
}
/*///////////////////////////ページアニメーション用/////////////////////////////*/

.animContent {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: up;
  animation-name: up;
}
@keyframes up {
  0% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
}
  30% {
    opacity: 0.0;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
}
/*//////////////////////////////グーグルマップ///////////////////////////////*/
#mapArea1 {
    width: 100%;
    height: 590px;
    margin: 0px 0px 0px;
    z-index: -1;
    background-color: #fff;
}
#infoWindow {
  font-family: HiraKakuProN-W3,HiraKakuPro-W3,"ヒラギノ角ゴ ProN W3","ヒラギノ角ゴ Pro W3",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
  text-align: center;
  color: #1d2087;
  background-color: #fff;
  padding: 5px 0px 0px 5px;
  margin: 0px 8px 8px 0px;
  line-height: 1.4;
}
#infoWindow span {
  margin: 10px 0px;
  font-weight: bold;
}
#infoWindow img {
  height: 50px;
}
/*//////////////////////////////ページトップスクロール///////////////////////////////*/
.pagetop {
  display: none;
  position: fixed;
  width: 65px;
  bottom: -7px;
  right: 0px;
  z-index: 10000;
}
@keyframes action {
    0% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        opacity: 0.5;
    }
    100% {
        transform: scale(2.0);
        -webkit-transform: scale(2.0);
        opacity: 0;
    }
}
/*/////////////////////////////////メディアクエリ///////////////////////////////*/

@media screen and (max-width:479px) {
  .img-responsive3 {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .animContent {
    -webkit-animation-duration: 0.6s;
    animation-duration: unset;
    -webkit-animation-name: none;
    animation-name: none;
  }
  [class^="thumb-img"] img {
    width:18%;
    margin: 1px;
  }
  .exp {
    margin-top: 5px;
    padding: 0 0px 10px;
  }
  .box {
    padding: 15px;
  }
  .ctn-area h5 {
    font-size: 0.9em;
  }
  .grid-slide {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
    margin-top: 0px;
    
    align-items: center;
  }
  .grid-slide > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-slide > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .grid-title {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 2fr;
    -ms-grid-columns: 1fr 2fr;
    row-gap: 20px;
    position: fixed;
  }
  .grid-title > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-title > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    display: none;
  }
  .grid-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 0px;
  }
  .grid-top > .gbox:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-row: 2; grid-column: 1;
  }
  .grid-top > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1; grid-column: 1;
  }
  .grid-news {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
  .grid-news > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    margin: 5px 0px;
  }
  .grid-news > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    margin: 5px 0px;
  }
  .grid-news > .gbox:nth-of-type(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    margin: 5px 0px;
  }
  .grid2-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
    row-gap: 0px;
  }
  .grid2-1 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1; grid-column: 1;
  }
  .grid2-1 > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-row: 2; grid-column: 1;
  }
  .grid2-1 > .gbox2:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-row: 2; grid-column: 1;
  }
  .grid2-1 > .gbox2:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1; grid-column: 1;
  }
  .grid-magazine {
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
    row-gap: 20px;
  }
  .grid-magazine > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-magazine > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid3 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
  .grid3 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid3 > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid3 > .gbox:nth-of-type(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid3-2-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
  }
  .grid3-2-1 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid3-2-1 > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .grid3-2-1 > .gbox:nth-of-type(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid3-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
  .grid3-1 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(6) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(8) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(9) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(10) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(11) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(12) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(13) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(14) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(15) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(16) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(17) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(18) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
  }
  .grid4 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .grid4 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid4 > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .grid4 > .gbox:nth-of-type(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid4 > .gbox:nth-of-type(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  .open-width {
    width: 88px;
    margin: 0 auto;
  }
  .pc-lifemail {
    width: 100%;
    height: 560px;
  }
  .LM-TOP-BOX {
    width: auto;
    height: 500px;
    padding: 0px;
  }
  .LM-COM-BOX {
    padding: 0px 0px;
    width: 100%;
  }
  .LM-TOP-R {
    margin: 70px auto 20px;
    height: auto;
    width: 190px;
    display: block;
  }
  .LM-TOP-R h1 {
    font-size: 14px;
    letter-spacing: 0.0em;
    line-height: 1.2em;
  }
  .LM-TOP-R h5 {
    font-size: 13px;
    margin: 5px 0px 0px;
  }
  .LM-TOP-LOGO {
    width: 95%;
    margin: 3px auto 0px;
  }
  .LM-TOP-PRICE {
    margin: 2px auto;
  }
  .LM-TOP-L {
    width: 100%;
    margin: 0 auto;
  }
  .LM-TOP-PHONE {
    height: 200px;
    width: auto;
    position: absolute;
    top: -78px;
    bottom: auto;
    left: 51%;
    transform: translateX(-51%);
  }
  .LM-INFO-TOP {
    margin-top: -5px;
  }
  .LM-SUB-TTL h2 {
    font-size: 13px;
  }
  .ACNT {
    font-size: 14px;
  }
  .ACNT2 {
    font-size: 14px;
  }
  .box-middle h3 {
    font-size: 5.4vw;
  }
  .ACNT3 {
    font-size: 5.5vw;
  }
  .box-middle h4 {
    font-size: 15px;
  }
  .LM-COPY-BOX {
    border: 3px solid #000;
    padding: 5px 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .back-darkblue {
    border: 3px solid #1d2087;
  }
  .line-darkblue {
    border: 3px solid #1d2087;
  }
  .LM-COPY-BOX h2 {
    font-size: 16px;
    margin: 5px 0;
  }
  .COPY-ACNT {
    font-size: 17px;
  }
  .LM-COPY-BOX-S {
    border: 3px solid #000;
    padding: 5px 0;
    border-radius: 10px;
  }
  .line-darkblue-S {
    border: 3px solid #1d2087;
  }
  .LM-COPY-BOX-S h3 {
    font-size: 14px;
    margin: 5px 0px;
  }
  .COPY-ACNT-S {
    font-size: 14px;
  }
  .LM-PNT-TTL {
    margin: -20px 0px 0px;
    padding: 80px 0px;
  }

  .container {
    width: 95%;
  }
  .container-magazine {
    width: 95%;
  }
  .container-magazine ol, .container-magazine ul, .container-magazine p {
    font-size: 14px;
  }
  .wide-form {
    width: 85%;
  }

  .slide-container-vertical>.slide-pagination-bullets {
    left: 6px;
    top: 53%;
  }

  .news-sub {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%); /* Safari用 */
    transform: translateY(-50%);
  }
  .news-sub-b {
    margin: 0px 0px;
  } 
  .ctn-area {
    width: 90%;
  }
  .a-logo {
    width: 280px;
  }
  p.info-year {
    font-size: 16px;
    margin: 0px 10px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%); /* Safari用 */
    transform: translateY(-50%);
  }
  .bg-p-blue {
    margin-top: 30px;
  } 
  .center-img-80 {
    width: 90%;
    margin-top: 0px;
  }
  .left-center {
    text-align: center;
  }
  .right-center {
    text-align: center;
  }
  .name-p {
    display: none;
  }
  .name-m {
    display: block;
  }
  .product-img {
    padding: 5px 0px;
  }
  .tel-pc {
    display: none;
  }
  .tel-mobile {
    display: block;
  }
  .bigger {
    font-size: 100%;
  }
  .btn-width {
    width: 200px;
  }
  .null-title {
    height: 136px;
  }
  .slide-mobile {
    display: block;
  }
  .slide-top {
    display: none;
  }
  
  .slide-anm:last-child {
    height: 560px;
  }
  .slide-anm {
    top: 560px;
    height: 560px;
  }
  @keyframes slideshow {
    0% {
      top: 560px;
    }
    2% {
      top: 0;
    }
    25% {
      top: 0;
    }
    27% {
      top: -560px;
    }
    100% {
      top: -560px;
    }
  }
  .slide-mobile .slide-container {
    width: 100vw;
    height: 560px;
    margin-top: -50px;
  }
  .slide-img {
    height: 560px;
  }
  .top-news {
    margin-top: -82px;
  }
  .top-news2 {
    margin-top: -18px;
  }

  .ttl-logo-size-mobile {
    width: 70%;
    height: auto;
    margin: 10px auto 0px;
  }
  .ttl-next-size {
    width: 70px;
    height: auto;
    top: -30px;
    left: 78%;
    right: 22%;
    z-index: 6;
  }
  .ttl-under-size {
    width: 65px;
    height: 65px;
    position: fixed;
    top: auto;
    bottom: 50px;
    right: 0px;
  }
  .mov-box{
    position: relative;
    width: 202px;
    height: 157px;/*112+45*/
    bottom: auto;
    right: auto;
    margin: -210px auto 40px;
    padding: 1px 0 0;
  }
  .mov-size {
    width: 200px;
    height: 113px;
  }
  .youtubesm {
    width: 260px;
    height: 147px;
  }
  .scroll {
    display: none;
    padding-top: 0px;
  }
  .comment { 
    text-align: center;
    letter-spacing: -0.02em;
  }
  .box-eee {
    padding: 40px 10px;
  }
  .wide-xs {
    width: 50%;
  }
  .wide-sm {
    width: 100%;
  }
  .wide-lg {
    width: 100%;
  }
  .margin-top-60 {
    margin-top: 30px;
  }
  .margin-top-80 {
    margin-top: 50px;
  }
  .margin-top-100 {
    margin-top: 50px;
  }
  .margin-top--80 {
    margin-top: 0px;
  }
  .margin-bottom-60 {
    margin-bottom: 30px;
  }
  .margin-bottom-80 {
    margin-bottom: 50px;
  }
  .margin-bottom-100 {
    margin-bottom: 50px;
  }
  .padding40 {
    padding: 20px;
  }
  .padding60 {
    padding: 30px;
  }
  .padding-top-60 {
    padding-top: 30px;
  }
  .padding-top-80 {
    padding-top: 40px;
  }
  .padding-top-100 {
    padding-top: 50px;
  }
  .padding-bottom-60 {
    padding-bottom: 30px;
  }
  .padding-bottom-80 {
    padding-bottom: 40px;
  }
  .padding-bottom-90 {
    padding-bottom: 60px;
  }
  .padding-bottom-100 {
    padding-bottom: 50px;
  }
  .menu {
    display: none;
  }
  .title-size {
    height: 40px;
    margin: 20px 0px;
  }
  .nav-menu {
    display: block;
    margin: 5px 0;
    position: absolute;
    top: 0;
    z-index: 2;
  }
  .nav-btn {
    display: none;
  }
  .logo {
    height: 40px;
    margin: 10px 5px 5px 10px;
  }
  .logo-box {
    margin: 0px;
    padding: 10px 12px 12px;
    width: 100%;
  }
  .logo-box .logo {
    height: 40px;
    margin: 5px 0px 0px;
  }
  .price-size {
    width: 100%;
    height: 100%;
  }
  .title2  {
    margin: 0px 0px 0px;
  }
  .title2 h3 {
    margin: 0px 0 5px;
    letter-spacing: 0.02em;
    font-size: 15px;
  }
  .title2 h2 {
    font-size: 22px;
    margin: 0;
    letter-spacing: 0.02em;
  }
  .lm-title {
    padding: 20px 0px;
  }
  .lm-title h1 {
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title h2 {
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title h3 {
    margin: 0;
    letter-spacing: 0.01em;
    font-size: 15px;
  }
  .big {
    font-size: 24px;
  }
  .bg-lm0, .bg-lm1, .bg-lm2, .bg-lm3, .bg-lm4 {
    height: 300px;
  }
  .bg-lm5, .bg-lm6, .bg-lm7 {
    height: 300px;
  }
  .box-middle h1 {
    letter-spacing: 0.02em;
    font-size: 28px;
  }
  .left-box {
    width: 240px;
    text-align: left;
    margin: 0 auto;
  }
  .logo4 {
    height: 32px;
  }
  .logo-iot {
    height: 90px;
    margin-top: 24px;
  }
  .lifemail-ttl-size {
    height: auto;
    width: 75%;
  }
  .lm-title-box {
    height:440px;
    width: 100%;
  }
  .top- {
    top: -5px;
  }
  .top-margin {
    margin-top: -80px;
  }
  .top-marginX {
    margin-top: -5px;
  }
  .lp-arrow {
    top: 0px;
  }
  .lp-arrow1 {
    top: -28px;
  }
  .lp-arrow2 {
    top: -20px;
  }
  .lp-arrow3 {
    top: 20px;
  }
  .lp-arrow4 {
    top: -50px;
  }
  .lp-arrow-size {
    width: 150px;
    height: auto;
  }
  .lp-title-arrow {
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .lp-title-arrow-size {
    width: 220px;
    height: auto;
  }
  .bg-line-dark1 {
    margin: -10px 0px 0px;
    height: 180px;
  }
  .bg-line-dark2 {
    margin: -20px 0px 0px;
    height: 180px;
  }
  .part-title {
    margin-top: -160px;
  }
  .part-title2 {
    margin-top: -120px;
  }
  .en-right {
    position: absolute;
    right:5px;
    top: 80px;
    font-size: 20px;
  }
  .en-left1 {
    position: absolute;
    left: 5px;
    top: -10px;
    font-size: 32px;
  }
  .en-left {
    position: absolute;
    left: 5px;
    top: -10px;
    font-size: 32px;
  }
  .lp-sub-title-size {
    width: 60%;
    height: auto;
  }
  .lp-title-size {
    width: 100%;
    height: auto;
  }
  .number-size {
    width: 70px;
    height: 100%;
  }
  .number {
    right: 5px;
    top: 5px;
  }
  .number2 {
    left: 5px;
    top: 5px;
  }
  .box-middle {
    position: relative;
    top: 46%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
  }
  .box-middle2 {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-57%);
    transform: translateY(-57%);
  }
  .text-box-lm {
    height: 420px;
    margin-top: 50px;
    padding: 10px 15px 30px;
    z-index: 0;
  }
  .text-box-lmX {
    height: 400px;
    padding: 10px 30px 40px;
    z-index: 0;
  }
  .bg-lmX {
    height: 300px;
    width: auto;
    margin: 0 auto -2px;
  }
  .text-box-lm2 {
    height: 560px;
    padding: 30px;
    z-index: 0;
  }
  .point-svg-size {
    width: 110px;
    height: 100%;
  }
  .point {
    top: -75px;
    left: 1%;
  } 
  .point2 {
    top: -75px;
    right: 1%;
  }
  .btn4p-size {
    width: 180px;
    height: auto;
  }
  #nav-menu-check:checked ~ .nav-menu-content {
    height: 470px;
  }
  .table {
    margin: 60px 0px 80px;
  }
  .table-ul a li {
    padding: 15px 25px;
    display: block;
    text-decoration: none;
  }  
  .table-ul {
    border-left: none;
    text-align: left;
    padding: 0px;
    margin: 6px 0px 0px;
  }
  .table-ul a {
    font-size: 15px;
    border-right: none;
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  .li-display .btn {
    margin: 0px;
    padding: 0px;
    border-radius: 0px;
    background-color: #ff4081;
    border-bottom: 1px solid #ccc;
  }
  .table-ul .li-display li a {
    color: #fff;
  }
  /*テーブルリスト切替え*/
  .table-style > tbody > tr {
    border-top: 0px solid #aaa;
    border-bottom: 0px solid #aaa;
  }
  .table-list tbody {
    border-top :0px dashed #aaa;
  }
  .table-list tr {
    display:block;
    margin-bottom: 0px;
  }
  .table-list th {
    display:block;
    width: auto;
  }
  .table-list td {
    display: list-item;
    list-style-type: none;
    width: auto;
    border-bottom :0px dashed #666;
  }
  .table-company > thead > tr > th, .table-company > tbody > tr > th, .table-company > tfoot > tr > th, .table-company > thead > tr > td, .table-company > tbody > tr > td, .table-company > tfoot > tr > td {
    padding: 10px 8px 8px;
    line-height: 2.0;
  }
  .table-company > tbody > tr > th {
    border-top :1px dashed #aaa;
    border-bottom :1px dashed #aaa;
    background: #eee;
  }
  .table-recruit > tbody > tr > th {
    border-top :1px dashed #aaa;
    border-bottom :1px dashed #aaa;
    background: #eee;
  }
  .table-lp > thead > tr > th, .table-lp > tbody > tr > th, .table-lp > tfoot > tr > th, .table-lp > thead > tr > td, .table-lp > tbody > tr > td, .table-lp > tfoot > tr > td {
   	font-size: 10px;
  }
  .dash-line {
    border-bottom: 0px dashed #aaa;
  }
  .news-list {
    padding: 30px 0px;
  }
  .news-list2 {
    padding: 30px 0px 0px;
  }
  .container-nav {
    padding: 0px 0px;
  }
  .slide-container {                                                                               
    top: -60px;
  }
  .title-box > h2 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .title-box > p {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .price-size {
    font-size: 34px;
  }
  .price-size2 {
    font-size: 34px;
  }
  .price-size3 {
    font-size: 20px;
    margin-left: 4px;
  }
  .logo2 {
    height: 55px;
    margin-top: -10px;
    margin-bottom: -5px;
  }
  .display {
    display: inline-block;
  }
  .display2 {
    margin-top: 0px;
    display: inline-block;
  }
  .display3 {
    margin: 0px;
    display: inline-block;
  }
  body {
    font-size: 13px;
    letter-spacing: 0.01em;
  }
  .ctn-area h1 {
    font-size: 32px;
    padding: 0;
  }
  .h1-middle {
    margin-top: 0px;
  }
  .h1-middle-only {
    margin-top: 10px;
  }
  .h1-point {
    margin-top: -30px;
  }
  .h2-point {
    margin-top: 5px;
  }
  h2 {
    font-size: 19px;
    letter-spacing: 0.01em;
  }
  h1 {
    font-size: 19px;
    letter-spacing: 0.01em;
  }
  h3 {
    font-size: 18px;
	  line-height: 1.4em;
  }
  h4 {
    font-size: 15px;
  }
  .bg-yellow h1 {
    font-size: 15px;
  }
  .heading h1 {
    font-size: 20px;
    padding: 0;
    margin: 20px 0;
  }
  .heading h2 {
    font-size: 15px;
    margin: 30px auto 30px;
  }
  .heading h3 {
    font-size: 15px;
    line-height: 1.6em;
  }
  .heading h4 {
    font-size: 16px;
    line-height: 1.6em;
  }
  .text-box p {
    font-size: 15px;
  }
  .sub-box {
    padding: 15px 2px 13px;
    margin: 0px 0px 10px;  
  }
  .sub-box2 {
    padding: 14px 20px 14px;
  }
  .sub-box2 h2 {
    text-align: center;
    margin: 0px 5px 0px;
  }
  .sub-box h5 {
    font-size: 15px;
    padding: 3px 0 0;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
  }
  .sub-box2 .btn {
    margin-top: 2px;
  }
  .btn {
    margin: 5px 0px;
    padding: 10px;
    font-size: 14px;
  }
  .title h1 {
    margin: 10px 0px 2px;
  }
  .title h2 {
    font-size: 32px;
    margin: 10px 0px 2px;
  }
  .icon-circle {
    width: 40px;
    height: 40px;
    padding: 20px;
    margin: 0px auto 0px;
  }
  .icon-circle-b {
    width: 40px;
    height: 40px;
    padding: 20px;
    margin: 0px auto 0px;
  }
  .bg-line {
    height: 220px;
    text-align: center;
    margin-top: -20px;
  }
  .bg-line2 {
    height: 220px;
    text-align: center;
    margin-top: -20px;
  }
  .part-title {
    margin-top: -185px;
  }
  .bg01 {
    margin: 0px;
    height:auto;
    background-attachment: scroll;
  }
  .bg02 {
    margin: 0px;
    height:auto;
    background-attachment: scroll;
  }
  .bg03 {
    margin: 0px;
    height:auto;
    background-attachment: scroll;
  }
  .bg04 {
    margin: 0px;
    height:auto;
    background-attachment: scroll;
  }
  .no-title {
    margin-top: 50px;
  }
  .title-area {
    height:240px;
    top: 82px;
  }
  .title-area h2 {
    font-size: 32px;
  }
  .img-size {
    width: 260px;
  }
  .img-size1 {
    width: 180px;
  }
  .img-size2 {
    width: 220px;
  }
  .titlename-box {
    top: 130px;
  }
  .titlename-box2 {
    top: 88px;
  }
  .titlename-box2 h3 {
    font-size: 18px;
    margin: 5px 0;
  }
  .title-bg-privacy, .title-bg-news, .title-bg-lifemail, .title-bg-partner, .title-bg-document, .title-bg-apply, .title-bg-company, .title-bg-contact, .title-bg-recruit, .title-bg-sitemap {
    background-size: cover;
    background-attachment: scroll;
  }
  .sub-title {
    margin: 0 0 0px;
  }
  .table-sns > thead > tr > th, .table-sns > tbody > tr > th, .table-sns > tfoot > tr > th, .table-sns > thead > tr > td, .table-sns > tbody > tr > td, .table-sns > tfoot > tr > td {
    padding: 30px;
    border: 10px solid #1d2087;
  }
  .table-company {
    margin: 0px 0% 30px;
  }
  .table-history {
      margin: 0px 0px;
  }
  .recruit-header {
    margin-left: 0px;
  }
  .recruit-box {
    padding: 10px;
  }
  .recruit-title-box {
    margin: -11px -11px 11px -11px;
    padding: 15px;
  }
  .table-recruit > thead > tr > th, .table-recruit > tbody > tr > th, .table-recruit > tfoot > tr > th, .table-recruit > thead > tr > td, .table-recruit > tbody > tr > td, .table-recruit > tfoot > tr > td {
    padding: 10px 10px;
  }
  .table-history > thead > tr > th, .table-history > tbody > tr > th, .table-history > tfoot > tr > th, .table-history > thead > tr > td, .table-history > tbody > tr > td, .table-history > tfoot > tr > td {
    padding: 10px 8px;
  }
  .table-history > tbody > tr > th {
    text-align: center;
  }
  .footer-pc {
    display: none;
  }
  .footer-mobile {
    display: block;
  }
  .footer-margin {
    margin: 0px;
    padding: 20px 0px 17px 10px;
    text-align: left;
    border-bottom: 1px solid #1d2087;
    border-right: 1px solid #1d2087;
  }
  .footer-margin2 {
    margin: 0px;
    padding: 20px 0px 17px 10px;
    text-align: left;
    border-bottom: 1px solid #1d2087;
  }
  .footer-middle-nav {
    vertical-align: 5px;
    padding: 0 0 0 14px;
  }
  footer p {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .logo3 {
    height: 28px;
  }
  footer a {
    font-size: 13px;
    letter-spacing: 0.02em;
  }
  .navbar {
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
  }
  .navbar-toggle {
    background-color: #ff4081;
    color: #fff;
    margin: 8px 20px;
    padding: 6px 6px 4px;
    border-radius: 0px;
  }
  .navbar-header > .btn {
    margin: 10px 9px 9px;
    padding: 0px 5px 6px;
    font-size: 18px;
  }
  .navbar-toggle .icon-bar {   
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 0px;
    color: #fff;
    border: 1px solid;
  }
  .navbar-collapse {
    margin: 0 -15px 0;
  }
  .pagetop a {
    padding: 11px 0px;
  }
  .logo6 {
    width: 60%;
    height: auto;
  }
 .adress {
    font-size: 12px;
  }
  #mapArea1 {
    margin: 0px 0px 0px;
  }
  .img-area {
    padding: 0px;
  }
  .inner {
    margin: 30px 0px 0px;
  }
  .pdf-w {
    width: 30px;
  }
  .inner img {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .award {
    height: 140px;
    margin: 60px 0px 0px 0px;
    text-align: center;
  }
  .circle {
    height: 100px;
    margin-top: -60px;
  }
  .now {
    font-size: 28px;
    margin: -72px 0px 0px 2px;
  }
  .h-heading  {
    margin: 40px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .h-heading h2 {
    font-size: 18px;
    margin: 0px 0px;
  }
  .h-heading h3 {
    margin: 10px 0px;
    font-size: 14px;
  }
  .modal-title {
    margin: -3px 0 0 3%;
  }
  .modal-lg {
    width: auto;
    top: 5px;
  }
  .modal-ul li {
    display:block;
    width:100%;
    margin: 0px 0px;
  }
  .recruit-box {
    border: 1px solid #ccc;
  }
  .balloon {
    border: 6px solid #1d2087;
  }
  .copy {
    margin-top: 5px;
  }
  .form-control {
    padding: 18px 5px 17px;
    font-size: 12px;
  }
  form p {
    margin: 10px 0px 5px;
  }
  .inner2 {
    padding: 0px 5px;
  } 
  .user-title {
    line-height: 1.5em;
    text-align: justify;
    font-size: 16px;
    margin: 0px 0px 10px;
  }
  .user-wide {
    width: 180px;
    margin: 15px auto;
  }
  .dummy {
    margin:15px auto 20px;
  }
  .check01:checked ~ .awd1, .check02:checked ~ .awd2, .check03:checked ~ .awd3 {
    top: 30%;
  }
}
@media screen and (min-width:480px) {
  [class^="thumb-img"] img {
    width:19%;
    margin: 0px;
  }
  .grid-slide {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
    margin-top: 110px;
    
    align-items: center;
  }
  .grid-slide > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-slide > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid-title {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
    position: fixed;
  }
  .grid-title > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-title > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    display: none;
  }
  .grid-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 0px;
  }
  .grid-top > .gbox:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-row: 2; grid-column: 1;
  }
  .grid-top > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1; grid-column: 1;
  }
  .grid-news {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
  .grid-news > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    margin: 5px 0px;
  }
  .grid-news > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    margin: 5px 0px;
  }
  .grid-news > .gbox:nth-of-type(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    margin: 5px 0px;
  }
  .grid2-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
    row-gap: 0px;
  }
  .grid2-1 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1; grid-column: 1;
  }
  .grid2-1 > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-row: 2; grid-column: 1;
  }
  .grid2-1 > .gbox2:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-row: 2; grid-column: 1;
  }
  .grid2-1 > .gbox2:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1; grid-column: 1;
  }
  .grid-magazine {
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
    row-gap: 20px;
  }
  .grid-magazine > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-magazine > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid3 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
  .grid3 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid3 > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid3 > .gbox:nth-of-type(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid3-2-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
  }
  .grid3-2-1 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid3-2-1 > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .grid3-2-1 > .gbox:nth-of-type(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid3-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
  .grid3-1 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(6) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(8) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(9) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(10) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(11) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(12) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(13) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(14) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(15) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(16) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(17) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(18) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
  }
  .grid4 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .grid4 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid4 > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .grid4 > .gbox:nth-of-type(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid4 > .gbox:nth-of-type(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  .open-width {
    width: 88px;
    margin: 0 auto;
  }
  .pc-lifemail {
    width: 100%;
    height: 1024px;
  }
  .LM-COM-BOX {
    padding: 0px 10px;
    width: 270px;
  }
  .LM-TOP-BOX {
    width: 100%;
    height: 1024px;
    padding: 0px;
  }
  .LM-TOP-R {
    margin: 100px auto;
    height: auto;
    width: 400px;
    display: block;
  }
  .LM-TOP-R h1 {
    font-size: 34px;
    letter-spacing: 0.0em;
    line-height: 1.2em;
  }
  .LM-TOP-R h5 {
    font-size: 15px;
    margin: 5px 0px 0px;
  }
  .LM-TOP-LOGO {
    width: 95%;
    margin: 5px 0px 0px;
  }
  .LM-TOP-L {
    width: 100%;
    margin: 0 auto;
  }
  .LM-TOP-PHONE {
    height: 360px;
    width: auto;
    position: relative;
    top: -90px;
    bottom: auto;
    left: 0%;
  }
  .LM-INFO-TOP {
    margin-top: -30px;
  }
  .LM-SUB-TTL h2 {
    font-size: 19px;
  }
  .ACNT {
    font-size: 20px;
  }
  .ACNT2 {
    font-size: 20px;
  }
  .box-middle h3 {
    font-size: 5.5vw;
  }
  .ACNT3 {
    font-size: 5.6vw;
  }
  .box-middle h4 {
    font-size: 20px;
  }
  .LM-COPY-BOX h2 {
    font-size: 26px;
  }
  .COPY-ACNT {
    font-size: 27px;
  }
  .LM-COPY-BOX-S h3 {
    font-size: 16px;
  }
  .COPY-ACNT-S {
    font-size: 17px;
  }

  .container {
    width: 96%;
  }
  .container-magazine {
    width: 460px
  }
  .container-magazine ol, .container-magazine ul, .container-magazine p {
    font-size: 15px;
  }
  
  .table-box p {
    font-size: 75%;
  }
  .slide-container-vertical>.slide-pagination-bullets {
    left: 6px;
    top: 53%;
  }

  .C-t, .C-b {
    background-color: rgba(255,255,255,.9);
    margin: 0;
    padding: 10px;
  }
  .C-t {
    border-radius: 20px 20px 0px 0px;
    -webkit-border-radius: 20px 20px 0px 0px;
    -moz-border-radius: 20px 20px 0px 0px;
    -ms-border-radius: 20px 20px 0px 0px;
    -o-border-radius: 20px 20px 0px 0px;
  }
  .C-t {
    padding: 30px 30px 10px;
  }
  .bg-top1 .C-t {
    margin: 30px 60px 0px;
  }
  .bg-top2 .C-t, .bg-top3 .C-t, .bg-top4 .C-t {
    margin: 80px 60px 0px;
  }
  .C-b {
    margin: 0px 60px 0;
    padding: 10px 10px 30px;
    border-radius: 0px 0px 20px 20px;
    -webkit-border-radius: 0px 0px 20px 20px;
    -moz-border-radius: 0px 0px 20px 20px;
    -ms-border-radius: 0px 0px 20px 20px;
    -o-border-radius: 0px 0px 20px 20px;
  }
  .C0-size {
    height: auto;
    width: 80%;
  }
  .C-size {
    height: auto;
    width: 95%;
  }
  .C-l h1, .C-t h1, .C-l h2, .C-t h2 {
    font-size: 24px;
    margin: 0px 0px 20px;
    text-align: center;
  }
  .C-l p, .C-t p {
    font-size: 16px;;
  }
  .C-next {
    position: absolute;
    top: 640px;
    right: 0px;
  }
  .C-next-size {
    width: 160px;
    height: auto;
  }

  .a-logo {
    width: 320px;
  }
  p.info-year {
    font-size: 20px;
    margin: 0px 10px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%); /* Safari用 */
    transform: translateY(-50%);
  }
  .bg-p-blue {
    margin-top: 40px;
  }
  .product-img {
    padding: 5px 0px;
  } 
  .center-img-80 {
    width: 70%;
    margin-top: -30px;
    margin-bottom: -20px;
  }
  .name-p {
    display: none;
  }
  .name-m {
    display: block;
  }
  body {
    font-size: 16px;
  }
  .bigger {
    font-size: 110%;
  }
  .btn-width {
    width: 250px;
  }
  .null-title {
    height: 159px;
  }
  .navbar-title {
    border-bottom: 0px solid #666;
  }
  .slide-mobile {
    display: block;
  }
  .slide-top {
    display: none;
  }
  
  .slide-anm:last-child {
    height: 720px;
  }
  .slide-anm {
    top: 720px;
    height: 720px;
  }
  @keyframes slideshow {
    0% {
      top: 720px;
    }
    2% {
      top: 0;
    }
    25% {
      top: 0;
    }
    27% {
      top: -720px;
    }
    100% {
      top: -720px;
    }
  }
  .slide-mobile .slide-container {
    width: 100vw;
    height: 720px;
    margin-top: -50px;
  }
  .slide-img {
    height: 720px;
  }
  .top-news2 {
    margin-top: -22px;
  }

  .ttl-logo-size-mobile {
    width: 55%;
    height: auto;
    margin: 10px auto 0px;
  }
  .ttl-next-size {
    width: 96px;
    height: auto;
    top: -40px;
    left: 79%;
    right: 21%;
    z-index: 6;
  }
  .ttl-under-size {
    width: 100px;
    height: 100px;
    position: fixed;
    top: auto;
    bottom: 50px;
    right: 0px;
  }
  .scroll {
    display: none;
    padding-top: 0px;
  }
  .comment { 
    text-align: left;
  }
  .wide-xs {
    width: 40%;
  }
  .wide-sm {
    width: 60%;
  }
  .wide-lg {
    width: 99%;
  }
  .margin-top-60 {
    margin-top: 40px;
  }
  .margin-top-80 {
    margin-top: 50px;
  }
  .margin-top-100 {
    margin-top: 50px;
  }
  .margin-top--80 {
    margin-top: -40px;
  }
  .margin-bottom-60 {
    margin-bottom: 40px;
  }
  .margin-bottom-80 {
    margin-bottom: 60px;
  }
  .margin-bottom-100 {
    margin-bottom: 50px;
  }
  .padding-top-60 {
    padding-top: 30px;
  }
  .padding-top-80 {
    padding-top: 40px;
  }
  .padding-top-100 {
    padding-top: 80px;
  }
  .padding-bottom-60 {
    padding-bottom: 30px;
  }
  .padding-bottom-80 {
    padding-bottom: 60px;
  }
  .padding-bottom-90 {
    padding-bottom: 70px;
  }
  .padding-bottom-100 {
    padding-bottom: 80px;
  }
  .menu {
    display: none;
  }
  .title-size {
    height: 60px;
    margin: 20px;
  }
  .nav-menu {
    display: block;
    margin: 9px 0;
    position: absolute;
    top: 0;
  }
  .nav-btn {
    display: none;
  }
  .logo {
    height: 50px;
    margin: 9px 9px;
  }
  .logo-box {
    margin: 0px;
    padding: 10px 12px 12px;
    width: 100%;
  }
  .logo-box .logo {
    height: 60px;
    margin: 0px;
  }
  .price-size {
    width: 85%;
    height: 85%;
  }
  .title2 h3 {
    margin: 30px 0 5px;
    letter-spacing: 0.02em;
    font-size: 22px;
  }
  .title2 h2 {
    font-size: 34px;
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title {
    padding: 40px 0px;
  }
  .lm-title h1 {
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title h2 {
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title h3 {
    margin: 0;
    letter-spacing: 0.01em;
    font-size: 22px;
  }
  .big {
    font-size: 30px;
  }
  .bg-lm0, .bg-lm1, .bg-lm2, .bg-lm3, .bg-lm4 {
    height: 570px;
  }
  .bg-lm5, .bg-lm6, .bg-lm7 {
    height: 400px;
  }
  .box-middle h1 {
    letter-spacing: 0.04em;
    font-size: 36px;
  }
  .left-box {
    width: 330px;
    text-align: left;
    margin: 0 auto;
  }
  .logo4 {
    height: 42px;
  }
  .logo-iot {
    height: 110px;
    margin-top: 28px;
    margin-left: 30px;
  }
  .lm-title-box {
    height: 680px;
  }
  .lifemail-ttl-size {
    height: auto;
    width: 55%;
    margin-top: -140px;
  }
  .mov-box{
    position: relative;
    width: 244px;
    height: 184px;/*168+45*/
    bottom: auto;
    right: auto;
    margin: -260px auto 50px;
    padding: 1px 0 0;
  }
  .mov-size {
    width: 240px;
    height: 135px;
  }
  .youtubesm {
    width: 400px;
    height: 225px;
  }
  .top- {
    top: -13px;
  }
  .top-margin {
    margin-top: -108px;
  }
  .top-marginX {
    margin-top: -13px;
  }
  .lp-sub-title-size {
    width: 80%;
    height: auto;
  }
  .lp-title-size {
    width: 100%;
    height: auto;
  }
  .lp-arrow {
    top: 0px;
  }
  .lp-arrow1 {
    top: -10px;
  }
  .lp-arrow2 {
    top: -20px;
  }
  .lp-arrow4 {
    top: -80px;
  }
  .lp-arrow-size {
    width: 200px;
    height: auto;
  }
  .lp-title-arrow {
    margin-top: 0px;
    margin-bottom: -40px;
  }
  .lp-title-arrow-size {
    width: 340px;
    height: auto;
  }
  .bg-line-dark1 {
    margin: -20px 0px 0px;
    height: 220px;
  }
  .bg-line-dark2 {
    margin: -20px 0px 0px;
    height: 220px;
  }
  .part-title {
    margin-top: -180px;
  }
  .part-title2 {
    margin-top: -180px;
  }
  .text-box-lm {
    height: 500px;
    padding: 60px;
    z-index: 0;
  }
  .text-box-lmX {
    height: 500px;
    padding: 60px 80px;
    z-index: 0;
  }
  .bg-lmX {
    height: 500px;
    width: 460px;
    margin: 0 auto -1px;
  }
  .text-box-lm2 {
    height: 500px;
    padding: 40px;
    z-index: 0;
  }
  .box-middle {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
  .box-middle2 {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-55%);
    transform: translateY(-55%);
  }
  .en-right {
    position: absolute;
    right:20px;
    top: 140px;
  }
  .en-left1 {
    position: absolute;
    left: 20px;
    top: 0px;
    font-size: 60px;
  }
  .en-left {
    position: absolute;
    left: 20px;
    top: 0px;
    font-size: 60px;
  }
  .logo6 {
    width: 380px;
  }
  .number-size {
    width: 110px;
    height: 100%;
  }
  .number {
    right: 5px;
    top:5px;
  }
  .point-svg-size {
    width: 160px;
    height: auto;
  }
  .point {
    top: -120px;
    left: 5%;
  } 
  .point2 {
    top: -120px;
    right: 5%;
  } 
  .circle {
    height: 120px;
    margin-top: -60px;
  }
  #nav-menu-check:checked ~ .nav-menu-content {
    height: 530px;
  }
  .table {
    margin: 70px 0px 100px;
  }
  .table-ul {
    border-left: none;
    border-right: 0px transparent;
    text-align: left;
    padding: 0px 0px;
  }
  .table-ul a {
    font-size: 16px;
    border-right: none;
    display: block;
    width: 100%;
    padding: 0px;
    border-left: 0px transparent;
    border-bottom: 1px solid #ccc;
  }
  .table-ul a li {
    padding: 20px 20px 15px;
    display: block;
    text-decoration: none;
  }  
  .container-nav {
    padding: 0px 0px;
  }
  .slide-container {
    top: -60px;
  }
  .top-news {
    margin-top: -82px;
  }
  .news-list {
    padding: 30px 10px;
  }
  .news-list2 {
    padding: 30px 10px 0px;
  }
  .title-box > h2 {
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.1em;
  }
  .logo2 {
    height: 80px;
    margin-top: -10px;
    margin-bottom: -5px;
  }
  .display {
    margin: 8px 0px;
    display: inline-block;
  }
  .display2 {
    margin-top: 0px;
    display: inline-block;
  }
  .display3 {
    margin: 0px;
    display: inline-block;
  }
  .price-size2 {
    font-size: 60px;
  }
  .price-size3 {
    font-size: 34px;
    margin-left: 5px;
  }
  .ctn-area h1 {
    font-size: 34px;
    padding: 0px 0 0;
  }
  .h1-middle {
    margin-top: 0px;
  }
  .h1-middle-only {
    margin-top: 10px;
  }
  .h1-point {
    margin-top: -30px;
  }
  .h2-point {
    margin-top: 15px;
  }
  h2 {
    font-size: 26px;
  }
  h1 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  .bg-yellow h1 {
    font-size: 18px;
  }
  .heading h2 {
    font-size: 26px;
    margin: 60px auto 50px;
  }
  .sub-box {
    padding: 22px 20px 18px;
    margin: 15px 0;
  }
  .sub-box2 h2 {
    text-align: center;
    margin: 0px 5px 5px;
  }
  .sub-box h5 {
    font-size: 18px;
    padding: 3px 0 0;
    text-align: center;
    display: block;
    margin-bottom: 20px;
  }
  .sub-box2 .btn {
    margin-top: 2px;
  }
  .title h1 {
    margin: 10px 0px 2px;
  }
  .title h2 {
    font-size: 34px;
    margin: 10px 0px 2px;
  }
  .icon-circle {
    width: 60px;
    height: 60px;
    padding: 20px;
    margin: 0px auto 0px;
  }
  .icon-circle-b {
    width: 60px;
    height: 60px;
    padding: 20px;
    margin: 0px auto 0px;
  }
  .bg-line {
    height: 260px;
    text-align: center;
    margin-top: -60px;
  }
  .bg-line2 {
    height: 260px;
    text-align: center;
    margin-top: -60px;
  }
  .part-title {
    margin-top: -220px;
  }
  .bg01 {
    margin: 0px;
    height:auto;
    background-attachment: scroll;
  }
  .bg02 {
    height:auto;
    background-attachment: scroll;
  }
  .bg03 {
    margin: 0px;
    height:auto;
    background-attachment: scroll;
  }
  .bg04 {
    margin: 0px;
    height:auto;
    background-attachment: scroll;
  }
  .no-title {
    margin-top: 60px;
  }
  .title-area {
    height:350px;
    margin-top: 0px;
  }
  .title-area h2 {
    font-size: 50px;
  }
  .img-size {
    width: 300px;
  }
  .img-size1 {
    width: 260px;
  }
  .img-size2 {
    width: 300px;
  }
  .titlename-box {
    top: 165px;
  }
  .titlename-box2 {
    top: 110px;
  }
  .titlename-box2 h3 {
    font-size: 24px;
    margin: 5px 0;
  }
  .title-bg-privacy, .title-bg-news, .title-bg-lifemail, .title-bg-partner, .title-bg-document, .title-bg-apply, .title-bg-company, .title-bg-contact, .title-bg-recruit, .title-bg-sitemap {
    background-size: cover;
    background-attachment: scroll;
  }
  .sub-title {
    margin: 0 0 10px;
  }
  .table-sns > thead > tr > th, .table-sns > tbody > tr > th, .table-sns > tfoot > tr > th, .table-sns > thead > tr > td, .table-sns > tbody > tr > td, .table-sns > tfoot > tr > td {
    padding: 20px;
    border: 10px solid #1d2087;
  }
  .table-company {
    margin: 30px 0px 40px;
  }
  .table-history {
    margin: 30px 0px 40px;
  }
  .recruit-header {
    margin-left: 40px;
  }
  .table-recruit > thead > tr > th, .table-recruit > tbody > tr > th, .table-recruit > tfoot > tr > th, .table-recruit > thead > tr > td, .table-recruit > tbody > tr > td, .table-recruit > tfoot > tr > td {
    padding: 20px 10px;
  }
  .table-history > thead > tr > th, .table-history > tbody > tr > th, .table-history > tfoot > tr > th, .table-history > thead > tr > td, .table-history > tbody > tr > td, .table-history > tfoot > tr > td {
    padding: 40px 8px;
  }
  .footer-pc {
    display: none;
  }
  .footer-mobile {
    display: block;
  }
  .footer-margin {
    margin: 0px;
    padding: 20px 0px 17px 20px;
    text-align: left;
    border-bottom: 1px solid #1d2087;
  }
  .footer-margin2 {
    margin: 0px;
    padding: 20px 0px 17px 20px;
    text-align: left;
    border-left: 1px solid #1d2087;
    border-bottom: 1px solid #1d2087;
  }
  .footer-middle-nav {
    vertical-align: 5px;
    padding: 0 0 0 24px;
  }
  footer p {
    font-size: 14px;
  }
  footer a {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .navbar {
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
  }
  .navbar-toggle {
    background-color: #ff4081;
    color: #fff;
    margin: 10px 20px;
    padding: 6px 6px 4px;
    border-radius: 0px;
  }
  .navbar-header > .btn {
    margin: 16px 9px 9px;
    padding: 0px 5px 6px;
    font-size: 18px;
  }
  .navbar-toggle .icon-bar {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 0px;
    color: #fff;
    border: 1px solid;
  }
  .navbar-collapse {
    margin: 0 -15px 0;
  }
  .news-list {
    padding: 30px 10px;
  }
  .recruit-box {
    padding: 20px 20px;
  }
  .li-display .btn {
    margin: 0px;
    padding: 0px;
    border-radius: 0px;
    background-color: #ff4081;
    border-bottom: 1px solid #ccc;
  }
  .table-ul .li-display li a {
    color: #fff;
  }
  .pagetop a {
      padding: 10px 0px;
  }
  #mapArea1 {
    margin: 0px 0px 0px;
  }
  .inner {
    margin: 60px 30px 0px;
  }
  .pdf-w {
    width: 60px;
  }
  .inner img {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .award {
    height: 220px;
    margin: 60px 0px -20px 0px;
    text-align: center;
  }
  .now {
    font-size: 28px;
    margin: -91px 0px 0px 3px;
  }
  .h-heading  {
    margin: 70px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .h-heading h2 {
    font-size: 28px;
    margin: -15px 0px;
  }
  .h-heading h3 {
    font-size: 18px;
    margin: 10px 0px;
  }
  .modal-title {
    margin: -18px 0 0 5%;
  }
  .modal-lg {
    width: auto;
    top: 5px;
  }
  .modal-ul li {
    display:block;
    width:100%;
    margin: 0px;
  }
  .copy {
    margin-top: 10px;
  }
  .user-title {
    line-height: 1.5em;
    text-align: justify;
    font-size: 20px;
    margin: 0px 0px 10px;
  }
  .user-wide {
    width: 180px;
    margin: 5px auto;
  }
  .left-center {
    text-align: center;
  }
  .right-center {
    text-align: center;
  }
  .dummy {
    margin:15px auto 21px;
  }
  .check01:checked ~ .awd1, .check02:checked ~ .awd2, .check03:checked ~ .awd3 {
    top: 15%;
  }
}
@media screen and (min-width:768px) {
  [class^="thumb-img"] img {
    width:18%;
    margin: 0px;
  }
  .grid-title {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 2fr;
    -ms-grid-columns: 1fr 2fr;
    row-gap: 20px;
    position: relative;
  }
  .grid-title > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-title > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    display: block;
  }
  .grid-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 0px;
  }
  .grid-news {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 140px 1fr 100px;
    -ms-grid-columns: 140px 1fr 100px;
  }
  .grid-news > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    margin: 5px;
  }
  .grid-news > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    margin: 5px;
  }
  .grid-news > .gbox:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    margin: 5px;
  }
  .grid2-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .grid2-1 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1; grid-column: 1;
  }
  .grid2-1 > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-row: 1; grid-column: 2;
  }
  .grid2-1 > .gbox2:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1; grid-column: 1;
  }
  .grid2-1 > .gbox2:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-row: 1; grid-column: 2;
  }
  .grid-magazine {
    grid-template-columns: 5fr 2fr;
    -ms-grid-columns: 5fr 2fr;
    row-gap: 20px;
  }
  .grid-magazine > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-magazine > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  place-self: flex-end;
  }
  .grid3 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
  }
  .grid3 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid3 > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .grid3 > .gbox:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .grid3-2-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
  }
  .grid3-2-1 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid3-2-1 > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .grid3-2-1 > .gbox:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .grid3-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
  }
  .grid3-1 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .grid3-1 > .gbox:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .grid3-1 > .gbox:nth-of-type(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .grid3-1 > .gbox:nth-of-type(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .grid3-1 > .gbox:nth-of-type(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .grid3-1 > .gbox:nth-of-type(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .grid3-1 > .gbox:nth-of-type(10) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(11) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  .grid3-1 > .gbox:nth-of-type(12) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
  }
  .grid3-1 > .gbox:nth-of-type(13) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(14) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .grid3-1 > .gbox:nth-of-type(15) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .grid3-1 > .gbox:nth-of-type(16) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .grid3-1 > .gbox:nth-of-type(17) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
  }
  .grid3-1 > .gbox:nth-of-type(18) {
    -ms-grid-row: 6;
    -ms-grid-column: 3;
  }
  .grid4 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    row-gap: 20px;
  }
  .grid4 > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid4 > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .grid4 > .gbox:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .grid4 > .gbox:nth-of-type(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  
  .img-responsive2 {
    width: 65%;
    height: auto;
  }
  
  .open-width {
    width: 88px;
  }
  .pc-lifemail {
    height: 1050px;
  }
  .LM-TOP-BOX {
    width: 100%;
    height: 1024px;
    padding: 0px;
  }
  .LM-TOP-R {
    margin: 100px auto;
    height: auto;
    width: 400px;
  }
  .LM-TOP-R h1 {
    font-size: 35px;
    letter-spacing: 0.0em;
    line-height: 1.2em;
  }
  .LM-TOP-R h5 {
    font-size: 17px;
  }
  .LM-TOP-LOGO {
    width: 95%;
  }
  .LM-TOP-L {
    margin: 0 auto;
  }
  .LM-INFO-TOP {
    margin-top: -27px;
  }
  .LM-SUB-TTL h2 {
    font-size: 30px;
  }
  .ACNT {
    font-size: 32px;
  }
  .ACNT2 {
    font-size: 32px;
  }
  .box-middle h3 {
    font-size: 28px;
  }
  .ACNT3 {
    font-size: 29px;
  }
  .box-middle h4 {
    font-size: 20px;
  }
  .LM-COPY-BOX h2 {
    font-size: 39px;
  }
  .COPY-ACNT {
    font-size: 39px;
  }
  .LM-COPY-BOX-S h3 {
    font-size: 25px;
  }
  .COPY-ACNT-S {
    font-size: 26px;
  }

  .table-box p {
    font-size: 55%;
  }

  .a-logo {
    width: 320px;
  }
  .product-img {
    padding: 5px 20px 5px 10px;
  }
  .bg-p-blue {
    margin-top: 0px;
  }
  .center-img-80 {
    width: 80%;
    margin-top: 40px;
  }
  .name-p {
    display: block;
  }
  .name-m {
    display: none;
  }
  .null-title {
    height: 165px;
  }
  .wide-xs {
    width: 35%;
  }
  .wide-sm {
    width: 49%;
  }
  .wide-lg {
    width: 99%;
  }
  .box-eee {
    padding: 40px;
  }
  .padding40 {
    padding: 40px;
  }
  .padding60 {
    padding: 30px;
  }
  .margin-top-60 {
    margin-top: 60px;
  }
  .margin-top-80 {
    margin-top: 80px;
  }
  .margin-top-100 {
    margin-top: 100px;
  }
  .margin-top--80 {
    margin-top: -40px;
  }
  .margin-bottom-60 {
    margin-bottom: 60px;
  }
  .margin-bottom-80 {
    margin-bottom: 80px;
  }
  .margin-bottom-100 {
    margin-bottom: 100px;
  }
  .padding-top-60 {
    padding-top: 60px;
  }
  .padding-top-80 {
    padding-top: 80px;
  }
  .padding-top-100 {
    padding-top: 100px;
  }
  .padding-bottom-60 {
    padding-bottom: 60px;
  }
  .padding-bottom-80 {
    padding-bottom: 80px;
  }
  .padding-bottom-90 {
    padding-bottom: 90px;
  }
  .padding-bottom-100 {
    padding-bottom: 100px;
  }
  .lm-title-box {
    height: 88%;
  }
  .lifemail-ttl-size {
    height: auto;
    width: 57%;
    margin-top: -160px;
  }
  .mov-box{
    position: relative;
    width: 304px;
    height: 217px;/*168+45*/
    bottom: auto;
    right: auto;
    margin: -240px auto 50px;
    padding: 1px 0 0;
  }
  .mov-size {
    width: 300px;
    height: 169px;
  }
  .top- {
    top: -27px;
  }
  .top-margin {
    margin-top: -110px;
  }
  .top-marginX {
    margin-top: -27px;
    margin-bottom: -1px;
  }
  .lp-arrow {
    top: -0px;
  }
  .lp-arrow2 {
    top: 25px;
  }
  .lp-arrow4 {
    top: -80px;
  }
  .point-svg-size {
    width: 220px;
    height: auto;
  }
  .point {
    top: -130px;
    left: 10%;
  }
  .point2 {
    top: -130px;
    right: 10%;
  }
  body {
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .navbar-title {
    border-bottom: 0px solid #666;
  }
  .slide-mobile {
    display: block;
  }
  .slide-top {
    display: none;
  }
  .slide-anm:last-child {
    height: 1024px;
  }
  .slide-anm {
    top: 1024px;
    height: 1024px;
  }
  @keyframes slideshow {
    0% {
      top: 1024px;
    }
    2% {
      top: 0;
    }
    25% {
      top: 0;
    }
    27% {
      top: -1024px;
    }
    100% {
      top: -1024px;
    }
  }
  .slide-mobile .slide-container {
    width: 100vw;
    height: 1024px;
    margin-top: -165px;
  }
  .slide-img {
    height: 1024px;
  }
  .top-news2 {
    margin-top: -25px;
  }
  .ttl-logo-size-mobile {
    width: 70%;
    height: auto;
    margin-top: 10px;
  }
  .slide-container {
    top: 0px;
    margin-bottom: 0px;
  }
  .scroll {
    display: none;
    padding-top: 50px;
  }
  .ttl-next-size {
    width: 120px;
    height: 120px;
    top: -30px;
    left: 83%;
    right: 17%;
    z-index: 6;
  }
  .C-next-size {
    width: 200px;
  }
  .ttl-under-size {
    width: 120px;
    height: 120px;
    position: fixed;
    top: auto;
    bottom: 60px;
    right: 0px;
  }
  .menu {
    display: block;
  }
  .title-box > h2 {
    font-size: 30px;
    color: #fff;
    letter-spacing: 0.15em;
  }
  .heading h2 {
    font-size: 36px;
    margin: 80px auto 80px;
  }
  .big {
    font-size: 36px;
  }
  .nav-menu {
    display: none;
  }
  .nav-btn {
    margin: 9px 0;
    display: inline-block;
  }
  .nav-img {
    display: inline-block;
    width: 200px;
    height: auto;
  }
  .nav-btn .btn {
    display: inline-block;
    vertical-align: top;
    margin: 0px;
    padding: 2px 6px 0px;
    font-size: 13px;
  }
  .navbar-collapse {
    margin: 0 0px 0;
  }
  .text-middle-nav {
    vertical-align: 10px;
    padding: 0 5px;
  }
  .logo {
    height: 50px;
    margin: 9px 0px;
    display: inline-block;
  }
  .logo-box {
    margin: 0px;
    padding: 10px;
    width: 290px;
  }
  .logo-box .logo {
    height: 50px;
    margin: 0px;
  }
  .title2 h3 {
    margin: 30px 0 5px;
    letter-spacing: 0.02em;
    font-size: 24px;
  }
  .title2 h2 {
    font-size: 38px;
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title {
    padding: 40px 0px;
  }
  .lm-title h1 {
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title h2 {
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title h3 {
    margin: 0;
    letter-spacing: 0.01em;
    font-size: 24px;
  }
  .bg-lm0, .bg-lm1, .bg-lm2, .bg-lm3, .bg-lm4 {
    height: 640px;
  }
  .text-box-lm {
    height: 640px;
    padding: 5px 20px;
    z-index: 0;
  }
  .text-box-lmX {
    height: 500px;
    padding: 30px 20px 20px 30px;
    z-index: 1;
  }
  .bg-lmX {
    height: 550px;
    width: 100%;
    margin: 0 auto -1px;
  }
  .text-box-lm2 {
    height: 750px;
    padding: 30px;
    z-index: 0;
  }
  .bg-lm5, .bg-lm6 {
    height: 750px;
  }
  .bg-lm7 {
    height: 450px;
  }
  .bg-lmX {
    height: 550px;
    margin: 0 auto -1px;
    z-index: 0;
  }
  .box-middle h1 {
    letter-spacing: 0.04em;
    font-size: 36px;
  }
  .logo4 {
    height: 40px;
  }
  .logo-iot {
    height: 120px;
    margin-top: 22px;
    margin-left: 40px;
  }
  .en-right {
    position: absolute;
    right:10px;
    top: 260px;
    font-size: 40px;
  }
  .en-left {
    position: absolute;
    left: 20px;
    top: 0px;
    font-size: 46px;
  }
  .en-left1 {
    position: absolute;
    left: 20px;
    top: 0px;
    font-size: 46px;
  }
  .number-size {
    width: 90px;
    height: 100%;
  }
  .lp-sub-title-size {
    width: 300px;
    height: 100%;
  }
  .logo2 {
    height: 120px;
    margin-top: -10px;
    margin-bottom: -5px;
  }
  .top-news {
    margin-top: -25px;
  }
  .container {
    width: 90%;
  }
  .container-magazine {
    width: 600px;
  }
  .container2 {
    width: 90%;
  }
  .container-nav {
    padding: 8px 15px;
  }
  .circle {
    height: 180px;
    margin-top: -20px;
  }
  .price-size2 {
    font-size: 70px;
  }
  .price-size3 {
    font-size: 50px;
    margin-left: 10px;
  }
  .ctn-area h1 {
    font-size: 38px;
    padding: 5px 0 0;
  }
  .h1-middle {
    margin-top: 20px;
  }
  .h1-middle-only {
    margin-top: 40px;
  }
  .h1-point {
    margin-top: -35px;
    margin-bottom: 0px;
  }
  .h2-point {
    margin-top: 34px;
  }
  h2 {
    font-size: 24px;
  }
  h1 {
    font-size: 24px;
  }
  .text-box h2 {
    font-size: 26px;
  }
  .sub-box {
    padding: 15px 30px 14px;
    margin: 15px 0;
  }
  .sub-box h5 {
    font-size: 18px;
    padding: 6px 0 0;
    text-align: left;
    display: table-cell;
    margin-bottom: 0px;
  }
  .img-area {
    padding: 0 5px;
  }
  .sub-box2 {
    padding: 10px 10px 8px;
    margin: 0px 15px;
  }
  .sub-box2 .btn {
    margin-top: 12px;
  }
  .btn {
    padding: 14px 25px 14px;
    font-size: 14px;
  }
  .title h1 {
    margin: 10px 0px 2px;
  }
  .title h2 {
    font-size: 38px;
    margin: 10px 0px 2px;
  }
  .icon-circle {
    width: 60px;
    height: 60px;
    padding: 20px;
    margin: 0px auto 0px;
  }
  .icon-circle-b {
    width: 60px;
    height: 60px;
    padding: 20px;
    margin: 0px auto 0px;
  }
  .bg-line {
    margin-top: -30px;
    height: 300px;
    text-align: left;
  }
  .bg-line2 {
    margin-top: -30px;
    height: 300px;
    text-align: left;
  }
  .part-title {
    margin-top: -250px;
  }
  .bg01 {
    height:auto;
    padding-top: 30px;
  }
  .bg02 {
    height:auto;
    padding-top: 30px;
  }
  .bg03 {
    height:auto;
    padding-top: 30px;
  }
  .bg04 {
    height:auto;
  }
  .no-title {
    margin-top: 50px;
  }
  .title-area {
    height:400px;
    margin-top: 0px;
  }
  .title-area h2 {
    font-size: 50px;
  }
  .titlename-box {
    top: 300px;
  }
  .img-size {
    width: 300px;
  }
  .img-size1 {
    width: 300px;
  }
  .img-size2 {
    width: 400px;
  }
  .titlename-box {
    top: 320px;
  }
  .titlename-box2 {
    top: 220px;
  }
  .titlename-box2 h3 {
    font-size: 30px;
    margin: 10px 0;
  }
  .title-bg-privacy, .title-bg-news, .title-bg-lifemail, .title-bg-partner, .title-bg-document, .title-bg-apply, .title-bg-company, .title-bg-contact, .title-bg-recruit, .title-bg-sitemap {
    background-size: cover;
    background-attachment: scroll;
  }
  .footer-upper {
    padding: 10px 0px;
  }
  .footer-pc {
    display: block;
  }
  .footer-mobile {
    display: none;
  }
  .footer-border {
    border-bottom: 1px solid #ccc;
  }
  .footer-margin {
    padding: 24px 0px 18px 0px;
    text-align: center;
    border-bottom: 0px solid #ccc;
  }
  .footer-middle-nav {
    vertical-align: 5px;
    padding: 0 0 0 5px;
  }
  footer a {
    font-size: 14px;
  }
  .nav-app {
    padding: 4px 0px 0px;
  }
  .nav-btn2 .btn {
    margin: 4px 0px 2px;
    padding: 5px 20px 3px;
    font-size: 12px;
  }
  .table-ul { 
    border-top: none;
    border-top: 0px solid #1d2087;
    border-right: 1px solid #ccc;
    text-align: center;
    padding: 0px 0px;
  }
  .table-ul a {
    font-size: 11px;
    letter-spacing: 0.0em;
    display: table-cell;
    vertical-align: middle;
    border-left: 1px solid #ccc;
    border-bottom: 0px solid #eee;
    padding: 5px 0px;
  }
  .table-ul a li {
    padding: 8px 0px 5px;
    display: block;
    text-decoration: none;
  }
  .table-sns > thead > tr > th, .table-sns > tbody > tr > th, .table-sns > tfoot > tr > th, .table-sns > thead > tr > td, .table-sns > tbody > tr > td, .table-sns > tfoot > tr > td {
    padding: 20px;
    border: 10px solid #1d2087;
  }
  .news-list {
    padding: 50px 10px;
  }
  .news-list2 {
    padding: 50px 10px 0px;
  }
  .no-display {
    display: none;
  }
  .logo6 {
    width: 360px;
    height: auto;
  }
  .award {
    height: 220px;
    margin: 30px 0px 0px 20px;
    text-align: left;
  }
  .now {
    font-size: 38px;
    margin: -126px 0px 0px 28px;
  }
  .h-heading  {
    margin: -75px 0px 0px 0px;
    padding: 0px 0px 0px 150px;
  }
  .h-heading h2 {
    font-size: 32px;
    margin: -15px 0px;
  }
  .h-heading h3 {
    font-size: 22px;
    margin: 12px 0px;
  }
  .modal-title {
    margin: -18px 0 0 5%;
  }
  .modal-lg {
    width: 98%;
    top: 5px;
  }
  .copy {
    margin-top: 5px;
  }
  .left-center {
    text-align: left;
  }
  .right-center {
    text-align: right;
  }
  .user-wide {
    width: 165px;
    margin: 5px 10px 5px 0px;
  }
  .dummy {
    margin:15px auto 22px;
  }
  .check01:checked ~ .awd1, .check02:checked ~ .awd2, .check03:checked ~ .awd3 {
    margin: 0 -40px;
    max-width: 1050px;
    top: 11%;
  }
}
@media screen and (min-width:992px) {
  [class^="thumb-img"] img {
    width:18%;
    margin: 2px;
  }
  .grid-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 10px;
  }
  .grid-top > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-row: 1; grid-column: 1;
  }
  .grid-top > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-row: 1; grid-column: 2;
    margin-left: 0px;
  }
  .grid2-1 {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
  }
  .img-responsive2 {
    width: 95%;
    height: auto;
  }
  .LM-COM-BOX {
    padding: 0px 10px;
    width: 330px;
  }
  .LM-TOP-BOX {
    width: 100%;
    height: 100vh;
    padding: 0px;
  }
  .LM-TOP-R {
    margin-top: 0px;
    padding-top: 0;
    height: 100vh;
    width: 400px;
    display: table-cell;
    vertical-align: middle;
  }
  .LM-TOP-R h1 {
    font-size: 35px;
    letter-spacing: 0.0em;
    line-height: 1.2em;
  }
  .LM-TOP-R h5 {
    font-size: 17px;
  }
  .LM-TOP-LOGO {
    width: 95%;
  }
  .LM-TOP-L {
    margin: 0 auto 0 10%;
  }
  .LM-TOP-PHONE {
    height: 70vh;
    width: auto;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 8%;
    transform: translateX(-0%);
    -webkit-transform: translateX(-0%);
    -moz-transform: translateX(-0%);
    -ms-transform: translateX(-0%);
    -o-transform: translateX(-0%);
  }
  .LM-SUB-TTL h2 {
    font-size: 3.4vw;
  }
  .LM-INFO-TOP {
    margin-top: 0px;
  }
  .ACNT {
    font-size: 3.4vw;
  }
  .ACNT2 {
    font-size: 3.4vw;
  }
  .box-middle h3 {
    font-size: 3vw;
  }
  .ACNT3 {
    font-size: 3.2vw;
  }
  .box-middle h4 {
    font-size: 2.0vw;
  }
  .LM-COPY-BOX h2 {
    font-size: 4.4vw;
  }
  .COPY-ACNT {
    font-size: 4.4vw;
  }
  .LM-COPY-BOX-S h3 {
    font-size: 2.8vw;
  }
  .COPY-ACNT-S {
    font-size: 3.0vw;
  }

  .table-box p {
    font-size: 80%;
  }
  
  .a-logo {
    width: 360px;
  }
  .product-img {
    padding: 5px 50px 5px 10px;
  }
  .bg-p-blue {
    margin-top: 0px;
  }
  .null-title {
    height: 203px;
  }
  .lm-title-box {
    height: 88%;
  }
  .lifemail-ttl-size {
    height: auto;
    width: 52%;
    margin-top: 0px;
  }
  .center-img-80 {
    width: 80%;
    margin-top: 50px;
  }
  .mov-box{
    position: absolute;
    width: 244px;
    height: 184px;/*168+45*/
    bottom: 260px;
    right: 10px;
  }
  .mov-size {
    width: 240px;
    height: 135px;
  }
  .top- {
    top: -1px;
  }
  .top-margin {
    margin-top: -110px;
  }
  .top-marginX {
    margin-top: -1px;
    margin-bottom: -1px;
  }
  .lp-arrow {
    top: -1px;
  }
  .en-right {
    position: absolute;
    right:10px;
    top: 260px;
    font-size: 40px;
  }
  .en-left {
    position: absolute;
    left: 30px;
    top: 0px;
    font-size: 60px;
  }
  .en-left1 {
    position: absolute;
    left: 30px;
    top: 0px;
    font-size: 60px;
  }
  .number-size {
    width: 120px;
    height: 100%;
  }
  .point-svg-size {
    width: 240px;
    height: 150px;
  }
  .bg-line-dark1 {
    margin: -30px 0px 0px;
    height: 240px;
  }
  .bg-line-dark2 {
    margin: -30px 0px 0px;
    height: 240px;
  }
  .part-title2 {
    margin-top: -200px;
  }
  .slide-mobile {
    display: block;
  }
  .slide-top {
    display: none;
  }
  .slide-anm:last-child {
    height: 100%;
  }
  .slide-anm {
    top: 100%;
    height: 100%;
  }
  @keyframes slideshow {
    0% {
      top: 100%;
    }
    2% {
      top: 0;
    }
    25% {
      top: 0;
    }
    27% {
      top: -100%;
    }
    100% {
      top: -100%;
    }
  }
  .slide-mobile .slide-container {
    width: 100vw;
    height: 100vh;
    margin-top: 0px;
  }
  .slide-img {
    margin-top: 0px;
    height: 100%;
  }
  .top-news2 {
    margin-top: -25px;
  }
  .slide-container {
    top: -160px;
    margin-bottom: -160px;
  }
  .ttl-logo-size-mobile {
    width: 44%;
    height: auto;
    margin-top: 10px;
  }
  .slide-lifemail {
    display: block;
  }
  .pc-lifemail {
    height: 100vh;
    top: 0px;
  }
  .ttl-logo-size {
    margin-top: 80px;
    width: 100%;
    height: auto;
  }
  .ttl-next-size {
    width: 110px;
    height: auto;
    top: -190px;
    left: 87%;
  }
  .C-next-size {
    width: 220px;
  }
  .ttl-under-size {
    width: 160px;
    height: 160px;
    position: fixed;
    top: auto;
    bottom: 60px;
    right: 0px;
  }
  .scroll {
    display: block;
    padding-top: 60px;
  }
  .img-size {
    width: 350px;
  }
  .price-size {
    width: 70%;
    height: 70%;
  }
  .logo {
    height: 60px;
    margin: 5px;
  }
  .logo-box {
    margin: 0px;
    padding: 10px;
    width: 340px;
  }
  .logo-box .logo {
    height: 60px;
  }
  .title2 h3 {
    margin: 30px 0 5px;
    letter-spacing: 0.02em;
    font-size: 28px;
  }
  .title2 h2 {
    font-size: 50px;
    margin: 0;
    letter-spacing: 0.02em;
  }
  .lm-title {
    padding: 70px 0px;
  }
  .lm-title h1 {
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title h2 {
    margin: 0;
    letter-spacing: 0.04em;
  }
  .lm-title h3 {
    margin: 0;
    letter-spacing: 0.01em;
    font-size: 24px;
  }
  .text-box-lm {
    height: 510px;
    padding: 50px;
  }
  .text-box-lmX {
    height: 480px;
    padding: 50px;
  }
  .text-box-lm2 {
    height: 600px;
    padding: 40px;
  }
  .bg-lm0, .bg-lm1, .bg-lm2, .bg-lm3, .bg-lm4 {
    height: 630px;
  }
  .bg-lm5, .bg-lm6 {
    height: 600px;
  }
  .bg-lm7 {
    height: 500px;
  }
  .bg-lmX {
    height: 580px;
    margin: 0 auto;
  }
  .box-middle h1 {
    letter-spacing: 0.06em;
    font-size: 46px;
  }
  .logo4 {
    height: 54px;
  }
  .logo-iot {
    height: 150px;
    margin-top: 25px;
    margin-left: 80px;
  }
  .slide-container {
    top: -140px;
    margin-bottom: 0px;
  }
  .top-news {
    margin-top: -165px;
  }
  .top-news2 {
    margin-top: -186px;
  }
  .container {
    width: 970px;
  }
  .container2 {
    width: 970px;
  }
  .container-nav {
    padding: 8px 15px;
  }
  .container-nav-gl {
    padding: 15px 10px;
  }
  .nav-img {
    width: 300px;
  }
  .text-middle-nav {
    vertical-align: 8px;
    padding: 0 0 0 10px;
  }
  .nav-app {
    padding: 8px 0px 0px;
  }
  .nav-btn {
    margin: 3px 0;
  }
  .nav-btn .btn {
    width: 240px;
    text-align: center;
    padding: 15px 30px 10px;
    font-size: 18px;
  }
  .nav-btn2 .btn {
    margin: 0px;
    padding: 6px 35px 2px;
    font-size: 18px;
  }
  .table-ul a {
    font-size: 15px;
    padding: 6px 0 4px
  }
  .table-ul a {
    padding: 0px;
  }
  .table-ul a li {
    padding: 0px;
    margin: 8px 0 5px;
  }
  .table-sns > thead > tr > th, .table-sns > tbody > tr > th, .table-sns > tfoot > tr > th, .table-sns > thead > tr > td, .table-sns > tbody > tr > td, .table-sns > tfoot > tr > td {
    padding: 50px;
    border: 10px solid #1d2087;
  }
  .sub-box2 {
    padding: 20px 20px 18px;
    margin: 40px 20px;
  }
  .br-sm {
    display:none;
  }
  .br-md {
    display:none;
  }
  .circle {
    height: 180px;
    margin-top: -30px;
  }
  .ctn-area h1 {
    font-size: 50px;
    padding: 5px 0 0;
  }
  .h1-middle {
    color: #1d2087;
    text-align: center;
    margin-top: 28px;
  }
  .h1-middle-only {
    margin-top: 48px;
  }
  h2 {
    font-size: 24px;
  }
  h1 {
    font-size: 24px;
  }
  .text-box h2 {
    font-size: 30px;
  }
  .sub-box h5 {
    font-size: 18px;
    padding: 3px 0 0;
  }
  .btn {
    margin: 5px 0px;
    padding: 10px;
    font-size: 14px;
  }
  .btn-cal {
    margin: 10px 0;
  }
  .title h1 {
    margin: 20px 0px 2px;
  }
  .title h2 {
    font-size: 50px;
    margin: 20px 0px 2px;
  }
  .icon-circle {
    width: 60px;
    height: 60px;
    padding: 20px;
    margin: 0px auto 0px;
  }
  .icon-circle-b {
    width: 60px;
    height: 60px;
    padding: 20px;
    margin: 0px auto 0px;
  }
  .bg-line {
    margin-top: -60px;
    height: 360px;
  }
  .bg-line2 {
    margin-top: -60px;
    height: 360px;
  }
  .part-title {
    margin-top: -300px;
  }
  .bg01 {
    margin-top: 0px;
    margin-bottom: 0px;
    background-attachment: scroll;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;	
  }
  .bg02 {
	height:auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    padding-top: 30px;
  }
  .bg03 {
    margin-top: 0px;
    margin-bottom: 0px;
    background-attachment: scroll;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;	
  }
  .bg04 {
    margin-top: 0px;
    margin-bottom: 0px;
    background-attachment: scroll;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;	
  }
  .title-box > h2 {
    font-size: 34px;
    color: #fff;
    letter-spacing: 0.15em;
  }
  .title-area {
    height:500px;
    margin-top: 0px;
  }
  .img-size {
    width: 300px;
  }
  .img-size1 {
    width: 300px;
  }
  .img-size2 {
    width: 400px;
  }
  .titlename-box {
    top: 320px;
  }
  .titlename-box2 {
    top: 220px;
  }
  .titlename-box2 h3 {
    font-size: 30px;
    margin: 10px 0;
  }
  .title-bg-privacy, .title-bg-news, .title-bg-lifemail, .title-bg-partner, .title-bg-document, .title-bg-apply, .title-bg-company, .title-bg-contact, .title-bg-recruit, .title-bg-sitemap {
    background-size: cover;
    background-attachment: scroll;
  }
  footer a {
    font-size: 16px;
  }
  .img-area {
    padding: 0 20px;
  }
  .inner {
    margin: 0px 30px;
  }
  .pdf-w {
    width: 62px;
  }
  .inner img {
    margin: 0px;
  }
  .award {
    height: 180px;
    margin: 30px 0px 0px 20px;
  }
  .now {
    font-size: 40px;
    margin: -124px 0px 0px 26px;
  }
  .h-heading  {
    margin: -80px 0px 0px 0px;
    padding: 0px 0px 0px 200px;
  }
  .h-heading h2 {
    font-size: 40px;
    margin: -10px 0px;
  }
  .h-heading h3 {
    font-size: 24px;
    line-height: 1.1em;
    margin: 10px 0px;
  }
  .modal-title {
    margin: -18px 0 0 5%;
  }
  .modal-lg {
    width: 95%;
    top: 5px;
  }
  .modal-ul li {
    display:table-cell;
    width:33.4%;
  }
  .copy {
    margin-top: 12px;
  }
  .user-title {
    line-height: 1.5em;
    text-align: justify;
    font-size: 24px;
    margin: 0px 0px 10px;
  }
  .user-wide {
    width: 170px;
    /*margin: 5px auto;*/
  }
  .check01:checked ~ .awd1, .check02:checked ~ .awd2, .check03:checked ~ .awd3 {
    margin: 0 60px;
    max-width: 850px;
    top: 10%;
  }
}
/*////////タブレット対応/////////*/
@media screen and (min-width:1024px) and ( max-width:1112px) {

  .pc-lifemail {
    height: 100vh;
  }
  .LM-TOP-BOX {
    width: 100%;
    height: 100vh;
    padding: 0px;
  }
  .LM-TOP-R {
    padding: 5px;
    height: 100vh;
    width: 480px;
    display: table-cell;
    vertical-align: middle;
  }
  .LM-TOP-R h1 {
    font-size: 40px;
    letter-spacing: 0.0em;
    line-height: 1.2em;
  }
  .LM-TOP-R h5 {
    font-size: 20px;
  }
  .LM-TOP-LOGO {
    width: 95%;
  }
  .LM-TOP-L {
    margin: 0 auto;
  }
  .LM-TOP-PHONE {
    height: 60vh;
    position: absolute;
    bottom: 0%;
    left: 12%;
}
  .LM-INFO-TOP {
    margin-top: -1px;
  }

  .LM-SUB-TTL h2 {
    font-size: 30px;
  }
  .ACNT {
    font-size: 32px;
  }
  .ACNT2 {
    font-size: 32px;
  }
  .box-middle h3 {
    font-size: 28px;
  }
  .ACNT3 {
    font-size: 29px;
  }


  .box-middle h4 {
    font-size: 20px;
  }
  .top-margin {
    margin-top: -110px;
  }
  .bg01 {
    margin-top: 0px;
    margin-bottom: 0px;
    background-attachment: scroll;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;	
  }S
  .bg02 {
	  height:auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    padding-top: 30px;
  }
  .bg03 {
    margin-top: 0px;
    margin-bottom: 0px;
    background-attachment: scroll;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;	
  }
  .bg04 {
    margin-top: 0px;
    margin-bottom: 0px;
    background-attachment: scroll;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;	
  }
  .bg-lm7 {
    height: 450px;
  }
  h3 {
    font-size: 22px;
  }
  .title-bg-privacy, .title-bg-news, .title-bg-lifemail, .title-bg-partner, .title-bg-document, .title-bg-apply, .title-bg-company, .title-bg-contact, .title-bg-recruit, .title-bg-sitemap {
    background-size: cover;
    background-attachment: scroll;
  }
  .title-area {
    height: 400px;
    margin-top: 0px;
  }
  .img-size {
    width: 300px;
  }
  .img-size1 {
    width: 260px;
  }
  .img-size2 {
    width: 360px;
  }
  .titlename-box {
    top: 270px;
  }
  .titlename-box2 {
    top: 180px;
  }
  .titlename-box2 h3 {
    font-size: 28px;
    margin: 10px 0;
  }
  .img-area {
    padding: 0 20px;
  }
  .inner {
    margin: 0px 30px;
  }
  .pdf-w {
    width: 50px;
  }
  .pdf-text {
    margin-top: 18px;
  }
  .inner img {
    margin-top: 5px;
    margin-left: 10px;
    margin-bottom: 0px;
  }
  .award {
    height: 180px;
    margin: 30px 0px 0px 20px;
  }
  .h-heading h3 {
    margin: 10px 0px;
  }
}
@media screen and (min-width:1200px) {
  [class^="thumb-img"] img {
    width:19%;
    margin: 0px;
  }
  .grid-slide {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    margin-top: 110px;
    align-items: center;
  }
  .grid-slide > .gbox:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid-slide > .gbox:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .img-responsive2 {
    width: 85%;
    height: auto;
  }
  .LM-TOP-R {
    height: 100vh;
    width: 440px;
    display: table-cell;
  }
  .LM-TOP-R h1 {
    font-size: 38px;
    letter-spacing: 0.0em;
    line-height: 1.2em;
  }
  .LM-TOP-R h5 {
    font-size: 19px;
  }
  .LM-TOP-LOGO {
    width: 95%;
  }
  .LM-SUB-TTL h2 {
    font-size: 46px;
  }
  .ACNT {
    font-size: 48px;
  }
  .ACNT2 {
    font-size: 48px;
  }
  .box-middle h3 {
    font-size: 36px;
  }
  .ACNT3 {
    font-size: 37px;
  }
  .box-middle h4 {
    font-size: 26px;
  }
  .LM-COPY-BOX h2 {
    font-size: 60px;
  }
  .COPY-ACNT {
    font-size: 60px;
  }
  .LM-COPY-BOX-S h3 {
    font-size: 38px;
  }
  .COPY-ACNT-S {
    font-size: 38px;
  }

  .logo20 {
    margin-top: -40px;
  }

  .a-logo {
    width: 460px;
  }
  .bg-p-blue {
    margin-top: 0px;
  }
  .bg-lmX {
    height: 580px;
    width: 580px;
    margin: 0 auto;
  }
  .lm-title-box {
    height: 88%;
  }
  .lifemail-ttl-size {
    height: auto;
    width: 63%;
  } 
  .mov-box{
    width: 284px;
    height: 208px;/*168+45*/
    bottom: 260px;
    right: 80px;
  }
  .mov-size {
    width: 280px;
    height: 160px;
  }
  .top- {
    top: 0px;
  }
  .box-eee {
    padding: 40px;
  }
  .padding40 {
    padding: 40px;
  }
  .padding60 {
    padding: 40px;
  }
  .margin-top--80 {
    margin-top: -80px;
  }
  .top-marginX {
    margin-top: -1px;
    margin-bottom: -1px;
  }
  .top-margin {
    margin-top: -160px;
  }
  .lp-arrow-size {
    width: 300px;
    height: auto;
  }
  .lp-title-arrow-size {
    width: 480px;
    height: auto;
  }
  .lp-arrow {
    top: -1px;
  }
  .logo6 {
    width: 400px;
    height: auto;
  }
  .bg01 {
    margin-top: 0px;
    margin-bottom: 0px;
    background-attachment: fixed;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;	
  }
  .bg02 {
	  height:auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding-top: 30px;
  }
  .bg03 {
    margin-top: 0px;
    margin-bottom: 0px;
    background-attachment: fixed;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;	
  }
  .bg04 {
    margin-top: 0px;
    margin-bottom: 0px;
    background-attachment: fixed;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;	
  }
  .number-size {
    width: 130px;
    height: 100%;
  }
  .lp-sub-title-size {
    width: 380px;
    height: 100%;
  }
  .bg-line-dark1 {
    margin: -60px 0px 0px;
    height: 240px;
  }
  .bg-line-dark2 {
    margin: -60px 0px 0px;
    height: 240px;
  }
  .en-right {
    position: absolute;
    right: 30px;
    top: 240px;
    font-size: 55px;
  }
  .en-left {
    position: absolute;
    left: 25px;
    top: 0px;
    font-size: 60px;
  }
  .en-left1 {
    position: absolute;
    left: 5px;
    top: 542px;
    font-size: 68px;
  }
  .part-title2 {
    margin-top: -200px;
  }
  .slide-mobile {
    display: none;
  }
  .slide-top {
    display: block;
  }
  .slide-lifemail {
    display: block;
  }
  .pc-lifemail {
    height: 100vh;
    top: 0px;
  }
  .ttl-logo-size {
    margin-top: 80px;
    width: 100%;
    height: auto;
  }
  .ttl-next-size {
    width: 100px;
    height: auto;
    top: -190px;
    left: 91%;
  }
  .C-next-size {
    width: 220px;
  }
  .ttl-under-size {
    width: 160px;
    height: 160px;
    position: fixed;
    top: auto;
    bottom: 60px;
    right: 30px;
  }
  .container {
    width: 1100px;
  }
  .container2 {
    width: 1200px;
  }
  .slide-container {
   top: -130px;
  }
  .text-box-lm {
    height: 440px;
    padding: 80px;
    z-index: 0;
  }
  .text-box-lmX {
    height: 420px;
    padding: 80px;
    z-index: 0;
  }
  .top-news {
    margin-top: -180px;
  }
  .top-news2 {
    margin-top: -193px;
  }
  .container-nav {
    padding: 8px 0;
    width: 1180px;
    margin: 0 auto;
  }
  .container-nav-gl {
    padding: 15px 60px;
  }
  .nav-app {
    padding: 2px 0px 0px;
  }
  .nav-btn2 .btn {
    margin: 0px;
    padding: 6px 35px 2px;
    font-size: 18px;
  }
  .table-ul a {
    padding: 0px;
  }
  .table-ul a li {
    padding: 0px;
    margin: 10px 0 5px;
  }
  .table-ul a li {
    padding: 0px;
    margin: 10px 0 10px;
  }
  .ctn-area h1 {
    font-size: 58px;
    padding: 0px;
  }
  .h1-middle-only {
    margin-top: 50px;
  }
  h2 {
    font-size: 34px;
  }
  h1 {
    font-size: 34px;
  }
  .title h2 {
    font-size: 58px;
    margin: 20px 0px 2px;
  }
  .box-middle h1 {
    letter-spacing: 0.06em;
    font-size: 50px;
  }
  .logo4 {
    height: 80px;
  }
  .sub-box2 h2 {
    font-size: 28px;
    margin: 5px 5px 10px;
  }
  .sub-box h5 {
    font-size: 22px;
    padding: 4px 0 0;
  }
  .btn {
    margin: 5px 0px;
    padding: 12px;
    font-size: 16px;
  }
  .btn-cal {
    margin: 10px 0;
  }
  .title-bg-privacy, .title-bg-news, .title-bg-lifemail, .title-bg-partner, .title-bg-document, .title-bg-apply, .title-bg-company, .title-bg-contact, .title-bg-recruit, .title-bg-sitemap {
    background-size: cover;
    background-attachment: scroll;
  }
  .inner {
    margin: 0px 30px;
  }
  .pdf-w {
    width: 62px;
  }
  .inner img {
    margin: 0px;
  }
  .award {
    height: 180px;
    margin: 30px 0px 0px 20px;
  }
  .now {
    font-size: 40px;
    margin: -126px 0px 0px 26px;
  }
  .h-heading  {
    margin: -80px 0px 0px 0px;
    padding: 0px 0px 0px 200px;
  }
  .h-heading h2 {
    font-size: 40px;
    margin: -10px 0px;
  }
  .h-heading h3 {
    font-size: 24px;
    line-height: 1.1em;
    margin: 10px 0px;
  }
  .modal-title {
    margin: -13px 0 0 5%;
  }
  .copy {
    margin-top: 14px;
  }
  .check01:checked ~ .awd1, .check02:checked ~ .awd2, .check03:checked ~ .awd3 {
    margin: 0px 80px;
    max-width: 950px;
    top: 8%;
  }
}
@media screen and (min-width:1800px) {
  .img-responsive2 {
    width: 65%;
    height: auto;
  }
  .LM-TOP-R {
    height: 100vh;
    width: 680px;
    display: table-cell;
  }
  .LM-TOP-R h1 {
    font-size: 60px;
    letter-spacing: 0.0em;
    line-height: 1.2em;
  }
  .LM-TOP-R h5 {
    font-size: 30px;
  }
  .LM-TOP-PHONE {
    height: 85vh;
    width: auto;
    position: absolute;
    bottom: 0;
    left: 18%;
}
  .LM-TOP-LOGO {
    width: 98%;
  }
  .LM-SUB-TTL h2 {
    font-size: 46px;
  }
  .ACNT {
    font-size: 48px;
  }
  .ACNT2 {
    font-size: 48px;
  }
  .box-middle h3 {
    font-size: 39px;
  }
  .ACNT3 {
    font-size: 40px;
  }
  .box-middle h4 {
    font-size: 26px;
  }
  .LM-COPY-BOX h2 {
    font-size: 60px;
  }
  .COPY-ACNT {
    font-size: 60px;
  }
  .LM-COPY-BOX-S h3 {
    font-size: 38px;
  }
  .COPY-ACNT-S {
    font-size: 38px;
  }

  .logo20 {
    margin-top: -80px;
  }
  .bg-p-blue {
    margin-top: -20px;
  }
  .part-title {
    margin-top: -300px;
  }
  .bg01 {
    margin-bottom: 0px;
    background-attachment: fixed;
    height: auto;
    background-position: 50% 50%;
    background-size: cover;
  }
  .lifemail-ttl-size {
    height: auto;
    width: 98%;
  }
  .mov-box {
    width: 284px;
    height: 208px;
    bottom: 260px;
    right: 120px;
  }
  .bg-lmX {
    height: 680px;
    width: 680px;
    margin: 0 auto;
  }
  .bg-lm0, .bg-lm1, .bg-lm2, .bg-lm3, .bg-lm4 {
    height: 730px;
  }
  .text-box-lm {
    height: 540px;
    padding: 80px 190px;
    z-index: 0;
  }
  .text-box-lmX {
    height: 520px;
    padding: 80px 190px;
    z-index: 0;
  }
  .container-nav {
    padding: 8px;
    width: 1500px;
    margin: 0 auto;
  }
}

