@charset "utf-8";

/*----------------------------------------------------------------------------------------------
	base
----------------------------------------------------------------------------------------------*/

html {
  overflow-y: scroll;
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

body {
  position: relative;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-size: 16px;
  color: #222;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  height: 100%;
  margin: auto;
  font-feature-settings: "palt";
}

#page_wrap {
  overflow: hidden;
  padding-top: 100px;
}

a {
  -webkit-transition: .4s;
  transition: .4s;
}

a:link,
a:visited {
  color: #222;
  text-decoration: none;
}

a:hover,
a:active {
  color: #666;
  text-decoration: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/*PCで表示させないセレクタ*/
#sp_header,
.tel-btn_sp {
  display: none;
}

.pc_hidden {
  display: none;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.header__inner {
  position: relative;
  margin: 0 auto;
  padding: 0 30px 0;
  height: 100px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.h__id {
  display: inline-block;
  margin-top: 25px;
}

.h__id img {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.h__links {
  position: absolute;
  top: 28px;
  right: 20px;
  display: flex;
}

@media screen and (max-width:768px) {
  #page_wrap {
    overflow: hidden;
    padding-top: 60px;
  }

  .h__links {
    display: none;
  }
}

.l-h__links__menu1 {
  display: flex;
  gap: 30px;
  margin-top: 6px;
  margin-right: 30px;
  font-size: 20px;
}

.l-h__links__menu1 a {
  color: #c8b496;
  font-weight: bold;
}

.l-h__links__menu1 a:hover {
  color: #73644f;
}

@media (max-width: 1140px) {
  .l-h__links__menu1 {
    display: none;
  }
}

.l-h__links__menu2 {
  display: flex;
  gap: 10px;
}

.h__links__menu2__btn {
  width: 250px;
}

a.c-req-btn2 {
  display: block;
  position: relative;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  height: 42px;
  line-height: 42px;
  border-radius: 10px;
  background: #c8b496;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

a:hover.c-req-btn2 {
  background: #73644f;
}

.c-req-btn2::after {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 14px;
  height: .5px;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

a:hover.c-req-btn2::after {
  right: 2px;
}

.menu-btn {
  display: none;
  position: fixed;
  top: 36px;
  right: 0;
  width: 100px;
  height: 60px;
  font-size: 11px;
  text-align: center;
  cursor: pointer;
  z-index: 1000000001;
  font-family: 'garamond';
}

/* .menu-btn span:after {
  content: attr(data-txt-menu);
  letter-spacing: .1em;}
}
*/

/* 開閉用ボタンがクリックされた時のスタイル */
/* .is-open-menu .menu-btn span:after {
}
*/

.is-open-menu .menu-btn {
  z-index: 1000000001;
}

.bar {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 55px;
  height: 1px;
  background: #c8b595;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.bar.middle {
  top: 19px;
  opacity: 1;
}

.bar.bottom {
  top: 34px;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

.menu-btn__text {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: auto;
  color: #222;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: block;
  visibility: visible;
  opacity: 1;
}

.is-open-menu .menu-btn__text {
  color: #222;
}

.is-open-menu .menu-btn .bar.top {
  background: #222;
  width: 55px;
  top: 15px;
  left: 0;
  -webkit-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(15deg);
}

.is-open-menu .menu-btn .bar.middle {
  opacity: 0;
}

.is-open-menu .menu-btn .bar.bottom {
  background: #222;
  width: 55px;
  top: 29px;
  left: 0;
  -webkit-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

@media screen and (max-width:768px) {
  .menu-btn {
    display: block;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
  }

  .bar {
    position: absolute;
    top: 20px;
    left: 0;
    width: 40px;
    height: 2px;
  }

  .bar.middle {
    top: 30px;
    opacity: 1;
  }

  .bar.bottom {
    top: 40px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  .is-open-menu .menu-btn .bar.top {
    background: #c8b595;
    width: 40px;
    top: 23px;
    left: 0;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  .is-open-menu .menu-btn .bar.middle {
    opacity: 0;
  }

  .is-open-menu .menu-btn .bar.bottom {
    background: #c8b595;
    width: 40px;
    top: 40px;
    left: 0;
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
}

/* #gnavi */

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
nav
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.l-sitemenu {
  display: block;
  width: 420px;
  height: 100%;
  overflow: hidden;
  color: #ffffff;
  background-color: #c8b595;
  backdrop-filter: blur(5px);
  position: fixed;
  right: 0;
  top: 109px;
  z-index: 1000000000;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: all .5s;
}

.is_top .l-sitemenu {
  top: 108px;
}

@media screen and (max-width:768px) {
  .l-sitemenu {
    width: 100%;
    height: 100%;
    top: 60px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .is_top .l-sitemenu {
    top: 60px;
  }
}

.is-open-menu .l-sitemenu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}

.l-sitemenu__body {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 40px;
  overflow-y: auto;
}

.l-sitemenu__body_inner {
  width: 80%;
  position: relative;
}

@media screen and (max-width:768px) {
  .l-sitemenu__body {
    align-items: inherit;
    padding-top: 40px;
  }

  .l-sitemenu__body_inner {
    width: 86%;
    position: relative;
  }
}

.l-sitemenu__menu_set {
  flex-direction: column;
}

.l-sitemenu__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%
}

.sitemenu__logo {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-10%);
}

.l-sitemenu__menu {
  font-size: 20px;
}

.l-sitemenu__menu li {
  opacity: 0;
  transform: translateX(-10%);
}

@media screen and (max-width:768px) {
  .l-sitemenu__menu {
    font-size: 18px;
  }
}

.sitemenu__link01,
.sitemenu__link02 {
  opacity: 0;
  transform: translateX(-10%);
}

.sitemenu__link01 a,
.sitemenu__link02 a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #c8b595;
  text-align: center;
  background: #fff;
  line-height: 47px;
  border-radius: 9px;
  margin-top: 20px;
}

.is-open-menu .l-sitemenu__menu li,
.is-open-menu .sitemenu__logo,
.is-open-menu .sitemenu__link01,
.is-open-menu .sitemenu__link02 {
  opacity: 1;
  transform: translateX(0%);
  transition: opacity 500ms cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.is-open-menu .sitemenu__logo {
  transition-delay: 350ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(1) {
  transition-delay: 400ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(2) {
  transition-delay: 450ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(3) {
  transition-delay: 500ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(4) {
  transition-delay: 550ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(5) {
  transition-delay: 600ms;
}

.is-open-menu .sitemenu__link01 {
  transition-delay: 650ms;
}

.is-open-menu .sitemenu__link02 {
  transition-delay: 700ms;
}

.l-sitemenu__menu li a {
  display: block;
  padding: .8em 0 .5em;
  color: #fff;
  text-align: center;
  align-items: center;
  font-weight: bold;
}

.l-sitemenu__menu li a:hover {
  color: #d6d6d6;
  padding: .8em 0 .5em .8em;
}

.l-sitemenu__menu li a.is-uc {
  opacity: .2;
  pointer-events: none;
}

.l-sitemenu__menu .menu_en {
  font-family: 'garamond', sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.l-sitemenu__menu .menu_jp {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-left: 1.8em;
  padding-left: 1.6em;
  border-left: .5px solid #000;
  margin-top: -0.5em;
  line-height: 22px;
}

.l-sitemenu__menu2 {
  display: flex;
  font-size: 14px;
  margin-top: 30px;
  opacity: 0;
  gap: 20px;
  flex-direction: column;
}

.l-sitemenu__menu2 a {
  color: #000;
}

.l-sitemenu__menu2 a:hover {
  color: #73644f;
  padding: 0 0 0 .8em;
}

@media screen and (max-width:768px) {
  .l-sitemenu__menu li a {
    padding: .7em 0 .7em;
  }
}

.p-sitemenu__sns {
  text-align: center;
  margin-top: 20px;
  opacity: 0;
}

.is-open-menu .l-sitemenu__menu2,
.is-open-menu .l-sitemenu__menu_set,
.is-open-menu .l-sitemenu__tel,
.is-open-menu .p-sitemenu__sns {
  opacity: 1;
  transition: opacity 500ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-delay: 850ms;
}

.l-sitemenu__menu2 li {
  width: 49%;
}

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

.c-menu2-outline a::before {
  content: '';
  display: inline-block;
  width: 1.5em;
  height: 1.8em;
  background-image: url(../img/icon_outline.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: -.2em 10px 0 0;
}

.c-menu2-map a::before {
  content: '';
  display: inline-block;
  width: 1.5em;
  height: 1.8em;
  background-image: url(../img/icon_map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: -.2em 10px 0 0;
}

.l-sitemenu__menu_set {
  display: flex;
  opacity: 0;
}

.l-sitemenu__request {
  display: flex;
  margin-top: 25px;
  gap: 2%;
}

.l-sitemenu__request li.sitemenu__btn {
  width: 49%;
}

.p-sitemenu-paper__btn {
  width: 336px;
  /* width: 400px; */
  margin: -10px 0 0 auto;
}

a.c-req-btn {
  display: block;
  position: relative;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  font-size: 19px;
  letter-spacing: 0.2em;
  height: 50px;
  line-height: 50px;
  background: #73644f;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.sitemenu__btn.is-uc {
  opacity: .5;
}

.sitemenu__btn.is-uc a {
  pointer-events: none;
}

.l-sitemenu__tel {
  opacity: 0;
  margin: 30px 0 0;
}

.l-sitemenu__tel_ttl {
  letter-spacing: .1em;
}

.l-sitemenu__tel_link {
  margin-top: 5px;
}

.l-sitemenu__tel_link img {
  width: 100%;
  height: auto;
}

.l-sitemenu__sns {
  opacity: 0;
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
}

.l-sitemenu__sns li {
  margin: 0 20px 0;
}

@media screen and (max-width: 1040px) {
  .l-sitemenu__tel {
    margin: 20px 0 0;
  }

  .l-sitemenu__sns {
    margin: 20px 0 0;
  }
}

@media screen and (max-width: 768px) {
  a.c-req-btn {
    font-size: 18px;
    letter-spacing: 0.2em;
    height: 46px;
    line-height: 44px;
  }

  .l-sitemenu__tel {
    margin: 20px 0 0;
  }

  .l-sitemenu__sns {
    margin: 40px 0 0;
  }

  .l-sitemenu__sns img {
    height: 30px;
    width: auto;
  }

  .l-sitemenu__content {
    display: block;
    height: auto
  }
}

.l-sitemenu__content__inner {
  display: block;
  width: 100%
}

.l-sitemenu__contact {
  display: none
}

/*----------------------------------------------------------------------------------------------
	top
----------------------------------------------------------------------------------------------*/
.page_bottom_btn {
  margin-bottom: 60px;
}

a.reqBtn {
  display: block;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.1em;
  height: 55px;
  line-height: 55px;
  /* text-indent: 1em; */
  background: #858e95;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

a.reqBtn.reqBtn_reserv {
  background: #858e95;
}

a:hover.reqBtn {
  opacity: .7;
}

a.reqBtn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 47%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cpa_btn {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.cpa_btn a {
  width: 300px;
  margin-left: 15px;
  margin-right: 15px;
}

@media screen and (max-width:768px) {
  .page_bottom_btn {
    width: 80%;
    margin-bottom: 20px;
  }

  .cpa_btn {
    display: flex;
    flex-direction: column;
    /*		width: 90%;*/
  }

  .cpa_btn a {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  a.reqBtn {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.1em;
    height: 55px;
    line-height: 55px;
    margin-bottom: 20px;
  }
}

.data_notes {
  font-size: 10px;
}

/*----------------------------------------------------------------------------------------------
	footer area
----------------------------------------------------------------------------------------------*/
.footer_cta {
  display: flex;
  border-top: .5px solid #252525;
  border-bottom: .5px solid #252525;
  margin-top: 250px;
}

.footer_cta_box01 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
  border-right: .5px solid #252525;
  padding: 120px 3%;
  gap: 20px;
}

.footer_cta_txt01 {
  font-size: 36px;
  line-height: 1;
  letter-spacing: .1em;
}

.footer_cta_box02 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
  padding: 120px 5%;
}

.c-link_line2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}

.c-link_line2 .en {
  font-size: 30px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: 'garamond', sans-serif;
}

.c-link_line2 .jp {
  font-size: 23px;
  letter-spacing: .15em;
  position: relative;
}

.c-link_line2 .jp::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  height: 0.5px;
  background: #000;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

a:hover.c-link_line2 {
  color: #73644f;
}

a:hover.c-link_line2 .jp::after {
  right: 2px;
  background: #73644f;
}

a.c-footer-btn {
  display: block;
  position: relative;
  text-align: center;
  padding: 0 20px;
  width: 300px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2em;
  height: 60px;
  line-height: 60px;
  background: #73644f;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.c-footer-btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  height: 0.5px;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

a:hover.c-footer-btn {
  background: #404253;
}

a:hover.c-footer-btn::after {
  right: 2px;
}

.footer_notes {
  margin-top: 250px;
  padding: 0 15px;
  border-top: .5px solid #252525;
}

.footer {
  width: 100%;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  background: #fff;
}

.footer__tel {
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  padding: 40px 0 50px;
  margin-bottom: 60px;
}

.tel_number {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel_number a,
.tel_number>span {
  padding: 70px 170px;
  background: #ebf0ed;
}

.footer__tel p {
  letter-spacing: normal;
  position: relative;
  vertical-align: middle;
}

.f_tel_set02 {
  margin-top: 25px;
}

.footer__tel a:hover {
  color: #9BBEFC;
}

.f_tel_link a {
  display: inline-block;
  vertical-align: middle;
}

.f_tel_link small {
  margin-left: 1em;
}

.spFtrFloat {
  display: none;
}

.f__id01 {
  margin-top: 100px;
}

.f__id02_set {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
}

.f_copyright {
  font-size: 12px;
  margin-top: 3em;
  display: block;
}

.f_notes {
  font-size: 12px;
  margin-top: .5em;
}

.bukken_notes {
  margin-top: 1.5em;
  font-size: 13px;
  line-height: 1.6;
}

.top_data_notes {
  margin-top: 1.5em;
  font-size: 10px;
  line-height: 1.6;
  text-align: right;
}

.f__tel-notes {
  display: inline-block;
  margin-top: 2.5em;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background: #404253;
  padding: .5em 1.5em;
}

@media screen and (max-width:1380px) {
  .footer_cta_box01 {
    display: flex;
    flex-direction: column;
    padding: 50px 3%;
    gap: 20px;
  }
}

@media screen and (max-width:1024px) {
  .footer_cta_box01 {
    display: flex;
    flex-direction: column;
    padding: 50px 3%;
    gap: 20px;
  }

  .footer_cta_txt01 {
    font-size: 36px;
    line-height: 1;
    letter-spacing: .1em;
  }

  .footer_cta_box02 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 50%;
    padding: 50px 5%;
  }
}

@media screen and (max-width:768px) {
  .footer_cta {
    display: flex;
    flex-direction: column;
    margin-top: 65px;
  }

  .footer_cta_box01 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    border-right: none;
    padding: 56px 5%;
    gap: 20px;
    border-bottom: .5px solid #252525;
  }

  .footer_cta_txt01 {
    font-size: 21px;
    line-height: 1;
    letter-spacing: .1em;
  }

  .footer_cta_box02 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 100%;
    padding: 56px 5%;
  }

  .c-link_line2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1;
  }

  .c-link_line2 .en {
    font-size: 18px;
    letter-spacing: .15em;
  }

  .c-link_line2 .jp {
    font-size: 16px;
    letter-spacing: .15em;
    position: relative;
  }

  .footer_cta_btn01 {
    width: 80%;
  }

  a.c-footer-btn {
    display: block;
    position: relative;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.2em;
    height: 56px;
    line-height: 56px;
    background: #73644f;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }

  .footer__tel p.f_tel_note {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
    margin-top: 10px;
  }

  .footer_notes {
    margin-top: 65px;
    padding: 0 5%;
  }

  .top_data_notes {
    margin-top: 1.5em;
    font-size: 10px;
    line-height: 1.6;
    text-align: justify;
  }

}

@media screen and (min-width:769px) and (max-width: 1350px) {}

/*----------------------------------------------------------------------------------------------
	page area
----------------------------------------------------------------------------------------------*/
.l-main {
  padding-top: 60px;
}

/* 現地案内用 */


.img_caption_white {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  color: #fff;
  text-shadow: 0px 0px 5px rgb(0 0 0 / 95%);
}

.img_caption_black {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  color: #000;
  text-shadow: 0px 0px 2px rgb(255 255 255 / 95%), 0px 0px 3px rgb(255 255 255 / 95%), 0px 0px 5px rgb(255 255 255 / 95%), 0px 0px 6px rgb(255 255 255 / 95%);
}

.img_caption_white.img_caption_l {
  left: 10px;
}

@media screen and (max-width: 768px) {
  .l-container {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
  }

}

/*----------------------------------------------------------------------------------------------
	COMMON
----------------------------------------------------------------------------------------------*/
.row:after,
.col:after {
  content: "";
  display: block;
  clear: both;
}

.col {
  display: block;
  float: left;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.ctb {
  text-align: center;
}

.ac {
  text-align: center;
}

.al {
  text-align: left;
}

.ar {
  text-align: right;
}

a.hover img {
  -webkit-transition: .4s;
  transition: .4s;
}

a.hover:hover img {
  opacity: 0.7;
}

.soon_bana {
  background: #333;
}

.soon_bana img {
  opacity: 0.5;
}

#nav-dock {
  width: 40px;
  height: 45px;
  position: fixed;
  bottom: 15px;
  right: 15px;
}

#nav-dock a {
  width: 40px;
  height: 45px;
  display: block;
  text-indent: -9999px;
  background-image: url(../img/btn_pagetop.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: cover;
}

#nav-dock a:hover {
  opacity: 0.7;
}

.side_banner {
  position: fixed;
  width: 120px;
  height: 120px;
  bottom: 80px;
  right: 15px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.side_banner.is_view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width:768px) {
  .side_banner {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.full_w_img img,
img.full_w_img {
  width: 100%;
  height: auto;
}

.fs_s {
  font-size: .8em;
}

.fs_ss {
  font-size: .6em;
}

.img_base {
  position: relative;
}

#nav-top {
  width: 150px;
  height: 44px;
  position: fixed;
  bottom: 120px;
  right: 50px;
}

.uline_red {
  color: #C8161D;
  text-decoration: underline;
}

.text-s {
  font-size: 12px !important;
}

.text-ss {
  font-size: 10px !important;
}

.fx {
  display: -webkit-box;
  /*Android4.3*/
  display: -moz-box;
  /*Firefox21*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
}

.fx-al-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.fx-al-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.fx-al-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.fx-js-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.fx-js-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.fx-js-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.fx-js-around {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.fx-js-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

@media screen and (max-width:768px) {
  .fx-xs-column {
    flex-direction: column;
  }
}

/* ===================================================================
//animation
=================================================================== */
.pageHddAnim {
  opacity: 0 !important;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.pageHddAnim.is_view {
  opacity: 1 !important;
}

.fadeAnim {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnim.is_view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadeAnimB {
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimB.is_view {
  opacity: 1;
}

.fadeAnimC {
  opacity: 1;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimC.is_hide {
  opacity: 0;
}

.fadeAnimRightIn {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimRightIn.is_view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadeAnimLeftIn {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimLeftIn.is_view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mvAnim {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.mvAnim.is_view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.delay01 {
  -webkit-transition-delay: .1s !important;
  transition-delay: .1s !important;
}

.delay02 {
  -webkit-transition-delay: .2s !important;
  transition-delay: .2s !important;
}

.delay03 {
  -webkit-transition-delay: .3s !important;
  transition-delay: .3s !important;
}

.delay04 {
  -webkit-transition-delay: .4s !important;
  transition-delay: .4s !important;
}

.delay05 {
  -webkit-transition-delay: .5s !important;
  transition-delay: .5s !important;
}

.delay06 {
  -webkit-transition-delay: .6s !important;
  transition-delay: .6s !important;
}

.delay07 {
  -webkit-transition-delay: .7s !important;
  transition-delay: .7s !important;
}

.delay08 {
  -webkit-transition-delay: .8s !important;
  transition-delay: .8s !important;
}

.delay09 {
  -webkit-transition-delay: .9s !important;
  transition-delay: .9s !important;
}

.delay015 {
  -webkit-transition-delay: .15s !important;
  transition-delay: .15s !important;
}

.delay025 {
  -webkit-transition-delay: .25s !important;
  transition-delay: .25s !important;
}

.delay035 {
  -webkit-transition-delay: .35s !important;
  transition-delay: .35s !important;
}

.delay075 {
  -webkit-transition-delay: .75s !important;
  transition-delay: .75s !important;
}

.delay1 {
  -webkit-transition-delay: 1s !important;
  transition-delay: 1s !important;
}

.delay15 {
  -webkit-transition-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.animImg {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg * {
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: #000;
}

.animImg.is_view::before {
  -webkit-animation: animImgMask 1s ease;
  -moz-animation: animImgMask 1s ease;
  animation: animImgMask 1s ease;
}

@-webkit-keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

@-moz-keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

@keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

.animImg img {
  opacity: 0;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg.is_view img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* 光らせるためのstyle */
.shine {
  position: relative;
  overflow: hidden;
  display: block;
}

/* 光の疑似要素 */
.shine::before {
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #afbec5;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}

/* 光の動き */
@keyframes shine {
  0% {
    left: -160%;
    opacity: 0;
  }

  70% {
    left: -160%;
    opacity: 0.5;
  }

  71% {
    left: -160%;
    opacity: 1;
  }

  100% {
    left: -20%;
    opacity: 0;
  }
}

/**********
//fadeText
**********/
.fadeText>span {
  opacity: 0;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.fadeText>span.is_view {
  opacity: 1;
}

.fadeText>span:nth-child(3n+1) {
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}

.fadeText>span:nth-child(2n) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

/* ===================================================================
//下層ページタイトルsection
=================================================================== */



/* ===================================================================
//btns
=================================================================== */
.btns {
  display: block;
  background: #000;
  font-size: 15px;
  text-align: center;
  color: #fff !important;
  padding: 15px;
  width: 100%;
  max-width: 170px;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

a:hover.btns {
  opacity: 0.7;
}

.btns i {
  margin-right: 5px;
}

.btns.gmapBtn {
  max-width: 350px;
}

.btns.noMobile {
  display: inline-block !important;
}

.mobile .btns.noMobile {
  display: none !important;
}


.fx_horizontal {
  display: flex;
  justify-content: center;
}

.c-buttons-shin {
  position: relative;
  overflow: hidden;
}

.c-buttons-shin:hover:after {
  display: block;
}

.c-buttons-shin:after {
  content: "";
  position: absolute;
  display: none;
  top: -100%;
  left: -40px;
  width: 40px;
  height: 300%;
  transform: rotate(30deg);
  background: white;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 20%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0) 100%);
  animation: 3s btbr infinite;
  opacity: .7;
}

@keyframes btbr {
  0% {
    left: -40px;
  }

  20% {
    left: 390px;
  }

  100% {
    left: 390px;
  }
}

/**********
//印刷用
**********/
@media print {
  #pageTitleSection {
    padding: 5vh 0 215px;
  }
}