@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
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,
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,
main,
menu,
nav.gnav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav.gnav,
section {
  display: block
}

ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent
}

del {
  text-decoration: line-through
}

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 #ccc;
  margin: 1em 0;
  padding: 0
}

input,
select {
  vertical-align: middle
}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
  font-size: 15px;
  font-family: 'Noto Sans Japanese', 'Open Sans', sans-serif, Arial, Helvetica;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  background: #fff;
  color: #151a1f;
}

#contents {
  width: 1000px;
  margin: 0 auto;
}

header+#contents {
  padding-top: 50px;
}

.inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

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

a:hover {
  color: #403732;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1 {
  font-size: 28px;
}

h2 {
  margin: 0px auto 60px;
  font-size: 50px;
  font-family: 'Jacques Francois', serif;
  text-transform: capitalize;
  letter-spacing: .08em;
  line-height: 1.2;
  position: relative;
  ;
}

h2 span {
  font-size: 12px;
  font-family: 'Noto Sans Japanese', 'Open Sans', sans-serif, Arial, Helvetica;
}

h2::after {
  position: absolute;
  content: "";
  width: 53px;
  height: 6px;
  background: #ed3833;
  bottom: -22px;
  left: 0;
}

h2.blue::after {
  background: #2045f5;
}

h2.yellow::after {
  background: #ffc107;
}

/* 日本語のみ */
h2.headline_ja {
  font-family: 'Mplus';
  font-size: 30px;
}

h3 {
  margin-bottom: 15px;
  font-size: 20px;
  position: relative;
  font-family: 'Mplus';
  letter-spacing: .1em;
}

h4 {
  margin-top: 0.25em;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 18px;
  border-bottom: 1px dotted #ccc;
}

h4 span {
  font-family: 'Jacques Francois', serif;
  font-size: 12px;
  padding-left: 10px;
}

h5 {
  margin-bottom: 0.25em;
  padding-left: 25px;
  font-size: 16px;
  background: url('../images/bg_arrow_black.png') 0 50% no-repeat;
}

h6 {
  margin-bottom: 0.25em;
  padding-left: 5px;
  font-size: 16px;
  font-weight: bold;
}

p {
  margin: 0 0 1em 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

em {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

pre {
  margin: 1em 0;
  padding: 1em;
}

small {
  font-size: smaller;
}

blockquote {
  margin-bottom: 1em;
  padding: 1em;
  border: 1px dotted #ddd;
  border-left: 5px solid #ddd;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

svg {
  vertical-align: middle;
  margin-right: 5px;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media screen and (max-width:768px) {

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

  body {
    font-size: 14px;
  }

  #contents,
  .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  h2 {
    font-size: 28px;
  }
}

/*================================================
 *  ボタン
 ================================================*/
.btnArea {
  text-align: center;
  margin: 35px auto 0;
  position: relative;
}

.btnArea .button {
  border-bottom: 1px solid #333;
  padding: 0 30px 5px 30px;
  position: relative;
}

.btnArea .button::after {
  content: '';
  display: block;
  position: absolute;
  height: 1px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: #333;
  transition: width 0.3s ease-in-out;
}

.btnArea .button:hover::after {
  width: 100%;
}

@media screen and (max-width:768px) {
  .btnArea .button {
    padding: 0 20px 5px 20px;
  }
}



/* =======================================================
* header
* ======================================================= */
header h1 {
  font-size: 40px;
  position: fixed;
  top: 30px;
  left: 30px;
  font-family: 'Jacques Francois', serif;
  padding: 10px 0;
  white-space: nowrap;
  z-index: 999;
}

header h1 img {
  vertical-align: baseline;
  padding-right: 5px;
}

header h1::before {
  position: absolute;
  content: "神戸の自立訓練（生活訓練）事業所";
  top: 5px;
  left: 50px;
  font-size: 10px;
  letter-spacing: .15em;
  font-family: 'Noto Sans Japanese', 'Open Sans', sans-serif, Arial, Helvetica;
}

#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 99;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 5%;
  box-sizing: border-box;
}

/* ナビゲーション左側 */
#g-nav.panelactive #g-nav-list .bg_list {
  height: 100vh;
  display: flex;
  width: 35%;
  text-align: center;
}

#g-nav.panelactive #g-nav-list .bg_list div {
  margin: auto 20px;
}

#g-nav.panelactive #g-nav-list .bg_list_line a {
  background: #06182d;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  letter-spacing: .1em;
  font-family: 'Mplus';
}

