/*
変更箇所
.half
.fl
.fr
#footer_area
.btn_4
h1,h2,h3,h4,h5
body
header #logo
#header_area
.home header #logo img
#tel
#menubar ul li a
body.is-fixed-menu #menubar ul li a
*/

@charset "utf-8";

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tangerine&display=swap");

/*keyframes.cssの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  color: #000; /*全体の文字色*/
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  font-size: 18px; /*文字サイズ*/
  line-height: 2; /*行間*/
  background: #fff; /*背景色*/
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  overflow-y: scroll;
}
#container {
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style-type: none;
}
ol {
  padding-left: 40px;
  padding-bottom: 15px;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}
video {
  max-width: 100%;
}
iframe {
  width: 100%;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #000; /*リンクテキストの色*/
  transition: 0.2s; /*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
  text-decoration: none;
}
a:hover {
  color: #000; /*マウスオン時の文字色*/
  text-decoration: none; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
  max-width: 1200px; /*サイトの最大幅*/
  margin: 0 auto;
  padding-left: 2%;
  padding-right: 2%;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  position: relative;
  padding: 20px; /*ヘッダー内の余白*/
}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
  padding: 0px; /*余白をなしに*/
}
/*ロゴ画像*/
header #logo {
  padding: 0 3%;
  align-self: center;
}
/*ロゴ画像（トップページへの追加設定）*/
.home header #logo img {
  width: 75%;
}
#header_area {
  position: relative;
  margin: 0px auto;
  height: 100px;
  display: flex;
  max-width: 1200px;
}
#tel {
  position: absolute;
  right: 0px;
  padding: 0 3%;
  display: inline;
  align-self: center;
  text-align: right;
}
#header_sns_area {
  position: absolute;
  right: 0px;
  bottom: 33px;
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
  position: relative;
  z-index: 10;
  text-align: center; /*文字を中央に*/
  background: #fbfbfb; /*背景色*/
  border-top: 1px solid #ccc; /*上の線の幅、線種、色*/
  border-bottom: 1px solid #ccc; /*下の線の幅、線種、色*/
  font-family: "Questrial", sans-serif; /*冒頭で読み込んだGoogle Fontsを適用する指定*/
  height: 105px; /*高さ。「#menubar ul li a」や「fixmenu」とも連動するので変更の際は注意。説明はこの下の「#menubar ul li a」で書いています。*/
}
/*メニュー１個あたりの設定*/
#menubar ul li {
  float: left; /*左に回り込み*/
  width: 20%; /*幅。今回は５個なので、100÷5=20。*/
  font-size: 2vmin; /*文字サイズ*/
}
#menubar ul li a {
  text-decoration: none;
  display: block;
  height: 84px; /*メニューブロックの高さ。ここの「85」と、下の行の「20」を合計した「105」の数字と、上の「#menubar」の「height」および下のfixmenu設定に２箇所ある「margin-top」の数字を合わせて下さい。*/
  padding-top: 20px; /*メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。※変更の際は、上の行の注意書きもしっかり読んで下さい。*/
  box-sizing: initial;
  color: #000;
}
/*飾り文字*/
#menubar ul li span {
  display: block;
  font-size: 10px; /*文字サイズ*/
  color: #000; /*文字色*/
  letter-spacing: 0.2em; /*文字間隔を少し広くとる設定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s,
#menubar-s2 {
  display: none;
}

/*３本バーアイコンを表示させない*/
#menubar_hdr {
  display: none;
}

/*ドロップダウンメニューの親メニュー*/
#menubar a.cursor-default {
  cursor: default; /*マウスオーバー時に通常のカーソルになるように*/
  color: #000; /*文字色*/
}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
  position: absolute;
  visibility: hidden;
  z-index: 10;
  left: 0px;
  width: 100%;
  padding: 20px 3%;
  background: #939183; /*背景色。古いブラウザ用。*/
  background: rgba(120, 117, 100, 0.8); /*背景色。120,117,100はRGBカラーのことで0.8は色が80%出た状態のこと。*/
  text-align: center; /*テキストをセンタリング*/
  border-bottom: 1px solid #fff; /*境界が見辛いので、下線の設定。*/
}
/*ドロップダウンメニューの出現アニメーション*/
#menubar li:hover ul.ddmenu {
  animation-name: opa1; /*keyframes.cssで使う@keyframesの指定*/
  animation-fill-mode: both;
  animation-duration: 0.8s; /*アニメーションを実行する時間。「s」は秒の事。*/
  animation-delay: 0.1s; /*出現するタイミング（秒後）*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
  float: none;
  width: auto;
  display: inline-block;
  font-size: 85%; /*文字サイズ*/
}
#menubar ul.ddmenu li a {
  height: auto;
  padding: 20px; /*メニューテキスト同士の余白*/
  color: #fff; /*文字色*/
  opacity: 0.7; /*透明度。70%色がついた状態。*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
  opacity: 1; /*透明度。色が100%出た状態。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
  position: fixed;
  width: 100%;
  top: 0px;
  height: 60px; /*メニューの高さを少し狭くする*/
  box-shadow: 0 3px 10px 2px #ececec;
}
body.is-fixed-menu .contents {
  margin-top: 105px; /*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。*/
body.is-fixed #menubar.nav-fix-pos {
  position: fixed;
  width: 100%;
  top: 0px;
}
body.is-fixed .contents {
  margin-top: 105px; /*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}

/*装飾文字を非表示にする*/
body.is-fixed-menu #menubar ul li span {
  display: none;
}
/*メニューテキストの上下バランスを調整しなおす。２つの数字の合計と、「body.is-fixed-menu #menubar.nav-fix-pos」の「height: 60px;」の数字が合うようにして下さい。*/
body.is-fixed-menu #menubar ul li a {
  height: 49px;
  padding-top: 10px;
}
/*ドロップダウンメニューへの再設定*/
body.is-fixed-menu #menubar ul.ddmenu li a {
  padding: 20px;
  height: auto;
}

