@charset "UTF-8";
@import url(//fonts.googleapis.com/css2?family=Abel&display=swap);
/* ==========================================================================

[BASE]
	Reset
	Form
	Animate

[LAYOUT]
	All
	Header
	Footer
	FixedContent (side float contants)

[MODULE]
	Common
	Breadline
	MainImg

[PAGE]
	Top (Index)
	Contact (Form)

[ETC]
	IE
	Print

=========================================================================== */
/* ========================================================================= */
/* [BASE]
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/* reset
/* ------------------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

/* Hides from IE Mac \*/
* html .floatcontainer {
  height: 1%;
}

.floatcontainer {
  display: block;
}

/* End Hack */
html {
  font-size: 62.5%;
  /* 10px */
}

/*------------------------------------*/
@media all and (max-width: 768px) {
  html {
    /*		font-size: 50%; /* 8px */
    font-size: 56.25%;
    /* 9px */
  }
}
body {
  line-height: 1;
}

/* inline-block --> block */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  outline: none;
  text-decoration: none;
}

img {
  border: 0;
  outline: 0;
  vertical-align: middle;
  background: transparent;
  -webkit-backface-visibility: hidden;
  max-width: 100%;
}

a,
a img {
  transition: 0.4s;
}

/*------------------------------------*/
@media all and (min-width: 769px) {
  a:hover img {
    opacity: 0.7;
  }
}
ins {
  text-decoration: underline;
}

del {
  text-decoration: line-through;
}

mark {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
  font-style: italic;
  font-weight: bold;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, textarea, select {
  vertical-align: middle;
  -webkit-appearance: none;
}

em, dl {
  font-style: normal;
}

/* box-sizing */
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  padding: 0px;
  margin: 0px;
}

/* ------------------------------------------------------------------------- */
/* フォーム（サイト共通定義）
/* ------------------------------------------------------------------------- */
select,
textarea,
input[type="text"],
input[type="num"],
input[type="tel"],
input[type="email"],
input[type="password"] {
  padding: 5px 5px;
  margin: 5px 3px 5px 3px;
  border: 1px solid #aaaaaa;
  border-radius: 2px;
  color: #000000;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
}

/* セレクトボックスの矢印を消す IE10以上 */
select {
  padding-right: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(image/icon_arrow_select.png) right 5px center no-repeat;
  color: #000000;
}
select::-ms-expand {
  display: none;
  /* IE対策（IE10以上）*/
}

input[type="text"].align_left {
  text-align: left;
}
input[type="text"].align_center {
  text-align: center;
}
input[type="text"].align_right {
  text-align: right;
}

/* radio */
input[type="radio"] {
  margin: 0 10px 5px 5px;
  -webkit-appearance: radio;
}
input[type="radio"] + label {
  padding: 0 8px 0 2px;
  cursor: pointer;
}

/* checkbox */
.check_label {
  display: inline-block;
  margin: 5px 10px 8px 0;
  padding: 5px 10px 5px;
  background-color: #efefef;
  border: 2px solid #efefef;
  border-radius: 2px;
  cursor: pointer;
}

input[type="checkbox"] {
  display: none;
  text-align: left;
  -webkit-appearance: checkbox;
  cursor: pointer;
}
input[type="checkbox"] + span {
  padding-left: 30px;
  position: relative;
  vertical-align: top;
  display: block;
}
input[type="checkbox"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border: 1px solid #aaaaaa;
  border-radius: 2px;
}
input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 7px;
  width: 7px;
  height: 15px;
  transform: rotate(40deg);
  border-bottom: 3px solid #0099CC;
  border-right: 3px solid #0099CC;
}

/* textarea */
textarea {
  height: auto;
  line-height: 1.5;
  resize: vertical;
}

/* placeholder */
input:-moz-placeholder, textarea:-moz-placeholder,
input::-moz-placeholder, textarea::-moz-placeholder,
input:-ms-input-placeholder, textarea:-ms-input-placeholder,
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #4d4d4d;
}

/* 入力NG */
input:invalid,
select:invalid,
textarea:invalid {
  background-color: #F8F5E2;
  border: 1px solid #aaaaaa;
  box-shadow: none;
}

select:invalid {
  color: #666666;
}

/* ボタン */
input[type="submit"],
input[type="reset"] {
  padding: 0px 20px 0 20px;
  min-width: 300px;
  min-height: 4.0rem;
  line-height: 2.0;
  color: #ffffff;
  background-color: #0B306B;
  border: 2px solid #0B306B;
  border-radius: 0;
  cursor: pointer;
  font-size: 1.6rem;
  margin: 10px 5px;
}

input[type="reset"] {
  background-color: #666666;
  border: 2px solid #666666;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
  opacity: 0.7;
}

*:first-child + html input[type="submit"] {
  padding: 3px;
}

/*------------------------------------*/
@media all and (max-width: 768px) {
  input[type="submit"],
  input[type="reset"] {
    min-width: inherit;
  }
}
/* ------------------------------------------------------------------------- */
/* アニメーション
/* ------------------------------------------------------------------------- */
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
.animate {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.animate.fadeInUp {
  -moz-animation: fadeInUp 1s ease 0.1s both;
  -webkit-animation: fadeInUp 1s ease 0.1s both;
  animation: fadeInUp 1s ease 0.1s both;
}

/* ========================================================================= */
/* [LAYOUT]
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/* base
/* ------------------------------------------------------------------------- */
body {
  text-align: center;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
  min-width: 320px;
  color: #000000;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* ------------------------------------------------------------------------- */
/* main
/* ------------------------------------------------------------------------- */
main {
  clear: both;
  display: block;
  margin: 0 auto 5em;
  padding-top: calc(95px * 2);
  text-align: left;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

body.index main {
  margin-bottom: 0;
}

main section {
  width: 100%;
  padding: 3em 0;
  overflow: hidden;
}

main section .inner,
main section .inner_text {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  overflow: hidden;
}

main section .inner_text {
  max-width: 970px;
}

/*------------------------------------*/
@media all and (max-width: 1100px) {
  main {
    padding-top: 70px;
  }
}
/* ------------------------------------------------------------------------- */
/* header
/* ------------------------------------------------------------------------- */
#header {
  width: 100%;
  text-align: left;
  position: fixed;
  z-index: 2;
  background-color: #ffffff;
  top: 0;
}

#header #header_logo {
  display: block;
  width: 100%;
  height: 95px;
}

#header_logo .logo {
  display: block;
  width: 380px;
  height: 95px;
  float: left;
}

