@charset "UTF-8";

/*　基本色　*/
/*　マスターワイズ　*/
/*　リンクホバーアクション　*/
/* 読み上げ文字の設定 */
.vi {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

/*初期化設定ここから*/
/* フォーム部品 */
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea {
  border: 1px solid #ddd;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #fff;
  padding: 3px 1em;
}

form textarea {
  width: 100%;
  height: 10em;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 30%;
  height: 34px;
  border: 1px solid #ddd;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-image: url(../images/common/btn_select_arrow.png);
  background-position: right 50%;
  border-radius: 0;
  padding: 0 10px;
}

form select:hover,
form select:focus {
  background-position: right 47%;
}

form input[type="radio"],
form input[type="checkbox"] {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: 0 1em 0 4px;
}

form label {
  display: block;
}

form label:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 4px;
  background-color: #f2f2f2;
  cursor: pointer;
}

/* 入力フォーム */
.parts_text {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 3px 1em;
}

.parts_text:hover {
  background-color: #f2f2f2;
}

.parts_text:focus {
  background-color: #fff5bf;
  outline: none;
  border: 1px solid #fff5bf;
  -webkit-box-shadow: 0px 0px 0px 3px #ffe763;
  box-shadow: 0px 0px 0px 3px #ffe763;
}

/*テーブル*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table ul,
table ol {
  margin: 0 25px;
}

/*ヘッディング*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
}

/*パラグラフ*/
p {
  margin: 0;
  padding: 0;
}

/*　水平線　*/
hr {
  border-width: 1px 0 0 0;
  border-style: solid;
  height: 0;
}

/*　アドレス　*/
address {
  font-style: normal;
}

/*　現在準備中です。　＿＿＿＿＿　*/
#under {
  font-weight: bold;
  text-align: center;
  padding: 10em 0;
}

#under:before {
  display: block;
  font-size: 3rem;
  color: #f39c12;
  content: "\f071";
  font-weight: normal;
  font-family: FontAwesome;
  padding: 0 0 0.3em;
}

/* 読み上げ文字	＿＿＿＿＿＿＿＿＿＿　*/
.vi {
  height: 0px;
  overflow: hidden;
  position: absolute;
  text-indent: -9999px;
  margin: 0px;
  padding: 0px;
}

/*　イメージフローティング	＿＿＿＿＿＿＿＿＿＿　*/
.float_left {
  float: left;
  margin-right: 40px;
}

.float_right {
  float: right;
  margin-left: 40px;
}

/*クリアー	＿＿＿＿＿＿＿＿＿＿　*/
.clear {
  clear: both;
}

/* 見出し	＿＿＿＿＿＿＿＿＿＿　*/
.ttl_cmn_01 {
  display: block;
  line-height: 1.1;
  font-family: "Noto Sans Bold", sans-serif;
}

.ttl_cmn_01 .ttl_en {
  font-size: 4.2rem;
}

.ttl_cmn_01 .ttl_jp {
  display: inline-block;
  font-size: 3.4rem;
  margin: 0 0 3px;
}

.ttl_cmn_01 .ttl_sub {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 2px 0 0 10px;
}

.ttl_cmn_02 {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: left;
  padding: 0 0 12px;
  margin: 20px 0 20px 0;
}

.ttl_cmn_02 td {
  text-align: left;
}

.ttl_cmn_03 {
  font-size: 1.8rem;
  font-family: "Noto Sans Bold", sans-serif;
  border-left: 4px solid #111;
  line-height: 1;
  padding: 3px 10px;
}

.ttl_cmn_04 {
  font-size: 1.7rem;
  font-family: "Noto Sans Bold", sans-serif;
}

/*初期化設定ここまで*/
/*　ボタンモジュール	＿＿＿＿＿＿＿＿＿＿　*/
/* 共通ボタン */
.btn_cmn_01 {
  display: inline-block;
  background-color: rgba(45, 132, 124, 0.8);
  color: #fff;
  border-radius: 0 20px 0 20px /0 20px 0 20px;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.6);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.6);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 14px 54px;
  margin: 0 auto;
}

.btn_cmn_01:after {
  content: url(../images/common/arrow_white.svg);
  display: inline-block;
  width: 20px;
  margin-left: 10px;
}

.btn_cmn_02,
.btn_cmn_03 {
  display: inline-block;
  background-color: rgba(45, 132, 124, 0.8);
  color: #fff;
  border-radius: 0 20px 0 20px /0 20px 0 20px;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.6);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.6);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 14px 54px;
  margin: 0 auto;
}

.btn_cmn_02:before,
.btn_cmn_03:before {
  content: url(../images/common/arrow_white_reverse.svg);
  display: inline-block;
  width: 20px;
  margin-right: 10px;
}

.btn_cmn_01:hover,
.btn_cmn_02:hover,
.btn_cmn_03:hover {
  cursor: pointer;
  opacity: .9;
}

.text_dec {
  text-align: none;
}

.btn_cmn_03 {
  background-color: gray;
}

/*テーブル	＿＿＿＿＿＿＿＿＿＿　*/
.table_cmn_01 {
  width: 100%;
}

.table_cmn_01 th,
.table_cmn_01 td {
  vertical-align: top;
  text-align: left;
  border: 1px solid #ddd;
  padding: 10px 13px;
}

.table_cmn_01 th {
  white-space: nowrap;
  font-weight: normal;
}

.table_cmn_01 tr {
  border-bottom: 1px solid #ddd;
}

.table_cmn_01 caption {
  text-align: left;
  padding: 0 0 3px;
}

.table_cmn_02 {
  width: 100%;
}