/*コンテンツ
---------------------------------------------------------------------------*/
.home .contents {
  padding: 50px 0 0; /*上、左右、下へのコンテンツ内の余白*/
}

.contents {
  padding: 0 0 0; /*上、左右、下へのコンテンツ内の余白*/
  position: relative;
  animation-name: opa2; /*keyframes.cssで使う@keyframesの指定*/
 animation: SlideUp 2s;
}
@keyframes SlideUp {
	0% {
	  opacity: 0;
	  transform: translateY(64px);
	  backface-visibility: hidden;/* animation時のにじみ防止 */
	  -webkit-backface-visibility: hidden;/* animation時のにじみ防止 */
	  -webkit-font-smoothing: antialiased;/* animation時の文字にじみ防止 */
	  -moz-osx-font-smoothing: grayscale;/* animation時の文字にじみ防止 */
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	  backface-visibility: hidden;/* animation時のにじみ防止 */
	  -webkit-backface-visibility: hidden;/* animation時のにじみ防止 */
	  -webkit-font-smoothing: antialiased;/* animation時の文字にじみ防止 */
	  -moz-osx-font-smoothing: grayscale;/* animation時の文字にじみ防止 */
	}
  }
/*h2タグ*/
.contents h2 {
  margin: 2% 0;
  font-size: 33px;
  line-height: 31px;
  text-align: center;
  letter-spacing: 0.2em;
  color: #000;
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
  font-weight: 500;
}
.contents h2:before,
.contents h2:after {
  border-top: 1px solid;
  content: "";
  width: 3em; /* 線の長さ */
}
.contents h2:before {
  margin-right: 1em; /* 文字の右隣 */
}
.contents h2:after {
  margin-left: 1em; /* 文字の左隣 */
}
/*h3タグ*/
.contents h3 {
  position: relative;
  margin: 1% 0% 2%;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  color: #000;
  text-align: center;
  padding: 0.15em 0.5em;
  font-weight: 500;
}
.contents h3:before {
	content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    display: inline-block;
    width: 60px;
    height: 5px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #ffa40b;
}

/*h4タグ*/
.contents h4 {
  position: relative;
  margin: 2% 0;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #000;
  text-align: left;
  padding: 0.1em 1.3em;
  font-weight: 500;
}
.contents h4:after{
  display: block;
  width: 3px;
  height: 25px;
  position: absolute;
  top: 14px;
  left: 16px;
  background-color: #bfbebb;
  content: '';
}
/*h5タグ*/
.contents h5 {
  font-size: 30px;
  line-height: 19px;
  text-align: center;
  color: #e66c83;
  font-weight: bold;
  letter-spacing: 0;
  margin: 0 0 3%;
}
/*h6タグ*/
.contents h6 {
  position: relative;
  margin: 2% 0 2%;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  color: #000;
  text-align: left;
  padding: 0.15em 0.5em;
  font-weight: 500;
  background: transparent;
  border-left: solid 10px #ffc45b;
}

.recruit_title {
  font-size: 2.1rem;
  margin-bottom: 1%;
  color: #666;
  font-weight: bold;
  letter-spacing: 2.5px;
}
.recruit_title span {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: #d4405c;
  padding-left: 1%;
  font-weight: bold;
}
/*段落タグ*/
.contents p {
  padding: 0 3%; /*上、左右、下への余白*/
}
.contents h2 + p,
.contents h3 + p {
  margin-top: -5px;
}
.contents p + p {
  margin-top: -10px;
}
.contents section + section {
  margin-top: 50px;
}

/*Flexbox
---------------------------------------------------------------------------*/
.d_flex_box{
  display: flex;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}



