@charset "UTF-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1.2em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
  height: auto;
}
a,
a:link {
	color: #0B2E3E;
	text-decoration: none;
}
a:visited {
	color: #0B2E3E;
}
a:hover {
	color: #0B2E3E;
  opacity: 0.7;
}
a:active {
	color: #0B2E3E;
}
.en01 {
	font-family: 'Open Sans Condensed', sans-serif !important;
}

.sp {
  display: none;
}

@media screen and (max-width:960px) {
  .pc {
    display: none;
    pointer-events: none;
  }
  
  .sp {
    display: block;
  }
}

/*共通設定*/
h1 {
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0B2E3E;
}

.main-title span {
  font-size: 2.0rem;
  font-weight: 700;
  color: #0B2E3E;
  vertical-align: baseline;
}



@media screen and (max-width:960px) {
  h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .main-title span {
    font-size: 1.6rem;
  }
  
  
}

/* ヘッダー*/
header {
  position: absolute;
  width: 100%;
  height: 71px;
  top: 0;
  margin: 0 auto;
  background: #FFF;
}

.header-area {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 95%;
  margin: 0 auto;
  padding: 12px 0 0 0;
}



.title {
  max-width: 389px;
}


.menu-item {
  list-style: none;
  display: inline-block;
  line-height: 20px;
  text-align: center;
  position: relative;
  padding: 20px 0;
}

.menu-item:not(:last-child) {
  width: 150px;
}

.menu-item:last-of-type a {
  background: #2DB9F9;
  border-radius: 20px;
  padding: 12px 16px;
}


.menu-item a {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 200%;
  color: #0B2E3E;

}

.menu-item:last-of-type a {
  color: #FFF;
}

.menu-item img {
  width: 13px;
  height: auto;
  margin-left: 7px;
  padding-top: 6px;
}

