@charset "UTF-8";
/* font family */
/* 見出し */
/* ボタン */
/* 文字の垂直方向のセンタリング */
/* position指定要素のtopの位置取り */
/* 疑似要素追加(画像無し) */
/* 疑似要素追加(画像あり) */
/* ボーダーセット */
/* フォント設定 */
/* メディアクエリ */
/* ----------------------------------------
 	reset
 ---------------------------------------- */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p,
a, img,
dl, dt, dd, ol, ul, li,
strong, sub, sup, i, small, address, time,
fieldset, form, label, legend, hr,
table, caption, tbody, tfoot, thead, tr, th, td,
header, footer, nav, section, article, aside,
figure, figcaption, canvas, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, figure, figcaption,
footer, header, nav, section {
  display: block;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html {
  overflow-y: scroll;
  min-height: 100%;
}

body {
  min-height: 100%;
}

ul, ol, li {
  list-style: none;
}

input, textarea, button {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

input[type=submit],
input[type=button],
button {
  cursor: pointer;
}

a {
  color: #222222;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

body {
  width: 100%;
  color: #222222;
  font-size: 14px;
  line-height: 170% !important;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  body {
    line-height: 20px;
  }
}

/* font family */
/* 見出し */
/* ボタン */
/* 文字の垂直方向のセンタリング */
/* position指定要素のtopの位置取り */
/* 疑似要素追加(画像無し) */
/* 疑似要素追加(画像あり) */
/* ボーダーセット */
/* フォント設定 */
/* メディアクエリ */
/* ----------------------------------------
 	layout
 ---------------------------------------- */
/* レイアウト
------------------------------ */
body {
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif !important;
  background-color: #fff !important;
  font-size: 14px !important;
}

.container {
  position: relative;
  max-width: 1010px;
  padding: 0 15px;
  margin: 0 auto;
}
.container:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (min-width: 769px) {
  .container {
    width: 750px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 1040px;
  }
}

.container-fluid {
  position: relative;
}

.contents-section {
  padding-top: 70px;
  position: relative;
}

/* 2019 - header
------------------------------ */
#header {
  width: 100%;
  padding: 20px 20px 0 20px;
  box-sizing: border-box;
  font-size: 15px;
  position: fixed;
  left: 0;
  z-index: 999;
  webkit-transition: -webkit-transform 0.45s cubic-bezier(0.23, 1, 0.58, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.23, 1, 0.58, 1);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.58, 1);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.58, 1), -webkit-transform 0.45s cubic-bezier(0.23, 1, 0.58, 1);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#header.hidden {
  webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}
#header .header-area {
  width: 100%;
  padding: 20px 20px 0 20px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  position: relative;
}
#header .header-warp {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #header .header-warp {
    justify-content: space-between;
  }
}
#header .logo {
  width: 150px;
  max-width: initial;
  border-right: 1px solid #cccccc;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #header .logo {
    width: 30%;
    border: none;
  }
}
#header .logo img {
  width: 150px;
  max-width: initial;
  margin: 0 40px 0 0;
}
#header .logo img.ai-puncher {
  width: 140px;
}
@media screen and (max-width: 768px) {
  #header .logo img {
    width: 100%;
  }
}
#header nav {
  width: 100%;
  margin: -20px 0 0 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #header nav {
    display: none;
  }
}
#header nav ul {
  display: flex;
  align-items: center;
}
#header nav ul li {
  list-style: none;
  margin: 0 15px 0 0;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}
