@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

table, tbody, tfoot, thead, tr, th, td{
	margin: 0;
	padding: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: 'icomoon';
  src: url("font/icon/icomoon.eot?cd485o");
  src: url("font/icon/icomoon.eot?cd485o#iefix") format("embedded-opentype"), url("font/icon/icomoon.ttf?cd485o") format("truetype"), url("font/icon/icomoon.woff?cd485o") format("woff"), url("font/icon/icomoon.svg?cd485o#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-mail:before {
  content: "\e900";
}

.icon-squares:before {
  content: "\e901";
}

.icon-arrow_right:before {
  content: "\e907";
}

.icon-arrow_left:before {
  content: "\e90a";
}

.icon-arrow_top:before {
  content: "\e905";
}

.icon-comment:before {
  content: "\e903";
}

.icon-user:before {
  content: "\e904";
}

.icon-check:before {
  content: "\e902";
}

/*--------------------------
Tag Default
---------------------------*/
* {
  -webkit-appearance: none;
}

body {
  color: #333;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18pt;
  font-weight: 400;
  line-height: 2em;
	word-break: normal;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel–antialiased;
  -moz-osx-font-smoothing: auto;
}
@media only screen and (max-width: 640px) {
  body {
    font-size: 14pt;
  }
}

a {
  display: inline-block;
  color: #333;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media only screen and (max-width: 640px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
	word-break: normal;
}

/*--------------------------
Layout
---------------------------*/
* {
  box-sizing: border-box;
}

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

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 980px;
  min-height: 100vh;
}
@media only screen and (max-width: 640px) {
  body {
    min-width: auto;
  }
}

#contents {
  position: relative;
  background: #fff;
  z-index: 1;
  overflow-x: hidden;
}

.wrapper {
  width: 980px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .wrapper {
    width: 100%;
    margin: 0;
    padding: 0 15px;
  }
}

.container {
  position: relative;
  width: 980px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .container {
    width: 100%;
    margin: 0;
    padding: 0 15px;
  }
}

.column_wrapper {
  position: relative;
  width: 980px;
  padding: 60px 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .column_wrapper {
    display: block;
    width: 100%;
    padding: 30px 15px;
  }
}
.column_wrapper .col_main {
  width: 700px;
}
@media only screen and (max-width: 640px) {
  .column_wrapper .col_main {
    width: 100%;
    margin-bottom: 40px;
  }
}
.column_wrapper .col_side {
  width: 250px;
}
@media only screen and (max-width: 640px) {
  .column_wrapper .col_side {
    width: 100%;
  }
}

/*--------------------------
footer
---------------------------*/
#footer {
  padding: 80px 0 40px;
  background: url(../images/common/bg_pattern_01.jpg);
  color: #fff;
  text-align: center;
  margin-top: auto;
}
@media only screen and (max-width: 640px) {
  #footer {
    padding: 40px 0 20px;
  }
}
#footer .company_name {
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  #footer .company_name {
    margin-bottom: 30px;
    font-size: 15px;
  }
}
#footer .footer_nav {
  margin-bottom: 100px;
}
@media only screen and (max-width: 640px) {
  #footer .footer_nav {
    margin-bottom: 40px;
  }
}
#footer .footer_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 640px) {
  #footer .footer_nav ul {
    display: block;
  }
}
#footer .footer_nav ul li:not(:last-child) {
  margin-right: 60px;
}
@media only screen and (max-width: 640px) {
  #footer .footer_nav ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
#footer .footer_nav ul li a {
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 640px) {
  #footer .footer_nav ul li a {
    font-size: 13px;
  }
}
#footer .footer_nav ul li a::before {
  content: "-";
  display: inline-block;
  margin-right: 4px;
}
#footer .footer_nav ul li a:hover {
  text-decoration: underline;
}
#footer .copyright {
  font-size: 13px;
  font-weight: 300;
}
@media only screen and (max-width: 640px) {
  #footer .copyright {
    font-size: 12px;
  }
}

/*--------------------------
pagetop
---------------------------*/
#page_top {
  right: 20px;
  bottom: 20px;
  position: fixed;
  z-index: 999;
}
@media only screen and (max-width: 640px) {
  #page_top {
    right: 10px;
    bottom: 10px;
  }
}
#page_top a {
  display: block;
  width: 60px;
  height: 60px;
  background: #104d79;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 66px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 640px) {
  #page_top a {
    width: 46px;
    height: 46px;
    font-size: 20px;
    line-height: 46px;
  }
}
#page_top a:hover {
  background: #072235;
  line-height: 56px;
}
@media only screen and (max-width: 640px) {
  #page_top a:hover {
    line-height: 40px;
  }
}

/*--------------------------
form
---------------------------*/
input,
select,
textarea {
  color: #333;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

input[type=text], input[type=tel], input[type=email], input[type=password], input[type=submit], input[type=search] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=submit] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.input_default,
textarea {
  border: none;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 640px) {
  .input_default,
  textarea {
    border-radius: 2px;
  }
}

textarea {
  width: 100%;
  resize: vertical;
  line-height: 1.8;
}

.input_default:focus,
textarea:focus {
  outline: 0;
}

:placeholder-shown {
  color: #aaa;
}

::-webkit-input-placeholder {
  color: #aaa;
}

.input_default:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #aaa;
}

::-ms-expand {
  display: none;
}

/*--------------------------
utility
---------------------------*/
.visible-sp {
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .visible-sp {
    display: block !important;
  }
}

@media only screen and (max-width: 640px) {
  .hidden-sp {
    display: none !important;
  }
}