#drawer_toggle {
  display: none;
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが2階層以上ある場合の記述 */
/* ---------------------------------- */
@media screen and (min-width:961px) {
  .menu-item:hover > ul {
    display: block;         /* ★マウスポインタが載っている項目の内部にあるリストを表示する */
 }
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */

.menu-item ul {
   margin: 0;         /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0;        /* ★サブメニュー内側の余白(ゼロ) */
   display: none;       /* ★標準では非表示にする */
   position: absolute;  /* ★絶対配置にする */
   top:71px;
   z-index: 2;
   filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}



/* -------------------------------- */
/* ▼サブメニュー(以降の)項目の装飾 */
/* -------------------------------- */


.menu-item ul li {
   width: 150px;               /* サブメニュー1項目の横幅(135px) */
   font-size: 1.4rem;
   background: #FFF;
}

.menu-item .menu-service li {
  width: 210px;               /* サブメニュー1項目の横幅(135px) */

}


.menu-item ul li a:hover {
  background: #F2FBFF;
  color: #00276A;
  /*border-radius: 30px;*/
  opacity: 1;
  width: 100%;
}

.menu-item ul li {
   line-height: 50px;   /* サブメニュー1項目の高さ(35px) */
   text-align: left;    /* 文字列の配置(左寄せ) */
   /*padding: 5px;   文字列前方の余白(5px) */
   font-weight: normal; /* 太字にはしない */
  color: #0B2E3E;
  text-align: center;
  font-weight: 600;
}

.menu-item ul li a {
  display: inline-block;
  width: 130px;
  padding: 5px;
}

.menu-item .menu-service li a {
  width: 100%;
}


.menu-item ul::before {
  position: absolute;
  top: -25px;
  left: 100px;
  content: '';
  display: block;
  width: 0;
  border-top: 14px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 10px solid transparent;
  border-bottom-color: #fff;
  z-index: 0;
}

.menu-item .menu-service::before {
  left: 120px
}

.plus {
  display: none;
}

/* ----------------------------------- */
/* ▼3階層目以降(孫メニュー以降)の装飾 */   /* ※下ではなく横(右)に表示します。 */
/* ----------------------------------- */
/*ul.ddmenu ul ul {
   margin: 0px;          ★サブメニュー外側の余白(ゼロ) */
 /*  padding: 0px;         ★サブメニュー内側の余白(ゼロ) */
 /*  display: none;        ★標準では非表示にする */
 /*  position: absolute;   ★絶対配置にする */
 /*  top: -1px;            1pxだけ上方向にずらす(※上に1pxの枠線を引いている場合) */
 /*  left: 100%;           ★基準位置からの距離を親ボックスの幅100％にする */
 /*  border-left: 1px solid pink;  左側に引く枠線(ピンク色で1pxの実線) 
}*/


/* ヘッダー レスポンシブ対応*/
@media screen and (max-width:1240px) {
  .title {
    max-width: 300px;
  }

  .header-area {
    width: 98%;
  }  

  .menu-item:not(:last-child) {
    width: 110px;
  }

  .menu-item ul::before {
    left: 80px;
  }
  
  .menu-item .menu-service::before {
    left: 100px
  }
}

@media screen and (max-width:960px) {
  .menu-item ul{
    margin: 0;
    padding: 0;
    position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;
    
    display: none;
    transition:none;
    filter: none;
  }

  .menu-item ul li {
    width: 100%;               
    font-size: 1.4rem;
    background: #FFF;
 }

 .menu-item .menu-service li {
  width: 100%;
}

 .menu-item ul li a {
  display: inline-block;
  width: 100%;
  padding: 5px 40px;
  border: none;
 
}

.menu-item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  line-height: 175%;
  width: 100%;
  text-align: left;
  padding: 20px 50px 20px 5%;
  border-top: #000 solid 1px;
  z-index: 1;
  background: transparent;
}

.plus{
  display: block;
  position: absolute;
  width: 42px;
  height: 42px;
  background: url(../img/add.png) no-repeat center center/30px auto;
  right: 8px;
  top: 0.3em;
  z-index: 10000;
}
.plus_after {
  background: url(../img/add_after.png) no-repeat center center/30px auto;
}
  header {
      position: fixed;
      width: 100%;
      top: 0;
      margin: 0 auto;
      z-index: 9995;
      height: 71px;
  }
  
  
  .header-area {
      display: flex;
      align-items: center;
      width: 95%;
      margin: 0 auto;
      padding: auto 0;
      z-index: 9996;
      gap: 0;
  }


  .nav {
      box-sizing: border-box;
      position:fixed;
      top: 60px;
      display: none;
      width: 100%;
      height: 100vh;
      background: #fff;
      z-index: 9999;
      left: 0;
      padding: 20px 0 80px;
      overflow: scroll;
  }

  .nav::-webkit-scrollbar{
    display: none;
  }


  .menu-group {
      position: absolute;
      flex-direction: column;
      gap: 24px;
      width: 100%;
      padding-bottom: 200px;
  }
  .menu-item {
      list-style: none;
      display: block;
      padding: 0;
      width: initial !important;

  }

  .menu-item:last-of-type a {
    border-radius: 0;
    padding: 20px 0;
    text-align: center;
    border: none;
  }


  
  .menu-item:nth-child(4) {
    border-bottom: #000 solid 1px;
    margin-bottom: 20px;
  }

  #drawer_toggle {
      z-index: 200;
      box-sizing: border-box;
      top: 14px;
      right: 18px;
      display: inline-block;
      width: 32px;
      height: 32px;
  }

  #drawer_toggle span {
      position: absolute;
      display: inline-block;
      width: 24px;
      height: 3px;
      border-radius: 2px;
      background-color: #242323;
      vertical-align: bottom;
      margin-top: 12px;
  }

  #drawer_toggle span:nth-child(2) {
      margin-top: 20px;
  }

  #drawer_toggle span:last-child {
      margin-top: 28px;
  }

  #drawer_toggle.open span {
      position: absolute;
      top: 35px;
      width: 24px;
      margin: 0 8px 0 0;
  }

  #drawer_toggle.open span:first-child {
      transform: rotate(45deg);
  }

  #drawer_toggle.open span:nth-child(2) {
      opacity: 0;
  }

  #drawer_toggle.open span:last-child {
      transform: rotate(-45deg);
  }

}