#header nav ul li a {
  text-decoration: none;
  color: #000000;
  transition: 0.3s;
}
#header nav ul li a:hover {
  color: #e8380d;
}
#header nav ul li span.option-menu {
  align-items: center;
}
#header nav ul li span.option-menu i::before {
  margin-top: -2px;
  display: block;
}
#header nav ul .red {
  color: #e8380d;
}
#header .option {
  margin: -20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  #header .option {
    display: none;
  }
}
#header .option ul {
  display: flex;
  align-items: center;
}
#header .option ul li {
  white-space: nowrap;
  list-style: none;
  margin: 0 10px 0 0;
  font-weight: 300;
  position: relative;
}
#header .option ul li a {
  color: #5a5a5a;
  text-decoration: none;
  transition: 0.3s;
  align-items: center;
}
#header .option ul li a:hover {
  color: #e8380d;
}
#header .option ul li i {
  color: #c30d23;
}
#header .option .option-list {
  position: absolute;
  top: 25px;
  left: 0;
  display: none;
  margin: 0;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  background: #ffffff;
  box-sizing: border-box;
  z-index: 12;
}
#header .contact {
  padding: 0;
  margin: -20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  #header .contact {
    display: none;
  }
}
#header .contact a {
  padding: 10px;
  border-radius: 10px;
  background-color: #c30d23;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  align-items: center;
}
#header .contact a i::before {
  margin-top: -2px;
  display: block;
}
#header .global {
  width: 20px;
  margin: -20px 0 0 0;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #header .global {
    display: none;
  }
}
#header .global i {
  font-size: 21px;
}
#header .global span {
  color: #f7b52c;
  text-decoration: none;
  cursor: pointer;
}
#header .global .global-list {
  display: none;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 12;
}
#header .global ul {
  margin: 0;
  background: #f7b52c;
  border-radius: 10px;
  padding: 10px;
}
#header .global ul li {
  list-style: none;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
}
#header .global ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}
#header .global ul li a:hover {
  opacity: 0.7;
}
#header .global ul li .now {
  opacity: 0.7;
}
#header .sp-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  #header .sp-menu {
    display: block;
    font-size: 1.5em;
    margin: -20px 0 0 0;
  }
}
#header .menu-data {
  width: 100%;
  text-align: center;
  display: none;
  border-top: 5px solid #f1f1f1;
  position: absolute;
  top: 90px;
  left: 0;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  color: #000000;
}
#header .menu-data dl {
  padding: 0 5% 40px 5%;
  box-sizing: border-box;
  width: 0 auto 0 auto;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
}
#header .menu-data dt {
  width: 100%;
  font-size: 33px;
  font-weight: 900;
  margin: 0;
  padding: 40px 0 40px 0;
  text-align: center;
}
#header .menu-data dt small {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #999999;
  font-weight: 500;
  margin-top: 15px;
}
#header .menu-data dt a {
  text-align: center;
  text-decoration: none;
  color: #000000;
}
#header .menu-data dt a i {
  font-size: 14px;
  color: #c30d23;
  vertical-align: middle;
  margin: auto auto auto 20px;
}
#header .menu-data dd {
  width: 30%;
  font-size: 18px;
  font-weight: 700;
  margin: 0 1% 20px 1%;
  padding: 0 15px 10px 15px;
  box-sizing: border-box;
  display: flex;
  align-content: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px dotted #cccccc;
}
#header .menu-data dd a {
  text-decoration: none;
  color: #000000;
  position: relative;
  transition: 0.3s;
  display: block;
  width: 100%;
  text-align: left;
}
#header .menu-data dd a::after {
  position: absolute;
  bottom: -10px;
  left: -15px;
  content: "";
  width: 5px;
  height: 0px;
  background-color: #f7b52c;
  transition: 0.3s;
  -webkit-transform: translateY();
  transform: translateY();
}
#header .menu-data dd a:hover::after {
  width: 5px;
  height: 38px;
}
#header .menu-data dd i {
  color: #c30d23;
  font-size: 14px;
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
}
#header .menu-data .reset {
  border: 1px #ffffff;
  width: 100%;
}
#header .sp-menu-data {
  display: none;
}
@media screen and (max-width: 768px) {
  #header .sp-menu-data {
    width: 100%;
    text-align: center;
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    color: #000000;
  }
}
#header .sp-menu-data dt {
  width: 100%;
  border-top: 1px dotted #cccccc;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  padding: 10px 0 10px 0;
  margin: 0 0 0 0;
}
#header .sp-menu-data dt i {
  font-size: 14px;
  color: #c30d23;
  vertical-align: middle;
  margin: auto auto auto 20px;
}
#header .sp-menu-data .inner-dl {
  display: none;
  text-align: left;
}
#header .sp-menu-data dd {
  width: 48%;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0 10px 10px 10px;
  display: inline-block;
  vertical-align: top;
}
#header .sp-menu-data a {
  text-decoration: none;
  color: #000000;
  position: relative;
  transition: 0.3s;
}
#header .sp-menu-data a::after {
  position: absolute;
  bottom: -3px;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background-color: #f7b52c;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#header .sp-menu-data a:hover::after {
  width: 100%;
}
#header .sp-menu-data .reset {
  border: 1px #ffffff;
}
#header .sp-menu-data .red {
  background-color: #c30d23 !important;
}
#header .sp-menu-data .red a {
  color: #ffffff !important;
}
#header .sp-menu-data .red a i {
  color: #ffffff !important;
}

.option-back {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 2;
}

.global-back {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 2;
}

.black-back {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 2;
}

