@charset "utf-8";

img {
  border: 0;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

body {
  background: #fff;
  color: #333;
  font-family: 'Noto Sans JP', ' メイリオ', Meiryo, " ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  /* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
  font-size: 15px;
  /* line-height: 24px; */
  line-height: 1.6;
  margin: 0;
  min-width: 1200px;
  width: 100%;
}
html {
  scroll-behavior: smooth;
}

.transparent {
  opacity: 1;
  transition: opacity 0.3s linear;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
}

.transparent:hover {
  opacity: 0.7;
  text-decoration: none;
}
h1 {
  margin: 0;
}

.sp_show {
  display: none;
}

ul {
  /* list-style: inside; */
  list-style: none;
}
ol {
  list-style-position: inside;
}
.content_inner {
  width: 1200px;
  margin: 0 auto;
}

.mt5 {
  margin-top: 5px !important;
}
/* font */
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../fonts/Noto_Sans_JP/NotoSansJP-Thin.ttf)format("woff");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../fonts/Noto_Sans_JP/NotoSansJP-Light.ttf)format("woff");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff)format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../fonts/Noto_Sans_JP/NotoSansJP-Medium.ttf)format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff)format("woff");
  font-weight: 700;
  font-display: swap;
} 
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../fonts/Noto_Sans_JP/NotoSansJP-Black.woff)format("woff");
  font-weight: 900;
  font-display: swap;
}


/*  float 
-----------------------------------------------------------------------------*/
.clearfix {
  zoom: 1;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/*  flexbox
-----------------------------------------------------------------------------*/
.flex_container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
}
.flex_between {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

/* inview.jsのcss */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


/* common  */
.ttl_main {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem 0;
  margin: 0;
}
.ttl_main::before {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 40px;/*画像の幅*/
  height: 50px;/*画像の高さ*/
  background-image: url(../img/../img/icon_crab_hand_left.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 0.6rem;
}
.ttl_main::after {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 40px;/*画像の幅*/
  height: 50px;/*画像の高さ*/
  background-image: url(../img/icon_crab_hand_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 0.6rem;
}
.text_c {
  text-align: center;
}


/*------------------------------

メニュー

------------------------------*/

/* 初期の縦メニュー（PCのみ表示） */
.vertical-menu {
  position: fixed;
  top: 0;
  right: 20px;
  z-index: 10;
  /* border-left: 2px solid #fff; */
  padding-left: 1rem;
}
.vertical-menu a {
  color: #fff;
  transition: 0.3s;
  position: relative;
  padding-left: 12px;
  text-decoration: none;
}
.vertical-menu a:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.vertical-menu a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1.5px;
  background: #fff;
  bottom: -1px;               /* アンダーラインがaタグの下端から現れる */
  transform: scale(0, 1.5);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
.vertical-menu a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}
.vertical-menu ul {
  list-style: none;
  padding: 0;
}
.vertical-menu li {
  margin-bottom: 1em;
}
.mobile-nav a {
  color: #333;
  transition: 0.3s;
  position: relative;
  padding-left: 12px;
  text-decoration: none;
}
.mobile-nav a:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #5d627b;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.mobile-nav li:last-child {
  margin-bottom: 0;  
}
.mobile-nav a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1.5px;
  background: #5d627b;
  bottom: -1px;               /* アンダーラインがaタグの下端から現れる */
  transform: scale(0, 1.5);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
.mobile-nav a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}
 /* mobile-nav をコンパクトな「ドロワー型」メニュー */

.mobile-nav.open {
  right: 0;
}

.wrap_mobile_nav {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: #5d627b;
  background: white;
  border-top: 5px solid;
  border-image: linear-gradient(135deg, #ff7e5f, #feb47b) 1;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.wrap_mobile_nav ul {
    margin: 0; 
    padding: 0;
}



/* ハンバーガー */
.hamburger {
  display: flex;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 20;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease;
}

.hamburger:hover {
  background: linear-gradient(135deg, #ff6a00, #ee0979); /* ホバー時の色 */
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 開閉アニメーション（バツ印） */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ハンバーガー表示時のアニメーション */
.show-on-scroll {
  display: flex !important;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ハンバーガーメニュー */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  background: #fff;
  opacity: 0.9;
  width: 160px;
  padding: 1em;
  z-index: 15;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
}
.mobile-nav li {
  margin-bottom: 1em;
}
/* スクロールで縦メニューを非表示 & ハンバーガー表示（PC） */
.hide-on-scroll {
  display: none;
}
.show-on-scroll {
  display: flex !important;
}


/*------------------------------

animationのためのcss

------------------------------*/
.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
}

.animate__animated {
  opacity: 1 !important;
  visibility: visible !important;
}



/*------------------------------

背景

------------------------------*/
#about,#feature,#scene,#faq,#contact {
  padding: 3rem 0 5rem;
}

/* about */
#about {
  background-color: #fff;
}

