﻿@charset "utf-8";

/*! // Oct 2025 Revised Edition //

 * 01 - Style
 * 02 - Layout
 */

/*-------------
01.Style
--------------*/
.clip_circle {
  border-radius: 50%;
}
.clip_kadomaru_all {
  border-radius: 10px;
}
.clip_kadomaru_top {
  border-radius: 10px 10px 0 0;
}
.clip_kadomaru_right {
  border-radius: 0 10px 10px 0;
}
a {
  color: #333;
  text-decoration: underline;
}
a:hover {
  color: #333;
  text-decoration: none;
}
.pink {color: #FF807D;}
.pink_line {background: linear-gradient(transparent 20%, #9CEFCD 0%);}
.opensans {font-family: 'Open Sans', sans-serif;}

/*-------------
02.Layout
--------------*/
/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header .area_bnr{
  background-color: #9CEFCD;
  font-size: 1.4rem;
  text-align: center;
  padding: 5px 0;
}
header .box_logo{
  padding: 25px 0 0 15px;
}
h1 .header_logo_atria {
  width: 54px;
}
h1 .header_logo_effect {
  width: 96px;
}
h1 a {
  display: inline-block;
}
h1 span {
  display: none;
}

/* MV title Tablet & PC */
@media all and (min-width: 641px)  {
  h1 {
    width:  100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
  }
  h1 span {
    display: inline-block;
    font-size: 1.1rem;
    position: relative;
    top: 12px;
    left: 20px;
  }
}

/* =====  MV ===== */
.mv__wrap{
  position: relative;
  width:100%;
  height: 100vh;
  padding-top: 38px;
  overflow: hidden;
}
.full div {
  width:100%;
  height: 100vh;
  z-index: 0;
}
.full div.img01 {
  background: url(../images/mv_sp_1.jpg) no-repeat center center;
  background-size: cover;
}
.full div.img02 {
  background: url(../images/mv_sp_2.jpg) no-repeat center center;
  background-size: cover;
}

/* MV PC */
@media all and (min-width: 1025px) {
  .full div {
    width:100%;
    height: 100vh;
    z-index: 0;
  }
  .full div.img01 {
    background: url(../images/mv_pc_1.jpg) no-repeat center center;
    background-size: cover;
  }
  .full div.img02 {
    background: url(../images/mv_pc_2.jpg) no-repeat center center;
    background-size: cover;
  }
}

/* ===== MV title ===== */
.main_copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32vh;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2.4rem, 4vw + 1rem, 4.4rem);
  font-weight: bold;
  line-height: 1.8;
  text-shadow: #FFF 1px 0 10px;
  z-index: 20;
  overflow-wrap: break-word;
}
.main_copy::after {
  content: "";
  display: block;
  width: clamp(260px, 32vw, 800px);
  aspect-ratio: 440 / 153;
  background: url(../images/title_en_main.png) no-repeat center center;
  background-size: contain;
  margin: 0.5rem auto 0;
  position: relative;
  bottom: clamp(20px, 6vw, 52px);
}
.merit {
  position: absolute;
  inset: auto 0 6%;
  margin: 0 auto;
  transform: none;
  width: 90%;
  max-width: 400px;
  text-align: center;
  z-index: 10;
}
.merit ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: clamp(300px, 70vw, 900px);
  align-content: center;
}
.merit li {
  width: clamp(90px, 20vw, 110px);
  height: clamp(90px, 20vw, 110px);
  border-radius: 50%;
  background: #fff;
  color: #75888E;
  font-weight: bold;
  font-size: clamp(1.1rem, 2.2vw + 1rem, 1.4rem);
  line-height: 1.4;
  display: flex;
  padding-top: 1%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 3px 6px 1px rgba(117,133,150,0.3);
}
.merit ul li span {
  font-size: clamp(1.4rem, 2vw, 2.2rem);
}
.merit li.merit03 {
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
}
.merit em {
  font-size: 1.2rem;
}
.icon_award {
  position: absolute;
  top: clamp(115px, 12vh, 115px);
  left: clamp(15px, 3vw, 20px);
  width: clamp(80px, 8vw, 80px);
  z-index: 25;
}