/* ヘッダ
------------------------------ 
#wrapper:before {
	position: relative;
	z-index: 0;
	content: '';
	display: block;
	height: 120px;

	@include bp(0,991px) {
		height: 50px;
	}
}
#global-header-content {
	position: fixed;
	top: 40px;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 80px;
	background: #fff;
	transition: top 0.5s;
	@include clearfix;
	&.is-scroll {
		top:0;
		.upper-header {
			top:-40px;
		}
	}

	.site-id {
		position: relative;
		float: left;
		margin-top: 0;
		margin-bottom: 0;
	}

	@include bp(0,991px) { 
		height: 50px;
		border-bottom: 1px solid $color-gray-border-01;

		.site-id {
			padding: 9px 10px;

			img {
				display: none;
			}
			a {
				display: block;
				width: 103px;
				height: 32px;
				background: image-url("common/hdr_logo_sp.png") no-repeat center/contain;
			}
		}
	}
	@include bp(992px,0) {
		display: table;

		.site-id { 
			display: table-cell;
			vertical-align: middle;
			padding: 16px;


			img {
				display: block;
				width: 156px;
			}
			a {
				@include hover-op;
			}
		}
		#global-nav {
			display: table-cell;
			vertical-align: middle;
		}
	}
}
@include bp(0,991px) {
	#global-header-content {
		top:0;
		&.is-scroll {
			.upper-header {
				top:0;
			}
		}
	}
}

/* ナビ ----------------- */
#wrapper #gnav-bg {
  position: relative;
  z-index: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: 0.1s opacity ease;
  -moz-transition: 0.1s opacity ease;
  -ms-transition: 0.1s opacity ease;
  -o-transition: 0.1s opacity ease;
  transition: 0.1s opacity ease;
}
#wrapper.menu-open #gnav-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  opacity: 0.5;
}
#wrapper.has-bnr {
  margin-top: 58px;
}
@media (max-width: 1050px) {
  #wrapper.has-bnr #sp_header {
    margin-top: 58px;
  }
}
@media (max-width: 1050px) {
  #wrapper.has-bnr #sp_header #sp_navi {
    top: 118px;
  }
}