#header_logo .logo a {
  display: block;
  float: left;
  width: 100%;
  padding: 20px 10px;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #0099CC;
  white-space: nowrap;
}

#header_logo .logo a span {
  font-size: 1.5rem;
  color: #255389;
  display: block;
}

#header_logo .logo_corp {
  display: block;
  width: 200px;
  height: 95px;
  float: right;
}

#header_logo .logo_corp a {
  display: block;
  width: 180px;
  height: 95px;
  padding: 10px;
  background-image: url(image/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  overflow: hidden;
  text-indent: -9999px;
}

#header .logo_corp a:hover {
  opacity: 0.7;
}

#global_menu {
  display: block;
  width: 100%;
  height: 95px;
  margin: auto;
  padding: 0;
  z-index: 9999;
}

#header.fixed {
  position: fixed;
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
  background: white;
  z-index: 9999;
  transition: 1.0;
}

/*------------------------------------*/
@media all and (min-width: 1101px) {
  #header.fixed #header_logo {
    display: none;
    transition: 0.4s;
  }
}
/*------------------------------------*/
@media all and (max-width: 1100px) {
  #header {
    height: 70px;
  }
  #header #header_logo {
    width: calc(100% - 140px);
    height: 70px;
  }
  #header #header_logo .logo {
    width: 100%;
    height: 70px;
  }
  #header #header_logo .logo a {
    font-size: 1.8rem;
  }
  #header #header_logo .logo a span {
    font-size: 1.2rem;
  }
  #header #header_logo .logo_corp {
    display: none;
  }
  #header.fixed {
    height: 70px;
  }
}
@media all and (max-width: 360px) {
  #header #header_logo .logo a {
    font-size: 1.4rem;
  }
  #header #header_logo .logo a span {
    font-size: 0.9rem;
  }
}
/* global_menu（共通定義）
/* ------------------------------------------------------------------------- */
.ul_menu {
  width: 100%;
  margin: 0px auto 0;
}

.ul_menu > li {
  height: 95px;
  font-size: 1.8rem;
  vertical-align: middle;
  position: relative;
  white-space: nowrap;
}

.ul_menu > li.contact {
  background-color: #0099CC;
}

.ul_menu > li span {
  display: block;
  color: #255389;
  font-family: "Abel", "sans-serif";
  font-weight: normal;
  font-size: 1.2rem;
}

.ul_menu > li a {
  display: block;
  vertical-align: middle;
  color: #000000;
  font-weight: bold;
  position: relative;
}

.ul_menu > li.contact a {
  color: #ffffff;
}

/*------------------------------------*/
@media all and (min-width: 1101px) {
  .ul_menu {
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }

  .ul_menu > li {
    width: auto;
    padding: 0 10px;
    margin: 0 0 0 0;
  }

  .ul_menu > li a {
    display: table-cell;
    height: 95px;
    margin: 0 0 0 auto;
    padding: 0 20px 20px;
  }

  .ul_menu > li.contact a {
    padding: 0 20px 0;
  }

  /* hover */
  .ul_menu > li a:hover,
  .ul_menu > li a:hover span {
    color: #0B306B !important;
  }
}
/* global_menu（ヘッダ）
/* ------------------------------------------------------------------------- */
/*------------------------------------*/
@media all and (min-width: 1101px) {
  #global_menu {
    display: block;
  }

  #global_menu .ul_menu {
    /*		width: calc(100% - 400px);*/
    float: right;
  }

  .btn_hamburger {
    display: none;
  }
}
/*------------------------------------*/
@media all and (max-width: 1100px) {
  .drawer_bg {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 800;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .drawer_bg.active {
    display: block;
  }

  .btn_hamburger {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 140px;
    z-index: 1001;
  }

  #bgr_btn {
    float: right;
    position: relative;
    width: 70px;
    height: 70px;
    cursor: pointer;
    background-color: #0B306B;
    z-index: 1001;
  }

  #bgr_btn span {
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    width: 25px;
    height: 2px;
    margin: auto;
    background-color: #fff;
    border-radius: 0px;
    transition: all 0.4s;
  }

  #bgr_btn span:nth-of-type(1) {
    top: 20px;
  }

  #bgr_btn span:nth-of-type(2) {
    top: 30px;
  }

  #bgr_btn span:nth-of-type(3) {
    top: 40px;
  }

  #bgr_btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  #bgr_btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  #bgr_btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }

  #btn_contact {
    position: absolute;
    display: block;
    top: 0;
    right: 70px;
    margin: 0px;
    width: 70px;
    height: 70px;
    text-indent: -9999px;
    background-color: #0099CC;
    background-image: url(image/icon_contact.png);
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    cursor: pointer;
    z-index: 999;
  }

  #header.active #btn_contact {
    display: none;
  }

  #global_menu {
    display: none;
    position: fixed;
    top: 70px;
    top: 0;
    right: 0;
    width: 320px;
    padding-bottom: 50px;
    background-color: #0B306B;
    height: 100%;
    overflow-y: scroll;
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
  }

  /*
  	.active #global_menu{
  		position: fixed;
  	}
  */
  #global_menu > ul {
    padding-top: 70px;
  }

  #global_menu > ul > li {
    display: block;
    text-align: left;
    height: 70px;
  }

  #global_menu > ul > li:after {
    display: none;
  }

  #global_menu > ul > li a {
    display: block;
    padding: 0 30px;
    position: relative;
    color: #ffffff;
    height: auto;
  }

  #global_menu > ul > li span {
    color: #9FADCC;
    font-size: 1.4rem;
  }

  #global_menu > ul > li.contact {
    margin: 20px 20px 10px;
    line-height: 70px;
    text-align: center;
  }

  /* バーガーメニュー内TEL */
  #global_menu > ul > li.tel {
    margin: 20px 20px 10px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #ffffff;
    color: #ffffff;
    display: block !important;
  }

  #global_menu > ul > li.tel a,
  #global_menu > ul > li.tel p {
    font-size: 2.4rem !important;
    padding: 0 10px 0 50px;
    background-image: url(image/icon_tel.png);
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: 30px center;
  }
}
.menu_opened {
  position: fixed;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------------------- */
/* footer
/* ------------------------------------------------------------------------- */
footer {
  clear: both;
  overflow: hidden;
  width: 100%;
  padding: 0;
  background-color: #333333;
  text-align: center;
  color: #ffffff;
  font-size: 1.4rem;
}

footer a {
  color: #ffffff;
}

footer .inner {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 0 10px;
  overflow: hidden;
}

/* footer_contact（お問い合わせ）
/* ------------------------------------------------------------------------- */
footer #footer_contact {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url("image/bg_footer_contact.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

footer #footer_contact h2 {
  color: #ffffff;
}