/* MV title Tablet */
@media all and (min-width: 641px) and (max-width: 1024px) {
.merit {
  inset: auto 0 4%;
}
.main_copy::after {
  width: 44vw;
}
}

/* MV title PC */
@media all and (min-width: 1025px) {
  .main_copy {
    bottom: 26vh;
  }
  .merit {
    bottom: 18%;
    max-width: 900px;
  }
  .merit ul {
    flex-wrap: nowrap;
    gap: 2rem;
  }
  .icon_award {
    position: absolute;
    top: 120px;
    left: 30px;
    width: 100px;
  }
}

/* ===== フローティングバナー ===== */
.floating_banner {
  position: fixed;
  width: 100%;
  bottom: 0;
  background-color:rgba(21,22,23,0.8);
  color: #F5F5F5;
  font-size: 1.7rem;
  line-height: 1.5;
  text-align: center;
  z-index: 100;
  transition: transform 1s;
  transform: translateY(120px);
  box-sizing: border-box;
}

.floating_banner.is-appear {
  transform: translateY(0);
}
.floating_banner span {
  font-size: 1.2rem;
  font-weight: normal;
}
.floating_banner a {
  display: block;
  padding: 6px 0 12px;
  color: #F5F5F5;
  font-weight: bold;
  text-decoration: none;
  background-size: 35px;
}
/* フローティングバナー PC */
@media all and (min-width: 1025px) {
  .floating_banner {
    position: absolute;
    width: 390px;
    bottom: 20px;
    right: 20px;
    background-color:rgba(21,22,23,0.3);
    color: #fff;
    font-size: 1.8rem;
    transition: transform 1s;
    transform: translateY(0);
  }
  .floating_banner span {
    font-size: 1.3rem;
    font-weight: normal;
  }
  .floating_banner a {
    padding: 10px 30px 16px 30px;
    color: #fff;
  }
  .floating_banner:hover {
    background-color:rgba(21,22,23,0.6);
  }

  #fixBtn {
    position: fixed;
    width: 280px;
    right: 20px;
    top: 0;
    background-color:rgba(21,22,23,0.8);
    color: #F5F5F5;
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
    z-index: 99999;
    transition: transform 1s;
    transform: translateY(-50px);
  }   
  #fixBtn a {
    display: block;
    padding: 12px 0 14px;
    color: #F5F5F5;
    font-weight: bold;
    text-decoration: none;
    background-size: 25px;
  }      
  #fixBtn.is-fixed {
    position: fixed;
    transform: translateY(60px);
  }
  #fixBtn:hover {
    background-color:rgba(21,22,23,0.5);
    transition: background-color 0.3s ease;
  }
}


/* ===== コンテンツ ===== */
h3 {
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
.title_bar {
  background: #75888E;
  padding: 20px 0 25px;
  color: #fff;
}

#contents_wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #EDF9F5;
}
#contents {
  width: 100%;
  height: auto;
}
.content_inner {
  padding: 40px 15px 0;
  box-sizing: border-box;
}

/* コンテンツ PC */
@media all and (min-width: 1025px) {
  h3 {
    font-size: 3.0rem;
  }
  .title_bar {
    padding: 55px 0 45px;
  }
  .content_inner {
    max-width: 1200px;
    padding: 40px 20px 0;
    margin: 0 auto;
  }
}

/* ===== #point ===== */
#point {
  background-color: #9CEFCD;
  padding: 0 0 40px;
}
h3.title_point::after {
  content: "";
  display: block;
  height: 30px;
  background: url(../images/title_en_point.png) no-repeat center bottom;
  background-size: contain;
}
/* point PC */
@media all and (min-width: 1025px) {
  h3.title_point {
    text-align: left;
    padding: 30px 0;
  }
  h3.title_point::after {
    display: inline-block;
    width: 200px;
    height: 40px;
    background: url(../images/title_en_point.png) no-repeat 20px 9px;
    background-size: contain;
  }
}

