@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* mobile style */
/* desktop style */
html, body {
  overflow: visible;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

body {
  background-color: #fff;
  color: #151726;
  font-family: 'Work Sans', "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body *::-moz-selection {
  color: #151726;
  background-color: rgba(21, 23, 38, 0.2);
}

body *::selection {
  color: #151726;
  background-color: rgba(21, 23, 38, 0.2);
}

body *::-moz-selection {
  color: #151726;
  background-color: rgba(21, 23, 38, 0.2);
}

@media screen and (max-width: 959px) {
  body {
    padding-top: 75px;
  }
}

a {
  color: #151726;
  text-decoration: none;
  display: block;
  -webkit-transition: opacity ease-in .1s;
  -o-transition: opacity ease-in .1s;
  transition: opacity ease-in .1s;
}

a:hover {
  opacity: .5;
}

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

/*  デバイス別の表示切替に利用 */
@media screen and (min-width: 960px) {
  .only-mobile {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .only-desktop {
    display: none;
  }
}

/*  本当のmobileサイズにだけ適用する。
　　headerの管理者メニューを消すために利用しています。
*/
@media screen and (max-width: 599px) {
  .only-smallMobile_none {
    display: none;
  }
}

/*
========================================
Form
========================================
＊下記を用意しています。
　.inputText（テキストボックス）
　.inputSelect（セレクトボックス）
　.inputTextarea（テキストエリア）

＊基本的には、下記のように指定してください。
  <div class="input_box">
    <p>自宅電話番号</p>
    <div class="input_inner">
      <div class="inputText">
        <input type="text" value="" placeholder="">
      </div>
    </div>
  </div>
  <!--input_box -->

＊必須項目の場合は、pタグ（タイトルにあたるもの）に.mod-requireをつけてください。
＊inputSelectの使い方
<div class="input_box">
  <p class="mod-require">国籍</p>
  <div class="input_inner mod-2column only-mobile_full">
    <div class="inputSelect">
      <select>
        <option value="選択する">選択する</option>
        <option value="">value1</option>
        <option value="">value2</option>
        <option value="">value3</option>
      </select>
    </div>
  </div>
</div>
<!--input_box -->

＊inputTextareaの使い方
<div class="input_box">
  <p>自宅住所</p>
  <div class="input_inner">
    <div class="inputTextarea mod-short">
      <textarea name="" rows="" cols=""></textarea>
    </div>
  </div>
</div>
<!--input_box -->
*/
.input_box > p {
  color: #151726;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .input_box > p {
    margin-bottom: 5px;
    font-size: 11px;
  }
}

@media screen and (min-width: 960px) {
  .input_box > p {
    font-size: 12px;
  }
}

.input_box + .input_box {
  margin-top: 16px;
}

.input_inner {
  margin-top: 8px;
}

@media screen and (max-width: 959px) {
  .input_inner {
    width: 100%;
  }
}

.inputText {
  background-color: #fff;
  border: 1px solid #D0D0D3;
  border-radius: 4px;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .inputText {
    height: 32px;
  }
}

@media screen and (min-width: 960px) {
  .inputText {
    height: 40px;
  }
}

.inputText > input {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  padding: 0 10px;
  z-index: 1;
  background-color: transparent;
  font-size: 13px;
  border: none;
  color: #151726;
}

.inputText > input::-webkit-input-placeholder {
  color: #D0D0D3;
}

.inputText > input:-ms-input-placeholder {
  color: #D0D0D3;
}

.inputText > input::-ms-input-placeholder {
  color: #D0D0D3;
}

.inputText > input::placeholder {
  color: #D0D0D3;
}

.inputTextarea {
  height: 196px;
  position: relative;
  width: 100%;
  border: 1px solid #D0D0D3;
  border-radius: 4px;
  background-color: #fff;
  padding: 10px;
}

.inputTextarea > textarea {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  padding: 5px;
  z-index: 1;
  background-color: transparent;
  font-size: 13px;
  border: none;
  color: #151726;
  resize: none;
}

.inputTextarea > textarea::-webkit-input-placeholder {
  color: #D0D0D3;
}

.inputTextarea > textarea:-ms-input-placeholder {
  color: #D0D0D3;
}

.inputTextarea > textarea::-ms-input-placeholder {
  color: #D0D0D3;
}

.inputTextarea > textarea::placeholder {
  color: #D0D0D3;
}

.inputSelect {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #D0D0D3;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .inputSelect {
    height: 32px;
  }
}

@media screen and (min-width: 960px) {
  .inputSelect {
    height: 40px;
  }
}

.inputSelect:after {
  content: "";
  background: url("../../../images/ic_arrow_under.svg");
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 14px;
  top: 50%;
  z-index: 0;
}

