@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@font-face {
  font-family: "pref";
  font-display: swap;
  src: url("../fonts/pres.woff2") format("woff2");
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 1.6rem;
  color: #161619;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media all and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 2;
  }
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

i, em {
  font-style: normal;
}

@media all and (max-width: 750px) {
  .pcbr {
    display: none;
  }
}

.spbr {
  display: none;
}
@media all and (max-width: 750px) {
  .spbr {
    display: block;
  }
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
@media all and (max-width: 767px) {
  .inner {
    width: 84%;
  }
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  display: block;
  width: 100%;
}

.logo {
  position: relative;
  z-index: 110;
}
.logo .ln {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.logo img {
  height: 50px;
  transition: all 0.3s ease;
}
@media all and (max-width: 767px) {
  .logo img {
    height: 30px;
    width: auto;
  }
}

#nav-drawer {
  position: relative;
}

#nav-open {
  display: none;
  width: 55px;
  height: 55px;
  vertical-align: middle;
  padding: 46px 31.5px;
  box-sizing: border-box;
  z-index: 10000;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-left: 50px;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 1px; /*線の太さ*/
  width: 31px; /*長さ*/
  border-radius: 10px;
  background: white;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  width: 18px;
  bottom: -20px;
}
@media all and (max-width: 767px) {
  #nav-open {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 0;
    width: 56px;
    height: 56px;
    padding: 19px 12.5px;
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
}

#nav-close {
  display: block;
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

#nav-content {
  overflow: auto;
  top: 0;
  right: 0;
  z-index: 9999; /*最前面に*/
  width: auto; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: none; /*最大幅（調整してください）*/
  height: 100%;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-start;
}
#nav-content .sp_logo {
  display: none;
}
#nav-content .nv_1 {
  display: flex;
  justify-content: flex-end;
  padding: 30px 0 0 40px;
  box-sizing: border-box;
}
#nav-content .nv_1 p {
  display: inline-block;
  margin: 0 8px;
}
#nav-content .nv_1 a {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  color: white;
  letter-spacing: 0.2em;
  font-size: 1.3rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 20px;
}
#nav-content .nv_1 a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #AA2D2D;
  opacity: 0;
  transition: all 0.3s ease;
}
#nav-content .nv_1 a.act {
  color: rgb(255, 255, 255);
}
#nav-content .nv_1 a.act:before {
  opacity: 1;
}
#nav-content .nv_1 a:hover {
  color: rgb(255, 255, 255);
}
#nav-content .nv_1 a:hover:before {
  opacity: 1;
}
#nav-content .nv_1 .pcn {
  display: none !important;
}
#nav-content .nv_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
}
#nav-content .nv_2 .lang {
  color: white;
  font-size: 1.3rem;
  margin-right: 30px;
}
#nav-content .nv_2 .lang a {
  background: url("../images/line3.png") center right no-repeat;
  background-size: auto 14px;
  padding: 0 10px;
}
#nav-content .nv_2 .lang a i {
  position: relative;
}
#nav-content .nv_2 .lang a i:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: white;
  left: 0;
  bottom: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.3s ease;
}
#nav-content .nv_2 .lang a.act i {
  position: relative;
}
#nav-content .nv_2 .lang a.act i:before {
  transform: scale(1, 1);
  transition: all 0.3s ease;
}
#nav-content .nv_2 .lang a:last-of-type {
  background: none;
}
#nav-content .nv_2 .contact {
  display: block;
  background: url("../images/ct_arw1.png") center right 20px no-repeat, #AA2D2D;
  background-size: 13px auto;
  color: white;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  padding: 23px 20px;
  min-width: 220px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