/* ==== #outline ==== */
h3.title_outline::after {
  content: "";
  display: block;
  height: 30px;
  background: url(../images/title_en_outline.png) no-repeat center bottom;
  background-size: contain;
}
.box_tb_outline {
  width:  100%;
}
.tb_outline_01,
.tb_outline_02 {
  width:  100%;
}
.tb_outline_01 th,
.tb_outline_02 th {
  display: block;
  width:  100%;
  font-weight: bold;
  text-align: left;
}
.tb_outline_01 th span,
.tb_outline_02 th span {
  border-left: 4px solid #33efb5;
  padding:  5px 0 5px 10px;
}
.tb_outline_01 td,
.tb_outline_02 td {
  display: block;
  width:  100%;
  padding: 0 0 30px 0;
  letter-spacing: 0;
}
.tb_outline_01 td p,
.tb_outline_02 td p {
  padding: 0 0 30px 0;
}
.tb_outline_01 td span.title_plan,
.tb_outline_02 td span.title_plan {
  font-weight: bold;
  color: #75888e;
}
.outline_banner {
 padding-bottom: 5rem;
}
.tb_outline_01 td span.offer,
.tb_outline_02 td span.offer {
  color: #ff0000;
  font-size: 1.2rem;
}
/* .tb_outline_01 td span.memo,
.tb_outline_02 td span.memo {
  font-size: 1.2rem;
} */


/* outline PC */
@media all and (min-width: 1025px) {
  .box_tb_outline {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 0 0;
  }
  .tb_outline_01, .tb_outline_02 {
    width: 50%;
  }
  .tb_outline_01 th, .tb_outline_02 th {
    display: inline-block;
    width: 30%;
    vertical-align: top;
  }
  .tb_outline_01 td, .tb_outline_02 td {
    display: inline-block;
    width: 68%;
    vertical-align: top;
  }
  .outline_banner {
    width:70%;
    margin: 0 auto;
}

}

/* ===== #lead ===== */
#lead {
  padding: 50px 0;
  font-size: 1.4rem;
  text-align: center;
  font-weight: normal;
}
.img_lead_sub {
  width: 90%;
  margin: 50px auto 0;
}
.img_lead_sub img {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.img_lead_sub p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: bold;
  text-align: center;
}
.img_lead_box {
  width: 80%;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.img_lead_box div {
  margin: 2%;
  opacity:0.7;
}
.img_lead {
  width: 90%;
  max-width: auto;
  margin: 0 auto;
}
/* lead PC */
@media all and (min-width: 1025px) {
  #lead {
    font-size: 2.4rem;
  }
  #lead .img_lead_box {
    width: 80%;
    margin: 80px auto 0;
  }
  #lead .img_lead_box div {
    margin: 2%;
  }
  .img_lead {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .img_lead_sub img {
    width: 400px;
  }
  .img_lead_sub p {
    font-size: 18px;
  }
}

/* ==== #staff ==== */
h3.title_staff::after {
  content: "";
  display: block;
  height: 30px;
  background: url(../images/title_en_staff.png) no-repeat center bottom;
  background-size: contain;
}
.box_staff {
  margin: 0 0 60px 0;
}
.img_staff {
  position: relative;
  width: 60%;
  margin: 0 auto;
  z-index: 10;
}
.txt_staff {
  background: #fff;
  padding: 80px 20px;
  margin: -80px 0 0 0;
  font-size: 1.5rem;
}
.work_place {
  text-align: center;
  margin: 10px 0 20px;
  font-size: 1.3rem;
}
h4.title_staff_comment {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: 0;
}
h4.staff_question {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.5;
  letter-spacing: 0;
}
h4.staff_question:before {
  content: "Q.";
  padding-right: 10px;
  color: #33efb5;
}
p.staff_answer {
  font-size: 1.4rem;
  margin-bottom: 20px;
  letter-spacing: 0;
}
p.staff_answer:before {
  content: "A.";
  font-weight: bold;
  padding-right: 10px;
  padding-left: 2px;
  color: #FF807D;
}
p.staff_comment {
  font-size: 1.4rem;
  letter-spacing: 0;
}
/* staff PC */
@media all and (min-width: 1025px) {
  h3.title_staff {
    text-align: left;
    padding: 30px 0;
  }
  h3.title_staff::after {
    display: inline-block;
    width: 200px;
    height: 40px;
    background: url(../images/title_en_staff.png) no-repeat 20px 9px;
    background-size: contain;
  }
  .box_staff {
    position: relative;
    margin: 50px 0 100px 0;
  }
  .box_staff:last-child {
      position: relative;
      margin: 50px 0 50px 0;
  }
  .img_staff {
    position: absolute;
    top: -30px;
    left: 0;
    width: 35%;
    max-width: 400px;
    z-index: 2;
  }
  .txt_staff {
    width: 70%;
    max-width: 820px;
    background: #fff;
    padding: 50px 50px 50px 6%;
    margin:  0 0 0 auto;
    font-size: 1.5rem;
    z-index: 1;
  }
  .work_place {
    text-align: left;
  }
  h4.title_staff_comment {
    font-size: 2.2rem;
    padding: 0 0 0 20px;
  }
  h4.staff_question {
    font-size: 1.8rem;
    padding: 0 0 0 20px;
  }
  p.staff_answer {
    font-size: 1.5rem;
    padding: 0 0 0 20px;
  }
  p.staff_comment {
    font-size: 1.5rem;
    padding: 0 0 0 20px;
  }
}

