@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,500&display=swap);

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #000;
  font-family: 'Shippori Mincho', "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
  @media screen and (max-width: 767px) {
    body {
      font-size: 3.73vw;
      letter-spacing: 0.05em;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.3s ease-in-out 0s;
}
a:link {
  color: #ad4250;
}
a:visited {
  color: #ad4250;
}
a:hover {
  text-decoration: none;
  color: #ad4250;
}
a:active {
  color: #ad4250;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
  font-weight: 500;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
}
.ff01 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: italic;
}

/*----------------------------------------------------
 フォントカラー
--------------------------------------------------- */
.fc01 {
}
.fc02 {
}
.fc03 {
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow:hidden;
  margin: 0 auto;
}
#contents {
  overflow: hidden;
  position: relative;
  line-height: 1.8;
  padding-bottom: 40px;
}
#contents::after {
  position: absolute;
  left: 0;
  bottom: -50px;
  content: "";
  background: url("../img/common/bg/contents_bg01.png") center center no-repeat;
  width: 416px;;
  height: 351px;
  z-index: 3;
}
#contents::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  background: url("../img/common/bg/contents_bg02.png") center center no-repeat;
  width: 258px;
  height: 307px;
  z-index: 3;
}
  @media screen and (max-width: 767px) {
    #contents {
      padding-bottom: 4vw;
    }
    #contents::after {
      left: -12.66vw;
      bottom: -4vw;
      background: url("../img/common/bg/contents_bg01.png") center center no-repeat;
      background-size: 46.66vw auto;
      width: 46.66vw;;
      height: 39.2vw;
    }
    #contents::before {
      background: url("../img/common/bg/contents_bg02.png") center center no-repeat;
      background-size: 28.8vw auto;
      width: 28.8vw;
      height: 34.4vw;
    }
  }