#g-nav.panelactive #g-nav-list .bg_list_line a span {
  font-size: 11px;
  display: block;
}

/* SPのみ */
.snsSP {
  display: none;
}


/*ナビゲーション右側*/
#g-nav .bg_menu {
  display: none;
}

#g-nav.panelactive .bg_menu {
  width: 60%;
  display: grid;
  gap: 0px;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}


/*リストのレイアウト設定*/
#g-nav li {
  position: relative;
}

#g-nav li a {
  padding: 10px 0;
  display: block;
  letter-spacing: 0.15em;
  color: #151a1f;
  line-height: 1.8;
  font-size: 12px;
  font-family: 'Jacques Francois', serif;
}

#g-nav li span {
  font-size: 16px;
  font-weight: bold;
  display: block;
  font-family: 'Mplus';
}

.bg_header {
  position: absolute;
  bottom: 0;
  left: 0;
}


/*========= ボタンのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 999;
  cursor: pointer;
  width: 60px;
  height: 60px;
  top: 30px;
  right: 30px;
  background: #fff;
  border: 3px solid #151a1f;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 15px;
  height: 2px;
  width: 50%;
  background: #151a1f;
}

.openbtn span:nth-of-type(1) {
  top: 19px;
}

.openbtn span:nth-of-type(2) {
  top: 27px;
}

.openbtn span:nth-of-type(2)::after {
  content: "Menu";
  position: absolute;
  top: 9px;
  left: -2px;
  color: #151a1f;
  font-size: 12px;
  letter-spacing: .1em;
  font-family: 'Jacques Francois', serif;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background: #151a1f;
}

.openbtn.active span:nth-of-type(2) {
  top: 29px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background: #151a1f;
}

.openbtn.active span:nth-of-type(2)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 7px;
  left: 13px;
}

@media screen and (max-width:900px) {
  header h1 {
    font-size: 25px;
    padding: 0;
    line-height: 70px;
    top: 3px;
    left: 20px
  }

  header h1::before {
    font-size: 8px;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    left: 17px;
    top: -16px;
    height: 10px;
  }

  header h1 img {
    width: 30px;
  }

  header.changeNav h1::after {
    position: absolute;
    content: "";
    width: 200%;
    height: 100%;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    top: -10px;
    left: -20px;
    z-index: -1;
  }

  #g-nav.panelactive #g-nav-list {
    display: block;
    padding: 0;
  }

  #g-nav.panelactive .bg_menu {
    width: 100%;
    padding: 80px 20px 0 30px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  #g-nav li a {
    font-size: 10px;
    padding: 9px 0;
    position: relative;
  }

  #g-nav li span {
    font-size: 12px;
    display: inline;
    margin-right: 7px;
    font-weight: bold;
  }

  #g-nav li a::before {
    position: absolute;
    content: "-";
    top: 10px;
    left: -11px;
  }

  #g-nav.panelactive #g-nav-list .bg_list {
    width: 100%;
    height: auto;
  }

  #g-nav.panelactive #g-nav-list .bg_list div {
    margin: 0 auto;
    width: 90%;
  }

  #g-nav.panelactive #g-nav-list .bg_list_line a {
    width: 100%;
    margin: 30px 0;
    padding: 15px 0;
    font-size: 14px;
    display: block;
  }


  /* ボタン */
  .openbtn,
  .openbtn.changeColor {
    width: 45px;
    height: 45px;
    top: 10px;
    right: 13px;
    border: 2px solid #151a1f;
  }

  .openbtn span {
    left: 11px;
    height: 1px;
  }

  .openbtn span:nth-of-type(1) {
    top: 10px;
  }

  .openbtn span:nth-of-type(2) {
    top: 17px;
  }

  .openbtn span:nth-of-type(2)::after {
    top: 5px;
    left: -4px;
    font-size: 10px;
  }

  /* CLOSE */
  .openbtn.active span:nth-of-type(1) {
    left: 10px;
    top: 9px;
  }

  .openbtn.active span:nth-of-type(2) {
    left: 11px;
    top: 21px;
  }

  .openbtn.active span:nth-of-type(2)::after {
    top: 5px;
    left: 8px;
  }
}