#nav-content .nv_2 .contact i {
  padding-right: 20px;
  box-sizing: border-box;
}
#nav-content .nv_2 .contact em {
  position: relative;
}
#nav-content .nv_2 .contact em:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  background: white;
  transition: 0.3s;
}
#nav-content .nv_2 .contact:hover {
  background: url("../images/ct_arw1.png") center right 15px no-repeat, #AA2D2D;
  background-size: 13px auto;
}
#nav-content .nv_2 .contact:hover em:before {
  transform: scale(1, 1);
}
#nav-content .sp_res {
  display: none;
}
@media all and (max-width: 1000px) {
  #nav-content .nv_1 {
    padding: 30px 0 0 20px;
  }
}
@media all and (max-width: 767px) {
  #nav-content {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 100;
    width: 100%;
    display: block;
    text-align: center;
    padding-top: 90px;
    background: linear-gradient(to bottom, #21262B 0%, #323C46 100%);
  }
  #nav-content .sp_logo {
    display: block;
    width: 90px;
    margin: 0 auto 30px auto;
  }
  #nav-content .nv_1 {
    display: block;
    justify-content: unset;
    padding: 0;
    width: 84%;
    margin: 0 auto;
  }
  #nav-content .nv_1 p {
    display: block;
    margin: 0;
  }
  #nav-content .nv_1 a {
    display: block;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-size: 1.5rem;
    -ms-writing-mode: unset;
    writing-mode: unset;
    color: rgb(255, 255, 255);
    padding: 10px 0;
    border-top: 1.5px dotted #B7B7B7;
  }
  #nav-content .nv_1 a:before {
    content: none;
  }
  #nav-content .nv_1 p:last-of-type a {
    border-bottom: 1.5px dotted #B7B7B7;
  }
  #nav-content .nv_1 .pcn {
    display: block !important;
  }
  #nav-content .nv_1 .pcn i {
    background: url(../images/outlink.png) bottom 3px right no-repeat;
    background-size: 11px;
    padding-right: 18px;
  }
  #nav-content .nv_1 .pcn i em {
    text-decoration: underline;
  }
  #nav-content .nv_2 .lang {
    position: absolute;
    top: 20px;
    left: 7%;
  }
  #nav-content .nv_2 .contact {
    display: none;
  }
  #nav-content .sp_res {
    display: block;
  }
  #nav-content .res_bnr {
    width: 84%;
    margin: 30px auto 60px auto;
    display: block;
    padding: 30px 20px;
  }
  #nav-content .res_bnr p {
    font-size: 1.2rem;
  }
  #nav-content .res_bnr .fb {
    font-size: 1.5rem;
  }
  #nav-content .res_bnr .bt {
    width: 100%;
    margin-top: 10px;
  }
}

.body_fix #nav-content {
  opacity: 0;
  visibility: hidden;
}

#nav-content.nav_scr {
  background: white;
  box-shadow: 0 3px 5px rgba(50, 60, 70, 0.05);
}
#nav-content.nav_scr .nv_1 {
  padding: 25px 0 0 40px;
}
#nav-content.nav_scr .nv_1 p {
  display: inline-block;
  margin: 0 8px;
}
#nav-content.nav_scr .nv_1 a {
  font-size: 1.3rem;
  -ms-writing-mode: unset;
  writing-mode: unset;
  color: #161619;
  padding-top: 0;
}
#nav-content.nav_scr .nv_1 a:before {
  content: none;
}
#nav-content.nav_scr .nv_1 a:hover {
  color: #161619;
}
#nav-content.nav_scr .nv_1 a:hover:before {
  opacity: 1;
}
#nav-content.nav_scr .nv_1 a:hover i:before {
  transform: scale(1, 1);
}
#nav-content.nav_scr .nv_1 i {
  position: relative;
}
#nav-content.nav_scr .nv_1 i:before {
  background: #161619;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.3s ease;
}
#nav-content.nav_scr .nv_2 .lang a {
  background: url("../images/line4.png") center right no-repeat;
  background-size: auto 14px;
  padding: 0 10px;
  color: #161619;
}
#nav-content.nav_scr .nv_2 .lang a i:before {
  background: #161619;
}
@media all and (max-width: 767px) {
  #nav-content.nav_scr {
    background: linear-gradient(to bottom, #21262B 0%, #323C46 100%);
    box-shadow: none;
  }
  #nav-content.nav_scr .nv_1 {
    padding: 0;
  }
  #nav-content.nav_scr .nv_1 p {
    display: block;
    margin: 0;
  }
  #nav-content.nav_scr .nv_1 a {
    font-size: 1.5rem;
    -ms-writing-mode: unset;
    writing-mode: unset;
    color: white;
    padding: 10px 0;
  }
  #nav-content.nav_scr .nv_1 a:before {
    content: none;
  }
  #nav-content.nav_scr .nv_1 a:hover {
    color: white;
  }
  #nav-content.nav_scr .nv_1 i {
    position: relative;
  }
  #nav-content.nav_scr .nv_1 i:before {
    content: none;
  }
  #nav-content.nav_scr .nv_2 .lang {
    position: absolute;
    top: 20px;
    left: 7%;
  }
  #nav-content.nav_scr .nv_2 .lang a {
    background: url("../images/line3.png") center right no-repeat;
    background-size: auto 14px;
    padding: 0 10px;
    color: white;
  }
  #nav-content.nav_scr .nv_2 .lang a i:before {
    background: white;
  }
}