footer #footer_contact h2:after {
  display: none;
}

footer #footer_contact img {
  width: 420px;
  margin-bottom: 5px;
}

/*------------------------------------*/
@media all and (max-width: 1100px) {
  footer #footer_contact {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  footer #footer_contact h2 {
    padding-top: 20px;
  }

  footer #footer_contact ul.flex_2col li {
    margin-left: 0;
    margin-right: 0;
    width: 90%;
  }
}
/* footer_about（ロゴ・住所・メニュー）
/* ------------------------------------------------------------------------- */
footer #footer_about {
  padding-top: 50px;
  padding-bottom: 20px;
  text-align: left;
}

footer #footer_about .footer_menu {
  float: right;
  font-size: 1.25rem;
  width: 100%;
  max-width: 260px;
  display: block;
}

footer #footer_about .footer_menu li {
  display: table-cell;
  position: relative;
  padding: 10px 1em;
  white-space: nowrap;
}

footer #footer_about .footer_menu li::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 0;
  display: block;
  width: 1em;
  height: 1em;
  -webkit-transform: skewX(150deg);
  -moz-transform: skewX(150deg);
  transform: skewX(150deg);
  border-right: 1px solid #ffffff;
}

footer #footer_about .footer_menu li:last-child:after {
  display: none;
}

footer #footer_about .profile .logo {
  width: 205px;
  height: 34px;
  margin: 0 auto 10px 0;
  background-image: url("image/logo.png");
  background-repeat: no-repeat;
  background-size: 204px auto;
  background-position: center center;
  overflow: hidden;
}

footer #footer_about .profile span {
  word-break: keep-all;
}

footer #footer_about .profile .corp_name {
  font-size: 1.8rem;
  font-weight: bold;
  padding-right: 1em;
}

footer #footer_about .profile p {
  font-size: 1.2rem;
  padding-top: 1em;
}

footer #footer_about .ul_address {
  clear: both;
  padding-top: 50px;
  width: 100%;
	display: flex;
}

footer #footer_about .ul_address li {
  width: 400px;
}

footer #footer_about .ul_address li .office {
  word-break: keep-all;
  padding-bottom: 0.5em;
  font-size: 1.8rem;
  font-weight: bold;
}

footer #footer_about .ul_address li span {
  word-break: keep-all;
}

footer #footer_about .ul_address li span:after {
  padding-right: 0.5em;
}

footer #footer_about p.address span {
  display: inline-block;
  padding-right: 1em;
}

footer #footer_about .tel,
footer #footer_about .fax {
  display: inline-block;
  padding: 0 5px;
}

/*------------------------------------*/
@media all and (min-width: 1101px) {
  footer #footer_about .profile {
    width: 50%;
    float: left;
  }
}
/*------------------------------------*/
@media all and (max-width: 1100px) {
  footer #footer_about {
    padding-top: 20px;
  }

  footer #footer_about .footer_menu {
    float: none;
    margin: 0 auto 2em;
  }

  footer #footer_about .profile .logo {
    margin: 0 auto 10px auto;
  }

  footer #footer_about .profile span {
    display: block;
    width: 100%;
    text-align: center;
  }

  footer #footer_about .profile {
    width: 100%;
    clear: both;
  }

	footer #footer_about .ul_address {
		display: block;
	}
	
  footer #footer_about .ul_address li {
    width: auto;
    margin-bottom: 2em;
  }
}
/* footer address（コピーライト）
/* ------------------------------------------------------------------------- */
footer address {
  min-height: 40px;
  font-style: normal;
  vertical-align: middle;
  line-height: 3;
  color: #0099CC;
  text-align: right;
}

/*------------------------------------*/
@media all and (max-width: 1100px) {
  footer address {
    text-align: center;
  }
}
/* ------------------------------------------------------------------------- */
/* fixed contents
/* ------------------------------------------------------------------------- */
/* サイドバナー
/* ------------------------------------------------------------------------- */
#side_bn {
  position: fixed;
  display: block;
  z-index: 999;
  overflow: hidden;
}