#global-nav {
  text-align: center;
  font-size: 13px;
  /* WOVN.io 独自レイアウト
  ------------------------------ */
  /* WOVN.io 独自レイアウト - SP
  ------------------------------ */
}
#global-nav ul li {
  position: relative;
  cursor: pointer;
}
#global-nav ul li span {
  display: block;
  color: #44484a;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#global-nav ul li.pcNone {
  display: none;
}
#global-nav ul li.open a, #global-nav ul li.open span {
  color: #e8340d;
}
#global-nav ul li.open li a {
  color: #4f5255;
}
#global-nav ul li.open li a:hover {
  color: #e8340d;
}
#global-nav ul li .pulldown-switch:after {
  transition: all 0.5s;
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  position: relative;
  left: 10px;
  top: -4px;
  border-right: solid 1.5px #4f5255;
  border-bottom: solid 1.5px #4f5255;
  transform: rotate(45deg);
}
#global-nav ul li.open .pulldown-switch:after {
  border-right: solid 1.5px #e8340d;
  border-bottom: solid 1.5px #e8340d;
}
#global-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-45%, 0);
  width: auto;
  padding: 0 0 0;
  display: none;
  background: #f0f0f0;
  border: solid 1px #dee3e6;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);
}
#global-nav ul li ul li {
  display: block;
}
#global-nav ul li ul li span {
  color: #44484a;
}
#global-nav ul li ul li a {
  display: block;
  padding: 1px 26px;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
  font-size: 13px;
}
#global-nav ul li ul li:last-child a {
  border-bottom: none;
}
@media (max-width: 991px) {
  #global-nav ul li {
    line-height: 50px;
  }
  #global-nav ul li .pulldown-switch {
    display: block;
    position: relative;
  }
  #global-nav ul li .pulldown-switch:after {
    content: "+";
    position: absolute;
    right: 4%;
    left: auto;
    top: 0;
    font-weight: normal;
    border: none;
    width: auto;
    height: auto;
    transform: rotate(0deg);
    font-size: 14px;
  }
  #global-nav ul li.open .pulldown-switch:after {
    content: "-";
    border: none;
  }
  #global-nav ul li.pcNone {
    display: block;
  }
  #global-nav ul li ul {
    display: none;
    position: static;
    width: 100%;
    padding: 0;
    box-shadow: none;
    border: none;
    transform: translate(0, 0);
  }
  #global-nav ul li ul li {
    display: block;
  }
  #global-nav ul li ul li a {
    display: block;
    background: #f0f0f0;
    opacity: 1;
    color: #222222;
    padding: 0;
    font-size: unset;
    border: none;
  }
}
#global-nav a {
  display: block;
  color: #44484a;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#global-nav .gnav-contact a {
  background: #e8340c;
  color: #fff;
}
@media (max-width: 991px) {
  #global-nav .gnav-btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    width: 37px;
    height: 44px;
    background: image-url("common/ico_menu.svg") no-repeat center center;
    background-size: 17px auto;
    cursor: pointer;
  }
  .menu-open #global-nav .gnav-btn {
    background-image: image-url("common/ico_close.svg");
    background-size: 14px auto;
  }
  #global-nav .gnav-content {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #fff;
    -webkit-transition: 0.3s height ease;
    -moz-transition: 0.3s height ease;
    -ms-transition: 0.3s height ease;
    -o-transition: 0.3s height ease;
    transition: 0.3s height ease;
  }
  .menu-open #global-nav .gnav-content {
    height: auto !important;
    overflow: auto;
  }
  #global-nav .gnav-content .gnav-list {
    height: calc(100vh - 50px);
    overflow: auto;
  }
  #global-nav li {
    border-top: 1px solid #dddddd;
  }
  #global-nav a {
    line-height: 50px;
  }
  #global-nav .gnav-contact {
    border-top: 1px solid #dddddd;
  }
}
@media (min-width: 992px) {
  #global-nav .gnav-btn {
    display: none;
  }
  #global-nav .gnav-content {
    float: right;
  }
  #global-nav .gnav-list {
    display: table;
    float: right;
    height: 80px;
  }
  #global-nav ul {
    display: table-cell;
    vertical-align: middle;
    padding: 0 12px;
  }
  #global-nav li {
    display: inline-block;
  }
  #global-nav li a, #global-nav li span {
    padding: 0 12px;
    line-height: 40px;
  }
  .pc #global-nav li a, .pc #global-nav li span {
    transition: 0.2s color ease;
  }
  .pc #global-nav li a:hover, .pc #global-nav li span:hover {
    color: #e8340c;
  }
  #global-nav li a.current, #global-nav li span.current {
    color: #e8340c;
  }
  #global-nav .gnav-contact {
    display: table-cell;
    vertical-align: middle;
  }
  #global-nav .gnav-contact a {
    height: 100%;
    padding: 0 38px;
    background: #e8340c;
    color: #fff;
    line-height: 80px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .pc #global-nav .gnav-contact a {
    transition: 0.2s background-color ease;
  }
  .pc #global-nav .gnav-contact a:hover {
    background-color: #d03b1a;
  }
}
#global-nav .upper-header {
  position: fixed;
  width: 100%;
  height: 40px;
  background: #FFF;
  top: 0px;
  left: 0;
  border-bottom: solid 1px #dee3e6;
  transition: top 0.5s;
}
#global-nav .upper-header .upper-header-inner {
  position: absolute;
  height: 40px;
  right: 0;
  top: 0;
}
#global-nav .upper-header .upper-header-inner .upper-header-sns-links {
  float: left;
}
#global-nav .upper-header .upper-header-inner .upper-header-sns-links ul {
  display: block;
  line-height: 0;
  padding: 11px 15px 8px;
  border-right: solid 1px #dee3e6;
  font-size: 0;
}
#global-nav .upper-header .upper-header-inner .upper-header-sns-links li {
  display: inline-block;
  width: auto;
  height: 17px;
  margin-left: 10px;
  line-height: 40px;
}
#global-nav .upper-header .upper-header-inner .upper-header-sns-links a {
  display: block;
  height: 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  text-indent: -9999px;
  opacity: 0.7;
  background-size: auto 16px;
  line-height: 40px;
}
#global-nav .upper-header .upper-header-inner .upper-header-sns-links a:hover {
  opacity: 0.3;
}
#global-nav .upper-header .upper-header-inner .upper-header-sns-links a.twitter {
  width: 19px;
  background-image: url("../img/common/icon-sns-x.webp");
}
#global-nav .upper-header .upper-header-inner .upper-header-sns-links a.facebook {
  width: 19px;
  background-image: url("../img/common/icon-sns-facebook.png");
}
#global-nav .upper-header .upper-header-inner .upper-header-sns-links a.linkedin {
  width: 19px;
  background-image: url("../img/common/icon-sns-linkedin.png");
}
#global-nav .upper-header .upper-header-inner .upper-header-sns-links a.youtube {
  width: 26px;
  background-image: url("../img/common/icon-sns-youtube.png");
}
#global-nav .upper-header .upper-header-inner .languages-wrap {
  float: left;
  height: 39px;
}
#global-nav .upper-header .upper-header-inner .languages-wrap span.language-title {
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  width: 145px;
  padding-left: 25px;
  float: left;
  font-size: 12px;
  line-height: 35px;
  background: url(../img/common/icon-language.png) no-repeat 15px center;
  background-size: 15px auto;
  color: #3f4345;
}
#global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages {
  float: left;
  width: 65px;
  position: relative;
}
#global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul {
  border-left: solid 1px transparent;
  display: block;
  position: absolute;
  padding: 35px 0 0 !important;
}
#global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul li {
  color: #3f4345;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  display: none !important;
  padding: 0 15px;
  text-align: left;
  width: 65px;
  height: 34px;
  display: block;
  cursor: pointer;
  font-size: 12px;
  line-height: 35px;
  position: relative;
}
#global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul li:after {
  content: "";
  display: none;
  position: absolute;
  right: 12px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-right: solid 1px #e53821;
  border-bottom: solid 1px #e53821;
  transform: rotate(45deg);
}
#global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul li.selected {
  display: block !important;
  position: absolute;
  top: 0;
}
#global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul li.selected:after {
  display: block;
}
#global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul.is-open {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.33);
  border-left: solid 1px #dee3e6;
}
#global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul.is-open li {
  background: #f0f0f0;
  border-bottom: solid 1px #dee3e6;
  display: block !important;
}
#global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul.is-open li.selected:after {
  display: block;
}
@media (max-width: 991px) {
  #global-nav .upper-header {
    position: relative;
    height: 51px;
    top: auto;
    left: auto;
    border-bottom: none;
  }
  #global-nav .upper-header .upper-header-inner {
    position: static;
    height: 51;
  }
  #global-nav .upper-header .upper-header-inner .upper-header-sns-links ul {
    display: block;
    line-height: 0;
    padding: 18px 0 0 5px;
    border-right: none;
    font-size: 0;
  }
  #global-nav .upper-header .upper-header-inner .upper-header-sns-links li {
    border-top: none;
    height: 17px;
    margin-left: 3vw;
    line-height: 51px;
  }
  #global-nav .upper-header .upper-header-inner .upper-header-sns-links a {
    line-height: 51px;
    background-repeat: no-repeat;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap {
    float: right;
    height: 32px;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap span.language-title {
    width: 120px;
    padding-left: 10px;
    font-size: 12px;
    line-height: 51px;
    background: url(../img/common/icon-language.png) no-repeat left center;
    background-size: 13px auto;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages {
    position: static;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul {
    border-left: solid 1px transparent;
    display: block;
    position: absolute;
    bottom: 8px;
    right: unset;
    padding: 0 0 35px !important;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul li {
    padding: 0 15px;
    height: 35px;
    font-size: 13px;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul li:after {
    right: 12px;
    top: 11px;
    width: 8px;
    height: 8px;
    border-right: solid 1px #e53821;
    border-bottom: solid 1px #e53821;
    transform: rotate(45deg);
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul li.selected {
    display: block !important;
    position: absolute;
    border-top: none;
    top: auto;
    bottom: 0;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul li.selected:after {
    display: block;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul.is-open {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.33);
    border-top: solid 1px #dee3e6;
    border-left: solid 1px #dee3e6;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul.is-open li {
    background: #f0f0f0;
    border-bottom: solid 1px #dee3e6;
    border-top: none;
    display: block !important;
  }
  #global-nav .upper-header .upper-header-inner .languages-wrap #wovn-languages ul.is-open li.selected:after {
    display: block;
  }
}

.floating {
  display: none;
  position: fixed;
  right: 0;
  bottom: 25%;
  padding-top: 122px;
}
@media (max-width: 768px) {
  .floating {
    display: none;
  }
}
.floating::before {
  content: "";
  display: block;
  background: url(/images/floating_deco.png?9cf982c…) no-repeat;
  width: 119px;
  height: 141px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -60px;
}
.floating .list {
  display: block;
  background: #c30d23;
  border-radius: 10px 0 0 10px;
  padding: 8px 20px 4px;
}
.floating .list a {
  padding: 0.5em 0;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.floating .list a :hover {
  color: #f7b52c;
}
.floating .list a :hover .ic-mail:before {
  background-image: url(/img/common/icn_mail_hover.png);
}
.floating .list a :hover .ic-file:before {
  background-image: url(/img/common/icn_document_hover.png);
}
.floating .list a .ic {
  font-size: 1.2em;
  vertical-align: text-bottom;
  margin-right: 0.3em;
  margin-bottom: -3px;
  margin-top: 3px;
  display: inline-block;
}
.floating .list li + li {
  border-top: 1px dotted #fff;
}
.floating .list li {
  padding: 10px 0;
}

[class*=" ic-"], [class^=ic-] {
  font-family: w19005_ic !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ic-mail:before {
  background-image: url(/img/common/icn_mail.png);
}

.ic-file:before {
  background-image: url(/img/common/icn_document.png);
}

.ic-mail:before,
.ic-file:before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  width: 17px;
  height: 17px;
}

/* コンテンツ
------------------------------ */
#body-header {
  padding: 180px 0 52px;
  background: url("../img/common/body_hdr_bg.jpg") no-repeat right bottom;
  text-align: center;
  border-bottom: 1px solid #cccccc;
  background-color: #fff;
}
#body-header .container {
  padding: 0 15px;
}
#body-header .catch {
  font-size: 14px;
}
#body-header h1 {
  color: #eb4a26 !important;
}
#body-header h1 strong {
  font-size: 14px;
  color: #333;
}
@media (max-width: 991px) {
  #body-header {
    padding: 120px 25px 25px 25px;
  }
}
#body-header.insights-top {
  border-bottom: none;
  padding: 120px 0 0;
}
#body-header .insights-top-link {
  color: #eb4a26;
}