/* feature */
#feature {
  background-color: #e4f4f4;
}
/* scene */
#scene {
  background-color: #fffacd; 
}
#faq {
  /* background-color: #f3f3fe; */
  background-color: #fff; 
}
/* contact  */
#contact {
  background-color: #e4f4f4; 
}


/* home */
/*------------------------------

メインビジュアル

------------------------------*/
#home {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
  height: 100vh;
}

#home .video_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* 背景にする */
  overflow: hidden;
}

#home .video_container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home .content_inner {
  position: relative;
  background-image: url(../img/mv_bg_circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 100%;
}
#home .content_inner .flex_container {
  justify-content: center;
}
.mv_products, .mv_crab {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
}

.mv_products {
  left: 10%; /* 左側に配置 */
}

.mv_crab {
  right: 20%; /* 右側に配置 */
}
/* .mv_products img, .mv_crab img {
  max-width: 100%;
  height: auto;
} */
.mv_crab img {
  max-height: 220px;
  width: auto;
  height: 100%;
  margin: 2rem;
}
.mv_products img {
  max-width: 400px;
}
#home h1.ttl_name_dexc {
  color: #e60012;
  text-align: center;
  line-height: 1.3;
  text-shadow:
    1px 1px 0 #fff,
   -1px 1px 0 #fff,
   -1px -1px 0 #fff,
    1px -1px 0 #fff;
  z-index: 1;
  position: relative;
}
#home h1.ttl_name_dexc .ttl_name {
  background-color: #e60012;
  color: #fff;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  margin: 0.2rem 0 1.5rem;
  line-height: 1;
  font-size: 3rem;
  text-shadow: none;
}
#home h1.ttl_name_dexc .ttl_catch {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow:
    1px 1px 0 #fff,
   -1px 1px 0 #fff,
   -1px -1px 0 #fff,
    1px -1px 0 #fff;
}
#home .btn_contact_mv a {
  position: absolute;
  bottom: 1rem;
  right: 10%;
  display: inline-block;
  background-color: #fff;
  color: #1a8dea; 
  border: 4px solid #1a8dea;
  padding: 0.5rem 1.5rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 2rem;
  transition: 0.3s;
}
#home .btn_contact_mv a::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 10px;
}
#home .btn_contact_mv a:hover {
  background-color: #1a8dea; 
  color: #fff;
}



/* about */
/*------------------------------

#about

------------------------------*/
#about .content_inner {
  max-width: 950px;
  margin: 0 auto 3rem;
}
#about .img_about_product img {
  max-width: 750px;
  width: 100%;
}

/* feature */
/*------------------------------

#feature

------------------------------*/
.box_feature {
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto 3rem;
  padding: 2rem;
}
.ttl_feature {
  color: #E60012;
  font-size: 1.6rem;
  line-height: 1;
  margin: 0;
}
.ttl_feature::before {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 60px;/*画像の幅*/
  height: 60px;/*画像の高さ*/
  background-image: url(../img/icon_ttl_main.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle; 
  margin-right: 0.5rem;
}
.wrap_feature_ctt {
  padding-top: 1.5rem;
}
.txt_feature {
  width: 60%;
  margin: 0;
}
.illust_feature {
  width: 40%;
  text-align: center;
}
.illust_feature img {
  max-width: 250px;
}
.img_feature {
  margin-top: 3rem;
}
.img_feature_r img {
  border-radius: 20px;
}
.wrap_dishes {
  gap: 20px;
}
.img_dish {
  width: calc((100% - 20px) / 2);
}



/* Usage scene */
/*------------------------------

#scene

------------------------------*/
#scene .swiper-button-next:after,#scene .swiper-button-prev:after {
 color: #E60012; 
}
#scene .swiper-pagination-bullet-active {
  background-color: #E60012; 
}


/*------------------------------

Sales Partnerエリア

------------------------------*/

.sales-partner-section {
  position: relative;
  overflow: hidden;
  padding: 5.0em;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom,rgba(0, 0, 0, 0.9),rgba(0, 0, 0, 0.4));
}

@keyframes bgZoomLoop {

  0%,
  100% {
    background-size: 110%;
  }

  50% {
    background-size: 100%;
  }
}

#sales_partner {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)),
    url(/common/img/bg/spmov.mp4);
  background-size: 120%;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 5em;
  animation: bgZoomLoop 15s ease-in-out infinite;
}

