/*
Theme Name: rental_catalog
Author: Tokyokimono
License: Tokyokimono
*/

/* ------------------------------------------------------------------
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, div, 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, #kv {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
input, textarea {
	margin: 0;
	padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: bottom;
}
table {
  border-collapse: collapse;
}
ol, ul {
    list-style: none;
}
caption, th {
    text-align: left;
}

/************************************
form
*************************************/
option,
select,
textarea,
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
  outline: 0;
  margin: 0;
  background: #fff;
}
button {
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
  outline: 0;
  margin: 0;
}

/* デフォルトのradio、checkboxは非表示 */
input[type=radio],
input[type=checkbox] {
  display: none;
}

/* for firefox */
select {
  text-indent: 0.01px;
  text-overflow: '';
}

/* for ie10 ie11 ie系のプルダウンの矢印を消す ie9は非対応 */
select::-ms-expand {
  display: none;
}

/* clearfix */
.cf {
  zoom: 1;
}
.cf:before, .cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
html, body {
  color: #232323;
  width: 100%;
  font-size: 16px;
  font-family: Verdana, Roboto, "ヒラギノ角ゴ ProN W3", "Droid Sans", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.6;
}
input[type="submit"], input[type="reset"], input[type="button"], button {
  cursor: pointer;
  -webkit-appearance: button;
 *overflow: visible;
}
input[type="text"], textarea, input[type="submit"] {
  -webkit-appearance: none;
}
* {
  box-sizing: border-box;
}
a {
  color: #232323;
  text-decoration: none;
  transition: 0.3s linear;
}
a:visited {
  color: #232323;
  text-decoration: none;
}
a:hover {
  color: #232323;
  text-decoration: none;
}
a img {
  backface-visibility: hidden;
  transition: 0.3s linear;
}
a img:hover {
  opacity: .7;
}

/* ------------------------------------------------------------------
style-common
------------------------------------------------------------------*/