/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.contents .list {
  position: relative;
  border-radius: 5px; /*角丸の指定。ほんの少し角が丸くなります。*/
  overflow: hidden; /*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
  display: flex;
  align-items: center; /*中のブロックの縦並びの揃え方*/
  background: #b4b096; /*背景色*/
  color: #fff; /*文字色*/
  margin: 0 3% 30px; /*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*リンクテキストの文字色*/
.contents .list a {
  color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
.contents .list h4 {
  margin-bottom: 20px; /*下のテキストとの間に空けるスペース*/
  font-size: 140%; /*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
.contents .list p {
  padding: 0; /*余白のリセット*/
}
/*ボックス内のfigure画像*/
.contents .list figure {
  width: 50%; /*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.contents .list .text {
  width: 40%; /*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
  padding: 2% 5%; /*上下、左右へのブロック内の余白*/
}

/*偶数目のブロックの設定（画像とテキストブロックが左右交互に入れ替わる設定です。全部同じむきがよければこのブロックを削除します。）*/
.contents .list:nth-of-type(even) .text {
  order: 1;
}

/*装飾文字の設定（共通）*/
.contents .list::before {
  font-size: 18vw;
  line-height: 1;
  position: absolute;
  color: rgba(255, 255, 255, 0.15); /*文字色。255,255,255は白のことで、0.15は色が15%出た状態のこと。*/
  font-family: "Tangerine", cursive; /*冒頭で読み込んだGoogle Fontsを適用する指定*/
}
/*奇数番目のブロックの文字の配置場所指定*/
.contents .list:nth-of-type(odd)::before {
  left: -60px;
  top: -40px;
}
/*偶数番目のブロックの文字の配置場所指定*/
.contents .list:nth-of-type(even)::before {
  right: 0px;
  top: -40px;
}
/*１つ目ブロックに表示させるテキスト*/
.contents .list:nth-of-type(1)::before {
  content: "Works1";
}
/*２つ目ブロックに表示させるテキスト*/
.contents .list:nth-of-type(2)::before {
  content: "Works2";
}
/*３つ目ブロックに表示させるテキスト*/
.contents .list:nth-of-type(3)::before {
  content: "Works3";
}

/*ボックス内のボタン（共通）*/
.btn1 a {
  display: block;
  text-decoration: none;
  border: 1px solid #fff; /*枠線の幅、線種、色*/
  text-align: center; /*テキストをセンタリング*/
  padding: 10px 30px; /*上下、左右へのボタン内の余白*/
  margin: 40px auto 0; /*上、左右、下へのボックスの外側への余白*/
}
/*ボタンのマウスオン時（共通）*/
.btn1 a:hover {
  background: #fff; /*背景色*/
  color: #b4b096 !important; /*文字色*/
}

/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
/*カラムブロック全体を囲むボックス*/
.contents .list-column-container {
  display: flex;
  justify-content: space-between; /*中のブロックの横並びの揃え方*/
  flex-wrap: wrap; /*中のブロックを自動で折り返す*/
  margin: 0 3%;
}
/*１カラムあたりの設定*/
.contents .list-column {
  display: flex;
  flex-direction: column; /*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
  width: 32%; /*ブロック幅*/
  margin-bottom: 20px; /*ブロックの下に空ける余白*/
  background: #b4b096; /*背景色*/
  color: #fff; /*文字色*/
  border-radius: 5px; /*角丸の指定。ほんの少し角が丸くなります。*/
  overflow: hidden; /*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
/*リンクテキストの文字色*/
.contents .list-column a {
  color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
.contents .list-column h4 {
  margin-bottom: 20px; /*下のテキストとの間に空けるスペース*/
  font-size: 140%; /*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
.contents .list-column p {
  padding: 0; /*余白のリセット*/
}

/*「class="text"」を指定したブロック。テキストブロック。*/
.contents .list-column .text {
  padding: 5%; /*ブロック内の余白*/
  flex: 1 0 auto;
}
/*ボックス内のボタン（追加設定。基本設定は、上の「.btn1 a」を見て下さい。）*/
.contents .list-column .btn1 a {
  margin: 5%;
}

/*フッター設定
---------------------------------------------------------------------------*/
#footer_area {
  clear: both;
  overflow: hidden;
  padding: 1% 7%;
  justify-content: center;
  display: flex;
  background-color: #fdffb6;
  background-blend-mode: lighten;
  color: #000;
}

footer {
  clear: both;
  position: relative;
  z-index: 1;
  font-size: 80%;
  background: #a0947c;
  color: #ccc;
  text-align: center;
}
.half {
  padding: 1% 1%;
  align-self: center;
}
#footer_area contact .txt_150 {
  font-size: 150%;
}
#footer_area contact {
  text-align: center;
  font-weight: bold;
  background: #fff0;
  font-style: normal;
  width: 100%;
}
#footer_area address {
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
}
#footer_area .contact_button {
  background: #fff0;
  border-radius: 10px;
  padding: 10px;
  margin: auto;
  list-style: none;
  overflow: hidden;
  margin-top: 1%;
}
.contact_text {
  font-weight: bold;
  font-size: 106%;
}
.tel_text {
  font-size: 300%;
}
.btn_contact {
  display: inline-block;
  padding: 0.4em 1.6em;
  border-radius: 3px;
  background: #f3b84e;
  font-size: 150%;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  -moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  -ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
.btn_contact:hover {
  opacity: 0.7;
}

footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
}
footer .pr {
  display: block;
  font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
  overflow: hidden;
  padding: 50px 0; /*上下、左右へのボックス内の余白*/
  background: url(../images/footer_logo.png) no-repeat right center / 20%; /*背景画像の読み込み。*/
}
/*リンクテキスト*/
#footermenu li a {
  text-decoration: none;
  opacity: 0.7; /*透明度。70%の色がついた状態。*/
}
/*マウスオン時*/
#footermenu li a:hover {
  opacity: 1; /*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
  float: left; /*左に回り込み*/
  width: 18%; /*幅*/
  padding-right: 1%;
  padding-left: 1%;
  text-align: left;
}
/*見出し*/
#footermenu li.title,
#footermenu li.title a {
  opacity: 1; /*透明度。100%色がついた状態。*/
}
#foot_menu {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  height: 20vh;
}
#foot_menu .foot_menu {
  display: inline-block;
  width: 100%;
  text-align: left;
  padding: 30px 10px 0;
  box-sizing: border-box;
}
footer ul.f_list {
  display: block;
  width: 32%;
  float: left;
  height: auto;
  white-space: nowrap;
}
footer ul.f_list li a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding-top: 2px;
  padding-right: 2px;
  padding-bottom: 2px;
  padding-left: 10px;
  font-size: 14px;
}
footer ul.f_list li li a {
  padding-left: 27px;
  position: relative;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  font-size: 14px;
}
footer ul.f_list li li a::before {
  content: "・";
  position: absolute;
  top: 2px;
  left: 9px;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
  clear: both;
  text-align: center;
  background: #545454;
  padding: 10px 0;
}
#copyright a {
  text-decoration: none;
  color: #ccc;
}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
  margin-bottom: 20px;
}
/*アイコン１個あたりの設定*/
ul.icon li {
  display: inline-block; /*横並びにさせる指定*/
}
/*アイコン画像の設定*/
ul.icon img {
  width: 30px; /*画像の幅*/
}
ul.icon img:hover {
  opacity: 0.8;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
  padding: 0px 20px; /*上下、左右へのブロック内の余白*/
}
/*日付設定*/
#new dt {
  float: left;
  width: 9em; /*幅*/
  letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
  padding-left: 9em;
}