#side_bn a,
#side_bn p {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: right center;
  text-indent: 100%;
}

#side_bn a {
  cursor: pointer;
}

#side_bn a:hover {
  transition: 0.4s;
  opacity: 0.7;
}

#side_bn a.btn_pagetop {
  background-image: url(image/btn_side_pagetop.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100%;
}

/*------------------------------------*/
@media all and (min-width: 1101px) {
  #side_bn {
    right: 0;
    bottom: 100px;
    width: 70px;
    height: 70px;
  }

  #side_bn a.btn_pagetop {
    width: 70px;
    height: 70px;
  }
}
/*------------------------------------*/
@media all and (max-width: 1100px) {
  #side_bn {
    right: 0;
    bottom: 100px;
    width: 50px;
    height: 50px;
  }

  #side_bn a.btn_pagetop {
    width: 50px;
    height: 50px;
  }
}
/* ========================================================================= */
/* [MODULE]
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/* 共通
/* ------------------------------------------------------------------------- */
/* タイトル
/* --------------------------------------------------------------- */
h2 {
  margin-bottom: 2em;
  position: relative;
  padding: 2em 0 0;
  color: #000000;
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

h2 span {
  display: block;
  color: #0099CC;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 0.8em;
}

h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: #0B306B;
  margin: 20px auto 0;
}

h3 {
  padding-top: 1.5em;
  margin-bottom: 1em;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  color: #0B306B;
  line-height: 1.5;
}

h4 {
  clear: both;
  display: block;
  padding: 1em 0 0.5em 0;
  margin: 30px 0 10px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
  color: #0B306B;
  line-height: 1.5;
}

/*
main h3:first-child,
h3.first,
h4.first{
	margin-top: 0;
	padding-top: 1em;
}
*/
h5 {
  clear: both;
  padding: 10px 5px 5px 0;
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3752A2;
  line-height: 1.5;
}

/*------------------------------------*/
@media all and (max-width: 768px) {
  h2 {
    margin-bottom: 30px;
    font-size: 3.0rem;
  }
}
/**/
/* リンク
/* --------------------------------------------------------------- */
.basic_btn {
  display: block;
  width: 300px;
  position: relative;
  margin: 10px auto;
  padding: 8px 35px 8px 15px;
  border: 1px solid #0B306B;
  color: #0B306B;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.4s;
}

.basic_btn:after {
  content: "";
  display: block;
  width: 20px;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  background-image: url(image/icon_arrow.png);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: right center;
}

.basic_btn:hover {
  background-color: #0B306B;
  color: #ffffff;
}

.basic_btn:hover:after {
  background-image: url(image/icon_arrow_wh.png);
}

.basic_btn.wh {
  border-color: #ffffff;
  color: #ffffff;
}

.basic_btn.wh:after {
  background-image: url(image/icon_arrow_wh.png);
}

.basic_btn.wh:hover {
  background-color: #ffffff;
  color: #0B306B;
}

.basic_btn.wh:hover:after {
  background-image: url(image/icon_arrow.png);
}

/*------------------------------------*/
@media all and (max-width: 768px) {
  .basic_btn {
    max-width: 260px;
    width: calc(100% - 20px);
    margin: auto;
    letter-spacing: normal;
  }
}
/* アンカーリンクのずれ調整
/* --------------------------------------------------------------- */
/*
.anchor{
	display: block;
	margin-top: $height-header-pc-m;
	padding-top: $height-header-pc;
	width: 100%;
}

@include mq(SP) {
	.anchor{
	margin-top: $height-header-sp-m;
	padding-top: $height-header-sp;
	}
}
*/
/*テーブル
/* --------------------------------------------------------------- */
article table,
.basic_table {
  width: 95%;
  margin: 20px auto;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
  font-family: inherit;
}

article table caption,
.basic_table caption {
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "Segoe UI", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
}

article table th,
.basic_table th,
article table td,
.basic_table td {
  text-align: left;
  vertical-align: middle;
  padding: 10px;
  border: 1px solid #ccc;
}

article table th,
.basic_table th {
  background-color: #ededed;
  text-align: center;
}

article table td,
.basic_table td {
  font-weight: normal;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  vertical-align: top;
}

.basic_th {
  width: 20%;
}

.table_fixed {
  table-layout: fixed;
}

/* simple_table */
.simple_table {
  margin: 0px auto;
  border-top: 1px solid #ccc;
}

.simple_table th,
.simple_table td {
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
  text-align: left;
  color: #333;
}

.simple_table th {
  width: 30%;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
}

/*リスト
/* --------------------------------------------------------------- */
header ul,
header ol,
footer ul,
footer ol {
  list-style: none;
}

article ul,
.basic_ul {
  margin: 0 0 10px 0;
}

table .basic_ul {
  margin-left: 0;
}

article ol,
.basic_ol {
  margin: 10px 0 10px 0.5em;
}

article ul li,
.basic_ul li {
  list-style: none;
  margin-left: 2em;
  margin-bottom: 0.3em;
  text-indent: -1.2em;
  overflow: visible !important;
}

article ol li,
.basic_ol li {
  list-style: decimal;
  margin-left: 1.5em;
  margin-bottom: 0.3em;
}

article ul li:before,
.basic_ul li:before {
  content: "・";
  color: #000000;
  margin-right: 0.2em;
}

.basic_ul ul,
.basic_ul ol,
.basic_ol ol,
.basic_ol ul {
  margin-left: 0.5em;
}

.basic_ul ul li:before,
.basic_ol ul li:before {
  content: "－";
}

p.kome {
  padding-left: 2em;
  text-indent: -1em;
  margin-bottom: 1em;
  font-size: 90%;
}

ul.kome {
  list-style: none;
}

ul.kome li {
  margin-left: 0 !important;
  padding-left: 1em;
  text-indent: -1em;
}