/*================================================
 *  ヘッダー
 ================================================*/
/* header {
	position: fixed;
	width: 100%;
	z-index: 100;
  height: 90px;
  padding-top: 30px;
}
header .inner {
  max-width: 96%;
}
header .inner .nav-left {
  width: 28%;
}

header h1 {
	font-size: 40px;
  position: relative;
  font-family: 'Jacques Francois', serif;
  padding: 10px 0;
  white-space: nowrap;
}
header h1 img {
  vertical-align: baseline;
  padding-right: 5px;
}
header h1::before {
  position: absolute;
  content: "神戸の自立訓練（生活訓練）事業所";
  top: 5px;
  left: 50px;
  font-size: 10px;
  letter-spacing: .15em;
  font-family: 'Noto Sans Japanese','Open Sans', sans-serif, Arial, Helvetica;
}
header.changeNav {
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-top: 10px;
}

@media screen and (max-width:1100px) {
  header h1 {
    font-size: 30px;
  }
  header h1 img {
    width: 10%;
  }
  header h1::before {
    left: 0;
  }

}
@media screen and (max-width:768px) {
  header,
  header.changeNav {
    height: 60px;
    padding-top: 0;
    top: 0;
	}
	header .inner {
		width: 100%;
	}
  header .inner .nav-left {
    width: 100%;
  }
	header h1 {
		font-size: 25px;
    padding: 0;
    line-height: 70px;
  }
  header h1 img {
    width: 9%;
  }
  header h1::before {
    font-size: 8px;
    -webkit-transform:scale(0.8);
    -moz-transform:scale(0.8);
    -ms-transform:scale(0.8);
    -o-transform:scale(0.8);
    transform:scale(0.8);
    left: 0px;
    top: -22px;
    width: 100%;
    z-index: -1;
  }
} */

/*================================================
 *  グローバルナビゲーション
 ================================================*/
/* header .inner .nav-right {
  width: 72%;
  text-align: right;
}
	nav.gnav ul {
		margin: 0;
		padding: 0;
	}
	nav.gnav ul li {
		display: inline-block;
		margin: 26px 10px;
		text-align: center;
    line-height: 1.7;
    font-family: 'Jacques Francois', serif;
	}
	nav.gnav ul li a {
		display: block;
		font-size: 12px;
		letter-spacing: 0.15em;
	}
	nav.gnav ul li a span {
    font-family: 'Noto Sans Japanese','Open Sans', sans-serif, Arial, Helvetica;
    font-size: 13px;
  }
  nav.gnav ul li a:hover {
    opacity: .7;
  }

@media screen and (max-width:768px) {
	nav.global-nav {
	    position: fixed;
	    right: -320px;
	    top: 0;
	    width: 270px;
	    height: 100vh;
	    background: #fff;
	    transition: all .2s ease-out;
	    z-index: 200;
	    overflow-y: auto;
      padding: 40px 10px;
      text-align: center;
	  }
	  nav.gnav ul li {
      display: block;
      float: none;
      padding: 10px 0;
      margin: 10px 13px;
      border-bottom: 1px dotted #ddd;
	  }
	  nav.gnav ul li a span {
      font-size: 13px;
    }
	  .hamburger {
	    position: absolute;
	    right: 0;
	    top: 3px;
	    width: 40px;
	    height: 40px; 
	    cursor: pointer;
	    z-index: 300;
	  }
	  .global-nav__list {
	    margin: 0;
	    padding: 0;
	    list-style: none;
	  }
	  .global-nav__item a {
	    display: block;
	    padding: 8px 0;
	    border-bottom: 1px solid #eee;
	    line-height: 1.3;
	  }
	  .global-nav__item a:hover {
	    background-color: #eee;
	  }
	  .hamburger__line {
	    position: absolute;
	    left: -5px;
	    width: 25px;
	    height: 2px;
	    background-color: #333;
	    transition: all .2s ease-out;
	  }
	  .hamburger__line--1 {
	    top: 18px;
	  }
	  .hamburger__line--2 {
	    top: 26px;
	  }
	  .hamburger__line--3 {
	    top: 33px;
	  }
	  .black-bg {
	    position: fixed;
	    left: 0;
	    top: 0;
	    width: 100vw;
	    height: 100vh;
	    z-index: 100;
	    background-color: #000;
	    opacity: 0;
	    visibility: hidden;
	    transition: all .6s;
	    cursor: pointer;
	  }
	  .nav-open .global-nav {
	    right: 0;
	  }
	  .nav-open .black-bg {
	    opacity: .8;
	    visibility: visible;
	  }
	  .nav-open .hamburger__line--1 {
	    transform: rotate(45deg);
	    top: 20px;
	  }
	  .nav-open .hamburger__line--2 {
	    width: 0;
	    left: 50%;
	  }
	  .nav-open .hamburger__line--3 {
	    transform: rotate(-45deg);
	    top: 20px;
	  }
} */