/*ta1設定
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta2 caption {
  border: 1px solid #ccc; /*テーブルの枠線の幅、線種、色*/
  border-bottom: none; /*下線だけ消す*/
  text-align: left; /*文字を左寄せ*/
  background: #eeece4; /*背景色*/
  font-weight: bold; /*太字に*/
  padding: 10px; /*ボックス内の余白*/
}
/*ta1テーブル*/
.ta1 {
  width: 94%;
  table-layout: fixed;
  margin: 0 3% 30px;
  background: #fff; /*背景色*/
}
.ta1,
.ta1 td,
.ta1 th {
  border: 1px solid #ccc; /*テーブルの枠線の幅、線種、色*/
  padding: 10px; /*ボックス内の余白*/
  word-break: break-all;
}
/*左側ボックス*/
.ta1 th {
  width: 150px; /*幅*/
  text-align: center; /*センタリング*/
  font-weight: normal;
}

/*
会社概要テーブル
---------------------------------------------------------------------------*/
table.table_01 {
	width: 96%;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}
table.table_01 th,
table.table_01 td {
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #CCCCCC;
	padding: 20px;
}
table.table_01 th {
	font-size: 16px;
	white-space: nowrap;
	letter-spacing: 1px;
	width: 33%;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
}
table.table_01 td {
	font-size: 95%;
	line-height: 30px;
}
table.table_02 {
	width: 96%;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	max-width: 820px;
}
table.table_02 th,
table.table_02 td {
	padding: 20px;
	border: 1px dotted #BAB4A9;
}
table.table_02 th {
	font-size: 18px;
	white-space: nowrap;
	letter-spacing: 1px;
	color: #222;
}
table.table_02 td {
	font-size: 16px;
	line-height: 30px;
	background-color: #F4F3F2;
}


table.table_02 .tr_gr th {
	background-color: #E0DDD8;
}
table.table_02 .tr_gr td {
	background-color: #EBE9E6;
}

table.table_02 td .price {
	font-size: 150%;
	white-space: nowrap;
	color: #006384;
	font-weight: bold;
	padding-right: 5px;
	padding-left: 5px;
}
.small {
	font-size: 80%;
	color: #000;
}
.chui {
	color: #F00036;
}
.table_01 th span {
	font-size: 12px;
	color: #CCC;
}
/*サイトマップ
---------------------------------------------------------------------------*/
.sm_list{
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    font-weight: bold;
	color: #000;
    text-decoration: none;
}
.sm_list:before {
content: "";
    position: absolute;
    top: 0.25em;
    left: 0;
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #ffbe2b;
}
.sm_clist{
    position: relative;
    padding-left: 15px;
    font-weight: bold;
	font-size: 90%;
}
 
.sm_clist:before {
    content: "";
    position: absolute;
    top: .45em;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid #fbde9e;
    border-right: 2px solid #fbde9e;
}