/* ==== #oneday ==== */
#oneday {
  padding: 0 0 40px;
}
h3.title_oneday::after {
  content: "";
  display: block;
  height: 30px;
  background: url(../images/title_en_oneday.png) no-repeat center bottom;
  background-size: contain;
}
.box_oneday {
  width:  100%;
  display: block;
}
.box_oneday div {
  width: 100%;
  margin-top: 50px;
}
/* oneday PC */
@media all and (min-width: 1025px) {
  h3.title_oneday {
    text-align: left;
    padding: 30px 0;
  }
  h3.title_oneday::after {
    display: inline-block;
    width: 150px;
    height: 40px;
    background: url(../images/title_en_oneday.png) no-repeat 20px 9px;
    background-size: contain;
  }
  .box_oneday {
    width:  100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .box_oneday div {
    width: calc( ( 100% - 50px ) / 2 );
    margin-top: 0;
  }
}

/* ==== #example ==== */
h3.title_example::after {
  content: "";
  display: block;
  height: 30px;
  background: url(../images/title_en_example.png) no-repeat center bottom;
  background-size: contain;
}
.box_example {
  background: #fff;
}
.box_example_inner {
  padding: 20px;
  text-align: center;
}
.box_example_inner h4 {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  border: 1px solid #333;
  padding: 15px;
  text-align: center;
  margin-bottom: 10px;
}
.img_example_sp {
  width: 100%;
  height: 120px;
  background: url(../images/img_example_sp.jpg) no-repeat center center;
  background-size: cover;
}
.work_day {
  font-size: 1.5rem;
}
.salary_heikin {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 20px;
}
.salary_heikin em {
  font-size: 3.4rem;
}
.salary_jisseki {
  line-height: 1;
  margin-bottom: 20px;
}
.salary_jisseki em {
  font-size: 4.7rem;
}
/* example PC */
@media all and (min-width: 1025px) {
  h3.title_example {
    text-align: left;
    padding: 30px 0;
  }
  h3.title_example::after {
    display: inline-block;
    width: 200px;
    height: 40px;
    background: url(../images/title_en_example.png) no-repeat 20px 9px;
    background-size: contain;
  }
  .box_example {
    width:  100%;
    display: flex;
    flex-direction: row-reverse;
  }
  .box_example_inner {
    padding: 50px;
    text-align: center;
    width: 50%;
  }
  .box_example_inner h4 {
    font-size: 2.0rem;
    padding: 6px;
    margin-bottom: 20px;
  }
  .img_example_pc {
    width: 50%;
    background: url(../images/img_example_pc.jpg) no-repeat top center;
    background-size: cover;
  }
  .box_salary_heikin {
    text-align: center;
    padding-bottom: 30px;
  }
  .work_day {
    display: inline;
    font-size: 1.6rem;
  }
  .salary_heikin {
    display: inline;
    font-size: 3.0rem;
  }
  .salary_heikin em {
      font-size: 4.6rem;
  }
  .box_salary_jisseki {
    text-align: center;
  }
  .salary_jisseki {
    display: inline;
    font-size: 1.6rem;
  }
  .salary_jisseki em {
    font-size: 6.4rem;
  }
}

/* ==== #reason ==== */
h3.title_reason::after {
  content: "";
  display: block;
  height: 30px;
  background: url(../images/title_en_reason.png) no-repeat center bottom;
  background-size: contain;
}
.box_reason {
  padding: 0 0 60px 0;
}
.box_reason ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box_reason li {
  position: relative;
  width: 49%;
  vertical-align: top;
  background: #fff;
  margin: 40px 0 20px;
}
.box_reason h4.title_reason {
  text-align: center;
  padding: 10px 5px;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0;
}
.box_reason p.txt_reason {
  text-align: center;
  padding: 0 10px 20px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0;
}
.arrow_box{
    position:absolute;
    width:50px;
    height:50px;
    left: 50%;
    top: -45px;
    transform: translateX(-50%);
    background:#33EFB5;
    color:#FFFFFF;
    font-size:20px;
    border-radius:50px;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow_box:after{
    position:absolute;
    content:'';
    border: solid transparent;  
    border-width:12px 5px;
    border-top-color:#33EFB5;
    top:95%;
    left:50%;
    transform: translateX(-50%);
}
/* reason PC */
@media all and (min-width: 1025px) {
  h3.title_reason {
    text-align: left;
    padding: 30px 0;
  }
  h3.title_reason::after {
    display: inline-block;
    width: 200px;
    height: 40px;
    background: url(../images/title_en_reason.png) no-repeat 20px 9px;
    background-size: contain;
  }
  .box_reason li {
    position: relative;
    width: 24%;
    vertical-align: top;
    background: #fff;
    margin: 40px 0 20px;
  }
  .box_reason h4.title_reason {
    padding: 20px 5px 10px;
    font-size: 2.2rem;
  }
  .box_reason p.txt_reason {
    padding: 0 10px 30px;
    font-size: 1.6rem;
  }
}

/* ======== #saloninfo ======== */
h3.title_saloninfo::after {
  content: "";
  display: block;
  height: 30px;
  background: url(../images/title_en_saloninfo.png) no-repeat center bottom;
  background-size: contain;
}
.salon_atria {
  padding: 0 0 50px;
  padding-top: 90px;
  margin-top:-90px;
}
.salon_effect {
  padding: 0 0 50px;
  padding-top: 90px;
  margin-top:-90px;
}
.logo_atria {
  width:  60px;
  height: auto;
  margin:  0 auto;
}
.logo_effect {
  width:  110px;
  height: auto;
  margin:  0 auto;
}
.title_salonname {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin:  5px 0 20px;
}
.salon_add {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom:  10px;
}
.salon_access {
  font-size: 1.3rem;
  line-height: 1.6;
}
.salonlinkBtnWrap {
    margin: 30px auto;
}
.salonlinkBtn {
    display: block;
    width: 56%;
    text-decoration: none;
    color: rgba(21,22,23,1.0);
    text-align: center;
    background-color: #fff;
    padding: 8px 10px;
    margin: 0 auto;
    border-radius: 3px;
    border: 1px solid rgba(21,22,23,1.0);
    transition: all 0.3s ease;
}
.link_blank {
  display: block;
  background: url(/images/icon_link_blank.png) 15px center no-repeat;
  background-size: 10%;
}
.box_salonlist {
  padding-top: 2rem;
}
/* saloninfo */
@media all and (min-width: 1025px) {
  h3.title_saloninfo::after {
    content: "";
    display: block;
    height: 30px;
    background: url(../images/title_en_saloninfo.png) no-repeat center bottom;
    background-size: contain;
  }
  .box_salonlist {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 80px;
    padding-top: 8rem;
  }
  .salon_atria {
    width: 32%;
  }
  .salon_effect {
    width: 32%;
  }
  .salonlinkBtn:hover {
    color: #fff;
    background-color: rgba(21,22,23,1.0); 
    border: 1px solid rgba(21,22,23,1.0);  
  }
}

/* ==== separate contact ==== */
#sep_contact {
  background: url(../images/bg_footer.jpg) no-repeat center center;
  background-size: cover;
  z-index: 1;
  margin-top: 40px;
}
.sep_contact_inner {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 15px;
}
.sep_contact_content {
  background: #fff;
  padding: 20px;
}
#sep_contact .icon_footer_line {
  width: 33px;
  margin: 0 auto;
}
#sep_contact .title_footer_info {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
#sep_contact .title_footer_info span {
  font-size: 1.4rem;
  font-weight: normal;
}
#sep_contact .btn_reg a {
  display: block;
  width: 80%;
  padding: 15px;
  margin: 20px auto;
  background: #FF807D;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 3px 3px 4px 1px rgba(117,133,150,0.3);
  transition: .1s cubic-bezier(0.45, 0, 0.55, 1);
}
#sep_contact .btn_reg a:hover {
  transform: scale(1.1);
}
/* separate contact PC */
@media all and (min-width: 1025px) {
  .sep_contact_inner {
    background: rgba(0, 0, 0, 0.4);
    padding: 100px 15px;
  }
  .sep_contact_content {
    width:  700px;
    background: #fff;
    padding: 20px 40px;
    margin: 0 auto;
  }
  #sep_contact .icon_footer_line {
    width: 60px;
  }
  #sep_contact .title_footer_info {
    font-size: 3.0rem;
  }
  #sep_contact .title_footer_info span {
    font-size: 1.6rem;
    font-weight: bold;
  }
  #sep_contact .btn_reg a {
    width: 60%;
    padding: 20px;
    margin: 20px auto;
    font-size: 1.8rem;
  }
}

