@charset "utf-8";
/*
Theme Name: 築地そらつき - ブリキトタン
Theme URI: 
Author: eitostyle
Author URI: https://eito.style/
Description: エイトスタイル制作のオリジナルテンプレートです
Version: 1.0
*/
/*-----------------------------
google font
-----------------------------------*/
.f_robo {
  font-family: "Roboto Condensed", sans-serif;
}
/*-----------------------------
リキャプチャ消す
-----------------------------------*/
.grecaptcha-badge {
  visibility: hidden;
}
/*-----------------------------
reset
-----------------------------------*/
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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body * {
  line-height: 1.6;
  box-sizing: border-box;
  text-align: justify;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  opacity: 0.6;
  transition: all 0.5s ease-out 0s;
}
/*---------------------------------
共通 common
-----------------------------------*/
html {
  font-size: 18px;
  color: #333;
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック",
    "Yu Gothic UI", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Arial, Helvetica, "ＭＳ Ｐゴシック", sans-serif !important;
}
main {
  /* background-color: #F6F1EA; */
  width: 100%;
  padding: 0;
}
br.sp {
  display: none;
}
.sp {
  display: none !important;
}
.inner {
  max-width: 1200px;
  margin: 0 auto 0;
}
p + p {
  margin: 1em 0 0;
}
.w100 {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
    margin: 0 auto;
  }
  html {
    font-size: 14px;
  }
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
  img {
    width: 100%;
    height: auto;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
/*---------------------------------
ローディング
-----------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #231f20;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}
.loding_rogo {
  width: 300px;
}
/*ローディングのテキスト1文字ずつ下から表示*/
.loding_txt {
}
@keyframes ldtxt-anim {
  0% {
    transform: translateY(110%);
  }
  10% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.loding_txt {
  display: flex;
  overflow: hidden;
  color: #333; /*ローディングアニメの文字カラー*/
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 0;
  justify-content: center;
  letter-spacing: 0.4ex;
}
.loding_txt span {
  transform: translateY(110%);
  display: block;
  animation: 5s ldtxt-anim linear forwards;
}
.loding_txt span:nth-child(1) {
  animation-delay: 1.1s;
}
.loding_txt span:nth-child(2) {
  animation-delay: 1.15s;
}
.loding_txt span:nth-child(3) {
  animation-delay: 1.2s;
}
.loding_txt span:nth-child(4) {
  animation-delay: 1.25s;
}
.loding_txt span:nth-child(5) {
  animation-delay: 1.3s;
}
.loding_txt span:nth-child(6) {
  animation-delay: 1.35s;
}
.loding_txt span:nth-child(7) {
  animation-delay: 1.4s;
}
.loding_txt span:nth-child(8) {
  animation-delay: 1.45s;
}
.loding_txt span:nth-child(9) {
  animation-delay: 1.5s;
}
/*FVのテキストのみ遅延させる※初回のみ*/
.fv.a .slider_txt {
  animation-delay: 3.5s;
}
.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #231f20; /*ローディング背景*/
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation > div {
  margin: 0 0 70px;
  text-align: center;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}
/*---------------------------------
アニメーション
-----------------------------------*/
.an_wrap {
  overflow: hidden;
}
.an-slidein {
  opacity: 0;
  overflow: hidden;
}
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* スムーズな表示のための遷移 */
}
/*マスク要素をスライドアウトする*/
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
/*スライドインを動作するclass*/
.isPlay {
  position: relative;
  opacity: 1 !important;
}
/*isPlayの疑似要素にマスクとマスクを外すアニメーションを設定 */
.isPlay:before {
  animation: maskOut 0.5s ease-in-out 0.5s forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 102%;
  height: 100%;
  background-color: #231f20; /*スライドする色*/
}
.red.hd-slidein_delay.isPlay:before,
.red.an-slidein_delay.isPlay:before,
.red.an-slidein.isPlay:before {
  animation: maskOut 0.5s ease-in-out 0.5s forwards;
  background-color: #231f20;
}
/*メインスライドの1文字ずつ表示されるテキスト*/
.main-slide_txt {
  opacity: 0;
}
.main-slide_txt {
  opacity: 0;
  position: relative;
  top: -50px; /* 初期位置を上に配置 */
  animation: fadeInbk 2s ease-in-out forwards;
}
/* フェードインアニメーション */
@keyframes fadeInbk {
  from {
    opacity: 0;
    top: 0; /* 開始時の位置（上方向に移動） */
  }
  to {
    opacity: 1;
    top: 50px; /* 終了時の位置（元の位置に戻る） */
  }
}
/* アニメーションを適用するクラス */
.main-slide_txt span,
.main-slide_txt.left span {
  opacity: 0;
}
.main-slide_txt.on span {
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 6px 0 0;
  color: #111;
  position: relative;
  z-index: 2;
  background-color: #fff;
  margin: 5px 0;
  box-shadow: 0 0 7px 6px #fff;
}
/* フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 各文字の遅延1行目 */
.main-slide_txt.on span:nth-child(1) {
  animation-delay: 0.5s;
}
.main-slide_txt.on span:nth-child(2) {
  animation-delay: 0.8s;
}
.main-slide_txt.on span:nth-child(3) {
  animation-delay: 1.1s;
}
/* 各文字の遅延2行目 */
.main-slide_txt.left.on span:nth-child(1) {
  animation-delay: 1.4s;
}
.main-slide_txt.left.on span:nth-child(2) {
  animation-delay: 1.7s;
}
.main-slide_txt.left.on span:nth-child(3) {
  animation-delay: 2s;
}
.main-slide_txt.left.on span:nth-child(4) {
  animation-delay: 2.3s;
}
.main-slide_txt.left.on span:nth-child(5) {
  animation-delay: 2.6s;
}
.main-slide_txt.left.on span:nth-child(6) {
  animation-delay: 2.9s;
}
/*------ scroll Down ------*/
.scroll-down {
  position: absolute;
  right: 45px;
  bottom: 190px;
  padding-left: 52px;
  margin-left: 81px;
  z-index: 201;
  transform: rotateZ(-90deg);
  transform-origin: right bottom;
}
@keyframes scroll-down-line {
  0% {
    transform-origin: 0% 50%;
    transform: scale(1, 1);
  }
  20% {
    transform-origin: 0% 50%;
    transform: scale(0.001, 1);
  }
  20.01% {
    transform-origin: 100% 50%;
  }
  38% {
    transform-origin: 100% 50%;
    transform: scale(1, 1);
  }
}
@keyframes bounce {
  0%,
  15%,
  38%,
  60%,
  75% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(10px);
  }
  45% {
    transform: translateX(5px);
  }
}
.scroll-down__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 44px;
  height: 0px;
  margin-top: -1px;
}
.scroll-down__line:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 2px solid #fff;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0s linear 0.5s;
  transform-origin: right center;
  transform: scale(0.001, 1);
  opacity: 0;
}
.scroll-down__text {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: "Replica-Bold", sans-serif;
  overflow: hidden;
  width: 30px;
}
.scroll-down__text span {
  display: block;
  transform: translate3d(0, 100%, 0);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.scroll-down .scroll-down__text {
  animation: bounce 2.5s infinite;
}
.scroll-down .scroll-down__text span {
  transform: none;
}
.scroll-down .scroll-down__line {
  animation: scroll-down-line 2.5s infinite 851ms;
}
.scroll-down .scroll-down__line:after {
  transform: none;
  opacity: 1;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), opacity 0s linear;
}
@media screen and (max-width: 768px) {
  .scroll-down {
    bottom: 130px;
    right: 20px;
  }
}
/*---------------------------------
パララックス
-----------------------------------*/
.parallax-container {
  position: relative;
  height: 300px; /* セクションの高さ */
  overflow: hidden;
}

