@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500&display=swap");
body {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  background-color: #000;
  font-size: 15px;
  letter-spacing: 0.1rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 1279px) {
  body {
    font-size: 14px;
  }
}

main {
  min-height: 100vh;
}

@media screen and (max-width: 1279px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .sp_only {
    display: none !important;
  }
}

.basic_width {
  max-width: 1080px;
  margin: 0 auto;
}
.basic_width img {
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .basic_width {
    width: 100vw;
  }
  .basic_width img {
    width: 100%;
  }
}

.red_btn .red_btn_link {
  padding: 25px 150px;
  position: relative;
  overflow: hidden;
  border: solid 1px #980100;
  font-size: 20px;
}
@media screen and (max-width: 1279px) {
  .red_btn .red_btn_link {
    padding: 20px 30vw;
  }
}
.red_btn .red_btn_link::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  /*背景の形状*/
  width: 0;
  height: 100%;
  background-color: #980100;
  /*アニメーションの指定*/
  transition: all 0.3s cubic-bezier(0.52, 0.03, 0.65, 0.99);
  opacity: 0; /*はじめは透過0*/
}
.red_btn .red_btn_link:hover {
  color: #fff;
  z-index: 1;
}
.red_btn .red_btn_link:hover::after {
  width: 100%; /*横幅を伸ばす*/
  opacity: 1; /*不透明に*/
}

