/* -HEADER
--------------------------------------------------------------------------------------------- */
#headertop {
  z-index: 55555;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  transition: .6s;
}
#headertop.fixed {
  transform: translateY(0%);
  transition: .3s;
}
#header {
  height: 130px;
  transition: .6s;
}
#headertop #header.view {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: .3s;
  transform: translateY(-100%);
}
#headertop.fixed #header.view {
  transform: translateY(0%);
  transition: .3s;
  height: 60px;
  /*  background-color: #fff;*/
}
.scroll_logo {
  position: absolute;
  top: 28px;
  left: 6.5%;
  margin-bottom: 0;
  line-height: 1;
  display: block;
  width: 140px;
  transition: 0.3s ease-in-out;
}
/*#headertop.fixed #header.view .scroll_logo {
  display: none;
}*/
#headertop.fixed #header.view .scroll_logo {
  opacity: 0;
}
.scroll_logo a {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}
#headertop.fixed #header.view .scroll_logo a {
  display: none;
}
.scroll_logo a:hover {
  text-decoration: none;
}
.scroll_logo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .scroll_logo {
    width: 150px;
    left: 4%;
  }
  #header {
    height: 135px;
  }
  #headertop.fixed #header.view {
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  #header {
    height: 190px;
  }
  #headertop.fixed #header.view {
    height: 125px;
  }
  .scroll_logo {
    width: 180px;
    top: 60px;
    left: 4.5%;
  }
}
/* -Toggle
--------------------------------------------------------------------------------------------- */
/*Toggle*/
.Toggle {
  display: block;
  cursor: pointer;
  z-index: 6666;
  /* transition: 0.6s ease-in-out;*/
  transition: all 0.5s;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 46px;
  right: 5.5%;
  transform: translate(0%, -50%);
}
#header.view .Toggle {
  top: 30px;
  transition: all 0.3s;
}
#headertop.fixed #header.view .Toggle {
  top: 30px;
  transition: all 0.3s;
}
.Toggle span {
  display: block;
  border-bottom: solid 1.2px rgba(255, 255, 255, 1);
  width: 38px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease-in-out;
}
#header.view .Toggle span {
  border-bottom: solid 1.2px rgba(54, 66, 70, 1);
}
.header_page .Toggle span {
  border-bottom: solid 1.2px rgba(54, 66, 70, 1);
}
.Toggle span:nth-child(1) {
  top: 16px;
}
.Toggle span:nth-child(2) {
  top: 24px;
}
.Toggle span:nth-child(3) {
  top: 32px;
}
/*Toggle.tgl-active*/
.Toggle.tgl-active {
  position: absolute;
}
.header_page .Toggle.tgl-active span {
  border-bottom: solid 1.2px rgba(255, 255, 255, 1);
}
.Toggle.tgl-active span {
  transition: 0.3s ease-in-out;
}
.Toggle.tgl-active span:nth-child(1) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(145deg);
  -webkit-transform:
    translate(-50%, -50%) rotate(145deg);
}
.Toggle.tgl-active span:nth-child(2) {
  width: 0;
}
.Toggle.tgl-active span:nth-child(3) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-145deg);
  -webkit-transform:
    translate(-50%, -50%) rotate(-145deg);
}
@media screen and (min-width: 768px) {
  .Toggle {
    right: 30px;
  }
  #header.view .Toggle {
    top: 39px;
  }
  #headertop.fixed #header.view .Toggle {
    top: 39px;
  }
}
@media screen and (min-width: 1200px) {
  .Toggle {
    display: none;
  }
}
/* -NAVI
--------------------------------------------------------------------------------------------- */
.pc_navi_center {
  display: none;
}
@media screen and (min-width: 1200px) {
  .pc_navi_center {
    display: block;
    position: absolute;
    top: 62px;
    right: 345px;
    transform: translate(0%, -50%);
  }
  #headertop.fixed #header.view .pc_navi_center {
    top: 50%;
  }
  .pc_navi_center .navi {
    display: flex;
    align-items: center;
  }
  .pc_navi_center .navi > li {
    margin-right: 13px;
  }
  .pc_navi_center .navi > li:last-child {
    margin-right: 0;
  }
  .pc_navi_center .navi a {
    color: #fff;
    font-size: 0.875rem;
    position: relative;
    transition: all 0.5s;
  }
  .pc_navi_center .navi a:hover {
    opacity: 0.6;
    color: #fff;
    transition: all 0.5s;
  }
  #header.view .pc_navi_center .navi a {
    color: #364246;
  }
  .header_page .pc_navi_center .navi a {
    color: #364246;
  }
  /*  .pc_navi_center .navi a:hover {
    color: #B28146;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
  }*/
  /*  .pc_navi_center .navi > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left bottom;
    transition: 0.3s transform ease-in-out 0s, 0.3s bottom ease-in-out 0s;
    background-color: rgba(255, 255, 255, 1);
    z-index: 2;
  }
  .pc_navi_center .navi > li > a:hover::after {
    transform: scale(1, 1);
  }*/
}
@media screen and (min-width: 1500px) {
  .pc_navi_center {
    right: 425px;
  }
  .pc_navi_center .navi > li {
    margin-right: 1.85rem;
  }
  .pc_navi_center .navi a {
    font-size: 0.9375rem;
  }
}
/* SUB MENU */
.navi_list_dwon {
  position: relative;
}
.navi_list_dwon_heding {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.1rem;
  transition: 0.3s ease-in-out;
  padding-right: 20px;
  cursor: pointer;
}
.pc_navi_center .navi a.navi_list_dwon_heding {
  opacity: 1;
}
.navi_list_dwon_heding::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 41%;
  right: 0;
  transform: translate(0%, -50%) rotate(135deg);
}
#header.view .navi_list_dwon_heding::before {
  border-top: 1px solid rgba(54, 66, 70, 0.7);
  border-right: 1px solid rgba(54, 66, 70, 0.7);
}
.header_page .navi_list_dwon_heding::before {
  border-top: 1px solid rgba(54, 66, 70, 0.7);
  border-right: 1px solid rgba(54, 66, 70, 0.7);
}
.header__sub-menu {
  position: absolute;
  top: 21px;
  left: 40%;
  transform: translate(-50%, 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  flex-direction: column;
  padding-top: 2.4rem;
}
.navi_list_dwon:hover .header__sub-menu {
  opacity: 1;
  visibility: visible;
}
.header__sub-menu > ul {
  width: 400px;
  padding: 1rem 2rem 2.5rem 2rem;
  background-color: #fff;
  border-radius: 10px;
}
.header__sub-menu > ul > li {
  border-bottom: 1px solid rgba(226, 233, 233, 0.5);
}
.pc_navi_center .header__sub-menu > ul > li > a {
  display: block;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: #364246;
  transition: all 0.5s;
  padding: 1.3rem 1.2rem 1rem 1rem;
  position: relative;
}
.pc_navi_center .header__sub-menu > ul > li > a:hover {
  color: #364246;
}
.pc_navi_center .header__sub-menu > ul > li > a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #d4b345;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0%, -50%);
  transition: all 0.5s;
}
.pc_navi_center .header__sub-menu > ul > li > a:hover::before {
  width: 10px;
  height: 10px;
  right: 0.9rem;
  transition: all 0.5s;
}
/* -MEANNAV
--------------------------------------------------------------------------------------------- */
/*  #gNav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }*/
.pc_navi_right {
  display: none;
}
@media screen and (min-width: 768px) {
  /*pc_navi_right*/
  .pc_navi_right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*  transition: .6s;*/
    width: auto;
    position: absolute;
    top: 47px;
    right: 95px;
    transform: translate(0%, -50%);
  }
  #header.view .pc_navi_right {
    top: 39px;
  }
  #headertop.fixed #header.view .pc_navi_right {
    top: 39px;
  }
  .pc_navi_right .navi {
    display: flex;
    align-items: center;
    margin-right: 1rem;
  }
  .pc_navi_right .navi > li {
    margin-right: 18px;
  }
  .pc_navi_right .navi > li:last-child {
    margin-right: 0;
  }
  .pc_navi_btnbox {
    display: flex;
    justify-content: flex-end;
    position: relative;
  }
  .pc_navi_btn {
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    width: 136px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition: all 0.5s;
  }
  .pc_navi_btn_white {
    color: #364246;
    background-color: #fff;
    margin-right: 0.8rem;
  }
  .pc_navi_btn_white:hover {
    opacity: 0.7;
    color: #364246;
    transition: all 0.5s;
  }
  #headertop.fixed #header.view .pc_navi_btn_white {
    border: 1px solid rgba(54, 66, 70, 0.5);
    background-color: #364246;
    color: #fff;
  }
  .header_page .pc_navi_btn_white {
    border: 1px solid rgba(54, 66, 70, 0.5);
    background-color: #364246;
    color: #fff;
  }
  .pc_navi_btn_gold {
    color: #fff;
    background-color: #d4b345;
  }
  .pc_navi_btn_gold:hover {
    opacity: 0.7;
    color: #fff;
    transition: all 0.5s;
  }
  .pc_navi_time {
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
    text-align: right;
    margin-right: -7px;
  }
  .header_page .pc_navi_time {
    color: #364246;
  }
}
@media screen and (min-width: 992px) {
  .pc_navi_right {
    right: 105px;
  }
}
@media screen and (min-width: 1200px) {
  .pc_navi_right {
    top: 62px;
    right: 30px;
  }
  #headertop.fixed #header.view .pc_navi_right {
    top: 62px;
  }
  .pc_navi_right .navi > li {
    margin-right: 19px;
  }
}
@media screen and (min-width: 1500px) {
  .pc_navi_right {
    right: 80px;
  }
  .pc_navi_right .navi {
    margin-right: 2.5rem;
  }
}
/* -toggle
--------------------------------------------------------------------------------------------- */
/*body.fixed*/
body.fixed {
  position: fixed !important;
  width: 100%;
  height: 100%;
}
/***************************************
toggle
***************************************/
.scroll_tgl_wrap {
  display: block;
  /*
  position: fixed;
  right: 0;
  top: 0;
*/
  width: 100%;
  z-index: 999999;
}
.togglewrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1111;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: 0.4s ease-in-out;
  padding: 0;
  overflow: hidden;
  background-color: #d4b345;
  padding-bottom: 11rem;
}
/*togglewrap.active*/
.togglewrap.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  overflow-y: scroll;
}
.toggle_block {
  width: 87%;
  margin: 8.4rem auto 0;
}
.toggle_list {
  margin-bottom: 4.2rem;
}
.toggle_list > ul:first-child {
  margin-bottom: 2.2rem;
}
.toggle_list > ul > li {
    display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.toggle_list > ul > li:last-child {
  margin-bottom: 0;
}
.toggle_list_txt span {
  display: block;
  font-size: 2.42rem;
  margin-right: 1.6rem;
  padding-bottom: 0.5rem;
}
.toggle_list_txt {
  font-size: 0.928rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.toggle_list_txt:hover {
  color: #fff;
}
.toggle_list_col {
    	width: 100%;

  margin-top: 1.5rem;
}
.toggle_list_col > ul > li {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 0.9rem;
}
.toggle_list_col_txt {
  display: block;
  padding: 0 0.9rem;
  color: #fff;
  position: relative;
  padding-right: 1.3rem;
  transition: all 0.5s;
}
.toggle_list_col_txt:hover {
  color: #fff;
}
.toggle_list_col > ul > li:last-child {
  margin-bottom: 0;
}
.toggle_list_col_txt::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translate(0%, -50%);
}
.toggle_btn_block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.1rem;
}
.toggle_btn {
  font-size: 0.928rem;
  letter-spacing: 0.03em;
  width: 49.5%;
  padding: 1.5rem 0.8rem 1.5rem 1.5rem;
  padding: 1.5rem 40px 1.5rem 1.5rem;
  /*  color: #9ba0a0;*/
  color: #000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.toggle_btn_arrow {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #d4b345;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translate(0%, -50%);
}
.toggle_btn_arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 7px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toggle_policy {
  font-size: 0.928rem;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .togglewrap_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
  }
  .toggle_list {
    display: flex;
    justify-content: space-between;
  }
  .toggle_list > ul {
    width: 43%;
  }
  .toggle_list > ul:first-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .toggle_block {
    width: 70%;
  }
}
/***************************************
ページヘッダー
***************************************/
.page-head_outer {
  margin-top: 14rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 0;
}
.page-head {
  width: 87%;
  margin: 0 auto;
  text-align: center;
}
.head-bfont {
  display: block;
  font-size: 2.71rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  color: #364246;
  margin-bottom: 0.8rem;
}
.h-page-tit {
  font-size: 0.928rem;
  font-weight: 200;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #9ba0a0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .head-bfont {
    font-size: 3rem;
    margin-bottom: 1.1rem;
  }
}
@media screen and (min-width: 992px) {
  .page-head_outer {
    margin-bottom: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-head_outer {
    margin-top: 14.8rem;
    margin-bottom: 7.3rem;
  }
  .page-head {
    width: 85.5%;
  }
  .head-bfont {
    font-size: 3.375rem;
    margin-bottom: 1.4rem;
  }
  .h-page-tit {
    font-size: 0.875rem;
  }
}
/***************************************
ヘッダー画像有り
***************************************/
.page-head_wide {
  position: relative;
}
.page-head_wide_img {
  height: 520px;
  position: relative;
  z-index: 0;
}
.page-head_wide_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 15, 35, 0.15);
  background-image: url("../images/");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.page-head_wide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 33% 50%;
}
.page-head_wide .page-head_outer {
  position: absolute;
  margin: 0;
  width: 87%;
  left: 7%;
  bottom: 6rem;
  z-index: 2;
}
.page-head_wide .page-head {
  width: 100%;
  text-align: left;
}
.page-head_wide .head-bfont {
  color: #fff;
}
.page-head_wide .h-page-tit {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page-head_wide_img {
    height: auto;
  }
  .page-head_wide_img img {
    object-position: 50% 50%;
  }
}
@media screen and (min-width: 1200px) {
  .page-head_wide .head-bfont {
    font-size: 4.375rem;
  }
  .page-head_wide .h-page-tit {
    font-size: 1.125rem;
  }
}
/***************************************

***************************************/