.parallax-content {
  position: relative;
  z-index: 2; /* 前面に表示 */
  text-align: center;
  color: white;
}

.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px; /* スクロール効果を出すために少し大きくする */
  background-image: url("../img/brt_img_imo.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: translateY(0); /* 初期位置 */
}
@media screen and (max-width: 768px) {
  .parallax-container {
    height: 160px; /* セクションの高さ */
  }
  .parallax-background {
    height: 440px;
  }
}
/*---------------------------------
ブリキトタン
-----------------------------------*/
#brt {
  color: #231f20;
}
/*---------------------------------
ヘッダ
-----------------------------------*/
.brt_hed {
  position: absolute;
  z-index: 1;
  top: 0;
  padding: 30px 30px 0;
}
.brt_hed h1 {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .brt_hed {
  }
  .brt_hed h1 {
    display: none;
  }
}

/*---------------------------------
トップメインスライド
-----------------------------------*/
.slick-img video {
  width: 100%;
}
.main-slide_wrap {
  position: relative;
}
.main-slide_sns {
  position: absolute;
  top: 50%;
  left: 0;
}
.main-slide_sns_txt {
  transform: translateY(-50%) rotate(90deg); /* 90度回転して、画面中央に配置 */
  font-size: 13px;
  font-weight: 600;
  color: #ca0000;
  letter-spacing: 0.3ex;
  margin: 0 0 0 -19px;
}
.main-slide_insta {
  width: 16px;
  margin: 30px 0 0 16px;
}
/* トップスライダー */
.sliderpage {
  /*height: 53vw;*/
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  position: relative;
}
.slick-img img {
  width: 110%;
}
/* アニメーションのキー フレーム */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* 拡大率 */
  }
}
.zoom-img {
}
.zoom {
  animation: zoomUp 10s linear 0s normal both;
}