/*inputボタン
---------------------------------------------------------------------------*/
.contents input[type="submit"].btn,
.contents input[type="button"].btn,
.contents input[type="reset"].btn {
  -webkit-appearance: none;
  outline: none;
  padding: 5px 20px; /*上下、左右へのボックス内の余白*/
  border: 1px solid #333; /*枠線の幅、線種、色*/
  font-size: 130%; /*文字サイズ*/
  border-radius: 3px; /*角丸のサイズ*/
  background: #333; /*背景色*/
  color: #fff; /*文字色*/
}
/*マウスオン時の設定*/
.contents input[type="submit"].btn:hover,
.contents input[type="button"].btn:hover,
.contents input[type="reset"].btn:hover {
  border: 1px solid #333; /*枠線の幅、線種、色*/
  background: #fff; /*背景色*/
  color: #333; /*文字色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
  background: #f00; /*背景色*/
  color: #fff; /*文字色*/
  font-size: 70%; /*文字サイズ*/
  line-height: 1.5;
  padding: 2px 5px;
  border-radius: 2px;
  margin: 0px 5px;
  vertical-align: text-top;
}

/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
  display: block;
  margin-top: -120px;
  padding-top: 120px;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
  display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  width: 50px; /*幅*/
  line-height: 50px; /*高さ*/
  z-index: 1;
  position: fixed;
  bottom: 20px; /*下から20pxの場所に配置*/
  right: 3%; /*右から3%の場所に配置*/
  background: #000; /*背景色（古いブラウザ用）*/
  background: rgba(0, 0, 0, 0.6); /*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
  color: #fff; /*文字色*/
  border: 1px solid #fff; /*枠線の幅、線種、色*/
  animation-name: opa1; /*keyframes.cssで使う@keyframesの指定*/
  animation-duration: 1s; /*アニメーションの実行時間*/
  animation-fill-mode: both; /*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
  background: #999; /*背景色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
  list-style: disc;
  padding: 0 3% 20px 6%;
}
ol {
  padding: 0 3% 20px 6%;
}

/*ページ背景色設定
---------------------------------------------------------------------------*/
.bg_index_service {
    background-color: #d9fff1;
    margin: 0 calc(50% - 50vw);
    padding: 10px calc(50vw - 50% + 0px) 50px calc(50vw - 50% + 0px);
    width: 100vw;
}
.bg_index_service_other {
    background-color: #769e91;
    margin: 0 calc(50% - 50vw);
    padding: 10px calc(50vw - 50% + 0px);
    width: 100vw;
}
.bg_message{
    margin: 5% calc(50% - 50vw) 5% calc(50% - 50vw);
    padding: 4px calc(50vw - 50% + 8px);
    width: 100vw;
    background: linear-gradient(90deg, #ffffdd 0%, #ffffdd 70%, #fff 70%, #fff 100%);
    box-sizing: border-box;
}
.bg_message_full{
  margin: 5% calc(50% - 50vw) 5% calc(50% - 50vw);
  padding: 4px calc(45vw - 50% + 8px);
  width: 100vw;
  background: linear-gradient(90deg, #ffffdd 0%, #ffffdd 100%);
  box-sizing: border-box;
}
.bg_company{
    background: #fbfbcc;
    margin: 5% calc(50% - 50vw) 0;
    padding: 4px calc(50vw - 50% + 8px);
    width: 100vw;
}
.bg_company_rinen_bgimg{
    background-color: #e0e0e0;
    margin: 0px calc(50% - 50vw);
    padding: 60px calc(50vw - 50% + 0px);
    background: url(../images/company_bg.jpg)no-repeat center;
}
.bg_company_rinen_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0% calc(50% - 50vw);
    padding: 0px calc(50vw - 70%);
}
.bg_service{
    background: #d9fff1;
    margin: 5% calc(50% - 50vw) 0;
    padding: 20px calc(50vw - 50% + 8px) 50px calc(50vw - 50% + 8px);
    width: 100vw;
}
.bg_service2{
  background: #d9fff1;
  margin: 0 calc(50% - 50vw) 0;
  padding: 20px calc(50vw - 50% + 8px) 50px calc(50vw - 50% + 8px);
  width: 100vw;
}
.bg_service_inner{
    background-color: #ffffff99;
    margin: 3% calc(50% - 35vw) 0 calc(50% - 35vw);
    padding: 10px calc(30vw - 50% + 0px);
    border-radius: 10px;
}
.bg_architecture_bgimg{
    margin: 5% calc(50% - 50vw) 0;
    padding: 20px calc(50vw - 50% + 8px) 50px calc(50vw - 50% + 8px);
    background: url(../images/architecture2.jpg)no-repeat center;
    background-size: cover;
    overflow: hidden;
    background-position: right 0% bottom 82%;
}
.bg_architecture_inner{
    background-color: #ffffffba;
    margin: 8% calc(50% - 35vw) 0 calc(50% - 35vw);
    padding: 0 calc(32vw - 50% + 0px) 3%;
    border-radius: 10px;
}
.bg_recruit{
  background: #ffe6e6;
  margin: 0% calc(50% - 50vw) 0;
  padding: 20px calc(50vw - 50% + 8px) 50px calc(50vw - 50% + 8px);
  width: 100vw;
}

.support_bg{
  background: #d9fff1;
  margin: 5% calc(50% - 50vw) 0;
  padding: 20px calc(50vw - 50% + 8px) 50px calc(50vw - 50% + 8px);
  width: 100vw;
}
.support_bg2{
  background: #ffffff;
  margin: 5% calc(50% - 50vw) 0;
  padding: 20px calc(50vw - 50% + 8px) 50px calc(50vw - 50% + 8px);
  width: 100vw;
}
.text_right{
  margin-left: 50%;
  font-size: 17px;
}
.text_left{
  margin-right: 50%;
  font-size: 17px;
}

.support_table{
    border-collapse: separate;
    width: 750px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  td, th {
    padding: 3px;
  }
  th {
    background: #a5a5a5;
    color: #FFF;
  }
  td{
    background: #fbfbcc;
    padding-right: 35px;
    padding-left: 35px;
    padding-top: 5px;
    padding-bottom: 10px;
  }
  .even {
    background: #fbf8f0;
  }
  .odd {
    background: #fefcf9;
  }


.center_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: -25px;
}
  .center_box p {
  display: inline-block;
  text-align: left;
}

.support_span{
  /* display: inline-block; */
}


  
/*ボタン
---------------------------------------------------------------------------*/
.btn_area {
  text-align: center;
  margin: 5px;
}
.btn_architecture_other_link {
  color: #769e91;
  background: #fff;
  border-radius: 183px;
  margin: 0 3% 3% 3%;
  padding: 0.5rem 2rem;
  display: inline-block;
  letter-spacing: 8px;
  font-size: 1.4rem;
  width: 25vw;
  height: 7vh;
  line-height: 48px;
  font-weight: bold;
}
.btn_architecture_other_link:hover {
  color: #769e91;
}
.btn_2 {
  background: #a5a5a5;
  border-radius: 183px;
  margin: 1%;
  display: inline-block;
  padding: 0.3rem 1.9rem;
  font-size: 100%;
  letter-spacing: 7px;
  color: #fff;
}
.btn_recruit_index_link {
  background: #d43f5b;
  border-radius: 4px;
  margin: 2%;
  display: inline-block;
  font-size: 110%;
  padding: 1rem 2rem;
  color: #fff;
}
.btn_recruit_index_link:hover {
  color: #fff;
}

.btn_recruit {
  background: #d43f5b;
  border-radius: 4px;
  margin: 2%;
  display: inline-block;
  font-size: 110%;
  padding: 1rem 2rem;
  color: #fff;
}
.btn_recruit:hover {
  color: #fff;
}
.btn_dl {
  background: #a29494;
  border-radius: 4px;
  margin: 2%;
  display: inline-block;
  font-size: 110%;
  padding: 1rem 2rem;
  color: #fff;
}
.btn_dl:hover {
  color: #fff;
}
.btn_yoyaku_link {
  color: #ffffff;
  background: #7fa799;
  border-radius: 183px;
  margin: 0 0 1%;
  display: inline-block;
  padding: 0.8em 1.5em;
  letter-spacing: 7px;
  line-height: 1.5em;
  font-weight: bold;
  text-align: center;
  width: 50%;
}
.btn_yoyaku_link:hover {
  background: #f5fffb;
  color: #7fa799;
}
.btn_support_contact {
  color: #ffffff;
  background: #7fa799;
  border-radius: 183px;
  margin: 0 0 1%;
  display: inline-block;
  padding: 0.8em 1.5em;
  letter-spacing: 7px;
  line-height: 1.5em;
  font-weight: bold;
  text-align: center;
  width: 50%;
  margin-top: 40px;
}
.btn_support_contact:hover {
  background: #f5fffb;
  color: #7fa799;
}
.btn_architecture_link {
  background: #8a8082;
  border-radius: 4px;
  margin: 0 auto 2%;
  display: inline-block;
  font-size: 110%;
  padding: 0.5rem 2rem;
  color: #fff;
}
.btn_architecture_link:hover {
  color: #fff;
}
/*その他
---------------------------------------------------------------------------*/
.look {
  background: #fff;
  border: 1px solid #ccc;
  display: inline-block;
  padding: 0px 10px !important;
  border-radius: 4px;
}
p.look {
  margin: 0 3%;
}
.mb15,
.mb1em {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.clear {
  clear: both;
}
.color1,
.color1 a {
  color: #b4b096 !important;
}
.pr {
  font-size: 10px;
}
.wl {
  width: 96%;
}
.ws {
  width: 50%;
}
.c {
  text-align: center !important;
}
.r {
  text-align: right !important;
}
.l {
  text-align: left !important;
}
.big1 {
  font-size: 30px;
}
.mini1 {
  font-size: 11px;
  display: inline-block;
  line-height: 1.5;
}
.sh {
  display: none;
}
.fl {
  float: left;
  width: 35%;
}
.fr {
  float: right;
  width: 57%;
}
li {
  list-style-type: none;
}
line {
  background-image: linear-gradient(transparent 60%, #bcfa89 60%);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 3px;
}

.support_img{
  width: 171px;
  position: relative;
  right: -33px;
  bottom: 31px;
  margin-left: -17px;
}

.support_table_td{
  padding-bottom:0;
  background: #FFF;
  }

/*画面幅1280px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1280px) {
.btn_architecture_other_link {
	width: 30vw;
}
#footer_area {
  padding: 1% 1%;
}
.bg_message_full {
  padding: 4px calc(52vw - 50% + 8px);
}
.bg_service_inner {
  margin: 3% calc(50% - 45vw) 0 calc(50% - 45vw);
}
.bg_architecture_bgimg {
   background-position: right 0% bottom 0%;
}
.bg_architecture_inner {
  margin: 8% calc(50% - 45vw) 0 calc(50% - 45vw);
  padding: 0 calc(50vw - 50% + 0px) 3%;
}
}

@media screen and (max-width: 1090px) {
.support_span{
  /* display: inline-block; */
  font-size: 14.4px;
}
}


/*画面幅1080px以下の設定
}------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1080px) {
#menubar ul li a {
  font-size: 85%;
}
.btn_architecture_other_link {
  width: 36vw;
  line-height: 30px;
}
body {
  font-size: 90%;
}
.contents h4 {
  font-size: 1.5rem;
}
.contents h2 {
  font-size: 27px;
}
#foot_menu {
  height: 22vh;
}
.btn_recruit {
  margin: 10% 2% 2%;
}
}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 900px) {
  .support_table{
    width: 100%;
  }
}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 800px) {
  /*全体の設定
---------------------------------------------------------------------------*/
  .catch_text {
    line-height: 4vh;
    letter-spacing: 0.5rem;
  }
  .box_text {
    font-size: 2vw;
	padding: 0.3em 3em;
    letter-spacing: 0;
    border-radius: 0.3em;
    line-height: 1.3;
	margin: 1% 6%;
  }
  /*ヘッダー
---------------------------------------------------------------------------*/
  /*ヘッダーブロック*/
  header {
    border-bottom: 1px solid #ccc;
	padding-bottom: 0;
  }
  /*ヘッダーブロック（トップページへの追加設定）*/
  .home header {
    border: none;
  }

  /*メインメニュー
---------------------------------------------------------------------------*/
  /*スマホ用メニューブロック全体*/
  #menubar-s {
    overflow: auto;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8); /*背景色*/
    border-top: 1px solid #fff; /*上の線の幅、線種、色*/
    animation-name: frame1; /*冒頭のkeyframesの名前*/
    animation-duration: 0.5s; /*アニメーションの実行時間。0.5秒。*/
    animation-fill-mode: both; /*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
    font-size: 16px; /*文字サイズ*/
  }
  #menubar-s li span {
    margin-left: 20px;
    font-size: 80%;
  }
  /*メニュー１個あたりの設定と、子メニューの見出し。*/
  #menubar-s ul li a,
  #menubar_hdr2 {
    display: block;
    text-decoration: none;
	padding: 10px 10px;
    border-bottom: 1px solid #fff; /*下の線の幅、線種、色*/
    color: #fff; /*文字色*/
  }
  /*PC用メニューを非表示にする*/
  #menubar {
    display: none;
  }

  /*子メニュー
---------------------------------------------------------------------------*/
  /*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
  #menubar_hdr2 {
    padding-left: 60px; /*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/
  }
  /*子メニューメニューブロック全体*/
  #menubar-s2 {
    display: block;
    margin-top: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #fff;
  }
  /*「＞」アイコン設定*/
  #menubar_hdr2.close {
    background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
  }
  /*「＾」アイコン設定*/
  #menubar_hdr2.open {
    background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
  }
  /*子メニュー１個あたりの設定*/
  #menubar-s2 li a {
    border-bottom: 1px solid #fff !important;
    padding: 10px 20px !important;
  }
  #menubar-s2 li:last-child a {
    border-bottom: none !important;
  }

  /*３本バーアイコン設定
---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  #menubar_hdr {
    display: block;
    position: fixed;
    z-index: 100;
    top: 20px; /*上からの配置場所*/
    right: 2%; /*右からの配置場所*/
  }
  /*アイコン共通設定*/
  #menubar_hdr.close,
  #menubar_hdr.open {
    width: 50px; /*幅*/
    height: 50px; /*高さ*/
    border: 1px solid #fff;
  }
  /*三本バーアイコン*/
  #menubar_hdr.close {
    background: #a09e9e url(../images/icon_menu.png) no-repeat center top/50px; /*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
  }
  /*閉じるアイコン*/
  #menubar_hdr.open {
    background: #a09e9e url(../images/icon_menu.png) no-repeat center bottom/50px; /*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
  }

  /*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
  /*fixmenuから折りたたみメニューになるのでリセット。*/
  body.is-fixed-menu .contents {
    margin-top: 0px;
  }
  body.is-fixed .contents {
    margin-top: 0px;
  }

  /*コンテンツ
---------------------------------------------------------------------------*/
  /*h2タグ*/
  .contents h2 {
    margin-bottom: 20px;
  }

  /*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
  /*ボックス内のh4（見出し）タグ*/
  .contents .list-column h4 {
    margin-bottom: 0px;
  }

  /*ヘッダーメニューが固定されなくなるので、再設定。
---------------------------------------------------------------------------*/
  .link {
    margin-top: -30px;
    padding-top: 30px;
  }
  #footer_area {
    display: block;
  }
  /*その他
---------------------------------------------------------------------------*/
  body.s-n .sub,
  body.s-n #footermenu {
    display: none;
  }
  .big1 {
    font-size: 20px;
  }
 
