@charset "utf-8";


/*font-----------------------------*/

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

.cormorant-garamond-<uniquifier> {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

body {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  color: #333;
  font-size: 16px;
  font-feature-settings : "palt";
  height: 100%;
  overflow: hidden;
  background-color: #fff;
}
p {
  line-height: 2;
  margin-top: 1em;
}
.font_amiri {
  font-family: "Cormorant Garamond", serif;
}

.font_amiri_old {
  font-family: 'Amiri', serif;
}

.txt_center {
  text-align: center;
}
.txt_small {
  font-size: 14px;
  line-height: 1.5em;
}
.notes {
  font-size: 14px;
  line-height: 1.5em;
  padding-left:0.8em;
  text-indent:-0.8em;
}
.notes span {
  color: #63a4c2;
}
/*common layout---------------------------------------*/
#wrap {
  margin: auto;
  width: 100%;
}
.content, .footer_wrap {
  max-width: 1280px;
  margin: auto;
  padding: 0 8%;
}

/*txt link-----------------------------*/
a:link {
  text-decoration: none;
  color: #8f7b54
}
a:hover {
  text-decoration: underline;
  color: #8f7b54
}
a:visited {
  text-decoration: none;
  color: #8f7b54
}
.arrow {
  font-size: 18px;
  position: relative;
  padding: 0 0 0 16px;
  vertical-align: middle;
  text-decoration: none;
}
.arrow::before{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #8f7b54;
  border-right: solid 2px #8f7b54;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;    left: 0;
  margin-top: -5px;
  }
/*強調link-----------------------------*/
.link_strong a {
  font-size: 24px;
  display: block;
  text-align: center;
  margin: 2em auto 0 auto;
  max-width: 375px;
  padding: 20px 0;
  position: relative;
  transition: .2s ease-in-out;
}
.link_strong a:hover {
  text-decoration: none;
}
.link_strong a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #b29873;
  position: absolute;
  top: -1px;
  right: 0;
  transition: .1s ease-in-out .1s;
}
.link_strong a:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #b29873;
  position: absolute;
  bottom: 0;
  right: -1px;
  transition: .1s ease-in-out .2s;
}
.link_strong a span:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #b29873;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: .1s ease-in-out .3s;
}
.link_strong a span:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #b29873;
  position: absolute;
  top: 0;
  left: -1px;
  transition: .1s ease-in-out;
}
.link_strong a:hover span:after {
  height: 0;
}
.link_strong a:hover:before {
  width: 0;
}
.link_strong a:hover:after {
  height: 0;
}
.link_strong a:hover span:before {
  height: 5px;
}

/*heater----------------------------------*/
header {
  width: 100%;
  border-top: solid 6px #b29873;
  height: 100px;
}
#gnav ul {
  display: flex;
  margin: 0 5%;
}
#gnav li:first-child {
  margin-right: auto;
  margin-top: 15px;
}
#gnav li:not(:first-child){
  margin: 30px 0 0 5%;
}
#gnav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-size: 20px;
}
#gnav img {
  width: 140px;
}
#gnav a:hover {
  color: #8f7b54;
}
#gnav li:not(:first-child) a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #8f7b54;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
#gnav li:not(:first-child) a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
#gnav .current {
  color: #8f7b54;
  text-decoration: none;
}
.sp_header_logo {
  display: none;
}
/*pagetop---------------------------------*/
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 2%;
  width: 42px;
  height: 42px;
  background-color: #b29873;
  border: 1px solid #8f7b54;
  border-radius: 50%;
  opacity: 0.6;
  cursor: pointer;
  z-index: 10000;
}
.pagetop_allow {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #b29873;
  border-left-color: #FFF;
  border-top-color: #FFF;
  top: 17px;
  left: 11px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*footer--------------------------------*/
footer {
  background-color: #efece5;
  margin-top: 150px;
}
.footer_contact_wrap{
  color: #8f7b54;
  display: flex;
  justify-content: space-between;
}
.logo_share_wrap {
  margin-top: 2.5em;
  padding-right: 4%;
}
.footer_logo{
  width: 200px;
}
.share {
  margin-top: 3.5em;
}
.share_icon {
  margin-right: 5px;
}
.share_icon, .share_btn {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.footer_tel {
  margin-top: 2.5em;
  padding:  0 3%;
  border-left: dotted 1px
}
.footer_tel address {
  display: inline-block;
  color: #8f7b54;
  font-size: 46px;
  line-height: 1em;
  letter-spacing: -2px;
  margin: 0.2em 0 0 0;
}
.time {
  margin-top: 0em;
  line-height: 1.5em;
}
.time span {
  font-size: 20px;
}
.close_time {
  margin-top: 0em;
  line-height: 1.5em;
}
.time_info {
  font-size: 12px;
  margin-top: 0.6em;
  line-height: 1.5em;
}
.attention {
  font-size: 12px;
  line-height: 1.5em;
  margin: 0.6em 0 0 0;
  max-width: 350px;
}
.footer_tel a:hover {
  text-decoration: none;
}
.footer_address {
  margin-top: 2.5em;
  padding-left: 3%;
  border-left: dotted 1px
}
.footer_address address {
  line-height: 1.7em;
}
.address_info {
  font-size: 14px;
  margin-top: 1em;
}
.footer_link {
  margin-top:-2.8em;
}
.pay {
  margin-top: 2.5em;
  padding: 0.7em 1em;
  background-color: #fff;
  border-radius: 10px;
}
.paytxt {
  font-size: 14px;
  color: #8f7b54;
  margin: 0em 0em;
}
.paylogo {
  height: 18px;
  margin: 0.5em 1em 0.4em 0em;
}
.copylite {
  margin-top: 2.5em;
  color: #e7d5bc;
  background-color: #b29873;
  font-size: 12px;
  padding: 0.5em 8%;
  text-align: right;
}
.copylite p {
  margin-top: 0;
}


/*改行位置調整----------------------------*/
.tb_br {
  display: none;
}

/*in-view----------------------------*/
.in-view {
  opacity: 1.0;
  transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transition: .8s;
}

.out-view {
  opacity: 0;
  transform: translate(0,60px);
  -webkit-transform: translate(0,60px);
}

/*----------------------------------------------*/
/*----------------------------------------------*/


/*1023-768*/


/*----------------------------------------------*/
@media screen and (max-width: 1023px) {
  .footer_logo {
    width: 155px;
  }
  .logo_share_wrap {
    padding-right: 2%;
  }
  .footer_tel, .footer_address {
    padding-left: 2%;
  }
  .footer_tel {
    padding-right: 2%;
  }
  .footer_address {
    width: 230px;
  }
  .footer_tel address {
  font-size: 36px;
  }
  .address_info {
    margin-top: 0.1em;
  }
  /*改行位置調整---------------------------*/
  .tb_br {
    display: inline;
  }
}
/*----------------------------------------------*/
/*----------------------------------------------*/


/*smartphone*/


/*----------------------------------------------*/

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
  }
  #wrapper, header, #gnav {
    width: 100%;
  }
  .content, .footer_wrap {
    padding: 0 5%;
  }