.body-content {
  padding-bottom: 60px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .body-content {
    padding-bottom: 30px;
  }
}

.no-content {
  padding: 30px 0;
  text-align: center;
}

/* contactエリア
------------------------------ */
#contact {
  background: #666 image-url("home/contact_bg.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
}
#contact .heading-01 {
  color: #fff;
  text-align: center;
}
#contact .text {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  #contact {
    position: relative;
    padding: 0 0 30px;
  }
  #contact:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    opacity: 0.3;
  }
  #contact .container {
    z-index: 2;
  }
  #contact .text {
    margin-top: 14px;
  }
  #contact .action {
    margin-top: 15px;
  }
  #contact .btn-primary {
    width: 100%;
    color: #fff;
  }
}
@media (min-width: 769px) {
  #contact {
    padding: 27px 0 107px;
  }
  #contact .section-content {
    text-align: center;
  }
  #contact .text {
    margin-top: 40px;
    font-size: 16px;
    line-height: 24px;
  }
  #contact .action {
    margin-top: 28px;
  }
  #contact .btn-primary {
    width: 300px;
    color: #fff;
  }
}

/* 2019 - footer
------------------------------ */
/* フッタ
------------------------------ 
#global-footer {
	background: #444444;
	color: #fff;
	@include fontanti;

	#footer-nav {
		font-family: $font-family-latin;
		ul {
			font-size: 0;
			line-height: 1;
			margin-bottom: 25px;
		}
		li {
			display: inline-block;
			font-size: 14px;
		}
		a {
			color: #fff;
			line-height: 1.5em;
			@include hover-color;
		}
	}
	.footer-sns-links {
		position: absolute;
		right: 30px;
		top: 0;
		ul {
			font-size: 0;
		}
		li {
			display: inline-block;
			width: auto;
			height: 18px;
			margin-left: 19px;
		}
		a {
			display: block;
			height:100%;
			background-size: auto 100%;
			background-repeat: no-repeat;
			text-indent: -9999px;
			&:hover { opacity:0.7;}
			&.twitter {
				width:23px;
				background-image: url("../img/common/icon-sns-x-w.webp");
			}
			&.facebook {
				width:18px;
				background-image: url("../img/common/icon-sns-facebook-w.png");
			}
			&.linkedin {
				width:18px;
				background-image: url("../img/common/icon-sns-linkedin-w.png");
			}
			&.youtube {
				width:26px;
				background-image: url("../img/common/icon-sns-youtube-w.png");
			}
		}
	}
	.copyright {
		font-size: 12px;
		line-height: 18px;
		font-family: $font-family-latin;
	}
	@include bp(sp) {
		padding: 17px 0 24px 0;

		.container {
			display: block;
			position: relative;
		}
		#footer-nav,
		.footer-sns-links,
		.copyright {
			text-align: center;
		}
		#footer-nav {
			margin-bottom: 20px;
			ul {
				margin: 0 -7px
			}
			li {
				padding: 0 7px;
			}
		}
		.footer-sns-links {
			position: static;
			text-align: center;
			li {
				margin: 0 13px;
				height: 24px;
			}
			a {
				&:hover { opacity:0.7;}
				&.twitter {
					width:30px;
				}
				&.facebook {
					width:24px;
				}
				&.linkedin {
					width:24px;
				}
				&.youtube {
					width:35px;
				}
			}
		}
		.copyright {
			margin-top: 16px;
			text-align: center;
		}
	}
	@include bp(pc) {
		padding: 42px 0 42px 0;

		.container {
			max-width: 100%;
			padding: 0 30px;
		}

		#footer-nav {
			max-width:70%;
			li {
				padding: 0 20px 0 0;
			}
		}
		.copyright {
			clear: both;
			line-height: 14px;
			margin-top: 10px;
		}
	}
}

/* CTA
------------------------------ */
/* フッター上部 */
@media (min-width: 769px) {
  #contact .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  #contact .col-sm-4 {
    width: 33.33333333%;
  }
  #contact .col-sm-4 {
    float: left;
  }
}