/*メインビジュアル*/
.main-visual {
  margin-top: 83px;
  z-index: 1;
  background: #FFF;
  text-align: center;
}

@media screen and (max-width:960px) {
  .main-visual {
    margin-top: 71px;
  }  
}


/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
z-index: 1;
/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/


.slider-item img {
  width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height:auto;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;/*背景画像をリピートしない*/
  background-position: center;/*背景画像の位置を中央に*/
  background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
  position: absolute;/*絶対配置にする*/
z-index: 3;
  top: 45%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc;/*矢印の色*/
  border-right: 2px solid #ccc;/*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
  left:2.5%;
  transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
  right:2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
position: relative;
z-index: 3;
  text-align:center;
margin:-30px 0 0 0;
}

.slick-dots li {
  display:inline-block;
margin:0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width:8px;/*ドットボタンのサイズ*/
  height:8px;/*ドットボタンのサイズ*/
  display:block;
  border-radius:50%;
  background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
  background:#333;/*ドットボタンの現在地表示の色*/
}

@media screen and (max-width:960px) {
  .slick-prev, 
  .slick-next {
    height: 10px;
    width: 10px;
  }

  .slick-dots {
    margin: -15px 0 0 0;
    }

    .slick-dots button {
      width:5px;/*ドットボタンのサイズ*/
      height:5px;/*ドットボタンのサイズ*/
    }
}

/*新着情報*/

.main-news-area {
  text-align: center;
  padding: 80px 0;
}

.main-news-contents {
max-width:1000px;
width: 90%;
margin: 0 auto;
text-align: left;
}

.main-news-area ul {
  margin-bottom: 40px;
}

.main-news-area li {
  list-style:none;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #4C4C4C;
}

.main-news-area a{
  text-decoration:none;
  padding: 5px 0;
  font-size: 1.8rem;
  color: #4C4C4C;
  display: flex;
  align-items: baseline;
}


.main-news-contents span {
  color: #4C4C4C;
  vertical-align: bottom;
  display: inline-block;
  font-size: 1.8rem;
}

.main-news-area h3 {
  font-size: 1.4rem;
  border-radius: 6px;
  color: #FFF;
  padding: 5px 15px 3px 15px;
  margin: 0 10px 0 65px;
  height: 24px;
  width: 86px;
  white-space: nowrap;
}

.main-news-area .newsinfo-recruit {
  background: #FB627E;
}

.main-news-area .newsinfo-news {
  background: #FFD417;
}

.main-news-area .newsinfo-service {
  background: #2DB9F9;
}


.main-news-area p{
  color: #3c3c3c;
  display: inline-block;
  vertical-align: bottom;
  font-size: 1.8rem;
}

.more-button {
  text-align: center;
}

.more-button a {
  text-align: center;
  background: #2DB9F9;
  color: #FFF;
  padding: 12px 60px 5px 60px;
  border-radius: 20px;
  font-size: 2.0rem;
  display: inline-block;
}

@media screen and (max-width:960px) {
  .main-news-area {
    padding: 50px 0 70px 0;
  }
  
  
  .main-news-contents {
    max-width:800px;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    }
  
    .main-news-contents span {
      margin-right: 12px;
      line-height: 29px;
      height: 29px;
      vertical-align: middle;
    }
    
    .main-news-area h3 {
      padding: 5px 15px 1px 15px;
      margin: 0 0 5px 0;
      display: inline-block;
    }
  
  .main-news-area a{
    display: block;
    }
  
  .main-news-area p{
    font-size: 1.6rem;
    padding: 0;
    margin: 0;
  }

.main-news-area p h3 {
  padding: 0;
}

  .more-button a {
    display: inline-block;
    padding: 10px 60px;
  }
}

/*製品情報*/

.main-product {
  background: #F2FBFF;
}