/* ==== #sales performance ==== */
h3.title_salesperformance::after {
  content: "";
  display: block;
  height: 30px;
  background: url(../images/title_en_salesperformance.png) no-repeat center bottom;
  background-size: contain;
}
.box_data {
  background: #fff;
  border: 2px solid #33efb5;
  padding: 20px 20px;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 20px 0;
  font-feature-settings: "palt";
}
.box_data p, .box_green li {
  font-weight: bold;
}
.box_text .box_data_title {
  display: flex;
  margin-bottom: 20px;
}
.box_text .box_data_title .band {
  width: 39px;
  height:  64px;
  margin: -24px 0 0 0;
  padding: 10px 0 0 0;
  background: url(../images/icon_band.png) no-repeat center bottom;
  font-size: 2.2rem;
  font-weight: normal;
  color: #fff;
  text-align: center;
}
.box_text .box_data_title h4 {
  font-size: 2.0rem;
  font-weight: bold;
  padding-left: 10px;
}
.box_text .box_data_title h4 em {
  font-size: 2.3rem;
}
.box_text .box_data_title h4 span {
  font-size: 1.6rem;
}
.box_text p {
  margin: 0 0 1.4rem 0;
}
.box_green {
  background: #edf9f5;
  padding: 15px 20px;
  margin: 0 0 1.4rem 0;
}
.box_graph {
  margin: 40px 0 0 0;
  text-align: center;
}
.box_graph_2column {
  text-align: center;
}
.box_graph .graph_circle {
  width: 70%;
}
.box_graph_2column .graph_circle {
  width: 70%;
  margin: 0 0 30px 0;
}
/* sales performance */
@media all and (min-width: 1025px) {
  h3.title_salesperformance {
    text-align: left;
    padding: 30px 0;
  }
  h3.title_salesperformance::after {
    display: inline-block;
    width: 200px;
    height: 40px;
    background: url(../images/title_en_salesperformance.png) no-repeat 20px 9px;
    background-size: contain;
  }
  .box_data {
    display: flex;
    padding: 50px 40px;
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0 0 60px 0;
  }
  .box_data p, .box_green li {
    font-weight: normal;
  }
  .box_text {
    width: 60%;
  }
  .box_text .box_data_title {
    display: flex;
    margin-bottom: 20px;
  }
  .box_text .box_data_title .band {
    width: 78px;
    height:  118px;
    margin: -58px 0 0 0;
    padding: 10px 0 0 0;
    background: url(../images/icon_band.png) no-repeat center top;
    font-size: 4.0rem;
    color: #fff;
    text-align: center;
  }
  .box_text .box_data_title h4 {
    font-size: 3.2rem;
  }
  .box_text .box_data_title h4 em {
    font-size: 3.4rem;
  }
  .box_text .box_data_title h4 span {
    font-size: 2.4rem;
  }
  .box_text p {
    margin: 0 0 1.4rem 0;
  }
  .box_graph {
    width: 40%;
    margin: 20px 0 0 30px;
  }
  .box_graph .graph_circle {
    width: 100%;
  }
  .box_graph_2column {
    width: 100%; 
  }
  .box_graph_2column .graph_circle {
    width: 32%;
    margin: 0 40px;
  }
}