#nav-input:checked ~ #nav-close {
  visibility: visible;
  opacity: 1;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  visibility: visible;
}
#nav-input:checked ~ #nav-open span {
  transform: rotate(20deg);
  top: 41px;
}
@media all and (max-width: 767px) {
  #nav-input:checked ~ #nav-open span {
    top: 28px;
  }
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(140deg);
}
#nav-input:checked ~ #nav-open span:after {
  right: -100px;
  opacity: 0;
}

.nav-unshown {
  display: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  position: relative;
}
footer .ft1, footer .ft2 {
  position: relative;
  z-index: 2;
}

/*------------------------------------------------------------
parts
------------------------------------------------------------*/
/*-----accordion-------*/
.acd_wrap {
  margin-top: 100px;
}

.acd_bx {
  border: 1px solid #ccc;
  margin-top: 20px;
}
.acd_bx:first-of-type {
  margin-top: 0;
}
.acd_bx .q {
  cursor: pointer;
  padding: 20px;
  position: relative;
}
.acd_bx .a {
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid #ccc;
}
.acd_bx .plus {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  transition: all 0.3s ease;
}
.acd_bx .plus:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: #ccc;
}
.acd_bx .plus:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background: #ccc;
  transition: all 0.3s ease;
}
.acd_bx .open .plus {
  transform: rotate(90deg);
}
.acd_bx .open .plus:before {
  opacity: 0;
  bottom: -30px;
}

/*-----layout-------*/
.photo_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.photo_text .img {
  width: 50%;
  margin-left: calc(42% - 50vw);
  flex: 1;
}
.photo_text .img img {
  width: 100%;
  object-fit: cover;
}
.photo_text .txt {
  width: 50%;
}
@media all and (max-width: 767px) {
  .photo_text {
    flex-wrap: wrap;
  }
  .photo_text .img {
    width: 100%;
    margin-left: 0;
    flex: unset;
  }
  .photo_text .txt {
    width: 100%;
  }
}

.photo_text_rev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.photo_text_rev .img {
  width: 50%;
  margin-right: calc(42% - 50vw);
  flex: 1;
}
.photo_text_rev .img img {
  width: 100%;
  object-fit: cover;
}
.photo_text_rev .txt {
  width: 50%;
}
@media all and (max-width: 767px) {
  .photo_text_rev {
    flex-wrap: wrap;
  }
  .photo_text_rev .img {
    width: 100%;
    margin-right: 0;
    flex: unset;
  }
  .photo_text_rev .txt {
    width: 100%;
  }
}

.list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 20px;
}
.list .img:nth-of-type(1) {
  grid-row: 1/3;
  grid-column: 1/4;
}

/*-----btns-------*/
.under_btn {
  position: relative;
}
.under_btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0481A2;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.under_btn:hover:after {
  transform: scale(1, 1);
}
@media all and (max-width: 767px) {
  .under_btn:after {
    content: none;
  }
}

.grad_btn {
  display: block;
  color: #fff;
  padding: 18px 60px;
  border-radius: 30px;
  text-decoration: none;
  outline: none;
  background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}

.grad_btn:hover {
  color: #fff;
  background-position: 99% 50%;
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}

@keyframes up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
footer {
  background: linear-gradient(to bottom, #21262B 0%, #323C46 100%);
  color: white;
}
footer .copyright {
  padding: 40px 0;
  font-size: 1rem;
  text-align: center;
  color: white;
}
@media all and (max-width: 767px) {
  footer .copyright {
    padding: 0 0 60px 0;
    font-size: 1rem;
  }
  footer .res_bnr {
    display: none;
  }
}

.ft1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 90px 0;
}
.ft1 .ft_logo {
  width: 140px;
}
@media all and (max-width: 767px) {
  .ft1 {
    display: block;
    padding: 50px 0;
  }
  .ft1 .ft_logo {
    display: block;
    width: 110px;
    margin: 0 auto 50px auto;
  }
}

