/* フロートサイドメニュー
--------------------------- */
/* SIDE LINK */
.c-side-link {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-side-link {
    display: block;
  }
  .c-side-link a {
    transition: all 0.5s;
  }
  .c-side-link_inner {
    position: fixed;
    /*
    top: 30%;
*/
    top: 25%;
    right: 0;
    z-index: 100;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    text-align: center;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    /*  text-orientation: upright;*/
  }
  .c-side-contact {
    height: 160px;
    width: 50px;
    writing-mode: vertical-rl;
    font-size: 0.875rem;
   
    display: flex;
    align-items: center;
    justify-content: center;
      border-top: 1px solid rgba(115, 116, 119, 0.5);
      border-bottom: 1px solid rgba(115, 116, 119, 0.5);
      border-left: 1px solid rgba(115, 116, 119, 0.5);
  }
  .c-side-contact001 {
    background-color: #737477;
    color: #fff;
  }
  .c-side-contact002 {
    background-color: #737477;
    color: #fff;
    margin-top: 10px;
  }
  .c-side-contact003 {
    background-color: #737477;
    color: #fff;
          margin-top: 10px;

  }

  .c-side-link a:hover {
    /*opacity: 0.7;*/
    text-decoration: none;
    transition: all 0.5s;
    color: #737477;
      background-color: #fff;
  }
  .c-side-link.show .c-side-link_inner {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
/***************************************
footer
***************************************/
#footer {
  /*margin-top: 8.5rem;*/
  margin-top: 4.5rem;
  background-color: #f1f2f3;
}
@media screen and (min-width: 768px) {
  #footer {
    /* margin-top: 11rem;*/
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  #footer {
    /*  margin-top: 14rem;*/
    margin-top: 9rem;
  }
}
/**************************************
/* fr_3col_block
***************************************/
.fr_3col_block > ul > li {
  border-bottom: 1px solid rgba(218, 218, 218, 0.5);
}
.fr_3col_item {
  display: flex;
  color: #232323;
  transition: all 0.5s;
}
.fr_3col_item:hover {
  color: #232323;
}
.fr_3col_unit01 {
  width: 56.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f1f2f3;
}
.fr_3col_title {
  font-size: 1.07rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.fr_3col_head {
  font-size: 0.642rem;
  line-height: 1;
  margin-bottom: 0;
}
.fr_3col_arrow_box_pc {
  display: none;
}
.fr_3col_unit02 {
  width: 43.5%;
  position: relative;
  z-index: 0;
}
.fr_3col_unit02::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: all 0.5s;
}
.fr_3col_block > ul > li:nth-child(1) .fr_3col_unit02::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.fr_3col_block > ul > li:nth-child(1) a:hover .fr_3col_unit02::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.fr_3col_block > ul > li:nth-child(2) .fr_3col_unit02::before {
  background-color: rgba(0, 0, 0, 0.3);
}
.fr_3col_block > ul > li:nth-child(2) a:hover .fr_3col_unit02::before {
  background-color: rgba(0, 0, 0, 0.6);
}
.fr_3col_block > ul > li:nth-child(3) .fr_3col_unit02::before {
  background-color: rgba(0, 0, 0, 0.1);
}
.fr_3col_block > ul > li:nth-child(3) a:hover .fr_3col_unit02::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.fr_3col_img {
  height: 160px;
}
.fr_3col_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fr_3col_arrow_box_sp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.fr_3col_arrow {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(218, 218, 218, 0.3);
  position: relative;
  transition: all 0.5s;
}
.fr_3col_item:hover .fr_3col_arrow {
  background-color: #fff;
  transition: all 0.5s;
}
.fr_3col_arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.fr_3col_item:hover .fr_3col_arrow::before {
  background-image: url("../images/arrow_gray.svg");
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .fr_3col_block > ul {
    display: flex;
  }
  .fr_3col_block > ul > li {
    width: calc(100% / 3);
    border-bottom: none;
  }
  .fr_3col_item {
    position: relative;
    z-index: 0;
    color: #fff;
  }
  .fr_3col_item:hover {
    color: #fff;
  }
  .fr_3col_unit01 {
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    justify-content: space-between;
    padding: 3rem;
  }
  .fr_3col_head {
    order: 1;
  }
  .fr_3col_title {
    order: 2;
    margin-bottom: 0;
  }
  .fr_3col_arrow_box_pc {
    display: block;
    order: 3;
  }
  .fr_3col_unit02 {
    width: 100%;
  }
  .fr_3col_img {
    height: auto;
  }
  .fr_3col_arrow_box_sp {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .fr_3col_unit01 {
    padding: 4rem 0 3.7rem;
  }
  .fr_3col_head {
    /*font-size: 0.8125rem;*/
      font-size: 1rem;
  }
  .fr_3col_title {
    font-size: 1.5rem;
    padding-top: 2.4rem;
  }
  .fr_3col_arrow {
    width: 60px;
    height: 60px;
  }
  .fr_3col_arrow::before {
    width: 19px;
    height: 14px;
  }
}
/**************************************
/* fr_studio_block
***************************************/
.fr_studio_block {
  border-bottom: 1px solid rgba(218, 218, 218, 0.5);
}
.fr_studio_block > .fr_studio_item:first-child {
  border-bottom: 1px solid rgba(218, 218, 218, 0.5);
}
.fr_studio_item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 3.3rem 0 4.2rem;
  transition: all 0.5s;
}
.fr_studio_name {
  font-size: 0.785rem;
  color: #232323;
  margin-bottom: 0.8rem;
  transition: all 0.5s;
}
.fr_studio_tel {
  font-size: 2rem;
  letter-spacing: 0.05em !important;
  color: #232323;
  margin-bottom: 0.5rem;
  transition: all 0.5s;
}
.fr_studio_time {
  font-size: 0.714rem;
  letter-spacing: 0;
  color: #232323;
  transition: all 0.5s;
}
.fr_studio_item:hover .fr_studio_name, .fr_studio_item:hover .fr_studio_tel, .fr_studio_item:hover .fr_studio_time {
  color: #232323;
  opacity: 0.7;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .fr_studio_block {
    display: flex;
  }
  .fr_studio_block > .fr_studio_item:first-child {
    border-right: 1px solid rgba(218, 218, 218, 0.5);
    border-bottom: none;
  }
  .fr_studio_item {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .fr_studio_item {
    /*padding: 5.9rem 0 7.9rem;*/
    padding: 5.9rem 0 6.9rem;
  }
  .fr_studio_name {
    font-size: 0.75rem;
    margin-bottom: 01.2rem;
  }
  .fr_studio_tel {
    font-size: 2.1875rem;
    margin-bottom: 0.6rem;
  }
  .fr_studio_time {
    font-size: 0.75rem;
  }
}
/**************************************
/* 
***************************************/
.fr_sns_block {
  padding: 3.7rem 0;
  border-bottom: 1px solid rgba(218, 218, 218, 0.5);
}
.fr_sns_title {
  display: none;
}
.fr_sns_list > ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fr_sns_list > ul > li {
  margin-right: 2.3rem;
}
.fr_sns_list > ul > li:last-child {
  margin-right: 0;
}
.fr_sns_img {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.fr_sns_img:hover {
  opacity: 0.6;
  transition: all 0.5s;
}
.fr_sns_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fr_sns_img01 {
  width: 25px;
  height: 25px;
}
.fr_sns_img02 {
  width: 25px;
  height: 25px;
}
.fr_sns_img03 {
  width: 33px;
  height: 25px;
}
.fr_sns_img04 {
  width: 21px;
  height: 23px;
}
@media screen and (min-width: 768px) {
  .fr_sns_block_item {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .fr_sns_title {
    display: block;
    font-size: 0.9375rem;
    color: #949494;
    margin-bottom: 0;
  }
  .fr_sns_list > ul {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .fr_sns_block {
    /*padding: 4.3rem 0;*/
    padding: 3.3rem 0;
  }
  .fr_sns_img01 {
    width: 28px;
    height: 28px;
  }
  .fr_sns_img02 {
    width: 28px;
    height: 28px;
  }
  .fr_sns_img03 {
    width: 36px;
    height: 28px;
  }
  .fr_sns_img04 {
    width: 24px;
    height: 26px;
  }
}
/**************************************
/* fr_btm_block
***************************************/
.fr_btm_block {
  padding: 5rem 0 11rem;
}
.fr_btm_block_inner {
  width: 80%;
  margin: 0 auto;
}
.fr_btm_item {
  margin-bottom: 3.6rem;
}
.fr_btm_logo {
  display: block;
  /*
  width: 150px;
*/
  width: 230px;
  margin-bottom: 3.7rem;
}
.fr_btm_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fr_btm_title {
  /*font-size: 1rem;*/
  font-size: 1.14rem;
  line-height: 1;
  letter-spacing: 0;
  color: #232323;
  margin-bottom: 1.4rem;
}
.fr_btm_txt {
  font-size: 0.785rem;
  line-height: 1.72;
  color: #232323;
  margin-bottom: 1.2rem;
}
.fr_btm_txt span {
  margin-left: -5px;
}
.fr_policy {
  display: inline-block;
  font-size: 0.714rem;
  letter-spacing: 0.04em;
  color: #737477;
  margin-bottom: 3rem;
  transition: all 0.5s;
}
.fr_policy:hover {
  color: #737477;
  opacity: 0.7;
  transition: all 0.5s;
}
.fr_copy {
  font-size: 0.785rem;
  color: #737477;
  letter-spacing: 0.07em !important;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .fr_btm_item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4.9rem;
  }
  .fr_btm_logo {
    order: 2;
    width: 260px;
    margin-bottom: 0;
  }
  .fr_btm_unit {
    order: 1;
  }
  .fr_policy_box {
    display: flex;
    justify-content: space-between;
  }
  .fr_policy {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .fr_btm_block {
    /* padding: 7.4rem 0 9.6rem;*/
  padding: 5.4rem 0 7.6rem;
  }
  .fr_btm_title {
    font-size: 1.1875rem;
    margin-bottom: 1.8rem;
  }
  .fr_btm_txt {
    font-size: 0.8125rem;
    line-height: 2;
    margin-bottom: 0.9rem;
  }
  .fr_btm_logo {
    /* width: 180px;*/
    width: 300px;
  }
  .fr_policy {
    font-size: 0.6875rem;
  }
  .fr_copy {
    font-size: 0.6875rem;
  }
}
@media screen and (min-width: 1500px) {
  .fr_btm_logo {
    width: 350px;
  }
}
/***************************************
footer 固定メニュー
***************************************/
.footer_menu {
  width: 100%;
  overflow: hidden;
  display: flex;
  margin: 0;
  padding: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  transition: all 0.3s;
}
.f_unit {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: calc(100% / 3);
}
.footer_menu > li:nth-child(1) {
  background-color: #737477;
}
.footer_menu > li:nth-child(1) a {
  color: #fff;
}
.footer_menu > li:nth-child(2) {
  background-color: #737477;
  border-left: 1px solid rgba(255, 255, 255, 0.5);  
  border-right: 1px solid rgba(255, 255, 255, 0.5);  
}
.footer_menu > li:nth-child(2) a {
  color: #fff;
}
.footer_menu > li:nth-child(3) {
  background-color: #737477;
}
.footer_menu > li:nth-child(3) a {
  color: #fff;
}
.f_unit a {
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  /*
  flex-direction: column;
*/
  align-items: center;
  text-decoration: none;
  height: 56px;
  /*
  letter-spacing: 0.12em;
*/
}

@media screen and (min-width: 576px) {
  .footer_menu {
    display: none;
  }
}