.btn_architecture_other_link {
    width: 40vw;
    line-height: 50px;
    font-size: 1.0rem;
}
#foot_menu {
  display: none;
}
#footer_area address {
  font-size: 95%;
}
body {
  font-size: 77%;
}
.contents h4 {
  font-size: 1.2rem;
}
.contents p {
  padding: 0 0%;
}
.contents h5 {
  line-height: 40px;
  font-size: 20px;
}
#header_area {
  margin-right: 10%;
}
.bg_message_full {
  margin: 0 calc(50% - 50vw) 5% calc(50% - 50vw);
}
.bg_service_inner {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
.bg_architecture_inner {
  margin: 8% calc(50% - 47vw) 0 calc(50% - 47vw);
  padding: 0 calc(50vw - 50% + 0px) 5%;
}
.contents h4{
  padding: 0.3em 1.3em 0;
}
.fr {
    float: right;
    width: 54%;
}
.fl {
    float: left;
    width: 45%;
}

}

/*画面幅848px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 848px) {
  .support_span > br {
    display: none;
  }
  .text_right{
    margin-left: 0;
    margin-top: 15px;
  }
  .text_left{
    margin-right: 0;
    margin-top: 15px;
  }
}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:600px){
#tel {
    display: none;
}
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {


  .support_span{
    margin-top: 20px;
  }
  /*全体の設定
---------------------------------------------------------------------------*/
.home .contents {
    padding: 0px 0 0;
}

  /*コンテンツ
---------------------------------------------------------------------------*/
  /*h2タグ*/
  .contents h2 {
    font-size: 20px;
    width: 80%;
    margin: 0 auto 7%;
	letter-spacing: 0rem;
  }