#contents a:hover img{
  opacity: 0.70;
}
.outer {
  position: relative;
  z-index: 5;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.wrapper {
  position: relative;
  z-index: 5;
  max-width: 1660px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.inner {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
  @media screen and (max-width: 767px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #contents {
    }
    .outer, .wrapper, .inner {
      width:100%;
      padding-right: 5.33vw;
      padding-left: 5.33vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

.hd_sns {
  position: absolute;
  right: 300px;
  top: 25px;
}
.hd_sns li {
  margin-left: 15px;
}
.hd_sns a {
  font-size: 3rem;
  color: #fff;
}
.hd_sns a:hover {
  text-shadow: 0 0 5px rgba(255,255,255,1)
}

.la-twitter:before {
  font-family: unset;
  content: '𝕏';
}

.has-sub {
  position: absolute;
  right: 135px;
  top: 20px;
  z-index: 10;
  width: 122px;
  letter-spacing: 0.05em;
}
.language_en {
  position: relative;
  display: block;
  text-align: center;
  color: #fff;
  cursor: pointer;
  line-height: 40px;
}
.language_en i {
  font-size: 1.4rem;
}
.sub {
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  width: 100%;
  z-index: 3;
}
.sub > li {
  position: relative;
}
.sub > li::before {
  position: absolute;
  left: 1px;
  bottom: 0;
  content: "";
  width: calc(100% - 2px);
  height: 1px;
  background: #AAB2B8;
}
.sub > li > a {
  display: block;
  text-align: center;
  color: #000;
  background-color: rgba(210,226,238,1);
  text-decoration: none;
  line-height: 34px;
  font-size: 1.5rem;
}
.sub > li > a:hover {
  background-color: rgba(210,226,238,0.9);
}
  @media screen and (max-width: 767px) {
    .has-sub {
      right: auto;
      left: 8vw;
      top: 2vw;
      width: 26vw;
    }
    .language_en {
      line-height: 10.66vw;
    }
    .language_en i {
      font-size: 2.66vw;
    }
    .sub {
      top: 10.66vw;
      height: 25.2vw;
    }
    .sub > li > a {
      line-height: 8.4vw;
      font-size: 3.46vw;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/

#footer {
  position: relative;
  z-index: 5;
  padding: 95px 0 50px;
  background: #fff;
}
#footer::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 566px;
  background: #FEE7EA;
  background: linear-gradient(180deg, #FEE7EA 0%, #fff 100%);
}
.ft_wrap {
  max-width: 1370px;
  margin: 0 auto 110px;
  line-height: 2;
}
.ft_info {
  width: 450px;
}
.ft_info_box {
  padding-left: 77px;
}
.ft_logo {
  margin-bottom: 30px;
}
  @media screen and (max-width: 767px) {
    #footer {
      padding: 13.33vw 0 4vw;
    }
    #footer::before {
      height: 100%;
    }
    .ft_wrap {
      max-width: 100%;
      margin: 0 auto 13.33vw;
    }
    .ft_info {
      width: 100%;
    }
    .ft_info_box {
      padding-left: 0;
      text-align: center;
    }
    .ft_logo {
      margin-bottom: 6.66vw;
      text-align: center;
    }
    .ft_logo img {
      width: 44.8vw;
    }
    .ft_info_box dd a {
      text-decoration: none;
      color: #000;
    }
  }

.ft_sns {
  margin: 15px 0 25px;
}
.ft_sns li {
  margin-right: 12px;
  line-height: 1;
}
.ft_sns li a {
  display: block;
  font-size: 3rem;
  color: #000;
}
.ft_sns li a:hover {
  color: #e0683f;
}
  @media screen and (max-width: 767px) {
    .ft_sns {
      justify-content: center;
      margin: 5vw 0 6.66vw 0;
    }
    .ft_sns li {
      margin: 0 2vw;
      line-height: 1;
    }
    .ft_sns li a {
      font-size: 9.6vw;
    }
  }

.ft_contact a {
  vertical-align: bottom;
  position: relative;
  display: inline-block;
  width: 260px;
  padding: 11px 38px 11px 22px;
  margin: 0 auto;
  border: solid 1px #ccc;
  border-left: solid 3px #E0683F;
  background: rgba(255,255,255,0.15);
  color: #000;
  text-decoration: none;
  overflow: hidden;
  line-height: 1.8;
}
.ft_contact a:hover {
  color: #fff;
  border-color: #E0683F;
}
.ft_contact a::before {
  position: absolute;
  left: -100%;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #E0683F;
  opacity: 0;
  transition: all 0.35s ease 0s;
}
.ft_contact a:hover::before {
  opacity: 1;
  left: 0;
}
.ft_contact a i {
  position: absolute;
  left: 0;
  top: calc(50% - 13px);
  font-size: 2.6rem;
  color: #e0683f;
  line-height: 1;
  transition: all 0.35s ease 0s;
}
.ft_contact a:hover i {
  color: #fff;
}
.ft_contact a span {
  position: relative;
  z-index: 5;
  padding-left: 32px;
}
  @media screen and (max-width: 767px) {
    .ft_contact {
      margin-bottom: 9.33vw;
    }
    .ft_contact a {
      text-align: left;
      width: 66.66vw;
      padding: 2.4vw 2.4vw 2.4vw 4.8vw;
      border-left: solid 2px #E0683F;
    }
    .ft_contact a:hover {
      color: #E0683F;
      border-color: #E0683F;
    }
    .ft_contact a::before {
     display: none;
    }
    .ft_contact a i {
      top: calc(50% - 2.66vw);
      font-size: 5.33vw;
    }
    .ft_contact a:hover i {
      color: #E0683F;
    }
    .ft_contact a span {
      padding-left: 8.4vw;
    }
  }

.ft_menu {
  padding-right: 77px;
}
.ft_menu ul {
  width: 170px;
  margin-left: 75px
}
.ft_menu ul:first-child {
  margin-left: 0;
}
.ft_menu li {
  margin-bottom: 14px;
}
.ft_menu li a {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  color: #000;
  padding-left: 16px;
}
.ft_menu li a::before {
  position: absolute;
  left: -7px;
  top: -1px;
  content: "\f105";
  font-family:"Line Awesome Free","Line Awesome Brands";
  font-weight: 600;
  font-size: 1.8rem;
  color: #e0683f;
}
.ft_menu li a:hover {
  color: #e0683f;
}
  @media screen and (max-width: 1240px) {
    .ft_menu {
      padding-right: 40px;
    }
    .ft_menu ul {
      width: auto;
      margin-left: 50px
    }
  }
  @media screen and (max-width: 1160px) {
    .ft_wrap {
      display: block;
    }
    .ft_menu {
      padding: 0 20px;
      justify-content: center;
    }
    .ft_info {
      margin: 0 auto 80px;
    }
    .ft_info_box {
      padding: 0;
      text-align: center;
    }
    .ft_sns {
      justify-content: center;
    }
    .ft_logo {
      text-align: center;
    }
  }
  @media screen and (max-width: 767px) {
    .ft_menu {
      display: block;
      padding: 0;
    }
    .ft_menu ul.pc_none {
      margin-left: 0;
      display: flex;
      justify-content: center;
    }
    .ft_menu li {
      margin: 0 3vw;
    }
    .ft_menu li a {
      font-size: 3.73vw;
      padding-left: 3.73vw;
    }
    .ft_menu li a::before {
      left: -1.66vw;
      font-size: 4vw;
    }
    .ft_info {
      margin: 0;
    }
  }

.copyright {
  display: block;
  text-align: center;
  font-size: 1.4rem;
}
  @media screen and (max-width: 767px) {
    .copyright {
      font-size: 3.2vw;
    }
  }

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
#lowerVisual {
  position: relative;
  background-color: #001845;
  width: 100%;
  height: 600px;
  z-index: 10;
}
.lower_logo {
  position: absolute;
  left: 40px;
  top: 25px;
  transition: all 0.2s ease-in-out 0s;
}
.page_ttl {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  line-height: 1;
  transition: all 0.2s ease-in-out 0s;
}
.page_ttl span {
  display: block;
  font-size: 16.2rem;
  letter-spacing: 0;
  margin-bottom: 30px;
}
.page_ttl small {
  display: block;
  font-size: 3rem;
}
  @media screen and (max-width: 920px) {
    .lower_logo {
      left: 20px;
      top: 120px;
    }
    .page_ttl {
      padding-top: 120px;
    }
  }
  @media screen and (max-width: 767px) {
    #lowerVisual {
      width: 100%;
      height: 90vw;
      margin-bottom: 9.33vw;
    }
    .lower_logo {
      left: 4vw;
      top: 19.33vw;
    }
    .lower_logo img {
      width: 40vw;
      height: auto;
    }
    .page_ttl {
      padding-top: 25.33vw;
    }
    .page_ttl span {
      font-size: 18vw;
      margin-bottom: 4vw;
    }
    .page_ttl small {
      font-size: 5.33vw;
    }
  }

.main_news {
  background: url("../img/main/main_news.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_news {
      background: url("../img/main/main_news_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_welcome {
  background: url("../img/main/main_welcome.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_welcome {
      background: url("../img/main/main_welcome_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    .main_welcome .page_ttl span {
      font-size: 14vw;
    }
  }

.main_history {
  background: url("../img/main/main_history.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_history {
      background: url("../img/main/main_history_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    .main_history .page_ttl span {
      font-size: 14vw;
    }
  }

.main_konan {
  background: url("../img/main/main_konan.jpg") center center no-repeat;
  background-size: cover;
}
.main_konan figure {
  position: absolute;
  right: calc(50% - 650px);
  bottom: -110px;
  z-index: 5;
}
  @media screen and (max-width: 1290px) {
    .main_konan figure {
      right: calc(50% - 480px);
    }
    .main_konan figure img {
      width: 240px;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    .main_konan figure {
      right: calc(50% - 420px);
    }
    .main_konan figure img {
      width: 200px;
    }
  }
  @media screen and (max-width: 767px) {
    .main_konan {
      background: url("../img/main/main_konan_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    .main_konan .page_ttl span {
      font-size: 14vw;
    }
    .main_konan figure {
      display: none;
    }
  }

.main_dorama {
  background: url("../img/main/main_dorama.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_dorama {
      background: url("../img/main/main_dorama_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    .main_dorama .page_ttl span {
      font-size: 12.66vw;
    }
  }

.main_onsen {
  background: url("../img/main/main_onsen.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_onsen {
      background: url("../img/main/main_onsen_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_kojoroten {
  background: url("../img/main/main_kojoroten.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_kojoroten {
      background: url("../img/main/main_kojoroten_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_room {
  background: url("../img/main/main_room.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_room {
      background: url("../img/main/main_room_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    .main_room .page_ttl span {
      font-size: 15.33vw;
    }
  }

.main_roten {
  background: url("../img/main/main_roten.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 1420px) {
    .main_roten .page_ttl span {
      font-size: 12rem;
    }
  }

  @media screen and (max-width: 767px) {
    .main_roten {
      background: url("../img/main/main_roten_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    .main_roten .page_ttl span {
      font-size: 14vw;
    }
  }

.main_cuisine {
  background: url("../img/main/main_cuisine.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_cuisine {
      background: url("../img/main/main_cuisine_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_breakfast {
  background: url("../img/main/main_breakfast.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_breakfast {
      background: url("../img/main/main_breakfast_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_facilities {
  background: url("../img/main/main_facilities.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_facilities {
      background: url("../img/main/main_facilities_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_banquet {
  background: url("../img/main/main_banquet.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_banquet {
      background: url("../img/main/main_banquet_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_access {
  background: url("../img/main/main_access.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_access {
      background: url("../img/main/main_access_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_sightseeing {
  background: url("../img/main/main_sightseeing.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_sightseeing {
      background: url("../img/main/main_sightseeing_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_tokuten {
  background: url("../img/main/main_tokuten.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_tokuten {
      background: url("../img/main/main_tokuten_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_faq {
  background: url("../img/main/main_faq.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_faq {
      background: url("../img/main/main_faq_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_contact {
  background: url("../img/main/main_contact.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_contact {
      background: url("../img/main/main_contact_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.main_yakkan {
  background: url("../img/main/main_yakkan.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .main_yakkan {
      background: url("../img/main/main_yakkan_sp.jpg") center center no-repeat;
      background-size: cover;
    }
  }

.sub_ttl01 {
  text-align: center;
  font-size: 9rem;
  color: #C2717C;
  margin-bottom: 40px;
}
  @media screen and (max-width: 767px) {
    .sub_ttl01 {
      font-size: 8.6vw;
      margin-bottom: 6.66vw;
    }
  }

.sub_ttl02 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
  @media screen and (max-width: 767px) {
    .sub_ttl02 {
      font-size: 5.33vw;
      margin-bottom: 6.66vw;
    }
  }

.sub_ttl03 {
  text-align: center;
  padding-bottom: 70px;
}
.sub_ttl03 span {
  display: block;
  font-size: 4rem;
  margin-bottom: 8px
}
.sub_ttl03 small {
  display: inline-block;
  background: #AD4250;
  color: #fff;
  font-size: 1.8rem;
  padding: 5px 30px;
  width: 100%;
  max-width: 392px;
}
  @media screen and (max-width: 767px) {
    .sub_ttl03 {
      padding-bottom: 9.33vw;
    }
    .sub_ttl03 span {
      font-size: 7.8vw;
      margin-bottom: 2vw
    }
    .sub_ttl03 small {
      font-size: 3.73vw;
      padding: 1.13vw 2.66vw;
      width: 100%;
      max-width: 72vw;
      letter-spacing: 0.05em;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.side_btns {
  position: relative;
  display: none;
  z-index: 100;
}

.side_btns ul {
  position: fixed;
  right: 0;
  top: calc(50% - 100px);
  z-index: 100;
}
.side_btns li {
  position: relative;
}
.side_btns li:first-child {
  margin-bottom: 10px;
}
.side_btns li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  width: 112px;
  height: 90px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-decoration: none;
  font-weight: 400;
  border-radius: 10px 0 0 10px;
}
.side_btns li span {
  position: relative;
  z-index: 5;
  display: inline-block;
}
  @media screen and (max-width: 767px) {
    .side_btns ul {
      display: flex;
      right: auto;
      left: 0;
      top: auto;
      bottom: 0;
    }
    .side_btns li {
      position: relative;
      margin-left: 1.33vw;
    }
    .side_btns li:first-child {
      margin-bottom: 0;
    }
    .side_btns li a {
      height: 14.66vw;
      font-size: 3.73vw;
      border-radius: 2.66vw 2.66vw 0 0;
    }
  }

.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.pagetop a:hover {
  opacity: 0.8;
}
  @media screen and (max-width: 767px) {
    .pagetop img {
      width: 10.13vw;
      height: auto;
    }
  }

.btn01 {
  position: relative;
  z-index: 5;
}
.btn01 a {
  vertical-align: bottom;
  position: relative;
  display: inline-block;
  width: 260px;
  padding: 11px 38px 11px 20px;
  margin: 0 auto;
  border: solid 1px #ccc;
  border-left: solid 3px #E0683F;
  background: rgba(255,255,255,0.15);
  color: #000;
  text-decoration: none;
  overflow: hidden;
  text-align: left;
}
.btn01 a:hover {
  color: #fff;
  border-color: #E0683F;
}
.btn01 a::before {
  position: absolute;
  left: -100%;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #E0683F;
  opacity: 0;
  transition: all 0.35s ease 0s;
}
.btn01 a:hover::before {
  opacity: 1;
  left: 0;
}
.btn01 a::after {
  position: absolute;
  right: 10px;
  top: calc(50% - 13px);
  content: "\f101";
  font-family:"Line Awesome Free","Line Awesome Brands";
  font-weight: 600;
  font-size: 2.6rem;
  color: #e0683f;
  z-index: 5;
  line-height: 1;
  transition: all 0.35s ease 0s;
}
.btn01 a:hover::after {
  color: #fff;
}
.btn01 a span {
  position: relative;
  z-index: 5;
}
  @media screen and (max-width: 767px) {
    .btn01 a {
      width: 66.66vw;
      padding: 2.4vw 7.4vw 2.4vw 4.8vw!important;
    }
    .btn01 a:hover {
      color: #e0683f;
    }
    .btn01 a::before {
      display: none;
    }
    .btn01 a::after {
      right: 2.66vw;
      top: calc(50% - 2.66vw);
      font-size: 5.33vw;
    }
    .btn01 a:hover::after {
      color: #e0683f;
    }
  }

.btn01.w300 a {
  width: 300px;
}
.btn01.w350 a {
  width: 350px;
  padding-top: 9px;
  padding-bottom: 9px;
  background-color: #fff;
}
.btn01.w380 a {
  width: 380px;
  padding-top: 9px;
  padding-bottom: 9px;
  background-color: #fff;
}
  @media screen and (max-width: 767px) {
    .btn01.w300 a,
    .btn01.w350 a,
    .btn01.w380 a {
      width: 100%;
      max-width: 78vw;
    }
  }

.btn01 a.btn01_inversion {
  color: #fff;
  background: #E0683F;
  border-top: solid 1px #E0683F;
  border-right: solid 1px #E0683F;
  border-bottom: solid 1px #E0683F;
}
.btn01 a.btn01_inversion::before {
  background: #FF8F3D;
}
.btn01 a.btn01_inversion::after {
  color: #fff;
}
.btn01 a.btn01_inversion:hover::after {
  color: #fff;
}
  @media screen and (max-width: 767px) {
    .btn01 a.btn01_inversion:hover {
      color: #fff;
    }
    .btn01 a.btn01_inversion:hover::after {
      color: #fff;
    }
  }

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

/*ハンバーガーメニュー*/
.trs {
  transition: all 0.3s ease 0s;
}
/*trp*/
.trp {
  transition: all 0.3s ease 0s;
  opacity: 1;
  filter: alpha(opacity=100);
}
.trp:hover {
  opacity: .6;
  filter: alpha(opacity=60);
}
/* trs-dr */
.trs-dr02 {
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -ms-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
}
.trs-dr03 {
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  -ms-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}
.trs-dr05 {
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -ms-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}
.trs-dr06 {
  -webkit-transition-duration: .6s;
  -moz-transition-duration: .6s;
  -ms-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s;
}
.trs-dr08 {
  -webkit-transition-duration: .8s;
  -moz-transition-duration: .8s;
  -ms-transition-duration: .8s;
  -o-transition-duration: .8s;
  transition-duration: .8s;
}
.trs-dr12 {
  -webkit-transition-duration: 1.2s;
  -moz-transition-duration: 1.2s;
  -ms-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
/* trs-tf */
.trs-tfCb {
  -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  transition-timing-function: cubic-bezier(0, .96, .4, .99);
}
.menuTrigger {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  display: block;
  width: 125px;
  height: 80px;
  cursor: pointer;
  transition: .3s;
  background: rgba(238,238,238,0);
}
.menuTrigger.open {
  background: rgba(238,238,238,1);
}
.menuTrigger::before {
  position: absolute;
  left: 0;
  bottom: 23px;
  content: "Menu";
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-indent: 0.1em;
  transition: all 0.3s ease 0s;
}
.menuTrigger.open::before {
  content: "close";
  color: #000;
}
.menuTrigger.active::before {
  color: #000;
}
.menuIcon_line {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 1px;
  background: #fff;
}
.menuIcon_line:nth-of-type(1) {
  top: 25px;
}
.menuIcon_line:nth-of-type(2) {
  display: none;
}
.menuIcon_line:nth-of-type(3) {
  top: 35px;
}
  @media screen and (max-width: 767px) {
    .menuTrigger {
      width: 22.93vw;
      height: 14.66vw;
    }
    .menuTrigger::before {
      bottom: 2.66vw;
      font-size: 3.2vw;
    }
    .menuIcon_line {
      margin-left: -4.5vw;
      width: 9vw;
    }
    .menuIcon_line:nth-of-type(1) {
      top: 4.8vw;
    }
    .menuIcon_line:nth-of-type(3) {
      top: 7.2vw;
    }
  }

/* open */
.menuTrigger.open .menuIcon_line,
.menuTrigger.active .menuIcon_line {
  background: #000;
}
.menuTrigger.open .menuIcon_line:nth-of-type(1) {
  top: 30px;
  transform: rotate(15deg);
}
.menuTrigger.open .menuIcon_line:nth-of-type(3) {
  top: 30px;
  transform: rotate(-15deg);
}
  @media screen and (max-width: 767px) {
    .menuTrigger.open .menuIcon_line:nth-of-type(1) {
      top: 5.6vw;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: 5.6vw;
    }
    .menuTrigger.open::before {
      bottom: 3.2vw;
    }
  }

#hbNav {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #FEEDEF;
  z-index: 110;

}
#hbNav::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: calc(100% - 900px);
  height: 100%;
  background: #000;
  background: url("../img/common/hb_bg.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 1024px) {
    #hbNav {
      padding-left: 0;
    }
    #hbNav::before {
      display: none;
    }
  }

.hb_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: calc(100% - 900px);
  height: 100%;
  overflow-y: visible;
  overflow-x: hidden;
  -webkit-overflow-scrolling: auto;
  overflow-scrolling: auto;
}
  @media screen and (max-width: 1024px) {
    .hb_wrap {
      padding-left: 0;
    }
  }
.hb_inner {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1.5;
}
.hb_box {
  width: 100%;
  background: #fff;
  padding: 120px 13.5% 60px;
}
  @media screen and (max-width: 1024px) {
    .hb_box {
      padding: 120px 8% 60px;
    }
  }
  @media screen and (max-width: 767px) {
    .hb_box {
      padding: 14.66vw 3vw 2vw;
    }
  }

.hb_logo {
  text-align: center;
  margin-bottom: 60px;
}
.hb_menu {
  margin-bottom: 30px;
}
.hb_menu ul {
  width: 43%;
}
.hb_menu li {
  border-bottom: solid 1px #ccc;
}
.hb_menu li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #000;
  padding: 13px 40px 13px 10px;
  cursor: pointer;
}
.hb_menu li a:hover {
  color: #e0683f;
}
.hb_menu li a::after {
  position: absolute;
  right: 5px;
  top: calc(50% - 13px);
  content: "\f101";
  font-family:"Line Awesome Free","Line Awesome Brands";
  font-weight: 600;
  font-size: 2.6rem;
  color: #e0683f;
  z-index: 5;
  line-height: 1;
  transition: all 0.35s ease 0s;
}
  @media screen and (max-width: 767px) {
    .hb_logo {
      position: absolute;
      left: 4.66vw;
      top: 4vw;
      margin-bottom: 0;
    }
    .hb_logo img {
      width: 29.86vw;
      height: auto;
    }
    .hb_img_sp {
      margin-left: -5.33vw;
      margin-right: -5.33vw;
    }
    .hb_img_sp img {
      width: 100%;
      height: auto;
    }
    .hb_menu {
      padding-top: 4vw;
      margin-bottom: 8vw;
    }
    .hb_menu ul {
      width: 47.5%;
    }
    .hb_menu li a {
      padding: 2.66vw 7vw 2.66vw 1.33vw;
      font-size: 3.46vw;
    }
    .hb_menu li a::after {
      right: 1.66vw;
      top: calc(50% - 2.5vw);
      font-size: 5vw;
    }
  }

.hb_footer {
  padding: 35px 20px;
  align-items: center;
}
.hb_tel {
  font-size: 2.4rem;
}
.hb_tel a {
  text-decoration: none;
  color: #000;
}
.hb_sns {
  padding: 0 25px;
}
.hb_sns li a {
  font-size: 3rem;
  color: #000;
  margin: 0 5px;
}
.hb_sns li a:hover {
  color: #ad4250;
}
  @media screen and (max-width: 767px) {
    .hb_footer {
      padding: 6.66vw 6.66vw 10.66vw;
    }
    .hb_tel {
      font-size: 5.33vw;
    }
    .hb_sns {
      padding: 0 0 1.66vw;
    }
    .hb_sns li a {
      font-size: 9.6vw;
      margin: 0 1.66vw;
    }
  }
