@charset "utf-8";
body{
  position: relative;
  margin: 0;
  z-index: -99;
  font-family:  "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
}

body{
	overflow-x: hidden;
}
li{
  list-style: none;
}
a{
  text-decoration: none;
}
h1{
  top: -22px;
  position: relative;
  width: 359px;
  left: 2%;
}
h1 img{
  width: 100%;
}
header{
  position: absolute;
  z-index: 1;
  width: 100%;
}
#content{
  position: relative;
  top: 0;
  width: 100%;
  z-index: -1;
}
#content img{
  width: 100%;
}




.news_area{
  background: #fff;
}
.news_area .inner {
  width: 1040px;
  padding: 40px 20px;
  margin: 0 auto;
  display: flex;
}
.news_area .inner h2 {
  width: 90px;
  white-space: nowrap;
}
.news_area dl {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 20px 10px 0;
}
.news_area dl dt {
  width: 140px;
}
.news_area dl dd {
  margin-left: 0;
  width: 560px;
  padding-bottom: 15px;
}
#scroll {
  position: relative;
  max-width: 750px;
  height: 150px;
  margin-left: 30px;
  padding-right: 30px;
}
.scrollInner{
  font-size: 14px;
}
.section_title a{
	color: #000;
}
.scrollInner a{
  color: #222;
}
.ps {
  overflow: auto;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
.news_area .more {
  margin-left: auto;
  width: 90px;
  white-space: nowrap;
}
.news_area .inner h2:after {
  content: "";
  height: 28px;
  border-bottom: 2px solid #ed0e0e;
  display: inline-block;
  margin-left: 15px;
  position: relative;
  top: 4px;
}
.more a{
	color: #000;
}


.sp{
  display: none !important;
}
.pc{
  display: block;
}


.txt_area{
  padding: 50px 0;
}
.txt_area::before {
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100vw;
  height:100vh;
  background: url(../images/main_bg.jpg) no-repeat;
  -webkit-background-size:cover;
  background-size:cover;
  content:"";
}
h2{
  text-align: center;
}
.txt_area h2 {
  font-family: serif;
  text-align: center;
  font-weight: bold;
  font-size: 31px;
  margin-bottom: 56px;
}
.title_txt{
  background: rgba(255,255,255,0.95);
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-evenly;
  padding: 30px 0;
}
.left_area{
  width: 400px;
}
.right_area{
  width: 400px;
  text-align: center;
}
.sns_area{
  display: flex;
  justify-content: space-evenly;
  width: 460px;
  margin: 67px auto 20px;
}
.sns_area div{
  width: 60px;
}

footer{
  background: #000;
}
footer a{
  color: #fff;
}
footer .inner{
  display: flex;
  width: 1100px;
  margin: 0 auto;
}
.ft_logo{
	width: 250px;
    margin-top: 47px;
}
.ft_logo img{
	width: 100%;
}
.list{
	padding-top: 10px;
	padding-left: 87px;
}
.list li{
	margin-bottom: 10px;
}
.corp{
	padding-top: 10px;
	padding-left: 50px;
}
.corp li{
	margin-bottom: 10px;
}
.adjust_list{
	margin-left: 15px;
}
.copyright{
	display: flex;
	color: #fff;
	border-top: solid 1px #fff;
}
.first{
	margin: 10px 0;
    padding-left: 36px;
}
.second{
	margin: 10px auto;
}
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 14px;
	right: 16px;
	/* 最前面に */
	z-index: 10;
	/* ボタンの大きさ  */
	width: 41px;
	height: 48px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 4px;
	/* バーガー線の色 */
	background-color: #000;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-13px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(13px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #000;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
nav{
  width: 1000px;
}
.menu {
	/* メニューを縦に */
	display: flex;
	/* メニューの位置マイナス指定で画面外に */
	right: -70%;
	width: 70%;
	height: 100vh;
	color: #efefef;
	transition: .3s;
  font-size: 14px;
}

.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
  margin-left: 33px;
}