.basic_dl {
  clear: both;
  display: block;
  width: 100%;
}

.basic_dl dt {
  display: inline-block;
  background-color: #0B306B;
  padding: 5px 10px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5em;
}

.basic_dl dd {
  width: 100%;
  margin-bottom: 1em;
}

/*------------------------------------*/
@media all and (max-width: 768px) {
  table {
    width: 100%;
  }
}
/* 強調
/* --------------------------------------------------------------- */
.box_focus {
  clear: both;
  display: block;
  margin: 50px auto;
  padding: 30px;
  border: 1px solid #0B306B;
  border-radius: 5px;
  color: #000000;
}

.box_focus .basic_btn {
  margin: 1em auto 0 0;
}

.box_info {
  clear: both;
  display: block;
  margin: 50px auto;
  padding: 30px 40px 30px 150px;
  border: 1px solid #0B306B;
  border-radius: 5px;
  color: #0B306B;
  font-weight: bold;
  font-size: 1.8rem;
  background-image: url(image/icon_focus.png);
  background-position: 40px center;
  background-repeat: no-repeat;
  background-size: 62px;
}

/*------------------------------------*/
@media all and (max-width: 768px) {
  .box_focus {
    padding: 20px;
  }

  .box_info {
    padding: 60px 20px 20px;
    background-position: center top 10px;
    background-size: 40px;
  }
}
/*テキスト
/* --------------------------------------------------------------- */
.txt_small {
  font-size: 1.2rem;
}

.txt_bikou {
  font-size: 1.2rem;
  color: #666;
  padding-left: 1em;
  text-indent: -1em;
}

.align_center {
  text-align: center !important;
}

.align_center_w {
  text-align: center !important;
}

.align_right {
  text-align: right !important;
}

.align_left {
  text-align: left !important;
}

.cur_pointer {
  cursor: pointer !important;
}

.title {
  font-weight: bold;
  font-size: 2.0rem;
}

/*------------------------------------*/
@media all and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
/*------------------------------------*/
@media all and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }

  .align_center_w {
    text-align: left !important;
  }
}
/* 配置
/* --------------------------------------------------------------- */
.center {
  display: block;
  margin: 10px auto;
  clear: both;
}

.right img,
.left img {
  display: block;
}

/*------------------------------------*/
@media all and (min-width: 769px) {
  .left {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .right {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
/*------------------------------------*/
@media all and (max-width: 768px) {
  .right,
  .left,
  .right img,
  .left img {
    display: block;
    margin: 10px auto;
  }
}
/* boxレイアウト
/* --------------------------------------------------------------- */
/* フレックス構造（リスト）
--------------------------------------------------------- */
.flex_2col,
.flex_3col,
.flex_4col {
  display: -webkit-box;
  /*Android4.3*/
  display: -moz-box;
  /*Firefox21*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-wrap: wrap;
  /*IE10*/
  -webkit-flex-wrap: wrap;
  /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
  overflow: hidden;
  margin: auto;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex_2col > li,
.flex_3col > li,
.flex_4col > li {
  list-style: none;
  text-align: center;
}

/*------------------------------------*/
@media all and (min-width: 481px) {
  .flex_2col > li {
    width: calc((100% - 41px) / 2);
    margin: 10px;
  }

  .flex_3col > li {
    width: calc((100% - 61px) / 3);
    margin: 10px;
  }

  .flex_4col > li {
    width: calc((100% - 81px) / 4);
    margin: 10px;
  }
}
/*------------------------------------*/
@media all and (max-width: 480px) {
  .flex_2col > li {
    width: calc((100% - 41px) / 2);
    margin: 10px;
  }

  .flex_3col > li {
    width: calc((100% - 41px) / 2);
    margin: 10px;
  }

  .flex_4col > li {
    width: calc((100% - 41px) / 2);
    margin: 10px;
  }

  .flex_wrap > li {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    display: block;
  }

  .flex_2col > li:nth-child(2n-1) {
    margin-left: 0;
  }

  .flex_2col > li:nth-child(2n) {
    margin-right: 0;
  }

  .flex_3col > li:nth-child(2n-1) {
    margin-left: 0;
  }

  .flex_3col > li:nth-child(2n) {
    margin-right: 0;
  }

  .flex_4col > li:nth-child(2n-1) {
    margin-left: 0;
  }

  .flex_4col > li:nth-child(2n) {
    margin-right: 0;
  }
}
/* ------------------------------------------------------------------------- */
/* breadline
/* ------------------------------------------------------------------------- */
#breadline {
  width: 100%;
  max-width: 1100px;
  background-color: #ffffff;
  padding: 5px 10px;
  margin: 0 auto 0;
  z-index: 2;
  position: relative;
}

#breadline ul {
  margin: auto;
  padding: 10px 10px;
  text-align: left;
  font-size: 1.4rem;
  color: #000000;
}

#breadline ul li {
  display: inline;
}

#breadline ul li:after {
  content: "＞";
  margin: 0 10px;
}

#breadline ul li:last-child:after {
  content: none;
}

#breadline ul li a {
  color: #0B306B;
}

/* ------------------------------------------------------------------------- */
/* メイン画像
/* ------------------------------------------------------------------------- */
#main_img {
  position: relative;
  display: block;
  width: 100%;
  height: 650px;
  z-index: 0;
  padding: 0;
}

#main_img .block_bg {
  width: 100%;
  max-width: calc(50% + 200px);
  height: 550px;
  margin: 0 0 0 auto;
  background-image: url(image/img_main01.jpg);
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center;
}

#main_img .block_text {
  position: absolute;
  width: 100%;
  max-width: 750px;
  height: 490px;
  top: 100px;
  left: 0;
  background-color: #0B306B;
  background-image: url(image/txt_main.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right 30% center;
  text-indent: -9999px;
}