.main-slide {
  position: relative;
  padding: 40px 2px 10px 50px;
}
.sliderpage {
  margin-bottom: 0 !important;
  overflow: hidden;
  padding: 15px;
  background-color: #231f20;
  position: relative;
}

.slick-img {
  width: 100%;
  max-height: 800px;
}
.slick-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 200vh;
  position: absolute;
  top: 0;
  background-color: rgb(0 0 0 / 10%);
}

@media screen and (max-width: 768px) {
  .main-slide_wrap {
    height: calc(90vh - 60px);
    border-radius: 0 0 50px 50px;
    overflow: hidden;
  }
  .slider {
    pointer-events: none;
    border-radius: initial;
  }
  .slick-img .zoom-img {
    height: 350px; /*モバイルメインスライドサイズ*/
    width: auto;
    margin: 0 0 0 -30%;
  }
  .slider_box {
    width: 100%;
  }
  .slider_txt {
    font-size: 28px;
    text-align: center;
  }
  .main-slide {
    padding: 0;
    margin: 60px 0 0;
  }
  .slider {
  }
  .slick-img {
    border-radius: initial;
  }
  .slick-img.mv {
  }
  .slick-dots {
  }
  .slick-dots li {
  }
  .dots button {
  }
  .dots {
  }
  .dots li {
  }
  .dots li.slick-active {
  }
  .dots li:hover {
  }
  .dots li:last-child {
  }
  .main-slide_copyaria {
    display: none;
  }
  .main-slide_copy {
  }
  .ct_ttl {
  }
  .ct_ttl::after {
  }
  .round01 {
  }
  .round02 {
  }
  .main-slide_txt {
    right: 40px;
  }
  .main-slide_txt.left {
    right: 100px;
  }
}
/*---------------------------------
メインコピー
-----------------------------------*/
.main_copy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: #fef200;
  padding: 0 0 80px;
}
.main_copy::after {
  content: "";
  display: block;
  position: absolute;
  top: -230px;
  left: -10%;
  z-index: 1;
  width: 120%;
  height: 600px;
  background: #231f20;
  border-radius: 50%;
}
.main_copy_logo {
  display: block;
  width: 200px;
  margin: 30px 0 20px;
  position: relative;
  z-index: 2;
}

.main_copy_txt {
  text-align: center;
  color: #fef200;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
}
.main_copy_txt_sb {
  margin: 110px 0 0;
  text-align: center;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .main_copy {
  }
  .main_copy::after {
    top: -320px;
  }
  .main_copy_logo {
    width: 150px;
    margin: 5% 0;
  }

  .main_copy_txt {
    font-size: 18px;
  }
  .main_copy_txt_sb {
    margin: 30% 5% 0;
    font-size: 13px;
  }
}

/*---------------------------------
visual
-----------------------------------*/
.visual {
  background-color: #231f20; /* セクションの背景色 */
  padding: 100px 0;
  position: relative;
}

.visual .inner {
  display: flex;
  /* 2列のレイアウト */
  /* アイテム間のスペース */
  flex-wrap: wrap;
  max-width: 1000px;
  justify-content: space-between;
}

.visual_img01 {
  margin: 90px 0;
}