@media screen and (max-width: 959px) {
  .inputSelect:after {
    margin-top: -3px;
  }
}

@media screen and (min-width: 960px) {
  .inputSelect:after {
    margin-top: -2px;
  }
}

.inputSelect > select {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  padding: 0 40px 0 10px;
  z-index: 1;
  background-color: transparent;
  font-size: 13px;
  border: none;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  color: #151726;
}

/*
Form
========================================
*/
/*
  ****************************************
  text系
  ****************************************

  ========================================
  text_error
  ========================================
  ＊エラー文の時にご利用ください。
*/
.mod-require:after {
  content: '*';
  color: #E61212;
  font-size: 12px;
  margin-left: 3px;
}

.textError {
  color: #E61212;
  font-weight: bold;
  margin-left: 3px;
}

@media screen and (max-width: 959px) {
  .textError {
    font-size: 10px;
  }
}

@media screen and (min-width: 960px) {
  .textError {
    font-size: 11px;
  }
}

/*
========================================
buttonCTA
========================================
＊CTAとは「Call To Action（行動喚起）」のことです。
　（他のclass名と被る危険をさけるために、
　　ユーザーに決定させるボタンについてはこの名前をつけました。）

＊原則、ボタンは幅100%（特にmobileは）でご利用ください。
＊スタイルを調整したい場合は別途ユニークなクラス名をつけてうわがいてください。

＊基本
<div class="buttonCTA mod-primary">
  <a href="">文言がはいります</a>
</div>

＊上書きする場合
<div class="mainContents_button">
  <div class="buttonCTA mod-primary">
    <a href="">文言がはいります</a>
  </div>
</div>
*/
.buttonCTA {
  position: relative;
  background-color: #151726;
  border-radius: 4px;
  height: 48px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .buttonCTA {
    margin-top: 24px;
  }
}

@media screen and (min-width: 960px) {
  .buttonCTA {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    margin-top: 16px;
  }
  .buttonCTA:hover {
    opacity: .5;
  }
}