.contents h2:before,
.contents h2:after {
  width: 1em; /* 線の長さ */
}
  /*h3タグ*/
  .contents h3 {
    margin-bottom: 20px;
    font-size: 20px;
	letter-spacing: 0rem;
  }
  .contents h4 {
    padding: 0.3em 0.5em 0;
      font-size: 1.1rem;
  }
  .contents h4:after{
    left: 0px;
  }
  .contents h6 {
     font-size: 20px;
  }
  .contents section + section {
    margin-top: 30px;
  }

  /*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
  /*ボックス内のボタン（共通）*/
  .btn1 a {
    padding: 5px 10px; /*上下、左右へのボタン内の余白*/
  }

  /*テーブル（ta1）
---------------------------------------------------------------------------*/
  /*ta1設定*/
  .ta1,
  .ta1 td,
  .ta1 th {
    padding: 5px; /*ボックス内の余白*/
  }
  /*ta1の左側ボックス*/
  .ta1 th {
    width: 100px;
  }
  table.table_01 {
	margin-bottom: 0px;
}

table.table_01 th,
table.table_01 td {
	width: 100% !important;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  font-size: 100%;
  padding: 13px;
}

table.table_01 th {
	background-color: #F6F6F6;
}

  /*その他
---------------------------------------------------------------------------*/
  .ws,
  .wl {
    width: 94%;
  }

  .half {
    padding: 5%;
}
  .fl {
    float: none;
    width: 100%;
  }
  .fr {
    float: none;
    width: 100%;
  }
  .big1 {
    font-size: 16px;
  }
  .sh {
    display: block;
  }
  .pc {
    display: none;
  }
  .btn_architecture_other_link {
    width: 100%;
    margin: 0 0 5%;
    line-height: 30px;
}
.btn_architecture_link{
  margin: 5% 0;
}
.btn_yoyaku_link {
  width: 100%; 
}
.btn_support_contact{
  width: 100%; 
}
ul {
  width: 95%;
  margin: 0 auto;
}
.company_l {
  border: none;
  width: 91%;
}
.company_r {
  border: none;
  width: 91%;
}
.access-container{
  width: 95%;
  max-width: 480px;
  margin: 0 auto;
}


}

 /*改行タグ
---------------------------------------------------------------------------*/
@media screen and (min-width:800px){
  .br-tb {
    display: none;
  }
}
@media screen and (min-width:640px){
  .br-sp {
    display: none;
  }
}

/* サービスのおおまかな流れ(レスポンシブ)
-------------------------------------------------------------------*/
@media screen and (max-width: 460px) {
  .center_box  {
    margin-bottom: 0px;
  }
  .support_img{
    width: 110px;
    bottom: 18px;
    margin-left: -31px;
  }

}