/* insight,caseの記事上下 */
#article-button #contact {
  padding: initial;
  background: initial;
}
@media (max-width: 768px) {
  #article-button #contact::before {
    background: initial;
  }
  #article-button #contact a {
    font-size: 20px;
  }
  #article-button #contact .row div {
    width: 100%;
  }
}
@media (min-width: 769px) {
  #article-button #contact .action {
    margin-top: 10px;
  }
}

/* font family */
/* 見出し */
/* ボタン */
/* 文字の垂直方向のセンタリング */
/* position指定要素のtopの位置取り */
/* 疑似要素追加(画像無し) */
/* 疑似要素追加(画像あり) */
/* ボーダーセット */
/* フォント設定 */
/* メディアクエリ */
/* ----------------------------------------
 	parts
 ---------------------------------------- */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
#svgicons {
  display: none;
}

.ico-svg {
  width: 1em;
  height: 1em;
}

/* 共通クラス
------------------------------ */
.pc .hover-op {
  transition: 0.2s opacity ease;
}
.pc .hover-op:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .only-sp {
    display: none;
  }
}

/* 見出し
------------------------------ */
.heading-01 {
  color: #e8340c;
  font-size: 40px;
  line-height: 1.25;
  font-weight: bold;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.heading-01 strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
}
@media (max-width: 768px) {
  .heading-01 {
    font-size: 25px;
  }
  .heading-01 strong {
    font-size: 10px;
  }
}