.buttonCTA > a,
.buttonCTA > button {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  padding: 0 20px;
  z-index: 1;
  background-color: transparent;
  font-size: 13px;
  font-family: inherit;
  border: none;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*
buttonCTA
========================================
*/
/*
========================================
header
========================================
*/
header {
  z-index: 100;
  width: 100%;
  background-color: #fff;
  padding: 0;
  position: fixed;
}

@media screen and (max-width: 959px) {
  header {
    top: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  header.mod-hide {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@media screen and (min-width: 960px) {
  header {
    bottom: 0;
  }
}

header nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  header nav {
    height: 75px;
  }
}

@media screen and (min-width: 960px) {
  header nav {
    max-width: 1168px;
    padding: 15px 0 30px;
  }
}

.header_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .header_list {
    border-bottom: 2px solid;
    padding: 8px 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 959px) {
  .header_list > li {
    text-align: center;
    width: 33%;
  }
}

@media screen and (min-width: 960px) {
  .header_list > li {
    margin-right: 18px;
    width: 132px;
  }
}

.header_list > li.add-active > a {
  color: #E61212;
}

.header_list > li > a > .mod-title {
  font-weight: bold;
  letter-spacing: 2.2px;
}

@media screen and (max-width: 959px) {
  .header_list > li > a > .mod-title {
    font-size: 12px;
    padding: 7px 0;
  }
}

@media screen and (min-width: 960px) {
  .header_list > li > a > .mod-title {
    font-size: 17px;
  }
}

.header_list > li > a > .mod-note {
  font-size: 11px;
  margin-top: 10px;
}

@media screen and (min-width: 960px) {
  .header_logo {
    width: 240px;
  }
  .header_logo > img {
    width: 100%;
  }
}

/*
header
========================================
*/
/*
========================================
Footer
========================================
*/
footer {
  text-align: center;
  padding-top: 100px;
}

footer > img {
  width: 25%;
}

footer > p {
  font-size: 11px;
  opacity: 0.5;
  margin: 15px auto 33px;
}

/*
Footer
========================================
*/
@media screen and (max-width: 959px) {
  .container {
    min-height: 200px;
  }
}

@media screen and (min-width: 960px) {
  .container {
    min-height: 400px;
    margin: 0 auto 150px;
    max-width: 1280px;
  }
}

.dotNav {
  position: fixed;
  left: 2%;
  top: 0;
  width: 24px;
  height: 150px;
  bottom: 0;
  margin: auto;
}

.dotNav > li > a {
  padding: 5px;
  display: inline-block;
}

.dotNav > li > a:after {
  content: '';
  display: block;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: rgba(7, 9, 28, 0.2);
}

.dotNav > li > a:hover:after {
  background-color: #151726;
}

.dotNav > li.add-active > a:after {
  background-color: #151726;
}

.mainContents > .inner {
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  .mainContents > .inner {
    width: 87.2%;
    padding-top: 35px;
    padding-bottom: 50px;
  }
  .mainContents > .inner.mod-isExist_header {
    padding-top: 105px;
  }
}

@media screen and (min-width: 960px) {
  .mainContents > .inner {
    max-width: 870px;
    padding-top: 56px;
    padding-bottom: 170px;
  }
}

@media screen and (max-width: 959px) {
  .mainContents h2 {
    height: 33px;
    text-align: center;
  }
}

@media screen and (min-width: 960px) {
  .mainContents h2 {
    height: 56px;
  }
}

.mainContents h2 > img {
  height: 100%;
}

@media screen and (max-width: 959px) {
  .detailContents {
    margin: 0 auto;
  }
}

@media screen and (max-width: 959px) {
  .detailContents.mod-vision {
    margin-top: 35px;
  }
}

@media screen and (min-width: 960px) {
  .detailContents.mod-vision {
    margin-top: 52px;
  }
}

@media screen and (max-width: 959px) {
  .detailContents.mod-service {
    margin-top: 35px;
  }
}

@media screen and (min-width: 960px) {
  .detailContents.mod-service {
    margin-top: 128px;
  }
}

@media screen and (max-width: 959px) {
  .detailContents.mod-member {
    width: 84%;
  }
}

@media screen and (max-width: 959px) {
  .detailContents.mod-system {
    margin-top: 10px;
  }
}

@media screen and (min-width: 960px) {
  .detailContents.mod-system {
    margin: 15px 0 0;
  }
}

@media screen and (max-width: 959px) {
  .detailContents.mod-about {
    margin-top: 15px;
  }
}

@media screen and (min-width: 960px) {
  .detailContents.mod-about {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 959px) {
  .detailContents.mod-contact {
    margin-top: 32px;
  }
}

@media screen and (min-width: 960px) {
  .detailContents.mod-contact {
    margin-top: 56px;
    display: block;
  }

  /* form で包んだため、元の2カラムはフォーム側で並べる */
  .detailContents.mod-contact > #contact-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}

/*
========================================
top
========================================
*/
@media screen and (max-width: 959px) {
  .mainContents.mod-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 959px) {
  .mainContents.mod-top .inner {
    margin: 0 0 0;
    padding: 0;
    position: relative;
    z-index: 0;
  }
  .mainContents.mod-top .inner.add-top {
    margin-top: -70px;
  }
  .mainContents.mod-top .inner h1 {
    width: 41%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    max-height: 47px;
  }
  .mainContents.mod-top .inner h1 > img {
    width: 100%;
  }
}

.top_text {
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .top_text {
    font-size: 13px;
    line-height: 32px;
    color: #FAFAFA;
    letter-spacing: 1px;
    -webkit-transition: color .7s;
    -o-transition: color .7s;
    transition: color .7s;
  }
  .top_text.add-light {
    color: #e6e6e6;
  }
}

@media screen and (min-width: 960px) {
  .top_text {
    font-size: 26px;
    line-height: 46px;
    color: #f5f5f5;
    letter-spacing: 5px;
  }
}

/*
========================================
vision
========================================
*/
@media screen and (max-width: 959px) {
  .vision_text {
    margin-top: 40px;
  }
}

.vision_text .mod-title {
  letter-spacing: 2.2px;
  font-size: 0;
}

@media screen and (max-width: 959px) {
  .vision_text .mod-title {
    text-align: center;
  }
}

.vision_text .mod-title > span {
  background-color: #151726;
  font-weight: bold;
  display: inline-block;
  line-height: 2;
  color: #fff;
}

@media screen and (max-width: 959px) {
  .vision_text .mod-title > span {
    font-size: 14px;
    padding: 0 5px;
  }
}

@media screen and (min-width: 960px) {
  .vision_text .mod-title > span {
    font-size: 16px;
    padding: 0 10px;
  }
}

.vision_text > .mod-note {
  letter-spacing: 1.6px;
  margin-top: 20px;
  line-height: 2;
  font-weight: bold;
  color: #151726;
}

@media screen and (max-width: 959px) {
  .vision_text > .mod-note {
    font-size: 12px;
  }
}

@media screen and (min-width: 960px) {
  .vision_text > .mod-note {
    font-size: 13px;
    color: #151726;
  }
}

/*
========================================
service
========================================
*/
@media screen and (min-width: 960px) {
  .service_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
  }
}

.service_list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border: 8px solid rgba(21, 23, 38, 0.04);
}

@media screen and (max-width: 959px) {
  .service_list > li {
    min-height: 147px;
    width: 72%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .service_list > li {
    width: 274px;
    height: 180px;
    margin: 30px 12px;
  }
}

@media screen and (max-width: 959px) {
  .service_list > li + li {
    margin-top: 16px;
  }
}

@media screen and (max-width: 959px) {
  .service_box {
    max-height: 150px;
    width: 62%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    letter-spacing: 1.6px;
  }
}

@media screen and (min-width: 960px) {
  .service_box {
    width: 65%;
  }
}

.service_box.mod-wide {
  width: 95%;
}

.service_box img {
  height: 100%;
  width: 100%;
}

.service_box .mod-title {
  font-size: 15px;
  font-weight: bold;
}

.service_box .mod-note {
  margin-top: 10px;
  font-size: 13px;
}

/*
========================================
member
========================================
*/
.member_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 959px) {
  .member_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -8%;
  }
}

@media screen and (min-width: 960px) {
  .member_list {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.member_list > li {
  text-align: center;
}

@media screen and (max-width: 959px) {
  .member_list > li {
    width: 50%;
    padding-left: 8%;
    margin-top: 40px;
  }
}

@media screen and (min-width: 960px) {
  .member_list > li {
    width: 125px;
    margin: 50px 12px 0;
  }
}

.member_list > li > .img_box {
  width: 100%;
  position: relative;
  font-size: 0;
}

.member_list > li > .img_box:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  border: 8px solid rgba(21, 23, 38, 0.04);
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.member_list > li > .img_box > img {
  width: 100%;
}

.member_list > li > .mod-name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
}

.member_list > li > .mod-status {
  font-size: 12px;
  margin-top: 10px;
}

.member_list > li > .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5px;
}

.member_list > li > .sns_list > li > a {
  padding: 5px;
}

/*
========================================
system
========================================
*/
.system_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.system_dlist {
  letter-spacing: 1.6px;
}

@media screen and (max-width: 959px) {
  .system_dlist {
    margin-top: 32px;
    width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .system_dlist {
    border-top: 3px solid;
    padding-top: 20px;
    margin-top: 40px;
    width: 274px;
    margin: 40px 12px 0;
  }
}

.system_dlist > dt {
  font-weight: bold;
  letter-spacing: 1px;
}

@media screen and (max-width: 959px) {
  .system_dlist > dt {
    font-size: 12px;
  }
}

@media screen and (min-width: 960px) {
  .system_dlist > dt {
    font-size: 16px;
  }
}

.system_dlist > dd {
  line-height: 2;
}

@media screen and (max-width: 959px) {
  .system_dlist > dd {
    margin-top: 10px;
    font-size: 11px;
  }
}

@media screen and (min-width: 960px) {
  .system_dlist > dd {
    margin-top: 10px;
    font-size: 14px;
  }
}

/*
========================================
about
========================================
*/
@media screen and (min-width: 960px) {
  .about_block {
    width: 422px;
  }
}

@media screen and (max-width: 959px) {
  .about_dlist {
    margin-top: 32px;
  }
}

@media screen and (min-width: 960px) {
  .about_dlist {
    margin-top: 30px;
  }
}

.about_dlist > dt {
  font-weight: bold;
  color: #fff;
  background-color: rgba(21, 23, 38, 0.2);
  height: 24px;
  line-height: 25px;
  letter-spacing: 1px;
}

@media screen and (max-width: 959px) {
  .about_dlist > dt {
    font-size: 12px;
    padding: 0 9px;
  }
}

@media screen and (min-width: 960px) {
  .about_dlist > dt {
    font-size: 16px;
    padding: 0 12px;
  }
}

.about_dlist > dd {
  line-height: 24px;
  letter-spacing: 1px;
}

@media screen and (max-width: 959px) {
  .about_dlist > dd {
    margin-top: 16px;
    font-size: 12px;
  }
}

@media screen and (min-width: 960px) {
  .about_dlist > dd {
    margin-top: 16px;
    font-size: 16px;
  }
}

/*
========================================
contact
========================================
*/
@media screen and (min-width: 960px) {
  .contact_block {
    width: 422px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  /* 右カラム: 詳細テキストエリアを左5行分の高さに近づける */
  .detailContents.mod-contact .contact_block:last-child .inputTextarea {
    height: 268px;
  }

  .detailContents.mod-contact .contact_block:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 959px) {
  .contact_block + .contact_block {
    margin-top: 16px;
  }

  #contact-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 959px) {
  .contact_list {
    margin-top: 32px;
  }
}

@media screen and (min-width: 960px) {
  .contact_list {
    margin-top: 30px;
  }
}

.hide {
  display: none;
}