.ft_menus {
  width: 360px;
  display: grid;
  grid-template-columns: 1fr;
}
.ft_menus .menu1 {
  order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
}
.ft_menus .menu1 a {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  padding: 0 16px;
  position: relative;
  background: url("../images/line3.png") center right no-repeat;
  background-size: auto 14px;
}
.ft_menus .menu1 a i {
  position: relative;
}
.ft_menus .menu1 a i:before {
  background: white;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.ft_menus .menu1 a:nth-of-type(1) {
  padding-left: 0;
}
.ft_menus .menu1 a:last-of-type {
  background: none;
}
.ft_menus .menu1 a:hover i:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.ft_menus .menu2 {
  margin-top: 20px;
  order: 3;
}
.ft_menus .menu2 a {
  font-weight: bold;
  font-size: 1rem;
  padding-right: 8px;
  margin-right: 20px;
  text-decoration: none;
  color: white;
  background: url("../images/outlink.png") center right no-repeat;
  background-size: 8px;
}
.ft_menus .menu2 a i {
  position: relative;
}
.ft_menus .menu2 a i:before {
  background: white;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(1, 1);
  transition: all 0.3s ease;
}
.ft_menus .menu2 a i:after {
  background: white;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.3s ease;
}
.ft_menus .menu2 a:hover i:before {
  transform: scale(0, 1);
}
.ft_menus .menu2 a:hover i:after {
  transition-delay: 0.3s;
  transform: scale(1, 1);
}
.ft_menus .menu3 {
  order: 2;
  margin-top: 60px;
}
.ft_menus .lines {
  font-size: 1.2rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  margin-bottom: 5px;
}
@media all and (max-width: 767px) {
  .ft_menus {
    width: 100%;
    margin: 0 auto;
    display: grid;
  }
  .ft_menus .menu1 {
    order: 1;
    display: block;
  }
  .ft_menus .menu1 a {
    font-size: 1.5rem;
    text-align: center;
    background: none;
    padding: 10px 0;
    border-top: 1px dotted #B7B7B7;
  }
  .ft_menus .menu1 a i {
    position: relative;
  }
  .ft_menus .menu1 a i:before {
    background: white;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
  .ft_menus .menu2 {
    margin-top: 0;
    order: 2;
  }
  .ft_menus .menu2 a {
    display: block;
    font-weight: normal;
    font-size: 1.5rem;
    text-decoration: none;
    color: white;
    text-align: center;
    background: none;
    padding: 10px 0;
    margin-right: 0;
    border-top: 1px dotted #B7B7B7;
  }
  .ft_menus .menu2 a i {
    position: relative;
    background: none;
  }
  .ft_menus .menu2 a em {
    background: url("../images/outlink.png") center right no-repeat;
    background-size: 11px;
    padding-right: 14px;
  }
  .ft_menus .menu2 a:last-of-type {
    border-bottom: 1px dotted #B7B7B7;
  }
  .ft_menus .menu3 {
    order: 2;
    margin-top: 30px;
  }
  .ft_menus .lines {
    font-size: 1.1rem;
    display: grid;
    grid-template-columns: 70px 1fr;
    margin-bottom: 3px;
  }
}

.res_bnr {
  border-radius: 10px;
  box-shadow: 0 10px 20px #161619;
  display: block;
  background: url("../images/ft_bnr.jpg") center center/cover;
  text-decoration: none;
  color: white;
  padding: 30px 40px;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.res_bnr p {
  font-size: 1.4rem;
  font-weight: bold;
}
.res_bnr .fb {
  font-size: 1.8rem;
  font-weight: bold;
}
.res_bnr .bt {
  width: 320px;
  text-align: center;
  padding: 13px 0;
  font-size: 1.5rem;
  box-sizing: border-box;
  border-radius: 100px;
  background: url("../images/arw_cmw.png") center right 20px no-repeat, #AA2D2D;
  background-size: 13px auto;
  transition: all 0.3s ease;
}
.res_bnr:hover .bt {
  background: url("../images/arw_cmw.png") center right 15px no-repeat, #AA2D2D;
  background-size: 13px auto;
}
.res_bnr:hover .bt i {
  text-decoration: underline;
}

#glt-translate-trigger {
  display: none !important;
}

.skiptranslate {
  display: none !important;
}

.trans_eg #nav-content .nv_1 a {
  text-orientation: upright;
  text-transform: uppercase;
}

/*# sourceMappingURL=base.css.map */
