/* -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: 60px;
  /*  background-color: #0ff;*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.header_page {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5) !important;
}
#headertop #header.view {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: .3s;
  /*  transform: translateY(-100%);*/
  transform: translateY(0%);
  background-color: rgba(255, 255, 255, 1);
}
#headertop.fixed #header.view {
  transform: translateY(0%);
  transition: .3s;
}
.scroll_logo {
  position: relative;
  top: 14px;
  left: 7%;
  margin-bottom: 0;
  line-height: 1;
  display: block;
  width: 145px;
  transition: 0.6s ease-in-out;
}
#header.view .scroll_logo {
  top: 14px;
}
.scroll_logo::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/logo_black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.6s ease-in-out;
}
#header.view .scroll_logo::before {
  opacity: 1;
}
.scroll_logo a {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}
.scroll_logo a:hover {
  text-decoration: none;
}
.scroll_logo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#header.view .scroll_logo a img {
  opacity: 0;
  transition: .6s;
}
@media screen and (min-width: 768px) {
  .scroll_logo {
    top: 23px;
    left: 4%;
  }
  #header.view .scroll_logo {
    top: 23px;
  }
  #header {
    height: 80px;
  }
  #header.view {
    height: 80px;
  }
}
@media screen and (min-width: 992px) {
  #header.view .scroll_logo {}
}
@media screen and (min-width: 1200px) {
  #header {
    height: 102px;
  }
  .scroll_logo {
    width: 190px;
    top: 18px;
  }
  #header.view .scroll_logo {
    top: 13px;
  }
}
@media screen and (min-width: 1600px) {
  #header {
    height: 102px;
  }
  .scroll_logo {
    top: 31px;
  }
}
/* -Toggle
--------------------------------------------------------------------------------------------- */
/*Toggle*/
.Toggle {
  display: block;
  cursor: pointer;
  z-index: 6666;
  transition: 0.6s ease-in-out;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 3%;
}
#header.view .Toggle {
  top: 0px;
}
.Toggle span {
  display: block;
  position: absolute;
  border-bottom: solid 1px #fff;
  transition: .3s ease-in-out;
  width: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
}
#header.view .Toggle span {
  border-bottom: 1px #000 solid;
}
.header_page .Toggle span {
  border-bottom: 1px #000 solid;
}
.Toggle span:nth-child(1) {
  top: 26px;
}
.Toggle span:nth-child(2) {
  top: 34px;
}
/*Toggle.tgl-active*/
.Toggle.tgl-active {
  position: absolute;
  top: 0;
}
.Toggle.tgl-active span {
  transition: 0.3s ease-in-out;
  border-bottom: solid 1px #fff;
}
.Toggle.tgl-active span:nth-child(1) {
  -webkit-transform: rotate(137deg);
  transform: rotate(137deg);
  left: 24%;
  top: 30px;
}
.Toggle.tgl-active span:nth-child(2) {
  -webkit-transform: rotate(-137deg);
  transform: rotate(-137deg);
  left: 24%;
  top: 30px;
}
@media screen and (min-width: 768px) {
  .Toggle {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 3%;
  }
  #header.view .Toggle {
    top: 10px;
  }
  .Toggle span {
    width: 40px;
  }
  .Toggle span:nth-child(1) {
    top: 25px;
  }
  .Toggle span:nth-child(2) {
    top: 35px;
  }
  .Toggle.tgl-active {
    top: 10px;
  }
  .Toggle.tgl-active span:nth-child(1) {
    top: 30px;
    left: 18%;
  }
  .Toggle.tgl-active span:nth-child(2) {
    top: 30px;
    left: 18%;
  }
}
@media screen and (min-width: 1200px) {
  .Toggle {
    top: 21px;
    right: 2%;
  }
}
@media screen and (min-width: 1400px) {
  .Toggle {
    display: none;
  }
}
/* -NAVI
--------------------------------------------------------------------------------------------- */
.pc_navi_right {
  display: none;
}
.pc_navi_right .navi {
  display: none;
}
.navi_btn_block {
  display: none;
}
.navi_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 180px;
  position: relative;
  z-index: 0;
  transition: all 0.5s;
  font-size: 0.9375rem;
}
.navi_btn_white {
  border-radius: 16px;
  color: #333333;
  background-color: #fff;
  /*  border: 1px solid rgba(255, 255, 255, 1);*/
  position: relative;
  z-index: 0;
  transition: all 0.5s;
}
.navi_btn_white:hover {
  color: #fff;
  background-color: #333333;
  transition: all 0.5s;
}
#header.view .navi_btn_white {
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  transition: all 0.5s;
}
#header.view .navi_btn_white:hover {
  background-color: #fff;
  color: #333;
  transition: all 0.5s;
}
.header_page .navi_btn_white {
  border: 1px solid #333333;
}
@media screen and (min-width: 768px) {
  .navi_btn_block {
    display: block;
    position: absolute;
    top: 50%;
    right: 110px;
    transform: translate(0%, -50%);
  }
  .navi_btn_block > ul > li {
    margin-left: 10px;
  }
  .navi_btn_block > ul > li:first-child {
    margin-left: 0;
  }
  .navi_btn_block > ul {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .pc_navi_right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .6s;
    display: flex;
    justify-content: flex-end;
  }
  #header.view .pc_navi_right {
    transition: 0.6s ease-in-out;
  }
  .pc_navi_right #gNav {
    display: flex;
    align-items: center;
  }
  .pc_navi_right .navi {
    display: flex;
  }
  .pc_navi_right .navi > li {
    margin-right: 1.8rem;
  }
  .pc_navi_right .navi > li:last-child {
    margin-right: 0;
  }
  .pc_navi_right .navi > li > a {
    font-size: 0.8rem;
    letter-spacing: 0;
    color: #fff;
    position: relative;
    transition: all 0.5s;
  }
  .header_page .pc_navi_right .navi > li > a {
    color: #000;
  }
  .header_page .pc_navi_right .navi > li > a:hover {
    color: #000;
  }
  .pc_navi_right .navi > li > a:hover {
    color: #fff;
    transition: all 0.5s;
  }
  .pc_navi_right .navi > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -39px;
    width: 100%;
    height: 3px;
    transform: scale(0, 1);
    transform-origin: left bottom;
    transition: 0.5s transform ease-in-out 0s, 0.5s bottom ease-in-out 0s;
    background-color: rgba(255, 255, 255, 1);
    z-index: 2;
  }
  .pc_navi_right .navi > li > a:hover::after {
    transform: scale(1, 1);
  }
  #header.view .pc_navi_right .navi > li > a {
    color: #333;
    transition: all 0.5s;
  }
  #header.view .pc_navi_right .navi > li > a:hover {
    color: #333;
    transition: all 0.5s;
  }
  #header.view .pc_navi_right .navi > li > a::after {
    background-color: rgba(51, 51, 51, 1);
    bottom: -29px;
    transition: all 0.5s;
  }
  .header_page .pc_navi_right .navi > li > a:hover::after {
    background-color: rgba(51, 51, 51, 1);
  }
  .navi_btn_block {
    right: 80px;
  }
  .navi_btn_block > ul > li {
    margin-left: 20px;
  }
  .navi_btn_block > ul > li:nth-child(2) {
    margin-left: 28px;
  }
  .navi_btn {
    width: 180px;
  }
}
@media screen and (min-width: 1800px) {
  .pc_navi_right .navi > li > a {
    font-size: 1rem;
  }
  .pc_navi_right .navi > li > a::after {
    bottom: -38px;
  }
  #header.view .pc_navi_right .navi > li > a::after {
    bottom: -28px;
  }
}
/* SUB MENU */
.navi_list_dwon {
  position: relative;
}
.header__sub-menu {
  position: absolute;
  top: 48px;
  left: 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;
  background-color: #333;
  border-radius: 9px;
  padding: 40px 22px 40px 38px;
}
/*.navi_list_dwon::before {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: all 0.5s;
  z-index: -1;
  border-bottom: solid 2px #cecabd;
}*/
/*.navi_list_dwon:hover::before {
  width: 100%;
  right: 0;
  transition: all 0.5s;
  bottom: -6px;
}*/
.navi_list_dwon:hover .header__sub-menu {
  opacity: 1;
  visibility: visible;
}
.navi_list_dwon_heding {
  position: relative;
  display: block;
  text-align: center;
  font-size: 0.9375rem;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  padding-right: 13px;
  cursor: pointer;
}
.header_page .navi_list_dwon_heding {
  color: #000;
}
.navi_list_dwon_heding:hover {
  color: #fff;
}
#header.view .navi_list_dwon_heding {
  color: #000;
}
.header_page .navi_list_dwon_heding {
  color: #000;
}
.navi_list_dwon_heding::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  transition: all 0.5s;
}
#header.view .navi_list_dwon_heding::before {
  background-color: #000;
  transition: all 0.5s;
}
.header_page .navi_list_dwon_heding::before {
  background-color: #000;
  transition: all 0.5s;
}
.navi_list_dwon_heding::after {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translate(0%, -50%);
  transition: 0.5s ease-in-out;
}
#header.view .navi_list_dwon_heding::after {
  background-color: #000;
  transition: all 0.5s;
}
.header_page .navi_list_dwon_heding::after {
  background-color: #000;
  transition: all 0.5s;
}
.header__sub-menu > li {
  margin-bottom: 0;
  width: 130px;
}
.header__sub-menu li:last-child {
  border-bottom: none;
}
.header__sub-menu > li > a {
  display: block;
  height: 100%;
  color: #fff !important;
  transition: all 0.5s;
  margin-bottom: 14px;
}
.header__sub-menu li:last-child a {
  margin-bottom: 0;
}
.navi_txt01 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.navi_icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
}
.navi_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*.header__sub-menu > li:nth-child(1) a:hover {
  background-color: #A52F1F;
  color: #fff;
  transition: all 0.5s;
}
.header__sub-menu > li:nth-child(2) a:hover {
  background-color: #808080;
  color: #fff;
  transition: all 0.5s;
}
.header__sub-menu > li:nth-child(3) a:hover {
  background-color: #000;
  color: #fff;
  transition: all 0.5s;
}*/
@media screen and (min-width: 1200px) {
  .sub-menu_box {
    position: relative;
  }
  .sub-menu_box > a {
    cursor: pointer;
  }
  .sub-menu_box .sub-menu {
    position: absolute;
    left: 50%;
    top: 23px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 240px;
    padding-top: 42px;
    transform: translateX(-50%);
  }
  .sub-menu_box:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  #header.view .sub-menu_box .sub-menu {
    padding-top: 31px;
  }
  .header_page .sub-menu_box .sub-menu {
    top: 22px;
  }
  .sub-menu_box .sub-menu > li {
    border: 1px solid #333;
    margin-bottom: -1px;
  }
  .sub-menu_box .sub-menu a {
    display: block;
    text-align: center;
    background: #fff;
    color: #333;
    padding: 20px 0;
    transition: all 0.5s;
  }
  .sub-menu_box .sub-menu a:hover {
    opacity: 1;
    background-color: #333;
    color: #fff;
    transition: all 0.5s;
  }
  .sub-menu_box .sub-menu > li:last-child a {
    border-bottom: none;
  }
}
@media screen and (min-width: 1800px) {
  .sub-menu_box .sub-menu {
    width: 320px;
  }
}
/* -toggle
--------------------------------------------------------------------------------------------- */
/*body.fixed*/
body.fixed {
  position: fixed;
  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;
  overflow: hidden;
  background-color: #333;
  /*  padding-bottom: 9rem;*/
  display: flex;
  flex-direction: column;
  align-items: center;
}
/*togglewrap.active*/
.togglewrap.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  overflow-y: scroll;
}
/*ttogglewrap_inner*/
.togglewrap_inner {
  width: 100%;
  height: auto;
  margin: 0;
  /*  min-height: 100%;*/
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .togglewrap_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
/*トグルメニュー*/
.toggle_main_area {
  background-color: #333;
  padding: 5rem 0 10rem;
  color: #fff;
  height: 100%;
  width: 100%;
}
.toggle_main_inner {
  width: 76%;
  margin: 0 auto;
  max-width: 1280px;
}
.toggle_block {
  margin-bottom: 5rem;
}
.toggle_unit01 {
  margin-bottom: 4rem;
}
.toggle_logo {
  display: block;
  width: 200px;
  margin-bottom: 2rem;
}
.toggle_address {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.toggle_address a {
  color: #fff;
  pointer-events: none;
}
.toggle_tel {
  margin-bottom: 0;
}
.toggle_tel span {
  margin-right: 3px;
}
.toggle_tel a {
  color: #fff;
}
.toggle_fax span {
  margin-right: 3px;
}
.toggle_fax {
  margin-bottom: 0;
}
.toggle_list_box > ul > li {
  margin-bottom: 2rem;
}
.toggle_list_box > ul > li:last-child {
  margin-bottom: 0;
}
.toggle_row_parts > ul {
  display: flex;
  flex-wrap: wrap;
}
.toggle_row_parts > ul > li {
  width: auto;
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}
.toggle_row_parts > ul > li:last-child {
  margin-bottom: 0;
}
.toggle_row_title {
  color: #ccc;
  font-size: 1.15rem;
  position: relative;
  letter-spacing: 0.06em;
  padding-bottom: 3px;
  margin-bottom: 1rem;
}
.toggle_row_title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
}
.toggle_row_title_link {
  color: #ccc;
}
.toggle_list_item {
  color: #fff;
  letter-spacing: 0.06em;
  transition: all 0.5s;
}
.toggle_list_item:hover {
  color: #ccc;
  transition: all 0.5s;
} /*SNS*/
.toggle_sns_block {
  margin-bottom: 5rem;
}
.toggle_sns_block > ul {
  display: flex;
}
.toggle_sns_block > ul > li {
  margin-right: 20px;
}
.toggle_sns_block > ul > li:last-child {
  margin-right: 0;
}
.toggle_sns_item {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toggle_sns_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.toggle_policy_unit {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.toggle_company {
  display: inline-block;
  position: relative;
  padding-right: 11px;
  margin-right: 10px;
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  transition: all 0.5s;
}
.toggle_company:hover {
  color: #ccc;
  transition: all 0.5s;
}
.toggle_company::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
}
.toggle_policy {
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.06em;
  transition: all 0.5s;
}
.toggle_policy:hover {
  color: #ccc;
  transition: all 0.5s;
}
.toggle_copy {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .toggle_main_area {
    padding: 6rem 0;
  }
  .toggle_list_box > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .toggle_list_box > ul > li {
    width: 45%;
  }
  .toggle_copy_block {
    display: flex;
  }
  .toggle_copy {
    order: 1;
    width: 30%;
  }
  .toggle_sns_block {
    order: 2;
    width: 30%;
    margin-bottom: 0;
  }
  .toggle_policy_unit {
    order: 3;
    width: 40%;
    justify-content: flex-end;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .toggle_main_area {
    padding: 8rem 0;
  }
  .toggle_block {
    margin-bottom: 9rem;
  }
  .toggle_list_box > ul > li {
    margin-bottom: 0;
  }
  .toggle_list_box > ul > li:nth-child(1) {
    width: 34%;
  }
  .toggle_list_box > ul > li:nth-child(2) {
    width: 28%;
  }
  .toggle_list_box > ul > li:nth-child(3) {
    width: 23%;
  }
  .toggle_row_parts > ul > li {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .toggle_main_area {
    padding: 9.2rem 0 7.5rem;
  }
  .toggle_main_inner {
    width: 82%;
  }
  .toggle_block {
    display: flex;
    margin-bottom: 6rem;
  }
  .toggle_unit01 {
    width: 30%;
    margin-bottom: 0;
  }
  .toggle_logo {
    width: 230px;
    margin-bottom: 1.4rem;
  }
  .toggle_unit02 {
    width: 70%;
    padding-top: 1rem;
  }
  .toggle_address {
    font-size: 0.875rem;
    margin-bottom: 1.8rem;
  }
  .toggle_tel, .toggle_fax {
    font-size: 0.875rem;
  }
  .toggle_row_parts > ul > li {
    margin-bottom: 0.55rem;
  }
  .toggle_row_title {
    font-size: 1rem;
    padding-bottom: 7px;
    margin-bottom: 1.4rem;
  }
  .toggle_list_item {
    font-size: 0.9375rem;
  }
  .toggle_copy {
    width: 30%;
  }
  .toggle_sns_block {
    width: 34%;
  }
  .toggle_sns_block > ul > li {
    margin-right: 24px;
  }
  .toggle_policy_unit {
    width: 36%;
  }
  .toggle_company {
    font-size: 0.875rem;
    padding-right: 9px;
    margin-right: 6px;
  }
  .toggle_company::before {
    height: 13px;
  }
  .toggle_policy {
    font-size: 0.875rem;
  }
  .toggle_copy {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1600px) {
  .toggle_unit01 {
    width: 32%;
  }
  .toggle_unit02 {
    width: 68%;
  }
  .toggle_list_box > ul > li:nth-child(1) {
    width: 31%;
  }
  .toggle_list_box > ul > li:nth-child(2) {
    width: 31%;
  }
  .toggle_list_box > ul > li:nth-child(3) {
    width: 31%;
  }
  .toggle_copy {
    width: 32%;
  }
  .toggle_sns_block {
    width: 32%;
  }
  .toggle_sns_block > ul > li {
    margin-right: 24px;
  }
  .toggle_policy_unit {
    width: 36%;
  }
}
/*トグルメニュー-ボタン追加*/
.toggle_btn_box {
  margin: 3rem auto 2rem;
}
.toggle_btn_box > ul > li {
  margin-bottom: 1rem;
}
.toggle_btn_box > ul > li:last-child {
  margin-bottom: 0;
}
.toggle_btn_item {
  display: flex;
  align-items: center;
  justify-content: center;
  /*    width: 240px;*/ width: 100%;
  height: 54px;
  border-radius: 27px;
  font-size: 1.2rem;
}
.toggle_btn_white {
  background-color: #fff;
  color: #333;
}
.toggle_btn_black {
  border: 1px solid #fff;
  color: #fff;
}
.toggle_btn_gray {
  color: #000;
  background-color: #D2CFCF;
}
@media screen and (min-width: 768px) {
  .toggle_unit01 {
    display: flex;
    justify-content: space-between;
  }
  .toggle_btn_box {
    margin-right: 0;
  }
  .toggle_btn_item {
    width: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .toggle_unit01 {
    flex-direction: column;
  }
  .toggle_btn_box {
    margin-right: auto;
    margin-left: 0;
  }
}
/**************************
ヘッダー画像無し-トグルメニュー
**************************/
.header_page_noimg .Toggle span {
  border-bottom: solid 1px #000;
}
/**************************
ページヘッダー
**************************/
.header_page {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.page-head_outer {
  margin-bottom: 2rem;
  position: relative;
  z-index: 0;
}
.page_header_img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
/*.page_header_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 91, 172, 0.38);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}*/
.page_header_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-head {
  width: 86%;
  margin: 0 auto;
  padding: 8rem 0 0;
  max-width: 1580px;
}
.page-head_inner {
  position: relative;
  z-index: 2;
}
.head-bfont {
  /*font-size: 3.2rem;*/
  font-size: 1rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 300;
  color: #333;
  line-height: 1;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.h-page-tit {
  color: #333;
  /*font-size: 1rem;*/
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-head {
    padding: 10rem 0 0;
  }
  .head-bfont {
    /*font-size: 4rem;*/
    margin-bottom: 1rem;
  }
  .h-page-tit {
    /*font-size: 1.2rem;*/
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .page-head {
    padding: 12rem 0 0rem;
  }
  /*  .head-bfont {
    font-size: 4.5rem;
  }*/
  .h-page-tit {
    /*font-size: 1.2rem;*/
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-head_outer {
    margin-bottom: 2.2rem;
  }
  .page-head {
    padding: 12rem 0 2rem;
  }
  .head-bfont {
    /*font-size: 5rem;*/
    font-size: 1.25rem;
  }
  .h-page-tit {
    /*font-size: 1.3rem;*/
    font-size: 2.8rem;
  }
}