/* ------------------------------------------------------------------
320px 〜 768px
------------------------------------------------------------------*/
@media screen and (min-width:320px) {
  .tab {
    display: none;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .align_r {
    text-align: right;
  }
  
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#fff;  /* 背景カラー */
    z-index: 9999;  /* 一番手前に */
    pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
    opacity: 0;  /* 初期値 : 透過状態 */
    -webkit-transition: opacity .8s ease;  /* アニメーション時間は 0.8秒 */
    transition: opacity .8s ease;
  }
  body.fadeout::after {
    opacity: 1;
  }
  
  #container {
    position: relative;
  }
  
  /* =========== header =========== */
  #header {
    background: rgba(242,241,239,.9);
    /* height: 50px; */
    position: fixed;
    width: 100%;
    z-index: 999;
  }
  header {
    height: 100%;
    width: 100%;
  }
  .header_top {
    padding: 5px 0;
    position: relative;
    /* height: 50px; */
  }
  .logo {
    text-align: center;
    width: 15%;
    margin: auto;
  }
  .logo img {
    max-height: 100%;
  }
  
  /* ----- menu ----- */
  .open-menu {
    margin: auto;
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
  }
  .close-menu {
    position: absolute;
    top: 25px;
    right: 50px;
  }
  .open-menu, .close-menu {
    transition: transform 0.30s;
  }
  .overlay {
    background: rgba(255, 255, 255, 1);
    height: 100%;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity .35s, visibility .35s, height .35s;
    visibility: hidden;
    width: 100%;
  }
  .overlay.open {
    height: 100%;
    opacity: 1;
    visibility: visible;
  }
  .overlay nav {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 11px;
    padding-top: 50px;
    text-align: center;
  }
  .overlay ul {
    /* display: inline-block; */
    height: 100%;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    position: relative;
  }
  .overlay ul li {
    display: block;
    /* opacity: 0; */
    padding: 0 5px;
    position: relative;
  }
  .overlay ul li a {
    color: #232323;
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
  }
  .overlay ul li a:after {
    background: #232323;
    content: '';
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    transition: .35s;
    width: 0%;
  }
  .overlay.open li {
    animation: fadeInRight .5s ease forwards;
    animation-delay: .35s;
    border-bottom: 1px dotted #ddd;
    line-height: 50px;
    position: relative;
  }
  .overlay.open li a {
    font-size: 1.1rem;
    text-decoration: none;
    color: $text-color;
    height: 50px;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
  }
  .overlay.open li ul {
    border-top: 1px dotted #ddd;
    margin: 0;
  }
  /*開閉ボタン*/
  .accordionBtn {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 1;
    position: absolute;
    top: 0;
    right: 0;
    padding: 13px 15px 15px 17px;
    border-left: 1px solid #ddd;
  }
  .accordionBtn:before {
    color: #888;
    content: "\f067";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
  }
  .accordionBtn.active:before {
    content: "\f068";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
  }
  .sub-menu li {
    background: #fafafa;
  }
  .sub-menu .sub-menu li {
    background: #fdfdfd;
  }
  
  
  /* =========== contents =========== */
  main {
    padding-top: 50px;
  }
  .breadcrumbs {
    margin: 0 auto;
    padding: 2% 0;
    width: 96%;
  }
  .breadcrumbs a {
    text-decoration: underline;
  }
  .breadcrumbs a:hover {
    color: #3f2d26;
  }
  .inner {
    margin: 0 auto;
    padding: 8% 0;
    width: 96%;
  }
  h2 {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 8%;
    text-align: center;
  }
  .bg h2 {
    color: #fff;
  }
  h2 span {
    display: inline-block;
    font-size: 1rem;
    padding: 0 55px;
    position: relative;
  }
  h2 span:before, h2 span:after{
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 1px;
    background-color: #232323;
  }
  .bg h2 span:before, .bg h2 span:after{
    background-color: #fff;
  }
  h2 span:before {
    left:0;
  }
  h2 span:after {
    right: 0;
  }
  p.att {
    background: #fff;
    border: solid 1px #c9c9c9;
    border-top: 3px solid #a51f38;
    margin: 0 auto 8%;
    padding: 5%;
    width: 96%;
  }
  p {
    margin-bottom: 1em;
  }
  
  /* control */
  .control h3 {
    margin-bottom: 0;
  }
  .searchbox {
    width: 100%;
  }
  .searchbox tr.sp {
    display: table-row;
  }
  .searchbox th {
    padding: 0 2%;
  }
  .searchbox td {
    display: block;
    padding: 2%;
    width: 100%;
  }
  .searchbox .field_select {
    width: 100%;
  }
  .searchbox input[type='submit'] {
    background: #3f2d26;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 10px 15px;
    width: 100%;
  }
  .searchbox input[type='submit']:hover {
    opacity: .7;
  }
  .field_select {
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .field_select:after {
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
    top: 50%;
    right: 10px;
    margin-top: -3px;
    pointer-events: none;/* クリック出来るよう */
  }
  .field_select select {
    border: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    position: relative;
    width: 100%;
  }
  .searchbox input[type='submit'] {
    background: #3f2d26;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    height: 50px;
    width: 100%;
  }
  .searchbox input[type='submit']:hover {
    opacity: .7;
  }
  .searchbox .searchsubmit {
    font-family: Font Awesome\ 5 Free;
    font-size: 1rem;
    font-weight: 900;
  }
  
  /* ----- 検索ボックス ----- */
  .search_ttl {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .searchform {
    margin: 0 auto 8%;
    position: relative;
    width: 96%;
  }
  .searchfield {
    border: 1px solid #ccc;
    border-radius: 4px;
    /* border-right: none; */
    font-size: 1.3rem;
    height: 50px;
    outline: 0;
    padding: 10px 15px;
    width: 100%;
  }
  .searchform .searchsubmit {
    background: #3f2d26;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    font-family: Font Awesome\ 5 Free;
    font-size: 1rem;
    font-weight: 900;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.3s linear;
    width: 30%;
  }
  .searchsubmit:hover {
    opacity: .7;
  }
  
  /* ----- 検索結果 ----- */
  .result {
    display: block;
    margin-bottom: 1%;
  }
  .result li {
    background: transparent;
    display: inline-block;
    margin-right: 3%;
    width: auto;
  }
  
  /* ----- kimono ----- */
  .gallery_article {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 2%;
  }
  .gallery {
    margin-bottom: 5%;
    overflow: hidden;
    width: 48%;
  }
  .gallery img {
    margin-bottom: 2%;
  }
  .gallery h3 {
    font-size: 1rem;
  }
  
  /* ----- popup ----- */
  .inline {
    background: #fff;
    padding: 3%;
  }
  .inline h3 {
    border-bottom: solid 3px #bfafa2;
    color: #3f2d26;
    margin-bottom: 5%;
    padding-right: 8%;
    position: relative;
  }

  .inline h3:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #a51f38;
    bottom: -3px;
    width: 30%;
  }
  .inline .slider {
    margin-bottom: 16%;
  }
  .inline li {
    text-align: center;
  }
  .inline img {
    margin: 0 auto 3%;
    width: 70%;
  }
  .inline table {
    margin: 0 auto 5%;
    width: 100%;
  }
  .inline table tr {
    border-top: solid 1px #c9c9c9;
  }
  .inline table tr:first-child {
    border: none;
  }
  .inline table th {
    background: #f2f1ef;
    border-left: solid 1px #c9c9c9;
    color: #3f2d26;
    font-weight: bold;
    padding: 1%;
    text-align: center;
    vertical-align: middle;
  }
  .inline table th:first-child {
    border-left: none;
  }
  .inline table td {
    border-left: solid 1px #c9c9c9;
    padding: 1% 3%;
    vertical-align: middle;
  }
  .calendar {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    width: 100%;
  }
  .calendar .c_ti {
    background-color: #3f2d26;
  }
  .calendar_bnr {
    text-align: center;
  }
  /* .calendar {
    position:relative;
    width:100%;
    height:0;
    padding-top:75%;
  }
  .calendar iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
  } */
  p.caption {
    background: transparent;
    border: none;
    padding: 0;
  }
  
  
  /* =========== side_btn =========== */
  /* ----- to_top ----- */
  #to_top {
    font-size: 77%;
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 20;
  }
  #to_top a {
      background: #bfafa2;
      border-radius: 8px;
      color: #3f2d26;
      display: block;
      height: 50px;
      opacity: .7;
      padding: 17px 0;
      text-align: center;
      width: 50px;
  }
  #to_top a:hover {
      background: #a57563;
      opacity: 1;
  }
  .icon-arrow_up:before {
    content: "\f106";
    font-family: Font Awesome\ 5 Free;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: .9;
  }
  
  
  /* =========== footer =========== */
  /* ----- footer ----- */
  footer address {
    background: rgba(242,241,239,1);
    padding: 2%;
    text-align: center;
  }
  footer address a {
    color: #3f2d26;
    font-weight: bold;
  }
  #copy {
    text-align: center;
  }
  
   @keyframes AnimationName {
     0% {
    background-position:0% 50%
    }
     50% {
    background-position:100% 50%
    }
     100% {
    background-position:0% 50%
    }
  }
  
  /* ----- .pagination ----- */
  .pagination {
    text-align: center;
    width: 100%;
    display: block
  }
  .pagination a {
      background: #f2f1ef;
      color: #3f2d26;
      text-decoration: none
  }
  @media only screen and (max-width: 766px) {
    .pagination .page_inner {
      width: 100%;
      margin: 0 0 8%;
      position: relative;
      display: -webkit-box;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      height: 46px
    }
    .pagination .page-of {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 2;
      -webkit-order: 2;
      order: 2;
      position: absolute;
      left: 37%;
      width: 26%;
      color: #fff;
      background: #3f2d26;
      height: 46px;
      line-height: 46px;
    }
    .pagination .m-prev {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: 0;
      -webkit-order: 0;
      order: 0;
      width: 15%;
      position: absolute;
      left: 0%
    }
    .pagination .pn-prev {
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 1;
      -webkit-order: 1;
      order: 1;
      width: 22%;
      position: absolute;
      left: 15%
    }
    .pagination .pn-next {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 3;
      -webkit-order: 3;
      order: 3;
      width: 22%;
      position: absolute;
      left: 63%
    }
    .pagination .m-next {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 4;
      -webkit-order: 4;
      order: 4;
      width: 15%;
      position: absolute;
      left: 85%
    }
    .pagination .current, .pagination .pn-numbers {
      display: none
    }
    .pagination a {
      line-height: 46px;
      height: 46px;
    }
  }
  
  /*開閉ボタン*/
  .accordionBtn {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 13px 15px 15px 17px;
    border-left: 1px solid #ddd;
  }
  .accordionBtn:before {
    color: #888;
    content: "\f067";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
  }
  .accordionBtn.active:before {
    content: "\f068";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
  }
  .children li {
    background: #fafafa;
  }
  .children .children li {
    background: #fdfdfd;
  }
  .widget li ul {
    border-top: 1px dotted #ddd;
     margin: 0;
  }
  .widget li ul a {
     padding-left: 1em;
  }

  li.cat-item a:hover {
    color: #bfafa2;
  }
  
}