.table_cmn_02 th,
.table_cmn_02 td {
  vertical-align: top;
  text-align: left;
  padding: 10px 13px;
}

.table_cmn_02 th {
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.table_cmn_02 tr {
  border-bottom: 1px solid #ddd;
}

.table_cmn_02 tr:hover th {
  color: red;
}

/* リスト	＿＿＿＿＿＿＿＿＿＿　*/
.list_cmn_01 {
  margin-left: 20px;
}

.list_cmn_02 {
  list-style: none;
}

/* 単列 */
.list_flex_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  list-style: none;
}

.list_flex_1 li {
  margin: 0 0.5em;
}

.list_flex_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  list-style: none;
}

/*　アライン	＿＿＿＿＿＿＿＿＿＿　*/
body {
  /* カラー */
}

body .align_left {
  text-align: left;
}

body .align_right {
  text-align: right;
}

body .align_center {
  text-align: center;
}

body .color_red {
  color: red;
}

/* マージン	＿＿＿＿＿＿＿＿＿＿　*/
body .mar05 {
  margin-bottom: 5px;
}

body .mar10 {
  margin-bottom: 10px;
}

body .mar15 {
  margin-bottom: 15px;
}

body .mar20 {
  margin-bottom: 20px;
}

body .mar25 {
  margin-bottom: 25px;
}

body .mar30 {
  margin-bottom: 30px;
}

body .mar40 {
  margin-bottom: 40px;
}

body .mar50 {
  margin-bottom: 50px;
}

body .mar60 {
  margin-bottom: 60px;
}

body .mar70 {
  margin-bottom: 70px;
}

body .mar80 {
  margin-bottom: 80px;
}

/* サイズ補正用	＿＿＿＿＿＿＿＿＿＿　*/
body .width05 {
  width: 5%;
}

body .width10 {
  width: 10%;
}

body .width15 {
  width: 15%;
}

body .width20 {
  width: 20%;
}

body .width25 {
  width: 25%;
}

body .width30 {
  width: 30%;
}

body .width40 {
  width: 40%;
}

body .width50 {
  width: 50%;
}

body .width60 {
  width: 60%;
}

body .width70 {
  width: 70%;
}

body .width80 {
  width: 80%;
}

body .width90 {
  width: 90%;
}

body .width100 {
  width: 100%;
}

/*　レスポンシブ対応（ブレークポイント 599px）
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿*/
@media screen and (max-width: 599px) {

  /*　サイズ補正用　*/
  body .width05,
  body .width10,
  body .width15,
  body .width20,
  body .width25,
  body .width30,
  body .width40,
  body .width50,
  body .width60,
  body .width70,
  body .width80,
  body .width90,
  body .width100 {
    width: auto;
  }

  /*　イメージフローティング	＿＿＿＿＿＿＿＿＿＿　*/
  .float_right,
  .float_left {
    float: none;
    width: 100%;
    padding: 0;
    margin: 20px 0;
  }

  /*　お問い合わせ	＿＿＿＿＿＿＿＿＿＿　*/
  #form .table_cmn_02 {
    width: 95%;
    margin: 0 auto;
  }

  #form .table_cmn_02 th,
  #form .table_cmn_02 td {
    padding: 10px 0;
  }

  #form .table_cmn_02 th {
    padding: 10px 10px 10px 0;
  }

  /* 見出し	＿＿＿＿＿＿＿＿＿＿　*/
  .ttl_cmn_01 {
    display: block;
    width: 60%;
    line-height: 1.1;
    font-size: 3.6rem;
  }

  .ttl_cmn_01 .ttl_en {
    font-size: 2.4rem;
  }

  .ttl_cmn_01 .ttl_jp {
    font-weight: bold;
    font-size: 2.8rem;
  }

  .ttl_cmn_01 .ttl_sub {
    width: 150px;
    font-size: 1.5rem;
    font-weight: normal;
    margin: 6px 0;
  }

  .ttl_cmn_01 span {
    display: block;
    font-size: 1.2rem;
  }

  .ttl_cmn_02 {
    font-size: 2rem;
    width: 95%;
    font-family: "Noto Sans Bold", sans-serif;
    border-bottom: 1px solid #ddd;
    padding: 0 0 7px;
    margin: 20px auto 30px;
  }

  .ttl_cmn_03 {
    font-size: 1.8rem;
    font-family: "Noto Sans Bold", sans-serif;
    border-left: 4px solid #111;
    line-height: 1.5;
    padding: 0 10px;
  }

  .ttl_cmn_04 {
    font-size: 1.7rem;
    font-family: "Noto Sans Bold", sans-serif;
  }

  /* テーブル */
  .table_cmn_01 {
    overflow: auto;
    display: block;
    width: auto;
    background-color: #fff;
    margin: 2em 0;
  }

  .table_cmn_01::-webkit-scrollbar {
    height: 5px;
  }

  .table_cmn_01::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .table_cmn_01::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }

  .table_cmn_01 caption {
    display: none;
  }

  .table_cmn_01 tbody {
    display: table;
    width: auto;
  }

  .table_cmn_01 th,
  .table_cmn_01 td {
    vertical-align: top;
    text-align: left;
    border: 1px solid #ccc;
    padding: 10px 13px;
  }

  .table_cmn_01 th {
    white-space: nowrap;
    background-color: #ececec;
  }

  .table_cmn_01 tr {
    border-bottom: 1px solid #ccc;
  }

  .btn_cmn_01 {
    border-radius: 0 20px 0 20px /0 20px 0 20px;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  }

  .btn_cmn_02,
  .btn_cmn_03 {
    border-radius: 0 20px 0 20px /0 20px 0 20px;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  }
}

/*　ここまで　*/