@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : common.css
 author     : Ability Consultant
 style info : 基本・共通設定
=================================================================== */

@media only screen and (min-width: 0px) {
  body .sp_on {
    display: block;
  }

  body .pc_on {
    display: none;
  }

  h2 {
    position: absolute;
    font-family: "Noto Serif JP", system-ui;
    font-size: 40px;
    letter-spacing: 4px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

  h3 {
    text-align: center;
    font-size: 19px;
    line-height: 1.2em;
  }

  h3 span {
    font-size: 13px;
    letter-spacing: 2px;
  }

  body {
    background-image: url(/suirei/images/common/back_washi.webp);
    color: #ffffff;
    -webkit-text-size-adjust: none;
    font-weight: 400;
    font-family: "Noto Serif JP", system-ui;
    font-size: 13px;
    letter-spacing: 1.4px;
    line-height: 1.9;
  }

  body a {
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    -o-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
  }

  body a:hover,
  body a.touchstart {
    text-decoration: none;
    opacity: 0.75;
    background: none;
  }

  /* ===================================================================
       header
    =================================================================== */
  .box_hnav.sp_on {
    position: absolute;
    top: 15px;
    right: 4.5%;
    text-align: right;
    z-index: 1;
  }

  .box_hnav.sp_on .wrp_lnk {
    position: relative;
  }

  .box_hnav.sp_on > *:first-child {
    margin-left: 0;
  }

  .box_hnav.sp_on .wrp_lnk .st {
    position: relative;
    padding-bottom: 3px;
    color: #fff;
  }

  .box_hnav.sp_on .wrp_lnk.lang .st {
    letter-spacing: 0.06em;
  }

  .box_hnav.sp_on .wrp_lnk .st:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
  }

  .box_hnav.sp_on .wrp_lnk .st:before,
  .box_hnav.sp_on .wrp_lnk .st:after {
    font-family: FontAwesome;
    vertical-align: middle;
  }

  .box_hnav.sp_on .wrp_lnk.lang .st:before {
    background: #acacac;
  }

  .box_hnav.sp_on .wrp_lnk .st:after {
    content: "";
    margin-left: 0.5em;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    line-height: 1;
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease;
  }

  .box_hnav.sp_on .wrp_lnk ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  .box_hnav.sp_on .wrp_lnk ul li {
    border-bottom: 1px solid transparent;
  }

  .box_hnav.sp_on .wrp_lnk ul li a {
    display: block;
    padding: 0.5em;
    background: #000;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
  }

  #menu_list {
    position: fixed;
    /* position: relative; */
    top: -100px;
    left: 0;
    width: 100%;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.8);
    color: white;
    z-index: 1000;
    transition: top 0.7s ease-in-out;
    z-index: 2;
  }

  .header-content {
    display: grid;
    grid-template-columns: 1fr 115px 30px;
    align-items: center;
    padding: 0 10px;
    height: 100%;
  }

  .header-content p {
    width: 145px;
  }

  .header-content p a {
    display: block;
  }

  .logo {
    height: auto;
  }

  .reservation-btn {
    background-color: #000000;
    border: none;
    width: 100px;
    height: 55px;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    font-size: 14px;
  }

  #menu-icon {
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
  }

  #menu-icon span {
    display: block;
    width: 100%;
    height: 1px;
    background: #333;
    position: absolute;
    transition: all 0.3s ease;
  }

  #menu-icon span:nth-child(1) {
    top: 0;
  }

  #menu-icon span:nth-child(2) {
    top: 50%;
  }

  #menu-icon span:nth-child(3) {
    bottom: 0;
  }

  #menu-icon.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }

  #menu-icon.open span:nth-child(2) {
    opacity: 0;
  }

  #menu-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
  }

  #nav-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 54px;
    width: 100%;
    z-index: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 20px 0;
    height: 90dvh;
    overflow-y: scroll;
  }

  #nav-menu.active {
    opacity: 1;
  }

  #nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #nav-menu ul li {
    border-bottom: 1px solid #444;
  }

  #nav-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-size: 13px;
  }
  #nav-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-size: 13px;
  }

  #nav-menu ul li.btn_link img {
    margin-bottom: 4px;
    width: 13px;
  }

  #nav-menu ul.sns li {
    border-bottom: none;
  }

  #nav-menu ul.sns li a {
    width: 35px;
    margin: 0 auto;
    padding: 15px 20px 0;
  }

  /* #nav-menu ul li.lang_link {
    display: flex;
    justify-content: center;
    margin: 30px auto 0;
    padding: 0 0 10px 0;
    border: none;
  } */

  #nav-menu .lang_link li {
    display: flex;
    justify-content: center;
    margin: 30px auto 0;
    padding: 0 0 10px 0;
    border: none;
  }
  #nav-menu .lang_link li a {
    padding: 0 10px;
  }

  #nav-menu .lang_link li p {
    border-right: solid 1px #444;
  }
  #nav-menu .lang_link li p:last-child {
    border-right: none;
  }
  /* #nav-menu ul li.lang_link .lang_link_jp {
    border-right: solid 1px #444;
  }

  #nav-menu ul li.lang_link .lang_link_jp a,
  #nav-menu ul li.lang_link .lang_link_en a {
    padding: 0px 20px;
  } */

  /* ===================================================================
        main_visual
    =================================================================== */
  #page {
    padding-bottom: 1em;
  }

  /* ===================================================================
        contents
    =================================================================== */
  #contents .con_title {
    overflow: hidden;
    position: relative;
  }

  /* ===================================================================
        footer
    =================================================================== */
  #footer {
    overflow: hidden;
    background: url(/suirei/images/common/footer_main.webp) no-repeat;
    background-position: 80% 100%;
    background-size: cover;
  }

  .black_filter {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
  }

  #footer .con_fnav {
    background: url(../images/common/bg1.png) left top;
    padding: 30px 0 0;
  }

  #footer .con_fnav .box_fnav {
    padding: 0;
    width: 85%;
    text-align: center;
    margin: auto;
  }

  #footer .con_fnav .box_fnav .fnav {
    margin: auto;
  }
  #footer .con_fnav .box_fnav .fnav .inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    height: 480px;
    flex-direction: column;
    gap: 0 4%;
  }
  #footer .con_fnav .box_fnav .fnav .inner li {
    padding: 7px 0;
    text-align: left;
  }

  #footer .con_fnav .box_fnav .fnav .inner ul {
    padding-left: 0.7em;
    text-align: left;
  }

  #footer .con_fnav .box_fnav .fnav .inner ul li {
    padding: 5px 0;
    width: auto;
  }

  #footer .con_fnav .box_fnav .fnav .inner ul li:first-child {
    margin-top: 0;
  }

  #footer .con_fnav .box_fnav .fnav .inner > * a:hover {
    text-decoration: none;
    opacity: 0.75;
    background: none;
  }

  img.ex_link {
    width: 12px;
    height: 12px;
    padding: 0 0 4px;
  }

  #footer .con_fnav .foot_sns {
    width: 40px;
    margin: 0 auto;
    padding: 10px 0 0;
  }

  #footer .con_fnav .foot_sns ul li a {
    display: block;
  }

  #footer .con_fnav .foot_sns ul li a:hover {
  }

  #footer .con_footer {
    width: 100%;
  }

  #footer .con_footer .box_footer .inner {
    width: 100%;
    margin: auto;
    padding: 20px 0 30px;
    box-sizing: border-box;
  }

  #footer .con_footer .box_footer .inner .wrp_logo {
    text-align: center;
    width: 75%;
    margin: 10px auto 30px;
    border: 1px solid #fff;
  }

  #footer .con_footer .box_footer .inner .wrp_logo .logo,
  #footer .con_footer .box_footer .inner .wrp_logo .sns {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
  }

  #footer .con_footer .box_footer .inner .wrp_logo .logo {
    font-size: 15px;
    padding: 4px 0;
    height: auto;
    width: 100%;
  }

  #footer .con_footer .box_footer .inner .wrp_logo .logo a {
    display: block;
  }

  #footer .con_footer .box_footer .inner .wrp_info {
    margin-top: 1em;
    width: 90%;
    margin: 25px auto 0;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information {
    margin-top: 1em;
    font-size: 16px;
    width: 100%;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information:first-child {
    margin-top: 0;
  }

  #footer .con_footer .box_footer .inner .wrp_info:after {
    content: "";
    display: table;
    clear: both;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information dd {
    padding: 20px 0 10px;
    border-top: solid 1px;
    width: 100%;
    margin: 30px auto 0;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information dd > div {
    text-align: center;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information dd > div .txt_tel {
    line-height: 1;
    font-size: 16px;
    color: #ffffff;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information dd > div .txt_tel a,
  #footer .con_footer .box_footer .inner .wrp_info .information dd > div .txt_tel span {
    color: #ffffff;
    line-height: 1.2;
  }

  #footer .group_footer {
    width: 150px;
    margin: 0 auto 10px;
  }

  #footer #copyright {
    padding: 0.5em 0;
    text-align: center;
  }
  /* ===================================================================
        tripla-cookie-consent 
    =================================================================== */
  #tripla-cookie-consent .style-wrapper-99c7fa {
    text-align: left;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
      sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #3b3b3b;
    line-height: 1.5;
    letter-spacing: 0;
    font-feature-settings: normal;
    min-width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 13px 15px;
  }

  #tripla-cookie-consent .style-wrapper-99c7fa a {
    color: #3b3b3b;
    text-decoration: underline;
  }

  #tripla-cookie-consent .style-wrapper-99c7fa .style-button-799e8e {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
      sans-serif;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    color: #3b3b3b;
    line-height: 1.5;
    letter-spacing: 0;
    font-feature-settings: normal;
  }

  #tripla-cookie-consent .style-wrapper-99c7fa .button-btn-f51c1a {
    width: 100%;
    text-align: center;
    font-size: 13px;
    line-height: 1;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 2.1;
  }

  h3 {
    text-align: center;
    font-size: 24px;
    line-height: 1.1;
  }

  h3 span {
    font-size: 15px;
  }

  #footer .con_fnav {
    padding: 50px 0 0;
  }

  img.ex_link {
    width: 15px;
    height: 15px;
    padding: 0 0 4px;
  }

  #footer .con_fnav .box_fnav {
    width: 100%;
  }

  #footer .con_fnav .box_fnav .fnav .inner {
    height: 380px;
    width: 80%;
  }
  #footer .con_footer .box_footer .inner {
    width: 700px;
  }

  #footer .con_footer .box_footer .inner .wrp_logo {
    text-align: center;
    width: 300px;
    margin: 30px auto 0;
    border: 1px solid #fff;
  }

  #footer .con_footer .box_footer .inner .wrp_logo .logo {
    font-size: 15px;
    padding: 4px 0;
    height: auto;
    width: 100%;
  }

  #footer .con_footer .box_footer .inner .wrp_logo .logo a {
    display: block;
  }

  #footer .con_footer .box_footer .inner .wrp_info {
    width: 100%;
    margin: 25px auto 0;
    border-top: solid 1px;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information {
    display: table;
    font-size: 24px;
    width: 440px;
    margin: 0 auto;
    padding: 35px 0 0;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information dt,
  #footer .con_footer .box_footer .inner .wrp_info .information dd {
    padding: 0 15px;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information dt,
  #footer .con_footer .box_footer .inner .wrp_info .information dd {
    display: table-cell;
    vertical-align: middle;
    border-top: none;
  }

  #footer .group_footer {
    width: 150px;
    margin: 25px auto 15px;
  }

  #footer .con_footer .box_footer .inner .wrp_info .information dd > div .txt_tel {
    color: #ffffff;
    font-size: 24px;
  }

  /* ===================================================================
        tripla-cookie-consent 
    =================================================================== */
  #tripla-cookie-consent .style-wrapper-99c7fa {
    display: grid;
    grid-template-columns: auto 0 141px;
    align-items: center;
    column-gap: 13px;
    justify-content: center;
    padding: 13px 35px 13px;
    font-size: 13px;
  }

  #tripla-cookie-consent .style-wrapper-99c7fa .style-button-799e8e {
    line-height: 1.3;
    font-size: 14px;
  }

  #tripla-cookie-consent .style-wrapper-99c7fa .button-btn-f51c1a {
    width: 141px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  body .sp_on {
    display: none;
  }

  body .pc_on {
    display: block;
  }

  #header .con_nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
  }

  #header .con_nav .header_box {
    position: absolute;
    top: 15px;
    right: 4.5%;
    text-align: right;
    display: grid;
    grid-auto-flow: column;
    justify-content: end;
  }

  #header .con_nav .head_sns {
    margin: 0 20px 0 0;
  }

  #header .con_nav .head_sns ul {
    display: flex;
  }

  #header .con_nav .head_sns ul li {
    width: 27px;
    padding-right: 8px;
  }

  #header .con_nav .head_sns ul li:last-child {
    padding-right: 0;
  }

  #header .con_nav .sub_link ul {
    margin-top: 2px;
    display: grid;
    grid-auto-flow: column;
    justify-content: end;
    gap: 20px;
  }

  #header .con_nav .sub_link ul li {
    font-size: 16px;
  }

  #header .con_nav .sub_link ul li a {
    color: #fff;
    text-decoration: none;
  }

  #header .con_nav .sub_link ul li a img {
    width: 14px;
    margin-top: -3px;
  }

  #header .con_nav .box_hnav > * {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    letter-spacing: normal;
    vertical-align: top;
    margin-left: 22px;
    text-align: center;
  }

  #header .con_nav .box_hnav > *:first-child {
    margin-left: 0;
  }

  #header .con_nav .box_hnav .wrp_lnk {
    position: relative;
    margin: 0 0 0 20px;
  }

  #header .con_nav .box_hnav .wrp_lnk .st {
    position: relative;
    padding-bottom: 3px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.06em;
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    -o-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
  }

  #header .con_nav .box_hnav .wrp_lnk .st:hover,
  #header .con_nav .box_hnav .wrp_lnk .st.active {
    cursor: pointer;
    opacity: 0.75;
  }

  #header .con_nav .box_hnav .wrp_lnk .st:before,
  #header .con_nav .box_hnav .wrp_lnk .st:after {
    font-family: FontAwesome;
    vertical-align: middle;
  }

  #header .con_nav .box_hnav .wrp_lnk .st:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
  }

  #header .con_nav .box_hnav .wrp_lnk .st:after {
    content: "";
    margin-left: 0.5em;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    line-height: 1;
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease;
  }

  #header .con_nav .box_hnav .wrp_lnk.lang .st:before {
    background: #acacac;
  }

  #header .con_nav .box_hnav .wrp_lnk ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  #header .con_nav .box_hnav .wrp_lnk ul li {
    border-bottom: 1px solid transparent;
  }

  #header .con_nav .box_hnav .wrp_lnk ul li a {
    display: block;
    padding: 0.5em;
    background: #000;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: background 500ms ease;
    -moz-transition: background 500ms ease;
    -o-transition: background 500ms ease;
    transition: background 500ms ease;
  }
  #header .con_nav .box_hnav .wrp_lnk ul li a:hover {
    background: #495053;
    opacity: 1;
  }

  #header .con_nav .box_nav {
    overflow: hidden;
    position: fixed;
    top: -70px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
    box-sizing: border-box;
    -webkit-transition: top 500ms ease;
    -moz-transition: top 500ms ease;
    -o-transition: top 500ms ease;
    transition: top 500ms ease;
  }

  .activeFix #header .con_nav .box_nav {
    top: 0;
  }

  #header .con_nav .box_nav .logo {
    float: left;
    display: block;
    margin: 1% 10px 0;
    width: 11%;
  }

  #header .con_nav .box_nav #gnav,
  #header .con_nav .box_nav #gnav {
    text-align: right;
  }

  #header .con_nav .box_nav #gnav {
    float: right;
    display: table;
  }

  #header .con_nav .box_nav #gnav li {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    vertical-align: bottom;
    text-align: left;
    display: table-cell;
    text-align: center;
  }

  #header .con_nav .box_nav #gnav li a,
  #header .con_nav .box_nav #gnav li a {
    position: relative;
    display: block;
    text-decoration: none;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, "Times New Roman", Times, Garamond, Georgia, serif;
    font-weight: bold;
    white-space: nowrap;
  }

  #header .con_nav .box_nav #gnav li a {
    padding: 16px 8px;
    font-size: 16px;
    color: #000000;
  }

  #header .con_nav .box_nav #gnav li a:after,
  #header .con_nav .box_nav #gnav li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #000000;
    margin: auto;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease;
  }

  #header .con_nav .box_nav #gnav li a:hover:after,
  #header .con_nav .box_nav #gnav li a:hover:after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }

  #header .con_nav .box_nav #gnav li.rsv {
    width: 105px;
  }

  #header .con_nav .box_nav #gnav li.rsv a,
  #header .con_nav .box_nav #gnav li.rsv a {
    color: #ffffff;
    background: #000000;
    -webkit-transition: background 500ms ease;
    -moz-transition: background 500ms ease;
    -o-transition: background 500ms ease;
    transition: background 500ms ease;
  }

  #header .con_nav .box_nav #gnav li.rsv a:hover {
    background: #495053;
    opacity: 1;
  }
  #header .con_nav .box_nav #gnav li.rsv a:hover:after {
    display: none;
  }

  #footer {
    background: url(/suirei/images/common/footer_main_pc.webp) no-repeat;
    width: 100%;
    background-position: 100% 100%;
  }

  #footer .con_fnav {
    padding: 50px 0 0;
  }

  #footer .con_fnav .box_fnav {
    width: 100%;
    padding: 40px 0 20px;
  }

  #footer .con_fnav .box_fnav .fnav .inner {
    width: 70%;
  }
  #footer .con_fnav .box_fnav .fnav .inner li {
    padding: 10px 0;
    text-align: left;
    line-height: 1.8;
  }

  #footer .con_fnav .box_fnav .fnav .inner > * a {
    font-size: 108%;
  }

  #footer .con_fnav .box_fnav .fnav .inner ul {
    padding-left: 0.7em;
  }

  #footer .con_fnav .box_fnav .fnav .inner ul li {
    padding: 5px 0;
    margin-top: 0;
  }

  #footer .con_fnav .foot_sns {
    width: 40px;
    margin: 0 auto;
    padding: 10px 0 0;
  }

  #footer .con_footer {
    display: table;
  }

  #footer .con_footer > * {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
  }

  #footer .con_footer .box_footer .inner {
    margin: 0 auto;
    box-sizing: border-box;
    width: 70%;
  }

  /* ===================================================================
        tripla-cookie-consent 
    =================================================================== */
  #tripla-cookie-consent .style-wrapper-99c7fa {
    font-size: 14px;
    padding: 10px 55px;
  }

  #tripla-cookie-consent .style-wrapper-99c7fa .style-button-799e8e {
    line-height: 1;
  }
}
@media only screen and (min-width: 1440px) {
  #header .con_nav .box_nav {
    padding: 0 3.75%;
  }
  #header .con_nav .box_nav .logo {
    margin: 10px 15px 0;
    width: 9%;
  }
  #header .con_nav .box_nav #gnav li a {
    padding: 16px 20px;
  }
  #header .con_nav .box_nav #gnav li.rsv {
    width: 150px;
  }
  #footer .con_fnav .box_fnav .fnav .inner {
    width: 55%;
    height: 400px;
  }
  #footer .con_fnav .box_fnav .fnav .inner li {
    width: 30%;
  }
}