.main-product-area {
  padding: 80px 0;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.product_service_contents {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.product_service_content {
  background: #FFF;
  box-shadow: 5px 5px 8px #0A5B9129;
  display: flex;
  max-width: 573px;
  position: relative;
  height: 100%;
}

.product_service_content img {
  width: 50%;
  height: auto;
  display: flex;
}

.product_service_content_txt {
  width: 50%;
  margin: auto 0;
  padding: 24px;
  text-align: left;
}

.product_service_content_txt h3 {
  font-size: 2.0rem;
  font-weight: bold;
  color: #4C4C4C;
}

.product_service_content_txt p {
  font-size: 1.6rem;
  margin: 23px 0 31px;
  line-height: 150%;
}

.product_service_content_txt img {
  width: 31px;
  height: auto;
  position: absolute;
  bottom: 12px;
  right: 24px;
}

.product_service_contents02 {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 80px;
}


.product_furusato,
.product_data {
  background: #FFF;
  box-shadow: 0px 3px 6px #0A5B9129;
  border-radius: 10px;
  max-width: 350px;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 0 25px 20px 25px;
}

.product_furusato img,
.product_data img {
  width: 300px;
  height: auto;
}

.product_furusato h3,
.product_data h3 {
  font-size: 2.0rem;
  font-weight: bold;
  color: #4C4C4C;

}

.product_furusato_title,
.product_data_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.product_furusato_title img,
.product_data_title img {
  width: 31px;
  height: auto;
}

  


@media screen and (max-width:960px) {

  .main-product-area {
    padding-top: 40px;
  }

.product_service_contents {
  display: block;
}

.product_service_content {
  margin: 0 auto;
  height: auto;
  box-shadow: 3px 3px 6px #0A5B9129;
}

.product_service_content:last-of-type {
  margin-top: 20px;
}

.product_service_content_txt {
  padding: 12px;
}

.product_service_content_txt h3 {
  font-size: 1.8rem;
}


.product_service_content_txt img {
  right: 12px;
}

.product_service_contents02 {
  display: block;
  margin-top: 30px;
}


.product_furusato,
.product_data {
  margin: 20px auto 0 auto;
  border-radius: 0;
  max-width: 400px;
  width: auto;
  box-shadow: 3px 3px 6px #0A5B9129;
  padding: 0 12px 12px 12px;
}

.product_furusato h3,
.product_data h3 {
  font-size: 1.8rem;
  margin-left: 12px;

}
  
}


/*企業情報*/

.main-corporate {
  background: #FFF;
}

.main-corporate-area {
  padding: 80px 0;
  max-width: 1100px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.corporate-box {
  position: relative;
  display: flex;
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  box-shadow: 0px 0px 10px 2px #0A5B9129;
}

.corporate-box img {
  width: 65%;
  height: 100%;
  object-fit: cover;
}

.corporate-box-right {
  margin: auto;
  text-align: left;
  padding: 24px 10px;
}

.corporate-box-right p {
  font-size: 2.4rem;
  font-weight: 600;
  color: #3c3c3c;
}


.corporate-box-right ul li a{
  font-size: 1.6rem;
  font-weight: 500;
  color: #3c3c3c;
}

.corporate-box-right img {
  display: block;
  margin: 10px 0 0 auto;
  width: 30px;
  height: auto;
  position: absolute;
  bottom: 24px;
  right: 24px;
}

@media screen and (max-width:960px){
  .corporate-box {
    display: block;
    max-width: 600px;
  }

  .corporate-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .corporate-box-right {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
  }

  .corporate-box-right p {
    margin-right: 20px;
    font-size: 2.0rem;
    line-height: 24px;
    vertical-align: bottom;
  }

  .corporate-box-right img {
    width: 24px;
    height: auto;
    margin: 0;
    display: inline;
    vertical-align: middle;
    position: static;
  }

}

/*採用情報*/

.main-recruit {
  background: #F2FBFF;
}

.main-recruit-area {
  padding: 80px 0;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.recruit-box-top-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.recruit-box-bottom-content .recruit-box-bottom {
  margin: 0 auto;
  max-width: 570px;
    width: 100%;
  height: auto;
  box-shadow: 5px 5px 8px #0A5B9129;
}

.recruit-box-bottom img {
    width: 100%;
  height: 260px;
  object-fit: cover;
}

.recruit-box-top-content:first-of-type {
  margin-bottom: 90px;
}

.recruit-box-top {
  max-width: 570px;
  width: 100%;
  height: auto;
  box-shadow: 5px 5px 8px #0A5B9129;
}

.recruit-box-top:first-of-type {
  margin-right: 30px;
}

.recruit-box-top img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}


.recruit-box-title {
  padding: 30px 30px 30px 0;
  background: #FFF;
  text-align: right;
}

.recruit-box-title span {
  font-size: 2.4rem;
  font-weight: 600;
  color: #3c3c3c;
  padding-right: 50px;
}

.recruit-box-title img {
  width: 30px;
  height: auto;
  vertical-align: middle;
}

@media screen and (max-width:500px) {
  .recruit-box-top img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}


@media  screen and (max-width:960px) {

  
  .recruit-box-top:first-of-type {
    margin-right: 0;
  }
  
  .recruit-box-top {
    margin-bottom: 60px;
  }

  .recruit-box-top-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .recruit-box-top-content:first-of-type {
    margin-bottom: 0;
  }
  
  
  .recruit-box-title img {
    width: 24px;
    height: auto;
  }

  .recruit-box-title {
    padding: 20px 20px 20px 0;
  }

  .recruit-box-title span {
    font-size: 2.0rem;
    padding-right: 20px;
  }
  
}

/*404 not found*/
.not-found {
  background: #FFFFFF;
}

.not-found-area {
  max-width: 1200px;
  width: 90%;
  text-align: center;
  margin: 222px auto 277px auto;
}

.not-found-title {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.not-found-title img {
  width: 175px;
  height: auto;
}

.not-found-404 {
  margin: 0 20px;
}

.not-found-404 h3 {
  font-size: 17.5rem;
  color: #0B2E3E;
  font-weight: bold;
  line-height: 90%;
  margin-top: 20px;
}

.not-found-404 h4 {
  font-size: 5.5rem;
  color: #0B2E3E;
  font-weight: bold;
}

.not-found-area h5 {
  font-size: 4.5rem;
  color: #4C4C4C;
  font-weight: bold;
  margin: 40px 0 52px 0;  
}

.not-found-area p {
  font-size: 3.0rem;
  color: #4C4C4C;
  line-height: 150%;
}

.toppage-btn {
  display: inline-block;
  font-size: 2.4rem;
  background: #FFF;
  color: #2DB9F9;
  border: 1px solid #2DB9F9;
  border-radius: 5px;
  padding: 10px 60px 5px 60px;
  margin-top: 55px;
}

.toppage-btn:hover {
  background: #2DB9F9;
  color: #FFF;
}

@media screen and (max-width:960px) {
  .not-found-area {
    margin: 150px auto 150px auto;
  }

  .not-found-title {
    display: block;
  }
  
  .not-found-title img {
    width: 150px;
    height: auto;
  }
 
  .not-found-404 h3 {
    font-size: 15.0rem;
    line-height: 100%;
  }
  
  .not-found-404 h4 {
    font-size: 4.5rem;
  }
  
  .not-found-area h5 {
    font-size: 3.0rem;
    margin: 15px 0 40px 0;  
  }
  
  .not-found-area p {
    font-size: 1.8rem;
  }
  
  .toppage-btn {
    margin-top: 50px;
  }
}


/*　上に戻るボタン　*/
#page_top_main{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 50px;
  background: #2DB9F9;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top_main a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top_main a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 33px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  vertical-align: middle;
}

/*　上に戻るボタンここまで　*/



/*------------------------------------------------------------
	SNS
------------------------------------------------------------*/
#main_sns {
  background-color: #F2FBFF;
}


.main_sns_naka {
	margin: 0 auto 20px;
	padding: 40px 20px;
	max-width: 1000px;
  text-align: center;
}

.snsicontachi{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center; /* 横中央寄せ */
  align-items: center; /* 縦中央寄せ */

}

.snsicon{
  margin: 0 20px;
}


@media screen and (max-width: 960px) {
	#main_sns {
		padding: 20px 20px;
		max-width: inherit;
	}

  .main_sns_naka {
		padding: 0px 5px;
		max-width: inherit;
	}

  .snsicon {
		max-width: 80%;
    margin-left: 0;
	}
}


/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
footer {
  background-color: #fff;
  color: #4d4d4d;
  margin-top: 40px;
}

.footerin {
  margin: 20px auto;
	padding: 0 20px;
  max-width: 1200px;
}


.footerue {
  margin: 20px auto;
	padding: 0 20px;
}

.corp_number {
  display: inline-block;
  vertical-align: bottom;
  padding-bottom: 10px;
}

.corp_number p{
  display: inline-block;
  font-size: 1.8rem;
}

.footernaka {
  margin: 20px auto;
	padding: 0 20px;
  font-size: 12px;
}

.footernakaue {
  margin: 20px auto;
	padding: 0 20px;
  display: flex;
  justify-content: center;
}

.footernakaue1 {
  margin: 0px 0px;
	padding: 0 20px;
  width: 500px;
}

.footernakaue2 {
  margin: 0px 20px 0px 0px;
	padding: 0 20px;
  width: 400px;
}

.footernakaue2 ul li a{
  font-size: 1.6rem;
  line-height: 200%;
}

.footernakashita {
  margin: 0px auto;
	padding: 0 20px;
  display: flex;
  justify-content: center;
}

.footernakashita1 {
  margin: 0px 0px;
	padding: 0 20px;
  width: 500px;
  display: flex;
  justify-content: space-around;
}

.footernakashita1-in:not(:first-of-type) img {
  max-height: 119px;
  height: 100%;
  width: auto;
}

.footernakashita1 p {
  font-size: 1.2rem;
  margin-top: 5px;
  text-align: center;
}

.footernakashita1-in:first-of-type p {
  margin-top: 24px;
}

.footernakashita2 {
  margin: 0px 20px 0px 0px;
	padding: 0 20px;
  width: 400px;
  font-size: 1.3rem;
}

.footernakashita2 ul li a{
  font-size: 1.6rem;
  line-height: 200%;
}

.footernakashita2 ul li a span{
  font-size: 1.2rem;
}

.footershita {
  margin: 20px 0px 0px 0px;
	padding: 0 20px;
  text-align: center;
  font-size: 1.5rem;
}

.footer_cm_area {
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  align-items: center;
  display: flex;
}

.footer_cm_area_l {
  max-width: 200px;
}

.footer_cm_area_c {
  max-width: 300px;
}

.footer_cm_area_r {
  max-width: 170px;
  margin-left: 5px;
}
@media screen and (max-width: 960px) {

	footer {
		padding: 0 10px;
		max-width: inherit;
	}

  .footerin {
		padding: 0 10px;
		max-width: inherit;
  }
  
  .footerue {
    padding: 0 20px;
    max-width: inherit;
  }

  .corp_number {
    display: block;
    padding-bottom: 0;
    padding-top: 10px;
  }

  .corp_number p {
    display: block;
    font-size: 1.6rem;
  }

  .footernaka {
		padding: 0 10px;
		max-width: inherit;
	}

  .footernakaue {
		padding: 0 10px;
		width: auto;
    display:block;
	}

  .footernakaue1 {
		padding: 0 20px;
    width: auto;
		max-width: inherit;
	}

  .footernakaue2 {
    margin-top: 10px;
		padding: 0 20px;
    width: auto;
		max-width: inherit;
	}

   .footernakashita {
		display: block;
    max-width: inherit;
    padding: 0;
	}

  .footernakashita1 {
    display: none;
  }

  .footernakashita1 p {
    text-align: left;
    margin: 10px 0;
  }

  .footernakashita1-in:first-of-type p {
  margin-top: 10px;
}

 /* .footernakashita {
		display: none;
	}

  .footernakashita1 {
		display: none;
	}
*/

  .footernakashita2 {
    padding: 0;
		max-width: 390px;
    width: 100%;
    margin: 0;
	}

  .footershita {
		padding: 0 20px;
		max-width: inherit;
	}

  .footer_cm_area {
		display:block;
    text-align: center;
    margin: 0 auto;
	}

  .footer_cm_area_l {
    margin: 0 auto;
	}

  .footer_cm_area_c {
    margin: 0 auto;
	}

	.footer_cm_area_r {
    margin: 0 auto;
    padding-bottom: 20px;
	}
}