/*================================================
 *  コンテンツ
 ================================================*/
section {
  padding-bottom: 4rem;
  position: relative;
}

section.section {
  padding-top: 4rem;
}

/* ここから雲 */
.cloud {
  position: absolute;
  z-index: -1;
}

.cloud01 {
  top: 20%;
  left: 0;
}

.cloud02 {
  bottom: 15%;
  right: -5%;
}

.cloud03 {
  bottom: 0;
  left: 0%;
}

.cloud04 {
  bottom: -30%;
  right: 5%;
}

.cloud05 {
  bottom: 15%;
  right: 0;
}

.airplane {
  bottom: 40%;
  right: 10%;
}

.airplane img {
  transform: rotate(-25deg);
}

@media screen and (max-width:768px) {
  section {
    padding-bottom: 3.5em;
  }

  section.section {
    padding-top: 2rem;
  }

  .airplane {
    bottom: 70%;
    right: 0;
    width: 150%;
  }

  .cloud01 {
    top: 10%;
    left: auto;
    right: 0;
  }

  .cloud02 {
    bottom: 20%;
    right: 0px;
    width: 50%;
  }

  .cloud03 {
    bottom: -20%;
  }

  .cloud05 {
    bottom: 40%;
  }
}


/*================================================
 *  concept
 ================================================*/
#concept {
  padding-top: 5rem;
}

#concept .catch_txt {
  text-align: center;
  line-height: 2.4;
  font-size: 16px;
}

#concept .catch_txt .catch_txt__ttl {
  font-size: 30px;
  font-weight: bold;
  font-family: 'Mplus';
  color: #265eab;
  line-height: 1.2;
  letter-spacing: .1em;
}

#concept .catch_txt .catch_txt__ttl span {
  font-size: 18px;
}

#concept .top_apply {
  text-align: center;
  margin-top: 60px;
}

#concept .top_apply a {
  border: 1px solid #06182d;
  color: #fff;
  background-color: #06182d;
  padding: 15px 50px;
  font-size: 15px;
  border-radius: 4px;
  letter-spacing: .1em;
}

#concept .top_apply a:hover {
  color: #06182d;
  background-color: #fff;
}

#concept .top_apply .caption {
  color: #555;
  margin-top: 20px;
}

@media screen and (max-width:768px) {
  #concept {
    padding-top: 4rem;
  }

  #concept .catch_txt {
    text-align: left;
    line-height: 2.2;
    font-size: 15px;
  }

  #concept .catch_txt .catch_txt__ttl {
    font-size: 23px;
    line-height: 1.5;
  }

  #concept .catch_txt .catch_txt__ttl span {
    font-size: 15px;
  }

  #concept .top_apply a {
    padding: 12px 20px;
    font-size: 13px;
  }

  #concept .top_apply .caption {
    text-align: left;
  }

}

/*================================================
 *  training/working
 ================================================*/
.txtBox {
  padding: 30px;
  box-sizing: border-box;
  line-height: 2;
}

/* タイトルのバー */
#training h2:after {
  background: #ffc107;
}

#working h2:after {
  background: #2045f5;
}

/* 画像の配置 */
#training,
#working {
  position: relative;
}

#training .imgBox {
  background: url(../images/img-support.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 450px;
}

#working .imgBox {
  background: url(../images/img-work.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 450px;
}

/* 背景色 */
#training::before,
#working::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

#training::before {
  background: #fdfced;
}

#working::before {
  background: #dee2f5;
}

@media screen and (max-width:768px) {
  .txtBox {
    padding: 0 20px 60px 20px;
  }

  #training,
  #working {
    padding-bottom: 0;
  }

  #training .imgBox,
  #working .imgBox {
    height: 250px;
  }
}