.heading-02 {
  color: #e8340c;
  font-size: 30px;
  line-height: 1.25;
  font-weight: bold;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
}
@media (max-width: 768px) {
  .heading-02 {
    font-size: 25px;
  }
}

.heading-03 {
  font-size: 22px;
  line-height: 26px;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
}
@media (max-width: 768px) {
  .heading-03 {
    font-size: 16px;
    line-height: 20px;
  }
}

/* 共通パーツ
------------------------------ */
/* ボタン */
.btn-primary,
.btn-next,
.btn-submit,
.btn-home {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 58px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #e9401a;
  border: 1px solid #a32c11;
}
@media (max-width: 768px) {
  .btn-primary,
.btn-next,
.btn-submit,
.btn-home {
    font-size: 20px;
    line-height: 50px;
    border-radius: 4px;
  }
}
.pc .btn-primary,
.pc .btn-next,
.pc .btn-submit,
.pc .btn-home {
  transition: 0.2s background-color ease;
}
.pc .btn-primary:hover,
.pc .btn-next:hover,
.pc .btn-submit:hover,
.pc .btn-home:hover {
  background-color: #d03b1a;
}

.btn-secondary,
.btn-back {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 58px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #666;
  border: 1px solid #444444;
}
@media (max-width: 768px) {
  .btn-secondary,
.btn-back {
    font-size: 20px;
    line-height: 50px;
    border-radius: 4px;
  }
}
.pc .btn-secondary,
.pc .btn-back {
  transition: 0.2s background-color ease;
}
.pc .btn-secondary:hover,
.pc .btn-back:hover {
  background-color: #444444;
}

.btn-link,
.btn-more {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  padding: 0 20px;
  background: transparent;
  border-radius: 6px;
  font-size: 16px;
  line-height: 42px;
  border: 1px solid #e9401a;
  color: #e9401a;
}
.pc .btn-link,
.pc .btn-more {
  transition: 0.2s ease;
}
@media (max-width: 768px) {
  .btn-link,
.btn-more {
    padding: 0 10px;
    font-size: 14px;
    line-height: 33px;
    border-radius: 4px;
  }
}
.pc .btn-link:hover,
.pc .btn-more:hover {
  background-color: #d03b1a;
  color: #fff !important;
}

/* フォーム　パーツ */
input[type=text],
input[type=email] {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  background: #f6f6f7;
  border: 1px solid #dddddd;
  border-radius: 5px;
}

textarea {
  display: block;
  width: 100%;
  height: 240px;
  padding: 14px 16px;
  background: #f6f6f7;
  border: 1px solid #dddddd;
  border-radius: 5px;
}