.visual_txt {
  background-color: #fef200; /* 幅を 45% に設定 */
  width: 55%;
  height: max-content;
  padding: 60px 40px;
}
.visual_txt h3 {
  font-size: 1.8rem;
  text-align: center;
  margin: 0 0 20px;
}
.visual_txt p {
  text-align: center;
  line-height: 2.4;
  font-size: 1.2rem;
}
.visual_txt.l {
}
.visual_txt.last {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.visual_img02 {
  width: 35%;
  margin: -190px 0 80px;
}
.visual_img02 .top {
  margin: 0 0 50px;
}
.visual_img03 {
}
.bk_nami {
  background: url(../img/brt_nami.png) repeat-x 0px 0px;
  width: 100%;
  height: 20px;
  position: absolute;
  top: -10px;
}
@media screen and (max-width: 768px) {
  .visual {
    padding: 15% 0;
  }

  .visual .inner {
  }

  .visual_img01 {
    width: 35%;
    margin: 10% 0 0;
  }

  .visual_txt {
    padding: 0;
    width: 60%;
    padding: 5%;
  }
  .visual_txt h3 {
    font-size: 16px;
    margin: 0 0 5%;
  }
  .visual_txt p {
    font-size: 14px;
    line-height: 1.7;
    white-space: nowrap;
  }
  .visual_txt.l {
    margin: 10% 0;
  }
  .visual_txt.last {
  }
  .visual_img02 {
    margin: 3% 0;
  }
  .visual_img02 .top {
    margin: 0 0 5%;
  }
  .visual_img03 {
    width: 33%;
  }
  .bk_nami {
  }
}
/*---------------------------------
sweet
-----------------------------------*/
#sweet {
  background-color: #231f20;
  padding: 0 0 100px;
}
#sweet .inner {
  max-width: 800px;
}
.brt_ttl {
  color: #fef200;
  text-align: center;
  font-size: 2rem;
  margin: 0 0 70px;
  letter-spacing: 0.2ex;
  font-weight: bold;
}
.sweet_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 80px;
  gap: 40px;
}

.sweet_img {
  padding: 15px;
  background-color: #fef200;
}

.sweet_txt {
  color: #fef200;
}
.sweet_txt dt {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 20px;
}
.sweet_txt dd {
  font-size: 1.4rem;
  text-align: center;
  line-height: 2;
}
.sweet_wrap:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  #sweet {
  }
  #sweet .inner {
  }
  .brt_ttl {
    margin: 0 0 10%;
  }
  .sweet_wrap {
    gap: 5%;
    margin: 0 0 20%;
  }

  .sweet_img {
    width: 40%;
    padding: 2%;
  }

  .sweet_txt {
    width: 70%;
  }
  .sweet_txt dt {
    font-size: 16px;
    margin: 0 0 5%;
  }
  .sweet_txt dd {
    font-size: 14px;
    line-height: 1.6;
  }
  .sweet_wrap:last-child {
  }
}
/*---------------------------------
product
-----------------------------------*/
#product {
  background-color: #231f20;
  padding: 0 0 100px;
}
.product_wrap {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.product_list {
  width: 50%;
}
.product_list dt {
  color: #fef200;
  text-align: center;
  margin: 20px 0;
  font-size: 1.2rem;
}
.product_list dd {
  color: #fef200;
}
@media screen and (max-width: 768px) {
  #product {
    padding: 0 0 5%;
  }
  .product_wrap {
    gap: initial;
    flex-wrap: wrap;
  }

  .product_list {
    width: 47%;
    margin: 0 0 10%;
  }
  .product_list dt {
    margin: 2% 0;
  }
  .product_list dd {
  }
}
/*---------------------------------
store
-----------------------------------*/
#store {
  background-color: #fef200;
  padding: 50px 0;
}
#store .brt_ttl {
  color: #2c3338;
}
.store_wrap {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.store_wrap li {
  width: 50%;
}
.store_name {
  border-bottom: solid 1px #2c3338;
  font-size: 1.2rem;
  margin: 0 0 30px;
}
.store_imgbox {
  width: 40%;
}
.store_img {
  width: 100%;
}
.store_inbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.store_adress {
  width: 55%;
}
.store_adress p {
  margin: 0 0 20px;
  font-size: 0.8rem;
}
.map {
  height: 100%;
}
.map iframe {
  width: 100%;
  min-height: 200px;
}
.store_imgclick {
  display: none;
}
.modal {
  display: none;
}
@media screen and (max-width: 768px) {
  #store {
  }
  #store .brt_ttl {
  }
  .store_wrap {
    flex-wrap: wrap;
    gap: initial;
    /* margin: 0 5%; */
  }
  .store_wrap li {
    width: 100%;
    margin: 0 0 10%;
  }
  .store_name {
    margin: 0 0 5%;
  }
  .store_inbox img {
    width: 100%;
  }
  .store_inbox {
    gap: 0;
    align-items: flex-start;
  }

  .store_adress {
    width: 70%;
  }
  .store_adress p {
  }
  .map {
  }
  .map iframe {
  }

  /*-----------------------------
ストアモーダル SPのみのみ
-----------------------------------*/
  .store_imgbox {
    width: 25%;
  }

  .store_img {
    width: 200px;
    /* margin: 10px; */
    cursor: pointer;
    border-radius: 8px;
  }

  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    text-align: center;
  }

  .modal img {
    max-width: 90%;
    max-height: 80%;
    margin-top: 5s;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .close {
    position: absolute;
    top: 40px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  .store_imgclick {
    display: block;
    background-color: #eee;
    border: solid 1px #aaa;
    text-align: center;
    margin: 10px 0 0;
    border-radius: 5px;
  }
  .store_imgclick i {
    padding: 0 3px 0 0;
  }
}
/*---------------------------------
SNS
-----------------------------------*/
#sns {
  background-color: #2c3338;
  padding: 60px 0;
}