/*------------------------------------*/
@media all and (max-width: 1100px) {
  #main_img {
    margin-top: -20px;
    padding-top: 60px;
    height: 50vw;
    min-height: 300px;
  }

  #main_img .block_text {
    width: 40%;
    height: 40vw;
    min-width: 230px;
    min-height: 150px;
    top: 30px;
    left: 0;
    background-size: 80%;
    background-position: center center;
    padding: 20px;
  }

  #main_img .block_bg {
    width: 100%;
    max-width: none;
    height: 50vw;
    min-height: 240px;
    background-position: left center;
  }
}
/* 2階層目
/* ------------------------------------------------------------------------- */
#main_img_title {
  width: 100%;
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.contact #main_img_title {
  background-image: url("image/img_main_contact.jpg");
}

/* ========================================================================= */
/* [PAGE]
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/* トップページ
/* ------------------------------------------------------------------------- */
/* 01 テレワーク導入支援サービス（TOP）
/* --------------------------------------------------------------- */
.ul_problem li {
  position: relative;
  background-color: #255389;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.80rem;
  font-weight: bold;
}

.ul_problem li:nth-child(2),
.ul_problem li:nth-child(3) {
  background-color: #0B306B;
}

.ul_problem li:before {
  content: "";
  width: 104px;
  height: 104px;
  display: block;
  position: absolute;
  top: -30px;
  left: -30px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(image/icon_nayami01.png);
  background-size: contain;
}

.ul_problem li:nth-child(2):before {
  background-image: url(image/icon_nayami02.png);
}

.ul_problem li:nth-child(3):before {
  background-image: url(image/icon_nayami03.png);
}

.ul_problem li:nth-child(4):before {
  background-image: url(image/icon_nayami04.png);
}

.arrow_answer {
  display: block;
  width: 306px;
  height: 50px;
  margin: 50px auto 0;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(image/bg_arrow_lb.png);
  background-size: contain;
}

/*------------------------------------*/
@media all and (min-width: 1101px) {
  .ul_problem li {
    width: calc((100% - 120px) / 2);
    margin-top: 30px;
    margin-right: 20px;
    margin-left: 40px;
    padding: 30px 15px 30px 45px;
  }
}
/*------------------------------------*/
@media all and (max-width: 1100px) {
  .ul_problem li {
    margin-top: 25px;
    padding: 40px 10px 20px;
    font-size: 1.6rem;
  }

  .ul_problem li:before {
    content: "";
    width: 52px;
    height: 52px;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .arrow_answer {
    width: 50%;
    height: 10vw;
    margin: 1em auto 0;
  }
}
@media all and (max-width: 640px) {
  .ul_problem li {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* お悩みトータル解決
/* ------------------------------------------- */
#support {
  margin-bottom: 5em;
}

.ul_answer {
  margin-bottom: 3em;
  padding: 0 2em;
}

.ul_answer li {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px 30px;
  color: #ffffff;
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 2;
  background-color: #0099CC;
  border-radius: 5px;
  overflow: hidden;
}

.ul_answer li p {
  display: table-cell;
  padding-left: 1em;
}

.ul_answer li span {
  display: table-cell;
  margin-right: 30px;
  padding-right: 30px;
  font-size: 2.0rem;
  font-weight: normal;
  font-family: "Abel", "sans-serif";
  border-right: 1px solid #ffffff;
  vertical-align: middle;
}

/*------------------------------------*/
@media all and (max-width: 1100px) {
  .ul_answer {
    padding: 0;
  }

  .ul_answer li {
    padding: 15px 20px;
    font-size: 2.0rem;
    line-height: 1.5;
  }

  .ul_answer li span {
    margin-right: 20px;
    padding-right: 20px;
  }
}
/* 提供できるサービス例
/* ------------------------------------------- */
#solution {
  background-color: #EBF0F2;
  margin-bottom: 100px;
}

.ul_service > li {
  padding: 0 60px;
  border-right: 1px solid #7E9ED6;
  width: calc((100% - 1px) / 3);
  margin: 0;
}

.ul_service > li:last-child {
  border: none;
}

.ul_service > li .icon {
  display: block;
  margin: 0 auto;
  width: 70px;
  height: 70px;
}

.ul_service > li .icon img {
  width: 100%;
}

.ul_service > li .title {
  background-color: #0B306B;
  width: 90%;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  margin: 20px auto;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.9rem;
}

.ul_service ul {
  color: #0B306B;
  font-weight: bold;
  text-align: left;
  font-size: 1.7rem;
  margin: 0 1.5em;
  list-style: none;
}

.ul_service ul > li {
  line-height: 2.5;
  background-image: url(image/icon_check.png);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 30px;
  white-space: nowrap;
}

/*------------------------------------*/
@media all and (max-width: 1100px) {
  /*
  	#solution h3{
  		padding-top: 1.5em;
  		margin-bottom: 1em;
  	}
  	*/
  .ul_service > li {
    width: 100%;
    max-width: 400px;
    border-right: none;
    border-bottom: 1px solid #7E9ED6;
    padding: 30px 30px;
  }
}
/* 02 お困りごと別テレワーク（TOP）
/* --------------------------------------------------------------- */
#scene {
  margin-bottom: 100px;
}

.block_scene {
  display: flex;
  width: calc((1100px / 2) + 50%);
  margin: 0 0 30px auto;
  background-color: #0B306B;
  color: #ffffff;
}

.block_scene > div {
  display: block;
}

.block_scene > div.block_text {
  width: 60%;
  display: block;
  padding: 20px 20px 20px;
}