/* ==== #company ==== */
h3.title_company::after {
  content: "";
  display: block;
  height: 30px;
  background: url(../images/title_en_company.png) no-repeat center bottom;
  background-size: contain;
}
.company_banner {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 12rem;
  text-decoration: none;
}
.company_banner:hover {
  text-decoration: none;
}

.com_banner_inner {
  display: grid;
  grid-template-columns: auto 1fr; /* 左：img / 右：テキスト */
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  border: 1px solid rgba(21, 22, 23, 1);
  border-radius: 3px;
  padding: 10px 12px;
  text-decoration: none;
  color: rgba(21, 22, 23, 1);
  white-space: nowrap;
  width: 90%;
  max-width: 400px;
  transition: all 0.3s ease;
}

.com_banner_inner img {
  grid-column: 1;
  width: 24px;
  height: 24px;
  object-fit: contain;
  justify-self: start;
  flex-shrink: 0;
}

.com_banner_inner p {
  grid-column: 2;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
  justify-self: center;
}

 .company_banner:hover .com_banner_inner {
  background-color: rgba(21, 22, 23, 1);
  color: #fff;
}
/* company */
@media all and (min-width: 1025px) {
  .company_banner {
  margin-top: 4rem;
}
.com_banner_inner {
  padding: 14px 16px;
  width: 56%;
  max-width: none;
}
.com_banner_inner p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.4;
}
}