.insta_logo {
  text-align: center;
  margin: 0 0 50px;
}
#sb_instagram #sbi_load .sbi_follow_btn a {
  background-color: #fef200 !important;
  color: #2c3338;
}
@media screen and (max-width: 768px) {
  #sns {
    padding: 10% 5%;
  }

  .insta_logo {
    width: 50px;
    margin: 0 auto 5%;
  }
}
/*---------------------------------
footer
-----------------------------------*/
#footer {
  background-color: #f6f1ea;
}
.top-ft {
}
.top-ft_adress_wrap {
  display: flex;
  margin: 40px 380px 40px 90px;
  justify-content: space-between;
}
.top-ft_logo_wrap {
  display: flex;
  align-items: center;
}
.top-ft_logo {
  width: 50px;
}
.top-ft_logo_txt {
  margin: 0 0 0 30px;
  color: #ca0000;
  font-weight: bold;
  letter-spacing: 0.2ex;
}
.top-ft_adress {
}
.top-ft_company {
  width: 180px;
}
.top-ft_adress .ad {
  font-size: 14px;
  margin: 10px 0 0;
}
.reserved {
  text-align: center;
  font-size: 16px;
}
.top-ft_redaria {
  background-color: #2c3338;
  padding: 50px 50px 10px;
}
.ft-menu_one {
  display: flex;
  flex-wrap: wrap;
}
.ft-menu_one li {
  margin: 0 10px;
}
.ft-menu_one li a {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 14px;
}
.ft-menu_brand {
  display: flex;
  margin: 20px 0 0;
  /* justify-content: center; */
}
.ft-menu_brand a {
  color: #fff;
  font-size: 14px;
}
.ft-menu_brand_ttl {
  padding: 0 20px;
  border-right: solid 1px #fff;
}
.ft-menu_brand_list {
  margin: 0 20px;
  display: flex;
  flex-wrap: wrap;
}
.ft-menu_brand_list li {
  padding: 0 20px;
}
.copyright {
  color: #fff;
  text-align: right;
  font-size: 12px;
  margin: 40px 0 0;
}
.ft-menu_other {
  margin: 10px 0 0;
  display: flex;
}
.ft-menu_other li a {
  color: #fff;
  font-size: 0.8rem;
  padding: 0 10px;
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  #footer {
  }
  .top-ft {
  }
  .top-ft_adress_wrap {
    display: block;
    margin: 0;
    border-top: solid 2px #ca0000;
    padding: 10% 10% 10%;
  }
  .top-ft_logo_wrap {
    justify-content: center;
    margin: 0 0 15%;
  }
  .top-ft_logo {
  }
  .top-ft_logo_txt {
    font-size: 16px;
    text-align: center;
  }
  .top-ft_adress {
  }
  .top-ft_company {
    margin: 0 auto;
  }
  .top-ft_adress .ad {
    text-align: center;
  }
  .reserved {
  }
  .top-ft_redaria {
    margin: 0;
    padding: 0;
  }
  .ft-menu_one {
    /* display: block; */
    padding: 5%;
    justify-content: center;
  }
  .ft-menu_one li {
    margin: 0 10px 10px;
  }
  .ft-menu_one li a {
  }
  .ft-menu_brand {
    margin: 0;
    justify-content: center;
  }
  .ft-menu_brand a {
  }
  .ft-menu_brand_ttl {
  }
  .ft-menu_brand_list {
    display: block;
  }
  .ft-menu_brand_list li {
  }
  .copyright {
    text-align: center;
    padding: 0 0 10px;
  }
  .ft-menu_other {
    justify-content: center;
  }
}
/*---------------------------------
トップへ戻る
-----------------------------------*/
#page-top {
  position: fixed;
  bottom: 30px;
  /* right: 110px; */
  width: 110px;
  right: 0;
  z-index: 999;
}
#page-top a {
  display: block;
  color: #a7aaad;
  font-size: 50px;
  text-align: center;
  text-decoration: none;
}
#page-top.on a {
  color: #fff;
}
#page-top a:hover {
  opacity: 0.8;
  transition: all 0.2s ease-out 0s;
}
@media screen and (max-width: 768px) {
  #page-top {
    bottom: 20px;
    right: 10px;
    width: initial;
  }
  #page-top a {
    font-size: 40px;
  }
}

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