.block_scene > div.block_bg {
  width: 40%;
  display: block;
  background-image: url(image/img_scene01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.block_scene.scene02 > div.block_bg {
  background-image: url(image/img_scene02.jpg);
}

.block_scene.scene03 > div.block_bg {
  background-image: url(image/img_scene03.jpg);
}

.block_scene .title {
  overflow: hidden;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.5;
}

.block_scene .title span {
  display: table-cell;
  text-indent: -9999px;
  width: 68px;
  height: 68px;
  background-image: url(image/icon_scene01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.block_scene .title p {
  display: table-cell;
  padding-left: 0.5em;
  height: 70px;
  vertical-align: middle;
}

.block_scene.scene02 .title span {
  background-image: url(image/icon_scene02.png);
}

.block_scene.scene03 .title span {
  background-image: url(image/icon_scene03.png);
}

.dl_scene dt {
  padding: 5px 10px;
  font-size: 1.8rem;
  background-color: #ffffff;
  color: #0B306B;
}

/*------------------------------------*/
@media all and (min-width: 769px) {
  .block_scene {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .dl_scene {
    padding-left: 2em;
  }

  .block_scene .basic_btn {
    margin-left: 30px;
  }
}
/*------------------------------------*/
@media all and (max-width: 768px) {
  .block_scene {
    display: block;
    width: 100%;
  }

  .block_scene > div.block_bg {
    height: 40vw;
  }

  .block_scene > div.block_text,
  .block_scene > div.block_bg {
    width: 100%;
  }

  .block_scene .title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1em;
    line-height: 1.5;
  }

  .block_scene .title span {
    display: block;
    float: left;
  }

  .block_scene .basic_btn {
    margin-left: 0;
  }
}
/* 03 導入事例（TOP）
/* --------------------------------------------------------------- */
#case {
  background-color: #ebf0f2;
  padding-bottom: 5em;
  margin-bottom: 3em;
}

/*
#case h2{
	padding-top: 0;
}
*/
.box_case {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 50px;
  background-color: #ffffff;
  box-shadow: 0px 0px 1px #cccccc;
}

.box_case h3 {
  text-align: left;
  padding: 0 !important;
  margin: 0 0 1em;
}

.ul_tag_service {
  margin-bottom: 2em;
}

.ul_tag_service li {
  display: inline-block;
  margin-right: 5px;
  background-color: #e2e2e2;
  color: #0B306B;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 10px;
}

.dl_case {
  font-size: 1.4rem;
}

.dl_case dt {
  padding: 0 10px;
}

.dl_case dd {
  padding-bottom: 0.5em;
}

.dl_case .voice {
  background-color: #e00a42;
}

.network {
  background-image: url(image/img_network01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  max-height: 714px;
  height: 68vw;
}

@media all and (max-width: 660px) {
  /*
  	#case{
  		padding-top: 2em;
  	}
  	*/
  .box_case {
    padding: 30px 20px;
  }

  .network {
    background-image: url(image/img_network01_sp.png);
    background-size: 100% auto;
    max-height: none;
    height: 250vw;
  }
}
/* 04 Webプロモーション（TOP）
/* --------------------------------------------------------------- */
#promotion {
  padding-bottom: 100px;
}

.ul_promotion {
  color: #ffffff;
  margin: 3em 0;
}

.ul_promotion > li {
  background-color: #0B306B;
  margin: 0;
}

.ul_promotion > li:nth-child(2) {
  background-color: #255389;
}

.ul_promotion li .icon {
  display: block;
  width: 68px;
  height: 63px;
  margin: 0 auto 1em;
  background-image: url(image/icon_web01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ul_promotion li:nth-child(2) .icon {
  background-image: url(image/icon_web02.png);
}

.ul_promotion li:nth-child(3) .icon {
  background-image: url(image/icon_web03.png);
}

.ul_promotion li .title {
  font-size: 2.6rem;
  margin-bottom: 1.5em;
}

.ul_promotion li .desc {
  text-align: left;
  font-size: 1.4rem;
  padding-bottom: 1em;
}

.ul_promotion li img {
  width: 100%;
  max-width: 425px;
}

.ul_promotion .basic_btn {
  margin-top: 50px;
  background-color: #ffffff;
  color: #0B306B;
  font-size: 1.9rem;
}

.ul_promotion .basic_btn:hover {
  background-color: #0B306B;
  border-color: #ffffff;
  color: #ffffff;
}

/*------------------------------------*/
@media all and (min-width: 1101px) {
  .ul_promotion > li {
    width: calc((100% - 1px) / 3);
    padding: 50px;
    border-right: 1px solid #ffffff;
  }

  .ul_promotion > li:nth-last-child {
    border: none;
  }

  .ul_promotion li .desc {
    min-height: 15em;
  }
}
/*------------------------------------*/
@media all and (max-width: 1100px) {
  .ul_promotion > li {
    width: 100%;
    padding: 30px 20px;
    border-bottom: 1px solid #ffffff;
  }

  .ul_promotion li img {
    margin-top: 2em;
  }

  .ul_promotion .basic_btn {
    margin-top: 2em;
  }
}
/* 何でもご相談ください
/* ------------------------------------------- */
#contact_suport .block_bg {
  background-image: url(image/bg_support01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin-left: 0;
}

#contact_suport .block_text {
  background-color: #0099CC;
  color: #ffffff;
  width: 100%;
  max-width: 970px;
}

#contact_suport .title {
  font-size: 2.8rem;
}

.ul_support_menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0;
}

.ul_support_menu li {
  width: 115px;
  margin: 5px;
}

/*------------------------------------*/
@media all and (min-width: 1101px) {
  #contact_suport {
    clear: both;
    width: 100%;
    height: 700px;
    display: block;
    position: relative;
    margin-bottom: 100px;
  }

  #contact_suport .block_bg {
    position: absolute;
    height: 550px;
  }

  #contact_suport .block_text {
    position: absolute;
    right: 50px;
    bottom: 0;
    padding: 50px 80px;
  }
}
/*------------------------------------*/
@media all and (max-width: 1100px) {
  #contact_suport .block_bg {
    height: 60vw;
  }

  #contact_suport .block_text {
    padding: 20px 20px;
    margin: -100px 10px 50px;
    width: calc(100% - 20px);
  }

  #contact_suport .title {
    font-size: 2.4rem;
  }

  .ul_support_menu li {
    width: 90px;
  }
}
/* お問い合わせ（TOP）
/* --------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* お問い合わせ
/* ------------------------------------------------------------------------- */
#contact .inner {
  max-width: 900px;
}