/* ------------------------------------------------------------------
768px〜
------------------------------------------------------------------*/
@media screen and (min-width:767px) {
  .sp {
    display: none;
  }
  .pc {
    display: none;
  }
  .tab {
    display: block;
  }
  
  body {
    padding-top: 0;
  }
  
  /* =========== header =========== */
  #header {
    height: auto;
  }
  header {
    padding: 0;
  }
  header address {
    float: right;
    text-align: right;
  }
  header address a {
    color: #3f2d26;
    font-weight: bold;
  }
  .header_top {
    height: auto;
    margin: 0 auto;
    padding: 10px 0;
    width: 98%;
  }
  .logo {
    /* height: 45px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0; */
    float: left;
    width: 5%;
  }
  
  address a:hover {
    color: #3f2d26;
    opacity: .7;
  }
  
  /* ----- g_nav ----- */
  .g_nav {
    background: rgba(250,250,250,.9);
    border-top: solid 1px #c9c9c9;
    padding: 15px;
    width: 100%;
  }
  #fix_nav.is-fixed {
    height: 130px;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 15;
  }
  .menu-gnav-container {
    margin: 0 auto;
    width: 100%;
  }
  .g_nav ul {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    text-align: center;
  }
  .g_nav li {
    background: #999;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    line-height: 2.5;
    margin-bottom: 1%;
    -webkit-transition: none;
    transition: none;
    box-shadow: 0 3px 0 #777;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    width: 19%;
  }
  .g_nav li a {
    color: #fff;
    display: block;
    padding: 0;
  }
  .g_nav li a:hover {
    background-color: #BBBBBB;
    box-shadow: 0 3px 0 #999;
  }
  .g_nav li a:active {
    top: 3px;
    box-shadow: none;
  }
  
  /* =========== contents =========== */
  main {
    padding-top: 0;
  }
  main.child {
    /* padding-top: 135px; */
  }
  main.child.no_kv {
    padding-top: 12%;
  }
  .breadcrumbs {
    padding: 1% 0;
    width: 95%;
  }
  .inner {
    width: 95%;
  }
  h2 {
    font-size: 1.8rem;
    margin-bottom: 8%;
  }
  h3 {
    font-size: 1.8rem;
  }
  h4 {
    margin-bottom: 1%;
  }
  .btn {
    width: 60%;
  }
  
  /* searchbox */
  .searchbox {
    table-layout: fixed;
  }
  .searchbox tr.sp {
    display: none;
  }
  .searchbox td {
    display: table-cell;
    padding: 2%;
    vertical-align: middle;
    width: 25%;
  }
  .searchbox input[type='submit'] {
    width: 100%;
  }
  
  /* ----- kimono ----- */
  .gallery_article {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .gallery_article::after{
    content:"";
    display: block;
    width: 32%;
  }
  .gallery {
    display: block;
    margin: 0 0 3% 1%;
    overflow: hidden;
    width: 32%;
    z-index: 1;
  }
  .article_top img {
    margin-bottom: 5%;
  }
  .gallery img {
    margin-bottom: 0;
  }
  .gallery img:hover {
    opacity: .7;
  }
  
  /* ----- popup ----- */
  .inline {
    margin: 0 auto;
    width: 80%;
  }
  .inline .slider {
    margin-bottom: 16%;
  }
  .inline img {
    margin: 0 auto 3%;
  }
  .inline table {
    margin: 0 auto 5%;
    width: 100%;
  }
  
  
  /* =========== side_btn =========== */
  /* ----- to_top ----- */
  
  
  /* =========== footer =========== */
  /* ----- footer ----- */
  footer {
    margin: 0 auto;
    padding: 1% 0;
    width: 98%;
  }
  footer address {
    display: none;
  }
  #copy {
    background: #fff;
    clear: both;
    padding: .5% 0;
    text-align: center;
  }
  
  /* ----- .pagination ----- */
  .pagination {
    margin-bottom: 8%;
  }
  .pagination .page-of {
    display: block;
    width: 100%;
    font-size: 108%;
    color: #333;
    text-align: center;
    margin-bottom: 2%;
  }
  .pagination a, .pagination .current {
    display: inline-block;
    padding: 0 1.5em;
    font-weight: bold;
    line-height: 50px;
    height: 50px
  }
  .pagination .current {
    background: #3f2d26;
    color: #fff
  }
  .pagination a:hover {
    background: #bfafa2;
  }
  
}