/*================================================
 * news
 ================================================*/
#news .infoArea {
  width: 55%;
}

#news .infoArea iframe {
  width: 100%;
  height: 600px;
}

#news .twitterArea {
  width: 40%;
  margin-bottom: 70px;
}

#news .twitterArea iframe {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

#news .twitterArea .twitterArea_btn img {
  width: 50%;
  margin: 0 auto;
}

.banner {
  margin-top: 30px;
}

.banner img {
  border: 1px solid #04172c;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.3);
}

.banner a:hover {
  opacity: .8;
}

@media screen and (max-width:768px) {
  #news .infoArea {
    width: 100%;
    margin-bottom: 60px;
  }

  #news .infoArea iframe {
    height: 230px;
  }

  #news .twitterArea {
    width: 100%;
  }

  .banner img {
    width: 70%;
  }
}



/*================================================
 * 下層ページのタイトル
 ================================================*/
.mainVis {
  position: relative;
  height: 400px;
  overflow: hidden;
}

@media screen and (max-width:768px) {
  .mainVis {
    height: 220px;
    margin-top: 60px;
  }
}



/*================================================
 *  フッター
 ================================================*/
.bg_footer {
  background: url(../images/bg-footer.png);
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
  height: 90px;
  margin-top: 70px;
}

footer {
  background-color: #06182d;
  padding: 30px 20px 10px 20px;
}

footer .inner {
  max-width: 1200px;
  padding: 0;
}

/* footer_left */
.footer_left {
  width: 33%;
}

.footer_left .company {
  margin-bottom: 10px;
}

.footer_left .company a {
  font-family: 'Jacques Francois', serif;
  font-size: 23px;
  letter-spacing: .06em;
  color: #fff;
}

.footer_left .company img {
  width: 6%;
  vertical-align: baseline;
  margin-right: 7px;
  background-color: #fff;
}

.footer_left .adrress,
.footer_left .number,
.footer_left .number a {
  font-size: 13px;
  margin-bottom: 5px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, 0.8);
}

/* footer_right */
.footer_right {
  width: 67%;
}

.fnav {
  text-align: center;
}

.fnav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 8px;
  font-size: 13px;
  letter-spacing: .1em;
}

.fnav ul li a {
  color: rgba(255, 255, 255, 0.9);
}

.fnav ul li a:hover {
  opacity: .7;
}

.fnav_apply {
  margin-top: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.fnav_apply a {
  border: 1px solid #fff;
  color: #fff;
  background-color: #06182d;
  padding: 12px 30px;
  font-size: 14px;
  font-family: 'Mplus';
  border-radius: 4px;
  letter-spacing: .1em;
  ;
}

.fnav_apply a:hover {
  color: #06182d;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.youtube {
  text-align: center;
  margin-top: 30px;
}

.copyright {
  padding: 10px 0 25px 0;
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width:768px) {
  .bg_footer {
    height: 70px;
    margin-top: 50px;
  }

  footer {
    padding: 10px 20px 10px 20px;
  }

  .footer_left {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }

  .footer_left .company {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .footer_left .adrress,
  .footer_left .number,
  .footer_left .number a {
    font-size: 12px;
  }

  .footer_right {
    width: 100%;
  }

  .fnav ul li {
    position: relative;
    display: block;
    text-align: left;
    border-bottom: 1px dotted #586069;
    padding: 0px 0 8px 18px;
  }

  .fnav ul li::before {
    position: absolute;
    content: "-";
    top: 0;
    left: 5px;
    color: rgba(255, 255, 255, 0.9);
  }

  .fnav_apply {
    margin-top: 50px;
    margin-bottom: 0;
  }

  .fnav_apply a {
    font-size: 13px;
  }

  .youtube {
    margin-top: 20px;
  }

  .youtube img {
    width: 70px;
  }

  .copyright {
    text-align: center;
    padding: 0px 0 5px 0;
  }

}


/* ==================================================
	preloader
====================================================*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1040;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/loader.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 15px;
  cursor: pointer;
  z-index: 9;
}

.arrow-up {
  width: 20px;
  height: 20px;
  border: 1px solid;
  border-color: #9a9898 #9a9898 transparent transparent;
  transform: rotate(-45deg);
}