h2.lead {
    font-size: 45px;
    letter-spacing: 0;
    line-height: 60px;
    font-weight: 700;
}
.container-fluid:before, .container-fluid:after, .row:before, .row:after {
    clear: both;
	display: table;
    content: " ";
}
.position-relative {
	
}
.row {
	margin-right: -15px;
    margin-left: -15px;
}
.col-xs-12 {
    width: 100%;
    float: left;
}
.col-sm-12 {
	
}
.col-md-10 {
	position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
} 
.col-md-offset-1 {
	
} 
.text-center {
	text-align: center;
}
.color_white {
	color: #fff;
}
.pt-5 {
    padding-top: 3rem !important;
}
.bes_button4 {
    -moz-align-content: center;
    -webkit-align-content: center;
    -o-align-content: center;
    -ms-align-content: center;
    align-content: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    align-items: center;
    background: #007bbb;
    border-radius: 60px;
    color: #fff;
    display: inline-flex;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 25px 85px;
    transition: 0.3s;
}
.bes_button4:hover {
    background: #1a8dea;
}
@media (min-width: 992px) {
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-md-10 {
        width: 83.33333333%;
        float: left;
    }
}
@media (min-width: 768px) {
    .lead {
    	margin-bottom: 20px;
    }
}


/* faq */
/*------------------------------

ここからアコーディオンのCSS

------------------------------*/
/* チェックボックスは非表示 */
#faq .accordion-hidden{
  display: none;
}

/* Question部分 */
#faq .accordion-open {
  display: block;
  padding: 10px 10px 10px 50px;
  background: #7E7E7E;
  cursor: pointer;
  margin: 5px 0;
  font-weight: 700;
  position: relative;/* 変更部分 */
}
#faq .accordion label {
    color: #fff;
}

/* 開閉状態を示すアイコン+の作成 */
#faq .accordion-open::before,
#faq .accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
#faq .accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* QとAのデザイン */
#faq .accordion-open .icon_q,
#faq .accordion-close .icon_a {
  display: flex;
  justify-content: center; 
  width: 50px;
  height: 100%;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
}
#faq .accordion-open .icon_q {
  align-items: center;
}
#faq .accordion-close .icon_a {
  color: #7E7E7E;
  font-weight: 600;
  text-align: start;
  padding-top: 1.6em;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
#faq .accordion-hidden:checked + .accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
#faq .accordion-close {
  display: block;
  height: 0;/* 要素の高さは0 */
  overflow: hidden;/* 非表示 */
  padding: 0 0 0 60px;
  opacity: 0;
  transition: 0.5s;/* 表示速度の設定 */
  position: relative;
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
#faq .accordion-hidden:checked + .accordion-open + .accordion-close {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 70px;
  /* background: #55acee; */
  background-color: #fff;
  color: #333;
  font-weight: 300;
}

#faq .list_qa_bullet_points {
  list-style-type: circle;
  padding-left: 2em;
  margin: 0 0 1rem;
}
#faq .ttl_list_qa_bullet_points {
  display: block;
}

/*  form */
.form-all {
  margin: 0 auto !important;
}


/*  page top button */
#page-top 
{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  opacity: 0;
  transform: translateY(30px); /* 下からふわっと */
  pointer-events: none; /* 非表示時クリック無効 */
  transition: all 0.5s ease;
}

#page-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#page-top a {
  background: #036db7;
  text-decoration: none;
  color: #fff;
  width: 55px;
  height: 55px;
  padding-top: 17px;
  text-align: center;
  display: block;
  border-radius: 50%;
  opacity: 0.9;
  transition: background 0.3s ease;
}

#page-top a:hover {
  background: #59c8f1;
}



/* footer */
footer .footer_wrapper {
    background-color:#02233A;
    color: #fff !important;
    padding-top: 2rem;
}
.footer_inner {
    max-width: 1200px;
    margin: 0 auto;
    gap: 5%;
}
.footer_inner .item_footer_inner {
  width: 30%;
}
.footer_wrapper .copyright {
  text-align: center;
  display: block;
  padding: 2rem 0 0.5rem;
  }