.contact_form {
  margin-top: 3em;
}

.contact_form ul.step {
  width: 100%;
  text-align: center;
  margin: 20px auto;
}

.contact_form ul.step li {
  background-color: #ddd;
  color: #fff;
  font-size: 2.0rem;
}

.contact_form ul.step li span {
  display: block;
  font-size: 2.4rem;
  font-family: "Abel", "sans-serif";
}

.contact_form ul.step li.current {
  background-color: #0099CC;
}

.contact_form table {
  width: 100%;
  margin: 2em auto;
}

.contact_form table th {
  text-align: center;
}

.contact_form table th span {
  font-weight: normal;
  display: block;
}

.contact_form table.basic_table td {
  vertical-align: middle;
}

.contact_form table label input {
  vertical-align: middle;
  margin-right: 5px;
}

.contact_form table input[type="text"],
.contact_form table textarea {
  width: calc(100% - 6px);
}

.contact_form table input[type="text"].short {
  width: 30%;
  max-width: 100px;
}

.contact_form table input[type="email"] {
  width: 320px;
}

.contact_form table select {
  min-width: 200px;
}

.contact_form .btn_area {
  text-align: center;
}

.contact_form .btn_area form {
  display: inline-block;
  margin: 20px 10px;
}

.contact_form .btn_area input {
  display: block;
  padding: 10px 50px;
  margin: 20px auto;
  cursor: pointer;
}

.contact_form .hissu:after {
  content: "必須";
  display: inline-block;
  padding: 0 5px;
  margin-left: 5px;
  vertical-align: middle;
  font-size: 70%;
  font-weight: bold;
  background-color: #bc4358;
  color: #fff;
  line-height: 1.5;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .entry_form .hissu:after {
    padding: 3px 5px 0px 5px;
  }

  /* IE11 */
}
.contact_form .err input,
.contact_form .err select,
.contact_form .err textarea {
  box-shadow: 0 0 1px 2px rgba(188, 67, 88, 0.7);
  border: 1px solid #bc4358;
}

.contact_form .err_text {
  color: #bc4358;
  font-size: 85%;
}

/*
.contact_form table label:after{
	content: "\A" ;
	white-space: pre ;
}
*/
/*------------------------------------*/
@media all and (min-width: 769px) {
  .contact_form ul.step li {
    display: inline-block;
    position: relative;
    width: 30%;
    padding: 20px 0;
    margin: 1%;
    font-weight: bold;
  }

  .contact_form ul.step li:after {
    content: "";
    margin-top: -4px;
    top: 50%;
    right: -5%;
    width: 15px;
    height: 15px;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.2em;
    display: block;
    position: absolute;
    border-top: 4px solid #0099CC;
    border-left: 4px solid #0099CC;
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .contact_form ul li:last-child:after {
    content: none;
  }

  .contact_form table th {
    width: 30%;
    min-width: 10em;
  }
}
/*------------------------------------*/
@media all and (max-width: 768px) {
  .contact_form ul.step li {
    display: block;
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 10px 0 10px 4em;
    margin: 0 auto 2px auto;
    font-weight: bold;
    font-size: 1.8rem;
  }

  .contact_form ul.step li span {
    display: inline-block;
    padding: 0 10px;
    margin-right: 1em;
    position: absolute;
    top: 12px;
    left: 10%;
    font-size: 1.8rem;
  }

  .contact_form ul.step li:last-child:after {
    content: none;
  }

  .contact_form table {
    border-bottom: 1px solid #ccc;
  }

  .contact_form table th,
  .contact_form table td {
    display: block;
    border-bottom: none;
  }

  .contact_form table td {
    min-height: calc(1.8em + 20px);
  }

  .contact_form table input[type="text"].email {
    width: 100%;
  }

  .contact_form table td span.txt_bikou {
    font-size: 1.4rem;
    display: block;
  }
}
/* ========================================================================= */
/* [ETC]
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/* IE11対策（游ゴシック書体の上ずれ解消）
/* ------------------------------------------------------------------------- */
@media screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .selector {
    property: value;
  }

  /* IE向けのCSS～START */
  .basic_btn {
    padding-top: 10px;
    padding-bottom: 6px;
  }

  .ul_answer li {
    padding-top: 22px;
    padding-bottom: 8px;
  }

  .ul_answer li span {
    padding-bottom: 10px;
  }

  .basic_dl dt,
  .dl_scene dt {
    padding-top: 8px;
    padding-bottom: 2px;
  }

  .ul_tag_service li {
    padding-top: 2px;
  }

  select, textarea, input[type='text'], input[type='num'], input[type='tel'], input[type='email'], input[type='password'] {
    padding-top: 8px;
    padding-bottom: 2px;
  }

  .check_label {
    padding-top: 8px;
    padding-bottom: 2px;
  }

  .contact_form .hissu:after {
    padding-top: 3px;
  }

  /* IE向けのCSS～END */
}
/* ------------------------------------------------------------------------- */
/* プリント用設定
/* ------------------------------------------------------------------------- */
@media only print {
  #header {
    position: static;
  }

  #header.fixed {
    position: static;
  }

  #side_bn {
    display: none;
  }
}