/* ------------------------------------------------------------------
1025px〜
------------------------------------------------------------------*/
@media screen and (min-width:1025px) {
  
  .sp {
    display: none;
  }
  .tab {
    display: block;
  }
  .pc {
    display: block;
  }
  
  /* =========== header =========== */
  .header_top {
    width: 1024px;
  }
  
  /* ----- g_nav ----- */
  .g_nav {
    padding: 8px 0 3px;
  }
  .menu-gnav-container {
    margin: 0 auto;
    width: 1024px;
  }
  .g_nav li {
    padding: 0 4px;
  }
  
  /* =========== breadcrumbs =========== */
  .breadcrumbs {
    width: 1024px;
  }
  /* =========== contents =========== */
  .inner {
    width: 1024px;
  }
  
  /* searchbox */
  .searchbox {
    margin-bottom: 5%;
  }
  .searchbox th,
  .searchbox td {
    padding: 1%;
  }
  
  /* ----- kimono ----- */
  .gallery {
    display: block;
    margin: 0 2.66% 3% 0;
    overflow: hidden;
    width: 23%;
    z-index: 1;
  }
  .gallery:nth-child(4n) {
    margin-right: 0;
  }
  .item.muuri-dragging,
  .item.muuri-releasing {
    z-index: 2;
  }
  .item.muuri-hidden {
    z-index: 0;
  }
  .item-content {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  /* ----- popup ----- */
  .inline {
    margin: 0 auto;
    width: 60%;
  }
  .inline img {
    margin: 0 auto 3%;
  }
  
  
  /* ----- to_top ----- */
  #to_top {
    right: 35px;
  }
  
  .search_ttl {
    font-size: 1.4rem;
  }
  
  /* =========== footer =========== */
  /* ----- footer ----- */
  footer {
    width: 1024px;
  }
  .foot_logo {
    width: 33%;
  }
  
}