/*強調link-------------------------------*/
  .link_strong a {
    font-size: 22px;
    margin: 1em auto 0 auto;
  }
/*heatder_sp-----------------------------*/
  header {
    height: 58px;
  }
  .sp_header_logo {
    display: inline;
  }
  .sp_header_logo img {
    width: 100px;
    margin: 8px 5%;
  }
  .menu_sp {
    position: fixed;
    width: 100%;
    z-index: 100;
    display: none;
    top: 0;
    height: 100%;
    overflow-y: scroll;
  }
  #gnav ul {
    margin: 0;
  }
  #gnav {
    height: auto;
    position: relative;
    top: 0;
  }
  #gnav ul {
    flex-direction: column;
    background-color: #b29873;
  }
  #gnav li:first-child {
    display: none;
  }
  #gnav li:not(:first-child){
    margin: 0;
  }
  #gnav a {
    color: #fff;
    display: block;
    margin: auto;
    text-align: center;
    padding: 25px 0;
    border-bottom: 1px solid #dbbd91;
  }
  #gnav .current {
    color: #dbbd91;
  }
  .menu_btn_sp_frame {
    display: block;
    position: fixed;
    top: 12px;
    right: 8px;
    width: 36px;
    height: 36px;
    padding: 4px;
    -ms-transform: rotateX(180deg);
    -moz-webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    vertical-align: middle;
    background: #b29873;
    border: 1px solid #e7d5bc;
    border-radius: 50%;
    z-index: 200;
    -webkit-transform: translate3d(0,0,0);
  }
  .menu_btn_sp {
    display: block;
    position: absolute;
    top: 11px;
    right: 12px;
    width: 20px;
    height: 2px;
    background: #fff;
    border-top: 10px solid #b29873;
    border-bottom: 10px solid #b29873;
    transition: all 0.3s;
  }
  .menu_btn_sp:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    top: -7px;
    right: 0;
    transition: all 0.3s;
  }
  .menu_btn_sp:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    bottom: -7px;
    right: 0;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu_btn_sp.active {
    background: #b29873;
  }
  .menu_btn_sp.active:before {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 0;
    right: 0;
  }
  .menu_btn_sp.active:after {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 0;
    right: 0;
  }

/*footer -----------------------------------------------*/
  footer {
    margin-top: 100px;
  }
  .logo_share_wrap {
    padding: 0;
    margin: 2em 0 0;
  }
  .footer_logo {
    width: 180px;
    display: block;
    margin: auto;
  }
  .footer_contact_wrap{
    flex-direction: column;
    max-width: 375px;
    margin: auto;
  }
  .footer_tel, .footer_address{
    border-left: none;
    border-top: dotted 1px;
    padding: 1em 0 0 0;
    margin-top: 1em;
    width: auto;
  }
  .footer_link {
    margin-top: -1em;
  }
  .share {
    margin-top: 2em;
    text-align: center;
  }
  .pay {
    max-width: 350px;
    margin: 1em auto;
  }
  .attention {
    max-width: none;
  }
  /*改行位置調整-----------------------------------*/
  .tb_br {
    display: none;
  }

}