.fadein {
  animation-name: fadein;
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slideup {
  transform: translateY(50px);
}

.slidedown {
  transform: translateY(-50px);
}

.slideright {
  transform: translateX(50px);
}

.slideleft {
  transform: translateX(-50px);
}

span[id] {
  display: block;
  height: 70px;
  margin-top: -70px;
  content: "";
}

._fade_in_box {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
._fade_in_box.ready {
  opacity: 1;
  transform: translateY(0px);
}

body {
  width: 100%;
}

header {
  position: relative;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  height: auto;
  padding: 20px;
  background-color: #000;
  z-index: 99;
  transition: all 0.1s;
  display: none;
}
@media screen and (max-width: 1279px) {
  .header {
    display: none;
    margin: initial;
    border-radius: initial;
    top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .header.pc_head_active {
    display: block;
    animation-name: fadeIn;
    animation-fill-mode: forwards;
    animation-duration: 0.4s;
  }
}
.header.active {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
}
@media screen and (max-width: 1279px) {
  .header.active {
    display: block;
    position: fixed;
    background-color: #980100;
    width: 100vw;
    height: 100vh;
    color: #fff;
    left: 0;
    z-index: 98;
    padding-top: 100px;
  }
}
.header .header_logo {
  width: 20%;
  padding-left: 30px;
}
@media screen and (max-width: 1279px) {
  .header .header_logo {
    width: 90%;
    margin-top: 50px;
  }
}
.header .header_logo img {
  width: 100%;
}
.header .con_header {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .header .con_header {
    flex-direction: column;
    z-index: 100;
  }
}
.header .con_header .menu {
  display: flex;
  color: #fff;
  margin: auto 0;
  font-size: 15px;
}
@media screen and (max-width: 1279px) {
  .header .con_header .menu {
    display: block;
    color: white;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    padding: initial;
    padding-top: 30px;
    font-size: 18px;
  }
}
.header .con_header .menu li {
  padding: 0 20px;
}
@media screen and (max-width: 1279px) {
  .header .con_header .menu li {
    padding: 15px 20px;
  }
}
.header .con_header .menu a:hover {
  color: #980100;
}
@media screen and (max-width: 1279px) {
  .header .con_header .menu .red_btn {
    margin-top: 30px;
  }
  .header .con_header .menu .red_btn .red_btn_link {
    border-color: #fff;
  }
}
.header .con_header .menu .red_btn_link {
  padding: 15px 50px;
  font-size: 15px;
}
@media screen and (max-width: 1279px) {
  .header .con_header .menu .red_btn_link {
    font-size: 18px;
  }
}
.header .con_header .menu .red_btn_link:hover {
  color: #FFF;
}
.header .side_btn_line {
  position: absolute;
  top: 60vh;
  right: -120px;
  transform: translateY(0px);
  rotate: 90deg;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.header .side_btn_line a {
  padding: 30px 30px 15px;
  background-color: #980100;
}
@media screen and (max-width: 1279px) {
  .header .side_btn_line {
    transform: initial;
    rotate: 0deg;
    bottom: 10vh;
  }
}
.header .side_btn_line:hover {
  transform: translateY(10px);
}
.header .side_btn_line:hover a {
  padding-top: 40px;
}

@media screen and (max-width: 1279px) {
  .sp_menu_con {
    position: fixed;
    z-index: 99;
    right: 15px;
    top: 15px;
  }
}

.hamburger {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 50px;
  height: 50px;
}
.hamburger span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  right: 7px;
  height: 1px;
  border-radius: 5px;
  background: #fff;
  width: 100%;
}
.hamburger span:nth-of-type(1) {
  top: 14px;
}
.hamburger span:nth-of-type(2) {
  top: 25px;
}
.hamburger span:nth-of-type(3) {
  top: 36px;
}
.hamburger.active {
  width: 50px;
  height: 50px;
  margin-top: 20px;
}
.hamburger.active span:nth-of-type(1) {
  top: 15px;
  right: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  top: 28px;
  right: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

.main_visual {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../img/main_visual.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .main_visual {
    background-image: url("../img/sp/main_visual.jpg");
    height: 80vh;
    background-position: top left;
  }
}
.main_visual .logo_hda {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 1279px) {
  .main_visual .logo_hda {
    width: 90vw;
  }
  .main_visual .logo_hda img {
    width: 100%;
  }
}

.top_concept_content {
  width: 100%;
  text-align: center;
}
.top_concept_content .concept_01_txt h2 {
  padding: 80px 0;
  font-size: 40px;
  line-height: 60px;
}
@media screen and (max-width: 1279px) {
  .top_concept_content .concept_01_txt h2 {
    font-size: 22px;
    line-height: 30px;
    padding: 45px 0;
  }
}
.top_concept_content .concept_01_txt ._photo {
  width: 100%;
}
.top_concept_content .concept_01_txt ._photo img {
  width: 100%;
}
.top_concept_content .concept_flex_box {
  margin: 70px 0 0 0;
}
@media screen and (max-width: 1279px) {
  .top_concept_content .concept_flex_box {
    margin: 30px 0 0 0;
  }
}
.top_concept_content .concept_flex_box .flex_box {
  display: flex;
}
@media screen and (max-width: 1279px) {
  .top_concept_content .concept_flex_box .flex_box {
    flex-direction: column-reverse;
  }
}
.top_concept_content .concept_flex_box .flex_box ._photo {
  width: 50%;
  height: 80vh;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .top_concept_content .concept_flex_box .flex_box ._photo {
    width: 100vw;
    height: auto;
    overflow: hidden;
  }
}
.top_concept_content .concept_flex_box .flex_box ._photo img {
  width: 100%;
}
.top_concept_content .concept_flex_box .flex_box ._txt {
  width: 50%;
  margin: auto 0;
  font-size: 25px;
  line-height: 50px;
}
@media screen and (max-width: 1279px) {
  .top_concept_content .concept_flex_box .flex_box ._txt {
    width: 100vw;
    font-size: 16px;
    line-height: 25px;
    padding: 25px 0;
  }
}
@media screen and (min-width: 1280px) {
  .top_concept_content .concept_flex_box .flex_box:nth-child(1) {
    flex-direction: row-reverse;
  }
}

.top_story_con {
  margin: 100px 0;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .top_story_con {
    flex-direction: column-reverse;
    margin: 45px 0 90px;
  }
}
.top_story_con .story_img {
  width: 50%;
  height: 90vh;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .top_story_con .story_img {
    width: 100vw;
    height: auto;
    margin-top: 40px;
  }
}
.top_story_con .story_img img {
  width: 100%;
}
.top_story_con .story_txt {
  width: 50%;
  margin: auto 0;
  font-size: 25px;
}
@media screen and (max-width: 1279px) {
  .top_story_con .story_txt {
    width: 100vw;
    font-size: 18px;
    text-align: center;
  }
}
.top_story_con .story_txt img {
  width: 180px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1279px) {
  .top_story_con .story_txt img {
    margin-bottom: 30px;
  }
}
.top_story_con .story_txt .txt {
  margin-bottom: 80px;
}
@media screen and (max-width: 1279px) {
  .top_story_con .story_txt .txt {
    margin-bottom: 40px;
  }
}

.top_altis_concept {
  width: 100%;
}
.top_altis_concept .img_altis_red {
  width: 100%;
  overflow: hidden;
}
.top_altis_concept .img_altis_red img {
  width: 100%;
}
.top_altis_concept .detail_01 {
  padding: 130px 0;
  padding-left: 15vw;
  background-image: url(../img/altis_brand.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 35px;
  line-height: 65px;
}
@media screen and (max-width: 1279px) {
  .top_altis_concept .detail_01 {
    padding: 50px 0;
    text-align: center;
    background: none;
  }
}
.top_altis_concept .detail_01 .logo_flex_box {
  display: flex;
}
@media screen and (max-width: 1279px) {
  .top_altis_concept .detail_01 .logo_flex_box {
    display: block;
  }
}
.top_altis_concept .detail_01 .logo_flex_box .logo_kz {
  width: 120px;
}
@media screen and (max-width: 1279px) {
  .top_altis_concept .detail_01 .logo_flex_box .logo_kz {
    width: 100px;
    margin: 0 auto;
  }
}
.top_altis_concept .detail_01 .logo_flex_box .logo_kz img {
  width: 100%;
}
.top_altis_concept .detail_01 .logo_flex_box .logo_txt {
  margin-top: 10px;
  padding-left: 30px;
}
@media screen and (max-width: 1279px) {
  .top_altis_concept .detail_01 .logo_flex_box .logo_txt {
    padding: initial;
    font-size: 20px;
    padding-top: 20px;
    line-height: 1.75rem;
  }
}
.top_altis_concept .detail_01 .detail_02 {
  width: 50vw;
  left: 0;
  padding: 80px 0;
  text-align: center;
  line-height: 55px;
}
@media screen and (max-width: 1279px) {
  .top_altis_concept .detail_01 .detail_02 {
    width: 100%;
    padding: 30px 0;
    left: initial;
    font-size: 20px;
    line-height: 1.75rem;
  }
  .top_altis_concept .detail_01 .detail_02 ._img {
    width: 100%;
    overflow: hidden;
  }
  .top_altis_concept .detail_01 .detail_02 ._img img {
    width: 100%;
  }
}
.top_altis_concept .detail_01 .detail_02 p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1279px) {
  .top_altis_concept .detail_01 .detail_02 p {
    margin-bottom: 50px;
  }
}

.banner_online_shop {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner_online_shop img {
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.banner_online_shop:hover img {
  transform: scale(1.05);
}
.banner_online_shop .txt_shop_img {
  position: absolute;
  width: 400px;
  top: 130px;
  left: 35vw;
  z-index: 2;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 1279px) {
  .banner_online_shop .txt_shop_img {
    width: 300px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.banner_online_shop .txt_shop_img img {
  width: 100%;
}

.top_salon_concept {
  margin-top: 130px;
}
@media screen and (max-width: 1279px) {
  .top_salon_concept {
    margin-top: 45px;
  }
}
.top_salon_concept .detail_salon .img_salon {
  position: relative;
}
.top_salon_concept .detail_salon .img_salon ._txt_salon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 350px;
}
@media screen and (max-width: 1279px) {
  .top_salon_concept .detail_salon .img_salon ._txt_salon {
    width: 45vw;
  }
}
.top_salon_concept .detail_salon .txt_salon {
  text-align: center;
  font-size: 25px;
  padding: 55px 0 90px;
}
@media screen and (max-width: 1279px) {
  .top_salon_concept .detail_salon .txt_salon {
    font-size: 18px;
    line-height: 1.75rem;
    padding: 30px 0;
  }
}
.top_salon_concept .detail_menu {
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .top_salon_concept .detail_menu {
    padding: 0 5vw;
  }
}
.top_salon_concept .detail_menu .img_menu {
  width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .top_salon_concept .detail_menu .img_menu {
    width: 40vw;
  }
}
.top_salon_concept .detail_menu .img_menu img {
  width: 100%;
}
.top_salon_concept .detail_menu .table_menu {
  width: 100%;
  font-size: 18px;
  line-height: 1.5rem;
  margin: 50px 0;
  text-align: left;
}
@media screen and (max-width: 1279px) {
  .top_salon_concept .detail_menu .table_menu {
    font-size: 14px;
    line-height: 20px;
    margin: 20px 0 0 0;
  }
}
@media screen and (max-width: 1279px) {
  .top_salon_concept .detail_menu .table_menu tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 25px;
  }
}
.top_salon_concept .detail_menu .table_menu th, .top_salon_concept .detail_menu .table_menu td {
  padding: 15px 0;
  vertical-align: middle;
}
@media screen and (max-width: 1279px) {
  .top_salon_concept .detail_menu .table_menu th, .top_salon_concept .detail_menu .table_menu td {
    padding: 5px 0;
    margin: auto 0;
  }
}
.top_salon_concept .detail_menu .table_menu th {
  width: 50%;
  font-weight: normal;
}
@media screen and (max-width: 1279px) {
  .top_salon_concept .detail_menu .table_menu th {
    width: 100%;
  }
}
@media screen and (max-width: 1279px) {
  .top_salon_concept .detail_menu .table_menu .charge {
    font-size: 18px;
  }
}

.detail_reservation {
  width: 100%;
  text-align: center;
  padding: 70px 0;
}
.detail_reservation .img_reservation {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .detail_reservation .img_reservation {
    width: 80vw;
  }
}
.detail_reservation .img_reservation img {
  width: 100%;
}
.detail_reservation h3 {
  font-size: 30px;
  margin: 20px 0 60px;
}
@media screen and (max-width: 1279px) {
  .detail_reservation h3 {
    font-size: 25px;
  }
}
.detail_reservation button {
  margin: 30px auto;
  width: 500px;
  display: block;
}
@media screen and (max-width: 1279px) {
  .detail_reservation button {
    width: 90vw;
  }
}
.detail_reservation button .red_btn_link {
  display: block;
  width: 100%;
  padding: initial;
  padding: 15px;
}
@media screen and (max-width: 1279px) {
  .detail_reservation button .red_btn_link {
    font-size: 16px;
  }
}
.detail_reservation .tel_btn {
  font-size: 22px;
  letter-spacing: 0.25rem;
  margin-top: 10px;
}
@media screen and (max-width: 1279px) {
  .detail_reservation .tel_btn {
    font-size: 18px;
  }
}
.detail_reservation .tel_btn .ttl_tel {
  padding: 15px 25px;
  margin: 0 30px 0 0;
  background-color: #980100;
}
@media screen and (max-width: 1279px) {
  .detail_reservation .tel_btn .ttl_tel {
    padding: 10px 20px;
  }
}
.detail_reservation .tel_btn a:hover {
  opacity: 0.8;
}

.detail_access {
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .detail_access {
    padding: 0 5vw;
  }
}
.detail_access .img_access {
  width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .detail_access .img_access {
    width: 40vw;
  }
}
.detail_access .img_access img {
  width: 100%;
}
.detail_access .flex_box {
  display: flex;
  margin: 50px 0 100px;
}
@media screen and (max-width: 1279px) {
  .detail_access .flex_box {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.detail_access .flex_box .box_map {
  width: 65%;
}
@media screen and (max-width: 1279px) {
  .detail_access .flex_box .box_map {
    width: 100%;
  }
  .detail_access .flex_box .box_map iframe {
    height: 30vh;
  }
}
.detail_access .flex_box .box_map iframe {
  width: 100%;
}
.detail_access .flex_box .box_txt {
  font-size: 16px;
  padding-top: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 1279px) {
  .detail_access .flex_box .box_txt {
    padding-left: initial;
  }
}
.detail_access .flex_box .box_txt p {
  line-height: 1.5rem;
  margin-bottom: 25px;
}

.last_concept {
  width: 100%;
  text-align: center;
  font-size: 30px;
  padding: 10vh 0;
  background-image: url(../img/bg_red.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media screen and (max-width: 1279px) {
  .last_concept {
    background-image: url(../img/sp/bg_red.jpg);
    font-size: 18px;
  }
}

.page_story .main_visual {
  width: 100%;
  height: 90vh;
  position: relative;
  background-image: url("../img/main_visual_story.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .page_story .main_visual {
    background-image: url("../img/sp/main_visual_story.jpg");
    background-position: left;
  }
}
.page_story .main_visual .logo_hda {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 1279px) {
  .page_story .main_visual .logo_hda {
    width: 60vw;
  }
  .page_story .main_visual .logo_hda img {
    width: 100%;
  }
}
.page_story .con_owner_first {
  display: flex;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .page_story .con_owner_first {
    flex-direction: column;
    padding: 70px 5vw 50px;
  }
}
.page_story .con_owner_first::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #980100;
  position: absolute;
  bottom: 50px;
  left: 0;
}
@media screen and (max-width: 1279px) {
  .page_story .con_owner_first::after {
    width: 95vw;
    bottom: 0;
    right: 0;
    margin: 0 auto;
  }
}
.page_story .con_owner_first ._img_owner_first {
  width: 40%;
  height: 600px;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .page_story .con_owner_first ._img_owner_first {
    width: 100%;
    height: auto;
  }
}
.page_story .con_owner_first ._img_owner_first img {
  width: 100%;
}
.page_story .con_owner_first ._txt_owner_first {
  padding-left: 55px;
  margin: auto 0;
}
@media screen and (max-width: 1279px) {
  .page_story .con_owner_first ._txt_owner_first {
    padding: initial;
    padding-top: 30px;
  }
}
.page_story .con_owner_first ._txt_owner_first h2 {
  font-size: 30px;
  line-height: 50px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1279px) {
  .page_story .con_owner_first ._txt_owner_first h2 {
    font-size: 18px;
    line-height: 1.5rem;
    padding-bottom: 30px;
  }
}
.page_story .con_owner_first ._txt_owner_first ._name_txt ._owner {
  width: 220px;
}
@media screen and (max-width: 1279px) {
  .page_story .con_owner_first ._txt_owner_first ._name_txt ._owner {
    width: 30vw;
  }
}
.page_story .con_owner_first ._txt_owner_first ._name_txt ._owner img {
  width: 100%;
}
.page_story .con_owner_first ._txt_owner_first ._sawada {
  display: flex;
  padding-top: 15px;
}
@media screen and (max-width: 1279px) {
  .page_story .con_owner_first ._txt_owner_first ._sawada {
    padding: initial;
    align-items: center;
  }
}
.page_story .con_owner_first ._txt_owner_first ._sawada p {
  font-size: 30px;
  margin-right: 30px;
}
@media screen and (max-width: 1279px) {
  .page_story .con_owner_first ._txt_owner_first ._sawada p {
    font-size: 20px;
    margin: initial;
  }
}
@media screen and (max-width: 1279px) {
  .page_story .con_owner_first ._txt_owner_first ._sawada span {
    display: block;
    width: 40vw;
    padding-left: 10px;
    padding-bottom: 15px;
  }
  .page_story .con_owner_first ._txt_owner_first ._sawada span img {
    width: 100%;
  }
}
.page_story .story_flex_box {
  margin: 70px 0 0 0;
}
.page_story .story_flex_box .flex_box {
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 1279px) {
  .page_story .story_flex_box .flex_box {
    flex-direction: column;
    padding: 0 5vw;
    margin-bottom: 50px;
  }
}
.page_story .story_flex_box .flex_box ._photo {
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .page_story .story_flex_box .flex_box ._photo {
    width: 100%;
  }
}
.page_story .story_flex_box .flex_box ._photo img {
  width: 100%;
}
.page_story .story_flex_box .flex_box:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1279px) {
  .page_story .story_flex_box .flex_box:nth-child(2n) {
    flex-direction: column;
  }
}
.page_story .story_flex_box .flex_box:nth-child(2n) ._txt {
  padding: 0 30px 0 0;
}
@media screen and (max-width: 1279px) {
  .page_story .story_flex_box .flex_box:nth-child(2n) ._txt {
    padding: initial;
    padding-top: 30px;
  }
}
.page_story ._txt {
  width: 50%;
  margin: auto 0;
  font-size: 25px;
  line-height: 50px;
  padding: 0 0 0 30px;
}
@media screen and (max-width: 1279px) {
  .page_story ._txt {
    width: 100%;
    padding: initial;
    padding-top: 30px;
  }
}
.page_story ._txt h3 {
  font-size: 28px;
  padding-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .page_story ._txt h3 {
    font-size: 22px;
    text-align: center;
  }
}
.page_story ._txt h3::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #980100;
  position: absolute;
  bottom: 10px;
  left: 0;
}
.page_story ._txt p {
  font-size: 18px;
  line-height: 1.5rem;
}
@media screen and (max-width: 1279px) {
  .page_story ._txt p {
    font-size: 16px;
  }
}
.page_story .story_diploma {
  width: 800px;
  margin: 0 auto;
  padding-bottom: 140px;
}
@media screen and (max-width: 1279px) {
  .page_story .story_diploma {
    width: 100%;
    padding: 0 5vw 80px;
  }
}
.page_story .story_diploma ._img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 25px;
}
.page_story .story_diploma ._img img {
  width: 100%;
}
.page_story .story_diploma ._txt {
  padding: initial;
  width: 100%;
}
.page_story .story_diploma ._txt h3 {
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .page_story .story_diploma ._txt h3 {
    line-height: 28px;
    padding-bottom: 20px;
  }
}
.page_story .story_last_message {
  width: 100%;
  text-align: center;
  padding-bottom: 120px;
}
@media screen and (max-width: 1279px) {
  .page_story .story_last_message {
    padding-bottom: 50px;
  }
}
.page_story .story_last_message ._img {
  background-image: url("../img/story_img_07.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .page_story .story_last_message ._img {
    background-image: url("../img/sp/story_img_07.jpg");
    background-position: top;
    width: 100%;
    height: auto;
  }
}
.page_story .story_last_message ._img p {
  padding: 30vh 0;
  font-size: 40px;
  color: #000;
}
@media screen and (max-width: 1279px) {
  .page_story .story_last_message ._img p {
    padding: 20vh 0 10vh;
    font-size: 22px;
  }
}
.page_story .story_last_message ._txt {
  width: 100%;
  padding: 120px 0;
}
@media screen and (max-width: 1279px) {
  .page_story .story_last_message ._txt {
    padding: 30px 5vw 60px;
    font-size: 18px;
    line-height: 1.75rem;
  }
}
@media screen and (max-width: 1279px) {
  .page_story .story_last_message .red_btn .red_btn_link {
    font-size: 16px;
    padding: 15px 80px;
  }
}

.page_kzaltis .main_visual {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../img/main_visual_altis.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .main_visual {
    background-image: url("../img/sp/main_visual_altis.jpg");
    height: 80vh;
    background-position: center;
  }
}
.page_kzaltis .main_visual p {
  position: absolute;
  align-content: center;
  top: 0;
  bottom: 0;
  margin: auto;
  padding-left: 10vw;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .main_visual p {
    padding-left: 30px;
  }
}
.page_kzaltis .main_visual .logo_kz {
  display: block;
  margin: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .main_visual .logo_kz {
    width: 20vw;
    margin-bottom: 20px;
  }
  .page_kzaltis .main_visual .logo_kz img {
    width: 100%;
  }
}
.page_kzaltis .main_visual .logo_product {
  display: block;
  margin: auto;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .main_visual .logo_product {
    width: 50vw;
  }
  .page_kzaltis .main_visual .logo_product img {
    width: 100%;
  }
}
.page_kzaltis .detail_01 {
  width: 100%;
  padding: 130px 0 0;
  font-size: 35px;
  line-height: 65px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .detail_01 {
    padding: 50px 0;
    text-align: center;
    background: none;
  }
}
.page_kzaltis .detail_01 .logo_flex_box {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .detail_01 .logo_flex_box {
    display: block;
  }
}
.page_kzaltis .detail_01 .logo_flex_box .logo_kz {
  width: 120px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .detail_01 .logo_flex_box .logo_kz {
    width: 100px;
    margin: 0 auto;
  }
}
.page_kzaltis .detail_01 .logo_flex_box .logo_kz img {
  width: 100%;
}
.page_kzaltis .detail_01 .logo_flex_box .logo_txt {
  margin-top: 10px;
  padding-left: 30px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .detail_01 .logo_flex_box .logo_txt {
    padding: initial;
    font-size: 20px;
    padding-top: 20px;
    line-height: 1.75rem;
  }
}
.page_kzaltis .detail_01 .detail_02 {
  width: 100%;
  padding: 80px 0;
  display: flex;
  text-align: left;
  font-size: 18px;
  line-height: 1.75rem;
}
.page_kzaltis .detail_01 .detail_02 ._img {
  width: 50%;
  height: 300px;
  overflow: hidden;
}
.page_kzaltis .detail_01 .detail_02 ._img img {
  width: 100%;
}
.page_kzaltis .detail_01 .detail_02 ._txt {
  width: 50%;
  padding-left: 30px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .detail_01 .detail_02 ._txt {
    width: 100%;
    padding: 0 5vw;
  }
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .detail_01 .detail_02 {
    width: 100%;
    padding: 30px 0;
    flex-direction: column;
    left: initial;
    font-size: 20px;
    line-height: 1.75rem;
  }
  .page_kzaltis .detail_01 .detail_02 ._img {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }
  .page_kzaltis .detail_01 .detail_02 ._img img {
    width: 100%;
  }
}
.page_kzaltis .detail_01 .detail_02 p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .detail_01 .detail_02 p {
    margin: initial;
    font-size: 16px;
  }
}
.page_kzaltis .content_product_altis_serum {
  width: 100%;
}
.page_kzaltis .content_product_altis_serum .img_product {
  width: 400px;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .content_product_altis_serum .img_product {
    width: 60vw;
  }
}
.page_kzaltis .content_product_altis_serum .img_product img {
  width: 100%;
}
.page_kzaltis .content_product_altis_serum .img_altis_red {
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .content_product_altis_serum .img_altis_red {
    height: auto;
  }
}
.page_kzaltis .content_product_altis_serum .img_altis_red img {
  width: 100%;
}
.page_kzaltis .section_seibun {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun {
    padding: 50px 5vw 0;
  }
}
.page_kzaltis .section_seibun ._seibun_con {
  margin-bottom: 50px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun ._seibun_con {
    margin: initial;
  }
}
.page_kzaltis .section_seibun ._txt_seibun_img img {
  width: 100%;
}
.page_kzaltis .section_seibun h2 {
  font-size: 40px;
  padding: 60px 0 30px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun h2 {
    font-size: 26px;
  }
}
.page_kzaltis .section_seibun ._list {
  display: flex;
  justify-content: space-between;
  color: #000;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun ._list {
    flex-direction: column;
  }
}
.page_kzaltis .section_seibun ._list li {
  width: 30%;
  padding: 0 25px 100px;
  background-color: #FFF;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun ._list li {
    width: 100%;
    padding: 0 10px 50px;
    margin-bottom: 25px;
  }
}
.page_kzaltis .section_seibun ._list li ._ttl {
  font-size: 25px;
  line-height: 1.75rem;
  height: 20%;
  align-content: center;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun ._list li ._ttl {
    font-size: 22px;
    padding: 15px 0;
  }
}
.page_kzaltis .section_seibun ._list li ._ttl._sirt {
  font-size: 20px;
  letter-spacing: 0.05rem;
}
.page_kzaltis .section_seibun ._list li ._thum_rouka {
  width: 100%;
}
.page_kzaltis .section_seibun ._list li ._thum_rouka img {
  width: 100%;
}
.page_kzaltis .section_seibun ._list li ._txt {
  font-size: 16px;
  text-align: left;
  line-height: 1.5rem;
  padding: 25px 0 0 0;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun ._list li ._txt {
    line-height: 1.25rem;
  }
}
.page_kzaltis .section_seibun ._list li ._txt_hakko_ekisu {
  margin-top: 10px;
  width: 100%;
  background-color: #777;
  color: #fff;
}
.page_kzaltis .section_seibun ._list._uwabami {
  flex-wrap: wrap;
}
.page_kzaltis .section_seibun ._list._uwabami li {
  width: 48%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun ._list._uwabami li {
    width: 100%;
  }
}
.page_kzaltis .section_seibun .con_product {
  margin-top: 80px;
}
.page_kzaltis .section_seibun .con_product ._flex_box {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box {
    flex-direction: column;
  }
}
.page_kzaltis .section_seibun .con_product ._flex_box ._img {
  height: 500px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box ._img {
    height: auto;
  }
}
.page_kzaltis .section_seibun .con_product ._flex_box ._img img {
  height: 100%;
}
.page_kzaltis .section_seibun .con_product ._flex_box ._img._cream {
  height: 350px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box ._img._cream {
    width: 60vw;
  }
  .page_kzaltis .section_seibun .con_product ._flex_box ._img._cream img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box ._img {
    width: 40vw;
    margin: 0 auto;
  }
  .page_kzaltis .section_seibun .con_product ._flex_box ._img img {
    width: 100%;
    height: auto;
  }
}
.page_kzaltis .section_seibun .con_product ._flex_box ._txt {
  width: 60%;
  padding-left: 110px;
  text-align: left;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box ._txt {
    width: 100%;
    padding: initial;
    text-align: center;
  }
}
.page_kzaltis .section_seibun .con_product ._flex_box ._txt ._ttl {
  font-size: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box ._txt ._ttl {
    margin-bottom: 30px;
  }
}
.page_kzaltis .section_seibun .con_product ._flex_box ._txt img {
  width: 150px;
  margin-bottom: 30px;
}
.page_kzaltis .section_seibun .con_product ._flex_box ._txt p {
  font-size: 16px;
  line-height: 1.5rem;
  margin-bottom: 80px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box ._txt p {
    text-align: left;
    margin-bottom: 30px;
  }
}
.page_kzaltis .section_seibun .con_product ._flex_box ._txt .red_btn .red_btn_link {
  bottom: 0;
  padding: 15px 50px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box ._txt .red_btn .red_btn_link {
    display: block;
    padding: 10px 0;
    width: 90vw;
  }
}
.page_kzaltis .section_seibun .con_product ._flex_box:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box:nth-child(2n) {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.page_kzaltis .section_seibun .con_product ._flex_box:nth-child(2n) ._txt {
  padding-right: 110px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis .section_seibun .con_product ._flex_box:nth-child(2n) ._txt {
    padding: initial;
  }
}
.page_kzaltis ._ttl_shop {
  text-align: center;
  font-size: 25px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1279px) {
  .page_kzaltis ._ttl_shop {
    font-size: 18px;
    line-height: 1.5rem;
  }
}
.page_kzaltis .banner_online_shop {
  margin-bottom: 50px;
}

.page_contact .main_visual {
  width: 100%;
  height: 70vh;
  position: relative;
  background-image: none;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .page_contact .main_visual {
    background-image: url("../img/sp/main_visual_contact.jpg");
    height: 30vh;
  }
}
.page_contact .main_visual .logo_hda {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 1279px) {
  .page_contact .main_visual .logo_hda {
    width: 60vw;
  }
  .page_contact .main_visual .logo_hda img {
    width: 100%;
  }
}
.page_contact .contact_info_con {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  padding: 55px 0;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact_info_con {
    padding: 55px 5vw 30px;
    font-size: 14px;
    letter-spacing: 0.05rem;
    line-height: 1.5rem;
    text-align: left;
  }
}
.page_contact .contact_info_con .btn_box {
  margin: 70px 0;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact_info_con .btn_box {
    margin: 30px 0;
  }
}
.page_contact .contact_info_con .btn_box .red_btn .red_btn_link {
  font-size: 18px;
  padding: 20px 120px;
  margin: 0 10px;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact_info_con .btn_box .red_btn .red_btn_link {
    text-align: center;
    display: block;
    padding: 15px 0;
    width: 90vw;
    margin: 10px auto;
  }
}
.page_contact .contact {
  text-align: center;
  padding: 0 0 80px 0;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact {
    padding: 0 5vw;
    padding-bottom: 80px;
  }
}
.page_contact .contact .ttl_contact {
  font-size: 17px;
  font-weight: 400;
  padding-bottom: 20px;
}
.page_contact .contact table {
  width: 100%;
}
.page_contact .contact th {
  text-align: right;
  padding: 13px 0;
  padding-right: 20px;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact th {
    display: block;
    text-align: left;
    padding: initial;
    letter-spacing: 0.1rem;
  }
}
.page_contact .contact td {
  width: calc(100% - 150px);
  margin: 0 auto;
  text-align: left;
  padding: 10px 0;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact td {
    display: block;
    width: 100%;
    padding: initial;
    font-size: 15px;
  }
}
.page_contact .contact .required::before {
  content: "必須";
  color: #FFF;
  font-size: 13px;
  margin-right: 3px;
  padding: 3px 5px;
  background-color: #980100;
}
.page_contact .contact input {
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact input {
    width: 100%;
    text-align: left;
    margin: 0;
  }
}
.page_contact .contact textarea {
  height: 200px;
  line-height: 1.5rem;
}
.page_contact .contact input, .page_contact .contact textarea, .page_contact .contact select {
  width: calc(100% - 150px);
  text-align: left;
  background-color: #fff;
  padding: 2px 10px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #000;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact input, .page_contact .contact textarea, .page_contact .contact select {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    letter-spacing: 0.05rem;
  }
}
.page_contact .contact input[type=submit], .page_contact .contact input[type=button] {
  width: initial;
  text-align: initial;
  background-color: initial;
  padding: initial;
  border-radius: initial;
  border: initial;
  font-size: initial;
  font-weight: initial;
  margin: initial;
  margin: 15px auto;
  font-size: 15px;
  font-weight: 400;
  width: 250px;
  padding: 20px 50px;
  color: #fff;
  border: 0.5px solid #fff;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact input[type=submit], .page_contact .contact input[type=button] {
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0;
    width: 90vw;
    margin: 20px auto 0;
  }
}
.page_contact .contact input[type=submit]:hover, .page_contact .contact input[type=button]:hover {
  color: #fff;
  background-color: #980100;
  border-color: #980100;
}
.page_contact .contact input[type=checkbox] {
  justify-content: center;
  width: 15px;
  margin-right: 15px;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact input[type=checkbox] {
    margin: initial;
    padding: 10px;
  }
}
.page_contact .contact input[type=checkbox]:checked + .wpcf7-list-item-label:after { /*チェックアイコン*/
  border: none;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  height: 11px;
  left: -30px;
  top: 5px;
  margin: 0 auto;
  transform: rotate(45deg);
  width: 7px;
  opacity: 1;
  position: absolute;
}
@media screen and (max-width: 1279px) {
  .page_contact .contact input[type=checkbox]:checked + .wpcf7-list-item-label:after {
    left: -15px;
    top: 7px;
  }
}
.page_contact .contact ::placeholder {
  font-size: 14px;
  letter-spacing: 0.1rem;
  font-weight: normal;
  color: #ccc;
}
.page_contact .ttl_thx {
  padding-top: 150px;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
}
.page_contact .txt_thx {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding: 40px 0;
  line-height: 2rem;
}
.page_contact .btn_back {
  margin-top: 110px;
}
.page_contact .btn_back a {
  margin: 15px auto;
  padding: 20px 0 50px;
  font-size: 18px;
  font-weight: bold;
  width: 300px;
  padding: 20px 80px;
  color: #fff;
  border: 0.5px solid #fff;
  position: relative;
  text-align: center;
}
.page_contact .btn_back a:hover {
  color: #fff;
  background-color: #fff;
}

.contact_thanks {
  text-align: center;
}
.contact_thanks .main_visual {
  width: 100%;
  height: 30vh;
  position: relative;
  background-image: url("../img/main_visual_contact.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .contact_thanks .main_visual {
    background-image: url("../img/sp/main_visual_contact.jpg");
    height: 30vh;
  }
}
.contact_thanks .main_visual .logo_hda {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 1279px) {
  .contact_thanks .main_visual .logo_hda {
    width: 60vw;
  }
  .contact_thanks .main_visual .logo_hda img {
    width: 100%;
  }
}
.contact_thanks h1 {
  font-size: 35px;
  padding: 50px 0;
}
.contact_thanks .txt_thx p {
  font-size: 20px;
  padding: 30px 0 50px;
}

footer {
  width: 100%;
  text-align: center;
  background-color: #000;
  padding: 10px 0;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 1279px) {
  footer {
    line-height: 1.2rem;
    font-size: 12px;
  }
}