.footer_wrapper .ft_logo_w {
  max-width: 200px;
  margin-bottom: 1rem;
}
.footer_wrapper .btn_ft_contact {
  border: 2px solid #fff;
  display: block;
  padding: 1.1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  font-weight: 800;
}
.footer_wrapper .btn_ft_contact:hover {
  background-color: #fff;
  color: #02233A;
}
.footer_wrapper .item_footer_inner span {
  display: block;
}
.footer_wrapper .ft_office {
  font-size: 1.3rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
.footer_wrapper .ft_office_address,.footer_wrapper .ft_company_name {
  line-height: 1.3;
}
.footer_wrapper .ft_office_map a {
  background-color: #fff;
  color: #02233A;
  text-align: center;
  padding: 0.4rem;
  margin-top: 1rem;
  display: block;
  font-weight: bold;
  box-sizing: border-box;
  border: 2px solid #fff;
}
.footer_wrapper .ft_office_map a:hover {
  background-color: #02233A;
  color: #fff;
}
.footer_wrapper .footer_catchphrase .ft_logo_global_w {
  max-width: 12.5rem;
}
.footer_wrapper .footer_catchphrase p {
  padding: 0.5rem 0 2rem;
}
.footer_wrapper .footer_catchphrase {
  border-bottom: 1px solid gray;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1200px) {
  .vertical-menu {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
    line-height: 18px;
    min-width: auto;
    width: auto;
    -webkit-text-size-adjust: 100%;
  }
  .content_inner {
    width: 94%;
  }
  img {
    width: 100%;
    height: auto;
  }
  .sp_show {
    display: block;
  }

  /* メニュー */
  .vertical-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* メインビジュアル */
  #home .btn_contact_mv a {
    left: 1rem;
    bottom: 0.5rem;
    padding: 1rem;
  }
  #home .content_inner {
    min-height: 400px;
    height: 100%;
    text-align: center;
  }

  .ttl_main {
    line-height: 1.3;
  }
  .mv_products, .mv_crab {
    position: relative;
    transform: none;
  }
  .mv_products {
    left: auto;
  }
  .mv_crab {
    padding-bottom: 2rem;
    right: auto;
  }

  /* feature */
  .txt_feature {
    width: 100%;
  }
  .illust_feature {
    width: 100%;
    padding-top:1.5rem;
  }
  .img_dish {
    width: 100%;
  }


  /* become a sales partner */
  /* .bn_apply_partner {
    background: url(../img/bg_apply_partner.jpg) no-repeat center center;
    background-size: cover;
    min-height: 100%;
    padding: 3rem 2rem;
  }
  .btn_details a {
    margin-bottom: 1.4em;
  } */
  /* セールスパートナー欄試作ここから */
  h2.lead {
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 0;
    font-weight: 700;
  }
  .bes_button4 {
    -moz-align-content: center;
    -webkit-align-content: center;
    -o-align-content: center;
    -ms-align-content: center;
    align-content: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    align-items: center;
    border-radius: 60px;
    color: #fff;
    display: inline-flex;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 25px 40px; 
  }
  /* セールスパートナー欄試作ここまで */
 

  /* Footer */
  #footer {
    padding: 0 0 20px;
    text-align: center
  }
  
  #footer .list_left {
    float: none;
    display: block;
    margin: 0 0 10px;
    padding-left: 0;
  }
  
  #footer .list_left li {
    width: 50%;
    margin-right: 0;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #888888;
  }
  
  #footer .list_left li a {
    display: block;
    line-height: 15px;
  }
  
  #footer .list_left li:nth-child(odd) a {
    border-right: 1px solid #888888;
  }
  
  #footer div div {
    float: none;
    display: inline-block
  }
  
  #footer .copyRight p {
    display: inline-block;
    float: none;
    margin-right: 1%;
    vertical-align: middle;
    width: 26%;
  }
  
  #footer .copyRight .text {
    margin: 0;
    font-size: 10px;
    width: 71%;
  }
  
  #footer .link_txt a {
    background: #222;
    display: block;
    color: #fff;
    padding: 10px 0;
    text-align: center;
  }
  #footer .copyRight.clearfix a img {
    margin-top: 20px;
    margin-bottom: 5px;
    width: 30px;
    float: none;
  }
  #footer .list_left li.sp_w100 {
    width: 100%;
  }
  #footer .list_left li.sp_w100 a {
    border-right: none !important;
  }
  #footer .sns_box p {
    margin: 5px 20px 0 0;
  }
  #footer .copyRight p {
    width: auto !important;
  }
  #footer .copyRight p:first-of-type {
    width: 15% !important;
  }
  .footer_inner {
    display: block;
  }
  #footer .footer_inner .item_footer_inner,footer .footer_catchphrase {
    width: 100%;
    padding: 0 2rem;
  }
  #footer .footer_inner .item_footer_inner .ft_office {
    padding-top: 3rem;
  }
  .footer_inner .item_footer_inner {
    width: 100%;
    padding: 0 2rem;
  }
  .footer_inner .item_footer_inner .ft_office {
    padding-top: 3rem;
  }

  
  #pagetop_btn a {
    bottom: -20px;
    right: 3%;
  }
  
  #pagetop_btn a img {
    width: 40px;
  }
}