/* ===== footer ==== */
footer {
  background: url(../images/bg_footer.jpg) no-repeat center center;
  background-size: cover;
  z-index: 1;
}
.footer_inner {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 15px;
}
h3.title_reg {
  color: #fff;
  font-size: 2.4rem;
}
.footer_content {
  background: #fff;
  padding: 30px 20px;
}
.title_line_reg {
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.4;
  color: #2CC12C;
  margin: 0 0 10px;
}
.btn_line_reg a {
  position:relative;
  top:0;
  display: block;
  padding: 15px;
  background: #2CC12C;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 3px 3px 4px 1px rgba(117,133,150,0.3);
  transition: .1s cubic-bezier(0.45, 0, 0.55, 1);
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: 95% center;
}
.btn_line_reg a:hover {
  top:-7px;
}
.title_contactform_reg {
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.4;
  color: #FF807D;
  margin: 20px 0 10px;
}
.btn_contactform_reg a {
  position:relative;
  top:0;
  display: block;
  padding: 15px;
  background: #FF807D;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 3px 3px 4px 1px rgba(117,133,150,0.3);
  transition: .1s cubic-bezier(0.45, 0, 0.55, 1);
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: 95% center;
}
.btn_contactform_reg a:hover {
  top:-7px;
}
small {
    display: block;
    font-size: 1.1rem;
    color: #75888E;
    text-align: center;
    padding: 10px 0 80px 0;
    line-height: 1.5;
}

/* footer PC */
@media all and (min-width: 1025px) {
  .footer_inner {
    background: rgba(0, 0, 0, 0.4);
    padding: 100px 15px;
  }
  h3.title_reg {
      font-size: 4.0rem;
  }
  .footer_content {
    max-width:  1000px;
    background: #fff;
    padding: 40px 60px 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer_content > div {
    width: calc(50% - 20px);
  }
  .title_line_reg {
    font-size: 1.8rem;
    line-height: 1.8;
    margin: 0 0 10px 0;
  }
  .btn_line_reg a {
    padding: 30px;
    font-size: 1.8rem;
  }
  .title_contactform_reg {
    font-size: 1.8rem;
    line-height: 1.8;
    margin: 0 0 10px 0;
  }
  .btn_contactform_reg a {
    padding: 30px;
    font-size: 1.8rem;
  }
  small {
    font-size: 1.3rem;
    padding: 30px 0 30px 0;
  }
}
