@charset "UTF-8";
/* 変数の定義
--------------------------------------------------*/
/* reset
--------------------------------------------------*/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, svg, a, table, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body, p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body, p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

h1, h2, h3, h4 {
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  h1, h2, h3, h4 {
    line-height: 1.4;
  }
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

ol, ul, li {
  list-style: none;
}

a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.4s ease-out;
}

img {
  display: block;
  border-style: none;
  max-width: 100%;
}

:focus {
  border-style: none;
  outline: none;
}

/* ie11以下のテキストルール */
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, body {
    font-family: Century, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
}
/* 変数の定義
--------------------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* テキストパーツ
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000000;
}

.brown {
  color: #5f4c4c;
}

.red {
  color: #f84b4b;
}

.gray {
  color: #666666;
}

/* フォントの定義
--------------------------------------------------*/
html, body, ul, ol, dl, li, dt, dd, p, div, span, img, svg, a, table, tr, th, td, figure {
  font-family: "Shippori Mincho B1", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: #000000;
}

h1, h2, h3, h4 {
  font-family: "Shippori Mincho B1", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.025em;
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-style: normal;
  font-weight: 400;
}

html {
  font-size: 62.5%;
}

p {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000000;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 450px) {
  p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

/* 色の定義
--------------------------------------------------*/
/* テキストパーツ
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000000;
}

.brown {
  color: #5f4c4c;
}

.red {
  color: #f84b4b;
}

.gray {
  color: #666666;
}

/* 右回転
--------------------------------------------------*/
@keyframes rotation_right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 左回転
--------------------------------------------------*/
@keyframes rotation_left {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* 流用パーツ
--------------------------------------------------*/
.inner-wrap {
  width: calc(100% - 30px);
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  .inner-wrap {
    width: calc(100% - 20px);
    max-width: 1000px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-wrap {
    width: 100%;
  }
}

.inner-wrap-xl {
  width: calc(100% - 30px);
  margin: 0 15px;
}
@media screen and (max-width: 1200px) {
  .inner-wrap-xl {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.pc-view {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 850px) {
  .pc-view.blank {
    display: none;
  }
}

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

.sm-view {
  display: none;
}
@media screen and (max-width: 450px) {
  .sm-view {
    display: block;
  }
}

br.pc-view {
  display: block;
}
@media screen and (max-width: 768px) {
  br.pc-view {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 850px) {
  br.pc-view.blank {
    display: none;
  }
}
br.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp-view {
    display: block;
  }
}

/* 共通パーツ
--------------------------------------------------*/
.mb0 {
  margin-bottom: 0;
}

/* ボタン
--------------------------------------------------*/
.btn {
  max-width: 223px;
  background-color: #ae8f3b;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  padding: 17px 0;
  text-align: center;
  display: block;
  color: #ffffff;
  font-size: 1.6rem;
}
.btn:hover i {
  transform: translate(20px);
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .btn {
    max-width: 370px;
    margin: auto;
  }
}
.btn i {
  padding-left: 10px;
}

.wrapper {
  background-image: url(../img/top/bg.jpg);
}

/* フッター
--------------------------------------------------*/
footer {
  background-color: #e8dcce;
}
@media screen and (max-width: 450px) {
  footer {
    margin-bottom: 70px;
  }
}
footer .footer_tx_wrapper {
  display: flex;
  justify-content: center;
  max-width: 592px;
  margin: auto;
  padding: 60px 0 50px;
  position: relative;
  width: 90%;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper {
    display: block;
    padding: 20px 0 20px;
  }
}
footer .footer_tx_wrapper::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 300px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper::after {
    width: 100%;
    height: 1px;
    top: 40%;
  }
}
footer .footer_tx_wrapper .logo_wrapper {
  margin-right: 91px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .logo_wrapper {
    width: 100%;
  }
}
footer .footer_tx_wrapper .logo_wrapper .footer_logo {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .logo_wrapper .footer_logo {
    width: 36%;
    margin-bottom: 20px;
    min-width: 150px;
  }
}
footer .footer_tx_wrapper .logo_wrapper .footer_phone {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .logo_wrapper .footer_phone {
    margin-bottom: 20px;
  }
}
footer .footer_tx_wrapper .logo_wrapper .footer_phone img {
  width: 15%;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .logo_wrapper .footer_phone img {
    width: 4%;
    margin-right: 8px;
    margin-top: 5px;
    min-width: 20px;
  }
}
footer .footer_tx_wrapper .logo_wrapper .footer_phone p {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .logo_wrapper .footer_phone p {
    font-size: 1.8rem;
  }
}
footer .footer_tx_wrapper .logo_wrapper .line_btn {
  background-color: #00B900;
  width: 205px;
  border-radius: 5px;
  transition-duration: 0.5s;
}
footer .footer_tx_wrapper .logo_wrapper .line_btn:hover {
  opacity: 0.6;
}
footer .footer_tx_wrapper .logo_wrapper .line_btn a {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .logo_wrapper .line_btn a {
    margin: auto;
  }
}
footer .footer_tx_wrapper .logo_wrapper .line_btn a img {
  width: 21%;
}
footer .footer_tx_wrapper .logo_wrapper .line_btn a p {
  color: #ffffff;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
footer .footer_tx_wrapper .nav_wrapper {
  margin-left: 120px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .nav_wrapper {
    width: 90%;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .nav_wrapper .footer_nav_list {
    margin-top: 60px;
  }
}
footer .footer_tx_wrapper .nav_wrapper .footer_nav_list li {
  font-size: 1.6rem;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .nav_wrapper .footer_nav_list li {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
footer .footer_tx_wrapper .nav_wrapper .icon_list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer_tx_wrapper .nav_wrapper .icon_list {
    display: none;
  }
}
footer .footer_tx_wrapper .nav_wrapper .icon_list li {
  margin-right: 15px;
  width: 13%;
}
footer .footer_bnr {
  max-width: 463px;
  margin: auto;
  position: relative;
  width: 90%;
  height: 77px;
  border: solid 3px #ffffff;
}
footer .footer_bnr::before {
  content: "";
  position: absolute;
  max-width: 405px;
  width: 50%;
  top: 0px;
  right: 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5) transparent transparent transparent;
  border-width: 71px 0px 1px 50px;
}
footer .footer_bnr:hover::before {
  animation-name: bnr_hover;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes bnr_hover {
  0% {
    width: 50%;
  }
  100% {
    width: 80%;
  }
}
footer .footer_bnr p {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  footer .footer_bnr p {
    font-size: 1.4rem;
  }
}
footer .copywrite {
  max-width: 1300px;
  margin: auto;
  text-align: right;
  padding: 20px 0;
  width: 90%;
}
@media screen and (max-width: 768px) {
  footer .copywrite {
    text-align: center;
  }
}
footer .copywrite li {
  margin-bottom: 10px;
}

.fix_menu {
  position: fixed;
  width: 100%;
  max-width: 768px;
  bottom: 0;
  z-index: 99;
}
.fix_menu ul {
  display: flex;
}
.fix_menu ul li:first-of-type {
  background-color: #ae8f3b;
  width: 100%;
}
.fix_menu ul li a {
  display: flex;
  justify-content: center;
  padding: 22px 0;
  margin: auto;
  align-items: center;
}
.fix_menu ul li a img {
  width: 5%;
}
.fix_menu ul li a p {
  font-size: 1.6rem;
  margin-left: 5px;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

body {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

.section_inner {
  max-width: 1200px;
  margin: auto;
}

a {
  cursor: pointer;
  cursor: hand;
}

img {
  height: auto;
}

.header_white {
  opacity: 1;
  background-color: #fff;
}

.wrapper {
  background-image: url(../img/top/bg.jpg);
}

#notfound .tit_wrap {
  text-align: center;
  padding: 200px 0 60px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap {
    padding: 100px 0 20px;
  }
}
#notfound .tit_wrap h2 {
  font-size: 2.4rem;
  margin-bottom: 60px;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap h2 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}
#notfound .tit_wrap h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #dac58c;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap h2::after {
    width: 100%;
  }
}
#notfound .tit_wrap p {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap p {
    margin-bottom: 30px;
  }
}
#notfound .tit_wrap .tit_btn_wrapper {
  display: flex;
  justify-content: center;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap .tit_btn_wrapper {
    display: block;
  }
}
#notfound .tit_wrap .tit_btn_wrapper .btn {
  padding: 17px 0;
  margin: 0 5px;
  width: 300px;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap .tit_btn_wrapper .btn {
    margin: 10px auto;
    width: auto;
  }
}

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

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ヘッダー
--------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  border-bottom: 5px solid #dac58c;
  box-sizing: border-box;
  z-index: 100;
  top: 0;
  left: 0;
  height: 120px;
}
@media screen and (max-width: 768px) {
  header {
    height: 70px;
  }
}
header .header_inner {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_inner .logo {
  width: 18%;
  min-width: 180px;
}
@media screen and (max-width: 768px) {
  header .header_inner .logo {
    width: 35%;
    min-width: 180px;
    margin: 10px 0px;
  }
}
header .header_inner .logo h1 {
  width: 80%;
}
@media screen and (max-width: 768px) {
  header .header_inner .logo h1 {
    width: 75%;
    padding: 0px 10px;
    min-width: 149px;
  }
}
@media screen and (max-width: 768px) {
  header .header_inner .nav_wrapper {
    display: none;
  }
}
header .header_inner .nav_wrapper .nav {
  display: flex;
  justify-content: flex-end;
}
header .header_inner .nav_wrapper .nav .icon_list {
  display: flex;
  align-items: center;
  padding-right: 15px;
  justify-content: flex-end;
}
header .header_inner .nav_wrapper .nav .icon_list .icon_item {
  padding: 10px;
  width: 25%;
}
header .header_inner .nav_wrapper .nav .icon_list .icon_item:hover {
  opacity: 0.5;
  transition-duration: 0.5s;
}
header .header_inner .nav_wrapper .nav .phone:hover {
  opacity: 0.8;
  transition: 0.5s;
}
header .header_inner .nav_wrapper .pc_nav .nav_list {
  display: flex;
}
header .header_inner .nav_wrapper .pc_nav .nav_list .nav_item {
  padding: 20px 0;
  margin: 0 15px;
  font-size: 1.8rem;
  position: relative;
}
header .header_inner .nav_wrapper .pc_nav .nav_list .nav_item:last-of-type {
  margin-right: 0;
}
header .header_inner .nav_wrapper .pc_nav .nav_list .nav_item:hover::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  height: 1px;
  background-color: #000000;
  animation-name: nav_animation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes nav_animation {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  header .header_inner .nav_wrapper .pc_nav .nav_list .nav_item {
    font-size: 1.4rem;
  }
}
header .header_inner .nav_wrapper .pc_nav .nav_list .current a {
  color: #ae8f3b;
}

/*------------------------------
  ドロワーメニュー
------------------------------*/
/* ボタン */
.menu-btn {
  display: none;
  width: 30px;
  background-color: transparent;
  border: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  outline: none;
  position: absolute;
  top: 0px;
  right: 60px;
  z-index: 10000;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media all and (max-width: 768px) {
  .menu-btn {
    display: block;
    padding: 20px;
    right: 5%;
  }
}
.menu-btn .drawer-hamburger-icon {
  margin-top: 10px;
  display: block;
  position: relative;
}

.menu-btn .drawer-hamburger-icon,
.menu-btn .drawer-hamburger-icon:before,
.menu-btn .drawer-hamburger-icon:after {
  width: 100%;
  height: 3px;
  background-color: #000;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 3px;
  background-color: #000;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.pushy-open-right .drawer-hamburger-icon {
  background-color: transparent;
}

.pushy-open-right .drawer-hamburger-icon:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pushy-open-right .drawer-hamburger-icon:after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* .pushy-open-right .menu-btn {
  /* メニューopen時 */
/* position: fixed;
} */
.pushy-open-right .drawer-hamburger-icon {
  background-color: transparent;
}

.pushy-open-right .drawer-hamburger-icon:before {
  top: 0;
  background-color: #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pushy-open-right .drawer-hamburger-icon:after {
  top: 0;
  background-color: #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ドロワーメニュー内 */
.pushy {
  display: block;
  text-align: left;
}
.pushy .pushy_logo {
  width: 50%;
  padding-bottom: 40px;
}
.pushy .menu_01 .pushy-link {
  margin-top: 30px;
  font-size: 1.8rem;
}
.pushy .pushy_icon_list {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-right: 15px;
}
.pushy .pushy_icon_list .icon_item {
  padding: 11px;
  width: 13%;
  min-width: 46px;
}
.pushy .pushy_icon_list .icon_item:hover {
  opacity: 0.5;
  transition-duration: 0.5s;
}
.pushy .infomation_wrapper {
  margin-top: 50px;
}
.pushy .infomation_wrapper .phone {
  margin: 30px 0 10px;
  font-size: 1.8rem;
  background-color: #ae8f3b;
}
.pushy .infomation_wrapper .phone:hover {
  opacity: 0.6;
  transition-duration: 0.5s;
}
.pushy .infomation_wrapper .phone a {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  padding: 14px 0;
  width: 183px;
  text-align: center;
  margin: auto;
}
.pushy .infomation_wrapper .phone a img {
  width: 18%;
}
.pushy .infomation_wrapper .phone a p {
  color: #ffffff;
  margin-left: 7px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.pushy .infomation_wrapper .line_btn {
  background-color: #00B900;
}
.pushy .infomation_wrapper .line_btn:hover {
  opacity: 0.6;
  transition-duration: 0.5s;
}
.pushy .infomation_wrapper .line_btn a {
  display: flex;
  align-items: center;
  padding: 10px;
  width: 227px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pushy .infomation_wrapper .line_btn a {
    margin: auto;
  }
}
.pushy .infomation_wrapper .line_btn a img {
  width: 21%;
}
.pushy .infomation_wrapper .line_btn a p {
  color: #ffffff;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
}/*# sourceMappingURL=common.css.map */