.menu-list a{
  color: #fff;
}
.menu-list a:hover{
	opacity: 0.9;
}
.sp_nav{
  display: flex;
  top: 0;
  position: absolute;
  right: 9%;
  margin-top: 30px;
  font-weight: bold;
}
.sp01 a{
  display: block;
  padding: 5px 10px;
  background: #fff;
  color: #0163ae;
}
.sp02 a{
  display: block;
  padding: 5px 10px;
  background: #ffc014;
  color: #fff;
}
.sp02{
  margin-left: 10px;
}

/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	position: absolute;
	right: 0;
  top: 0;
}
/* 768px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 768px) {
	.btn {
		display: none;
	}
	.menu {
    position: absolute;
		/* メニューを横に */
		display: flex;
		flex-direction: row;
		top: 65px;
    right: 9%;
    width: 30%;
    height: 36px;
    padding: 0;
    min-width: 597px;
	}
  .main_menu{
    position: relative;
  }
  .sp01 a:hover{
	opacity: 0.9;
  }
  .sp02 a:hover{
	opacity: 0.9;
  }
}
@media screen and (max-width: 768px) {
	.menu {
		/* メニューを横に */
		display: none;
	}
  .menu.open{
    display: block;
    width: 100%;
    background: #fff;
    margin-top: 0;
    padding-top: 83px;
	position: fixed;
  }
  .menu-list {
    margin-left: 0;
    text-align: center;
    font-size: 4vw;
    margin-bottom: 26px;
}
.menu-list a{
	color: #000;
	width: 60%;
  padding-bottom: 7px;
  border-bottom: solid 1px;
}
.ex_menu-list a{
	display: block;
	margin: 0 auto;
  color: #000;
	padding: 0 0 7px;
}
}
/**************** ここまで、メニューのスタイリング ****************/

/**************** 富澤追加分****************/
#SNS{
	width:80%;
	margin: 0 auto;
	max-width: 900px;
	margin-top: 20px;
	 display: flex;
	
}


/**************** 富澤追加分終了 ****************/
/*==========================================================================================================
 SP Only
==========================================================================================================*/
@media screen and (max-width: 767px){
  body{
    overflow-x: hidden;
	font-size: 3vw;
  }
  .sp{
    display: block !important;
  }
  .pc{
    display: none;
  }
  header{

  }
  h1 {
    top: -22px;
    position: relative;
    width: 210px;
  }
  .news_area{
    background: #fff;
  }
  .news_area .inner {
    display: block;
	width: auto;
    padding: 5vw;
  }
  .news_area .inner h2:after{
		display: none;
  }
  .news_area .inner h2 {
	text-align: left;
    border-bottom: 1px solid #6F43D6;
    width: 100%;
	margin: 0;
  }
  .section_title {
		font-size: 4.5vw;
  }
  .section_title a {
    display: inline-block;
    margin-left: auto;
    font-size: 3vw;
    float: right;
    font-weight: normal;
  }
  #scroll{
	margin-left: 0;
	width: 93%;
  }
  .news_area dl {
	margin-top: 0;
	font-size: 12px;
	line-height: 1.5;
  }
  .left_area{
    width: 100%;
  }
  .txt_area{
    background: none;
    padding: 50px 0;
  }
  .txt_area::before {
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100vw;
    height:100vh;
    background: url(../images/main_bg.jpg) no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
    content:"";
  }
  .txt_area h2{
	font-size: 4.5vw;
	margin-bottom: 36px;
  }
  .title_txt{
	display: block;
	padding: 0 0 30px;
  }
  .right_area{
    width: 100%;
  }
  .right_area p{
	padding: 0 10px;
  }
  .sns_area{
    width: 100%;
  }
  footer{
	padding-bottom: 0;
  }
  footer .inner{
    width: 100%;
	display: flex;
  }
  .ft_logo{
	width: 100%;
  }
  .ft_logo img{
	width: 100%;
  }
  .corp{
	padding-left: 57px;
	margin-bottom: 35px;
  }
  .ft_logo{
	width: 90%;
	margin:  0 auto;
  }
  .list{
	padding-left: 5%;
  }
  .list ul{
    padding-left: 0;
  }
  .corp{
	padding-left: 5%;
  }
  .corp ul{
    padding-left: 0;
  }
  .ft_logo{
	width: 50%;
	margin-bottom: 5%;
  }
}