@media (max-width: 768px) {
  input[type=text],
input[type=email] {
    height: 35px;
    font-size: 16px;
  }

  select {
    font-size: 16px;
  }

  textarea {
    height: 180px;
    font-size: 16px;
  }
}
.select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  background: #f6f6f7;
  border: 1px solid #dddddd;
  border-radius: 5px;
}
.select-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 1;
  width: 15px;
  height: 9px;
  transform: translateY(-50%);
  background: no-repeat center center;
  background-size: contain;
  background-image: image-url("common/arw_01_d.svg");
}
.select-wrap select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  vertical-align: middle;
  color: #222222;
  font-size: inherit;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 42px;
  padding: 0 40px 0 16px;
}
@media (max-width: 768px) {
  .select-wrap select {
    height: 33px;
  }
}

/* 背景 */
.bg-orange {
  background: #e8340c;
}

.bg-gray {
  background: #f0f0f0;
}

.bg-yellow {
  background: #ffefce;
}

.bg-white {
  background: #fff;
}

/* タイポグラフィー */
.text-white {
  color: #fff !important;
}

.text-black {
  color: #282828 !important;
}

.text-orange {
  color: #e8340c;
}

/* 枠線 */
.bd-gray {
  border: 1px solid #dddddd;
}

.bd-btm-gray {
  border-bottom: 1px solid #dddddd;
}

.bd-right-lightgray {
  border-right: 1px solid #f0f0f0;
}

/* ニュースリスト
------------------------------ */
#news_category_wrap {
  width: 100%;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ccc;
  font-size: 15px;
}
#news_category_wrap .flex {
  justify-content: flex-start;
}
#news_category_wrap .flex p {
  width: 100px;
  padding-top: 7px;
}
#news_category_wrap .flex div {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}
#news_category_wrap .flex div a {
  color: #222222;
  display: block;
  padding: 5px;
  cursor: pointer;
  text-align: center;
  background: #d1d3d7;
  margin: 0 1% 10px 0;
  width: 24%;
}
#news_category_wrap .flex div a:hover, #news_category_wrap .flex div a.active {
  color: #fff;
  background: #3d3a39;
}
#news_category_wrap .flex.year-nav {
  margin-top: 12px;
}

.date {
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-cat {
  display: inline-block;
  padding: 4px 7px;
  background: #f0f0f0;
  font-size: 15px;
  line-height: 18px;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  letter-spacing: 0.05em;
  margin-right: 1em;
}

.news-list {
  border-bottom: 1px solid #dddddd;
}
.news-list:first-child {
  margin-top: 30px;
}
.news-list li {
  border-top: 1px solid #dddddd;
}
.news-list a {
  display: block;
  padding: 18px 18px 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #222222;
}
.news-list a:after {
  content: "";
  display: block;
  clear: both;
}
.pc .news-list a {
  transition: 0.2s color ease;
}
.pc .news-list a:hover {
  color: #e8340c;
}
.news-list a .date {
  float: left;
  width: 120px;
  color: #e8340c;
}
.news-list a .texts {
  margin-top: 0.5em;
}
.news-list a .cat {
  margin: 4px 0 0 0;
}
.news-list a .ico-cat {
  color: #222222;
}
.news-list div.flex {
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  .news-list {
    margin-top: 20px;
  }
  .news-list a {
    padding: 12px 5px 15px;
    font-size: 14px;
    line-height: 20px;
  }
  .news-list a .date {
    float: none;
    width: 100%;
    padding: 0;
  }
  .news-list a .texts {
    margin: 3px 0 0 0;
  }
}

/* ページネーション */
.pagination {
  margin: 42px 0 80px 0;
  text-align: center;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
}
.pagination ul {
  font-size: 0;
}
.pagination li {
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
}
.pagination a {
  display: inline-block;
  min-width: 30px;
  padding: 0 10px;
}
.pc .pagination a {
  transition: 0.2s color ease;
}
.pc .pagination a:hover {
  color: #e8340c;
}
.pagination a.current {
  color: #e8340c;
}
.pagination .ico-svg {
  width: 6px;
  height: 12px;
  vertical-align: 1px;
  fill: #000;
  transition: 0.2s fill ease;
}
.pc .pagination a:hover .ico-svg {
  fill: #e8340c;
}
.pagination .disabled .ico-svg {
  opacity: 0.2;
}
@media (max-width: 768px) {
  .pagination {
    margin: 25px -5px 8px;
  }
  .pagination li {
    font-size: 15px;
    line-height: 17px;
  }
  .pagination a {
    min-width: 25px;
  }
  .pagination .ico-svg {
    vertical-align: -1px;
  }
}